ETH Price: $2,618.17 (+0.74%)

Token

NebulaFractal (NebulaFractal)
 

Overview

Max Total Supply

190 NebulaFractal

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
captainjames.eth
Balance
1 NebulaFractal
0x8cb4674becfe62e23be8936f33c53d7ad785512a
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:
NebulaFractal

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



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/[email protected]



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/token/ERC721/extensions/[email protected]



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/extensions/[email protected]



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/utils/[email protected]



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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]



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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File @openzeppelin/contracts/utils/introspection/[email protected]



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/[email protected]



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}. 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 || ERC721.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 || ERC721.isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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 { }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



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 @openzeppelin/contracts/access/[email protected]



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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/nebula.sol


pragma solidity ^0.8.0;



contract NebulaFractal is ERC721Enumerable, Ownable {

    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint public constant MAX_NEB = 2500;
    uint public constant PURCHASE_LIMIT = 5;
	string _baseTokenURI;
	bool public isActive = true;
    uint256 public constant NFT_PRICE = 40000000000000000; // 0.04 ETH

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

    // Truth. 
    constructor() ERC721("NebulaFractal", "NebulaFractal")  {
        setBaseURI("https://gateway.pinata.cloud/ipfs/QmTXGW6YsP4TJg21t9dLxNzzTsD5Jag8LmGCMKWCAb2XzX/");
    }

    modifier saleIsOpen{
        require(totalSupply() < MAX_NEB, "Sale end");
        _;
    }

    function mint(uint _count) public payable saleIsOpen {
        require(isActive, "Sale not active");
        require(totalSupply() + _count <= MAX_NEB, "Limit");
        require(totalSupply() < MAX_NEB, "Too Late");
        require(_count <= PURCHASE_LIMIT, "Too many");
        
        uint256 price = NFT_PRICE.mul(_count);
        
        require(price <= msg.value, "Too Little");

        for(uint i = 0; i < _count; i++){
            _safeMint(msg.sender, totalSupply());
        }
        
        // return balance eth if overpaid
        
        uint256 remaining = msg.value.sub(price);

        if (remaining > 0) {
            (bool success, ) = msg.sender.call{value: remaining}("");
            require(success);
        }
        
    }

    function calcStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index has already been set");
        require(startingIndexBlock != 0, "Starting index has not been set yet");

        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_NEB;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if(block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_NEB;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndexBlock = block.number;
    }


    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function reserveTokens(uint256 num) public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < num; i++) {
            
            (msg.sender, supply + i);
        }

        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function flipState(bool val) public onlyOwner {
        isActive = val;
    }

    function withdrawAll() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NEB","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":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"flipState","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":"isActive","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":"_count","type":"uint256"}],"name":"mint","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":"uint256","name":"num","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600d81526020017f4e6562756c614672616374616c000000000000000000000000000000000000008152506040518060400160405280600d81526020017f4e6562756c614672616374616c000000000000000000000000000000000000008152508160009080519060200190620000b19291906200028b565b508060019080519060200190620000ca9291906200028b565b5050506000620000df620001ae60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001a860405180608001604052806051815260200162004adf60519139620001b660201b60201c565b62000415565b600033905090565b620001c6620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001ec6200026160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000245576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023c906200037d565b60405180910390fd5b80600b90805190602001906200025d9291906200028b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200029990620003b0565b90600052602060002090601f016020900481019282620002bd576000855562000309565b82601f10620002d857805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000308578251825591602001919060010190620002eb565b5b5090506200031891906200031c565b5090565b5b80821115620003375760008160009055506001016200031d565b5090565b60006200034a6020836200039f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000602082019050818103600083015262000398816200033b565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003c957607f821691505b60208210811415620003e057620003df620003e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146ba80620004256000396000f3fe6080604052600436106101ee5760003560e01c806372877b001161010d578063c87b56dd116100a0578063d75e61101161006f578063d75e6110146106dc578063e13f351a14610707578063e36d64981461071e578063e985e9c514610749578063f2fde38b14610786576101ee565b8063c87b56dd14610622578063c9bd53051461065f578063cb774d4714610688578063d031370b146106b3576101ee565b806395d89b41116100dc57806395d89b4114610589578063a0712d68146105b4578063a22cb465146105d0578063b88d4fde146105f9576101ee565b806372877b00146105055780637d17fcbe14610530578063853828b6146105475780638da5cb5b1461055e576101ee565b806342842e0e116101855780636352211e116101545780636352211e14610449578063676dd5631461048657806370a08231146104b1578063715018a6146104ee576101ee565b806342842e0e1461037d578063438b6300146103a65780634f6ccce7146103e357806355f804b314610420576101ee565b806318160ddd116101c157806318160ddd146102c157806322f3e2d4146102ec57806323b872dd146103175780632f745c5914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613207565b6107af565b6040516102279190613e14565b60405180910390f35b34801561023c57600080fd5b50610245610829565b6040516102529190613e2f565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061329a565b6108bb565b60405161028f9190613d8b565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906131a2565b610940565b005b3480156102cd57600080fd5b506102d6610a58565b6040516102e391906141b1565b60405180910390f35b3480156102f857600080fd5b50610301610a65565b60405161030e9190613e14565b60405180910390f35b34801561032357600080fd5b5061033e6004803603810190610339919061309c565b610a78565b005b34801561034c57600080fd5b50610367600480360381019061036291906131a2565b610ad8565b60405161037491906141b1565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f919061309c565b610b7d565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190613037565b610b9d565b6040516103da9190613df2565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061329a565b610c97565b60405161041791906141b1565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613259565b610d2e565b005b34801561045557600080fd5b50610470600480360381019061046b919061329a565b610dc4565b60405161047d9190613d8b565b60405180910390f35b34801561049257600080fd5b5061049b610e76565b6040516104a891906141b1565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613037565b610e81565b6040516104e591906141b1565b60405180910390f35b3480156104fa57600080fd5b50610503610f39565b005b34801561051157600080fd5b5061051a611076565b60405161052791906141b1565b60405180910390f35b34801561053c57600080fd5b5061054561107c565b005b34801561055357600080fd5b5061055c611146565b005b34801561056a57600080fd5b50610573611211565b6040516105809190613d8b565b60405180910390f35b34801561059557600080fd5b5061059e61123b565b6040516105ab9190613e2f565b60405180910390f35b6105ce60048036038101906105c9919061329a565b6112cd565b005b3480156105dc57600080fd5b506105f760048036038101906105f29190613166565b61157b565b005b34801561060557600080fd5b50610620600480360381019061061b91906130eb565b6116fc565b005b34801561062e57600080fd5b506106496004803603810190610644919061329a565b61175e565b6040516106569190613e2f565b60405180910390f35b34801561066b57600080fd5b50610686600480360381019061068191906131de565b611805565b005b34801561069457600080fd5b5061069d61189e565b6040516106aa91906141b1565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d5919061329a565b6118a4565b005b3480156106e857600080fd5b506106f1611971565b6040516106fe91906141b1565b60405180910390f35b34801561071357600080fd5b5061071c611976565b005b34801561072a57600080fd5b50610733611b03565b60405161074091906141b1565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613060565b611b09565b60405161077d9190613e14565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613037565b611b9d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610822575061082182611d49565b5b9050919050565b606060008054610838906144af565b80601f0160208091040260200160405190810160405280929190818152602001828054610864906144af565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611e2b565b610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90614031565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094b82610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b3906140f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109db611e97565b73ffffffffffffffffffffffffffffffffffffffff161480610a0a5750610a0981610a04611e97565b611b09565b5b610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090613f91565b60405180910390fd5b610a538383611e9f565b505050565b6000600880549050905090565b600c60009054906101000a900460ff1681565b610a89610a83611e97565b82611f58565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90614111565b60405180910390fd5b610ad3838383612036565b505050565b6000610ae383610e81565b8210610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90613e71565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b98838383604051806020016040528060008152506116fc565b505050565b60606000610baa83610e81565b905060008167ffffffffffffffff811115610bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c1c5781602001602082028036833780820191505090505b50905060005b82811015610c8c57610c348582610ad8565b828281518110610c6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c84906144e1565b915050610c22565b508092505050919050565b6000610ca1610a58565b8210610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990614131565b60405180910390fd5b60088281548110610d1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d36611e97565b73ffffffffffffffffffffffffffffffffffffffff16610d54611211565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190614091565b60405180910390fd5b80600b9080519060200190610dc0929190612e5b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613fd1565b60405180910390fd5b80915050919050565b668e1bc9bf04000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990613fb1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f41611e97565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611211565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6109c481565b611084611e97565b73ffffffffffffffffffffffffffffffffffffffff166110a2611211565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90614091565b60405180910390fd5b6000600d541461113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490613f71565b60405180910390fd5b43600e81905550565b61114e611e97565b73ffffffffffffffffffffffffffffffffffffffff1661116c611211565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614091565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561120d573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461124a906144af565b80601f0160208091040260200160405190810160405280929190818152602001828054611276906144af565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905090565b6109c46112d8610a58565b10611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90614011565b60405180910390fd5b600c60009054906101000a900460ff16611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613f51565b60405180910390fd5b6109c481611373610a58565b61137d91906142e4565b11156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590614151565b60405180910390fd5b6109c46113c9610a58565b10611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614051565b60405180910390fd5b600581111561144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614071565b60405180910390fd5b600061146982668e1bc9bf04000061229290919063ffffffff16565b9050348111156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614191565b60405180910390fd5b60005b828110156114dd576114ca336114c5610a58565b6122a8565b80806114d5906144e1565b9150506114b1565b5060006114f382346122c690919063ffffffff16565b905060008111156115765760003373ffffffffffffffffffffffffffffffffffffffff168260405161152490613d76565b60006040518083038185875af1925050503d8060008114611561576040519150601f19603f3d011682016040523d82523d6000602084013e611566565b606091505b505090508061157457600080fd5b505b505050565b611583611e97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613f11565b60405180910390fd5b80600560006115fe611e97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ab611e97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f09190613e14565b60405180910390a35050565b61170d611707611e97565b83611f58565b61174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614111565b60405180910390fd5b611758848484846122dc565b50505050565b606061176982611e2b565b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906140d1565b60405180910390fd5b60006117b2612338565b905060008151116117d257604051806020016040528060008152506117fd565b806117dc846123ca565b6040516020016117ed929190613d52565b6040516020818303038152906040525b915050919050565b61180d611e97565b73ffffffffffffffffffffffffffffffffffffffff1661182b611211565b73ffffffffffffffffffffffffffffffffffffffff1614611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890614091565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600d5481565b6118ac611e97565b73ffffffffffffffffffffffffffffffffffffffff166118ca611211565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790614091565b60405180910390fd5b600061192a610a58565b905060005b828110156119595733818361194491906142e4565b50508080611951906144e1565b91505061192f565b6000600e54141561196c5743600e819055505b505050565b600581565b61197e611e97565b73ffffffffffffffffffffffffffffffffffffffff1661199c611211565b73ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990614091565b60405180910390fd5b6000600d5414611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614171565b60405180910390fd5b6000600e541415611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490613e51565b60405180910390fd5b6109c4600e544060001c611a91919061452a565b600d8190555060ff611aae600e54436122c690919063ffffffff16565b1115611ad9576109c4600143611ac491906143c5565b4060001c611ad2919061452a565b600d819055505b6000600d541415611b0157611afa6001600d5461257790919063ffffffff16565b600d819055505b565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba5611e97565b73ffffffffffffffffffffffffffffffffffffffff16611bc3611211565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090613eb1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e1457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e245750611e238261258d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1283610dc4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6382611e2b565b611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990613f31565b60405180910390fd5b6000611fad83610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061201c57508373ffffffffffffffffffffffffffffffffffffffff16612004846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061202d575061202c8185611b09565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205682610dc4565b73ffffffffffffffffffffffffffffffffffffffff16146120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a3906140b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390613ef1565b60405180910390fd5b6121278383836125f7565b612132600082611e9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218291906143c5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d991906142e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122a0919061436b565b905092915050565b6122c282826040518060200160405280600081525061270b565b5050565b600081836122d491906143c5565b905092915050565b6122e7848484612036565b6122f384848484612766565b612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990613e91565b60405180910390fd5b50505050565b6060600b8054612347906144af565b80601f0160208091040260200160405190810160405280929190818152602001828054612373906144af565b80156123c05780601f10612395576101008083540402835291602001916123c0565b820191906000526020600020905b8154815290600101906020018083116123a357829003601f168201915b5050505050905090565b60606000821415612412576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612572565b600082905060005b6000821461244457808061242d906144e1565b915050600a8261243d919061433a565b915061241a565b60008167ffffffffffffffff811115612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b85781602001600182028036833780820191505090505b5090505b6000851461256b576001826124d191906143c5565b9150600a856124e0919061452a565b60306124ec91906142e4565b60f81b818381518110612528577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612564919061433a565b94506124bc565b8093505050505b919050565b6000818361258591906142e4565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126028383836128fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126455761264081612902565b612684565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461268357612682838261294b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c7576126c281612ab8565b612706565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612705576127048282612bfb565b5b5b505050565b6127158383612c7a565b6127226000848484612766565b612761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275890613e91565b60405180910390fd5b505050565b60006127878473ffffffffffffffffffffffffffffffffffffffff16612e48565b156128f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b0611e97565b8786866040518563ffffffff1660e01b81526004016127d29493929190613da6565b602060405180830381600087803b1580156127ec57600080fd5b505af192505050801561281d57506040513d601f19601f8201168201806040525081019061281a9190613230565b60015b6128a0573d806000811461284d576040519150601f19603f3d011682016040523d82523d6000602084013e612852565b606091505b50600081511415612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f90613e91565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128f5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161295884610e81565b61296291906143c5565b9050600060076000848152602001908152602001600020549050818114612a47576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612acc91906143c5565b9050600060096000848152602001908152602001600020549050600060088381548110612b22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c0683610e81565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190613ff1565b60405180910390fd5b612cf381611e2b565b15612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a90613ed1565b60405180910390fd5b612d3f600083836125f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8f91906142e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e67906144af565b90600052602060002090601f016020900481019282612e895760008555612ed0565b82601f10612ea257805160ff1916838001178555612ed0565b82800160010185558215612ed0579182015b82811115612ecf578251825591602001919060010190612eb4565b5b509050612edd9190612ee1565b5090565b5b80821115612efa576000816000905550600101612ee2565b5090565b6000612f11612f0c846141fd565b6141cc565b905082815260208101848484011115612f2957600080fd5b612f3484828561446d565b509392505050565b6000612f4f612f4a8461422d565b6141cc565b905082815260208101848484011115612f6757600080fd5b612f7284828561446d565b509392505050565b600081359050612f8981614628565b92915050565b600081359050612f9e8161463f565b92915050565b600081359050612fb381614656565b92915050565b600081519050612fc881614656565b92915050565b600082601f830112612fdf57600080fd5b8135612fef848260208601612efe565b91505092915050565b600082601f83011261300957600080fd5b8135613019848260208601612f3c565b91505092915050565b6000813590506130318161466d565b92915050565b60006020828403121561304957600080fd5b600061305784828501612f7a565b91505092915050565b6000806040838503121561307357600080fd5b600061308185828601612f7a565b925050602061309285828601612f7a565b9150509250929050565b6000806000606084860312156130b157600080fd5b60006130bf86828701612f7a565b93505060206130d086828701612f7a565b92505060406130e186828701613022565b9150509250925092565b6000806000806080858703121561310157600080fd5b600061310f87828801612f7a565b945050602061312087828801612f7a565b935050604061313187828801613022565b925050606085013567ffffffffffffffff81111561314e57600080fd5b61315a87828801612fce565b91505092959194509250565b6000806040838503121561317957600080fd5b600061318785828601612f7a565b925050602061319885828601612f8f565b9150509250929050565b600080604083850312156131b557600080fd5b60006131c385828601612f7a565b92505060206131d485828601613022565b9150509250929050565b6000602082840312156131f057600080fd5b60006131fe84828501612f8f565b91505092915050565b60006020828403121561321957600080fd5b600061322784828501612fa4565b91505092915050565b60006020828403121561324257600080fd5b600061325084828501612fb9565b91505092915050565b60006020828403121561326b57600080fd5b600082013567ffffffffffffffff81111561328557600080fd5b61329184828501612ff8565b91505092915050565b6000602082840312156132ac57600080fd5b60006132ba84828501613022565b91505092915050565b60006132cf8383613d34565b60208301905092915050565b6132e4816143f9565b82525050565b60006132f58261426d565b6132ff818561429b565b935061330a8361425d565b8060005b8381101561333b57815161332288826132c3565b975061332d8361428e565b92505060018101905061330e565b5085935050505092915050565b6133518161440b565b82525050565b600061336282614278565b61336c81856142ac565b935061337c81856020860161447c565b61338581614617565b840191505092915050565b600061339b82614283565b6133a581856142c8565b93506133b581856020860161447c565b6133be81614617565b840191505092915050565b60006133d482614283565b6133de81856142d9565b93506133ee81856020860161447c565b80840191505092915050565b60006134076023836142c8565b91507f5374617274696e6720696e64657820686173206e6f74206265656e207365742060008301527f79657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061346d602b836142c8565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006134d36032836142c8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006135396026836142c8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061359f601c836142c8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135df6024836142c8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136456019836142c8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613685602c836142c8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136eb600f836142c8565b91507f53616c65206e6f742061637469766500000000000000000000000000000000006000830152602082019050919050565b600061372b601d836142c8565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b600061376b6038836142c8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006137d1602a836142c8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138376029836142c8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061389d6020836142c8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006138dd6008836142c8565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b600061391d602c836142c8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139836008836142c8565b91507f546f6f204c6174650000000000000000000000000000000000000000000000006000830152602082019050919050565b60006139c36008836142c8565b91507f546f6f206d616e790000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613a036020836142c8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a436029836142c8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa9602f836142c8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b0f6021836142c8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b756000836142bd565b9150600082019050919050565b6000613b8f6031836142c8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613bf5602c836142c8565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613c5b6005836142c8565b91507f4c696d69740000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613c9b6023836142c8565b91507f5374617274696e6720696e6465782068617320616c7265616479206265656e2060008301527f73657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d01600a836142c8565b91507f546f6f204c6974746c65000000000000000000000000000000000000000000006000830152602082019050919050565b613d3d81614463565b82525050565b613d4c81614463565b82525050565b6000613d5e82856133c9565b9150613d6a82846133c9565b91508190509392505050565b6000613d8182613b68565b9150819050919050565b6000602082019050613da060008301846132db565b92915050565b6000608082019050613dbb60008301876132db565b613dc860208301866132db565b613dd56040830185613d43565b8181036060830152613de78184613357565b905095945050505050565b60006020820190508181036000830152613e0c81846132ea565b905092915050565b6000602082019050613e296000830184613348565b92915050565b60006020820190508181036000830152613e498184613390565b905092915050565b60006020820190508181036000830152613e6a816133fa565b9050919050565b60006020820190508181036000830152613e8a81613460565b9050919050565b60006020820190508181036000830152613eaa816134c6565b9050919050565b60006020820190508181036000830152613eca8161352c565b9050919050565b60006020820190508181036000830152613eea81613592565b9050919050565b60006020820190508181036000830152613f0a816135d2565b9050919050565b60006020820190508181036000830152613f2a81613638565b9050919050565b60006020820190508181036000830152613f4a81613678565b9050919050565b60006020820190508181036000830152613f6a816136de565b9050919050565b60006020820190508181036000830152613f8a8161371e565b9050919050565b60006020820190508181036000830152613faa8161375e565b9050919050565b60006020820190508181036000830152613fca816137c4565b9050919050565b60006020820190508181036000830152613fea8161382a565b9050919050565b6000602082019050818103600083015261400a81613890565b9050919050565b6000602082019050818103600083015261402a816138d0565b9050919050565b6000602082019050818103600083015261404a81613910565b9050919050565b6000602082019050818103600083015261406a81613976565b9050919050565b6000602082019050818103600083015261408a816139b6565b9050919050565b600060208201905081810360008301526140aa816139f6565b9050919050565b600060208201905081810360008301526140ca81613a36565b9050919050565b600060208201905081810360008301526140ea81613a9c565b9050919050565b6000602082019050818103600083015261410a81613b02565b9050919050565b6000602082019050818103600083015261412a81613b82565b9050919050565b6000602082019050818103600083015261414a81613be8565b9050919050565b6000602082019050818103600083015261416a81613c4e565b9050919050565b6000602082019050818103600083015261418a81613c8e565b9050919050565b600060208201905081810360008301526141aa81613cf4565b9050919050565b60006020820190506141c66000830184613d43565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141f3576141f26145e8565b5b8060405250919050565b600067ffffffffffffffff821115614218576142176145e8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614248576142476145e8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142ef82614463565b91506142fa83614463565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432f5761432e61455b565b5b828201905092915050565b600061434582614463565b915061435083614463565b9250826143605761435f61458a565b5b828204905092915050565b600061437682614463565b915061438183614463565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143ba576143b961455b565b5b828202905092915050565b60006143d082614463565b91506143db83614463565b9250828210156143ee576143ed61455b565b5b828203905092915050565b600061440482614443565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561449a57808201518184015260208101905061447f565b838111156144a9576000848401525b50505050565b600060028204905060018216806144c757607f821691505b602082108114156144db576144da6145b9565b5b50919050565b60006144ec82614463565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561451f5761451e61455b565b5b600182019050919050565b600061453582614463565b915061454083614463565b9250826145505761454f61458a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614631816143f9565b811461463c57600080fd5b50565b6146488161440b565b811461465357600080fd5b50565b61465f81614417565b811461466a57600080fd5b50565b61467681614463565b811461468157600080fd5b5056fea2646970667358221220427402757e9b06b030dfb264dd39c4c5d0f14d2bce3b1641482d75300b6dbac764736f6c6343000800003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d545847573659735034544a6732317439644c784e7a7a547344354a6167384c6d47434d4b5743416232587a582f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806372877b001161010d578063c87b56dd116100a0578063d75e61101161006f578063d75e6110146106dc578063e13f351a14610707578063e36d64981461071e578063e985e9c514610749578063f2fde38b14610786576101ee565b8063c87b56dd14610622578063c9bd53051461065f578063cb774d4714610688578063d031370b146106b3576101ee565b806395d89b41116100dc57806395d89b4114610589578063a0712d68146105b4578063a22cb465146105d0578063b88d4fde146105f9576101ee565b806372877b00146105055780637d17fcbe14610530578063853828b6146105475780638da5cb5b1461055e576101ee565b806342842e0e116101855780636352211e116101545780636352211e14610449578063676dd5631461048657806370a08231146104b1578063715018a6146104ee576101ee565b806342842e0e1461037d578063438b6300146103a65780634f6ccce7146103e357806355f804b314610420576101ee565b806318160ddd116101c157806318160ddd146102c157806322f3e2d4146102ec57806323b872dd146103175780632f745c5914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613207565b6107af565b6040516102279190613e14565b60405180910390f35b34801561023c57600080fd5b50610245610829565b6040516102529190613e2f565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061329a565b6108bb565b60405161028f9190613d8b565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906131a2565b610940565b005b3480156102cd57600080fd5b506102d6610a58565b6040516102e391906141b1565b60405180910390f35b3480156102f857600080fd5b50610301610a65565b60405161030e9190613e14565b60405180910390f35b34801561032357600080fd5b5061033e6004803603810190610339919061309c565b610a78565b005b34801561034c57600080fd5b50610367600480360381019061036291906131a2565b610ad8565b60405161037491906141b1565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f919061309c565b610b7d565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190613037565b610b9d565b6040516103da9190613df2565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061329a565b610c97565b60405161041791906141b1565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613259565b610d2e565b005b34801561045557600080fd5b50610470600480360381019061046b919061329a565b610dc4565b60405161047d9190613d8b565b60405180910390f35b34801561049257600080fd5b5061049b610e76565b6040516104a891906141b1565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613037565b610e81565b6040516104e591906141b1565b60405180910390f35b3480156104fa57600080fd5b50610503610f39565b005b34801561051157600080fd5b5061051a611076565b60405161052791906141b1565b60405180910390f35b34801561053c57600080fd5b5061054561107c565b005b34801561055357600080fd5b5061055c611146565b005b34801561056a57600080fd5b50610573611211565b6040516105809190613d8b565b60405180910390f35b34801561059557600080fd5b5061059e61123b565b6040516105ab9190613e2f565b60405180910390f35b6105ce60048036038101906105c9919061329a565b6112cd565b005b3480156105dc57600080fd5b506105f760048036038101906105f29190613166565b61157b565b005b34801561060557600080fd5b50610620600480360381019061061b91906130eb565b6116fc565b005b34801561062e57600080fd5b506106496004803603810190610644919061329a565b61175e565b6040516106569190613e2f565b60405180910390f35b34801561066b57600080fd5b50610686600480360381019061068191906131de565b611805565b005b34801561069457600080fd5b5061069d61189e565b6040516106aa91906141b1565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d5919061329a565b6118a4565b005b3480156106e857600080fd5b506106f1611971565b6040516106fe91906141b1565b60405180910390f35b34801561071357600080fd5b5061071c611976565b005b34801561072a57600080fd5b50610733611b03565b60405161074091906141b1565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613060565b611b09565b60405161077d9190613e14565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613037565b611b9d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610822575061082182611d49565b5b9050919050565b606060008054610838906144af565b80601f0160208091040260200160405190810160405280929190818152602001828054610864906144af565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611e2b565b610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90614031565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094b82610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b3906140f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109db611e97565b73ffffffffffffffffffffffffffffffffffffffff161480610a0a5750610a0981610a04611e97565b611b09565b5b610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090613f91565b60405180910390fd5b610a538383611e9f565b505050565b6000600880549050905090565b600c60009054906101000a900460ff1681565b610a89610a83611e97565b82611f58565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90614111565b60405180910390fd5b610ad3838383612036565b505050565b6000610ae383610e81565b8210610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90613e71565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b98838383604051806020016040528060008152506116fc565b505050565b60606000610baa83610e81565b905060008167ffffffffffffffff811115610bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c1c5781602001602082028036833780820191505090505b50905060005b82811015610c8c57610c348582610ad8565b828281518110610c6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c84906144e1565b915050610c22565b508092505050919050565b6000610ca1610a58565b8210610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990614131565b60405180910390fd5b60088281548110610d1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d36611e97565b73ffffffffffffffffffffffffffffffffffffffff16610d54611211565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190614091565b60405180910390fd5b80600b9080519060200190610dc0929190612e5b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613fd1565b60405180910390fd5b80915050919050565b668e1bc9bf04000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990613fb1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f41611e97565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611211565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6109c481565b611084611e97565b73ffffffffffffffffffffffffffffffffffffffff166110a2611211565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90614091565b60405180910390fd5b6000600d541461113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490613f71565b60405180910390fd5b43600e81905550565b61114e611e97565b73ffffffffffffffffffffffffffffffffffffffff1661116c611211565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614091565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561120d573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461124a906144af565b80601f0160208091040260200160405190810160405280929190818152602001828054611276906144af565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905090565b6109c46112d8610a58565b10611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90614011565b60405180910390fd5b600c60009054906101000a900460ff16611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613f51565b60405180910390fd5b6109c481611373610a58565b61137d91906142e4565b11156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590614151565b60405180910390fd5b6109c46113c9610a58565b10611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614051565b60405180910390fd5b600581111561144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614071565b60405180910390fd5b600061146982668e1bc9bf04000061229290919063ffffffff16565b9050348111156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614191565b60405180910390fd5b60005b828110156114dd576114ca336114c5610a58565b6122a8565b80806114d5906144e1565b9150506114b1565b5060006114f382346122c690919063ffffffff16565b905060008111156115765760003373ffffffffffffffffffffffffffffffffffffffff168260405161152490613d76565b60006040518083038185875af1925050503d8060008114611561576040519150601f19603f3d011682016040523d82523d6000602084013e611566565b606091505b505090508061157457600080fd5b505b505050565b611583611e97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613f11565b60405180910390fd5b80600560006115fe611e97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ab611e97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f09190613e14565b60405180910390a35050565b61170d611707611e97565b83611f58565b61174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614111565b60405180910390fd5b611758848484846122dc565b50505050565b606061176982611e2b565b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906140d1565b60405180910390fd5b60006117b2612338565b905060008151116117d257604051806020016040528060008152506117fd565b806117dc846123ca565b6040516020016117ed929190613d52565b6040516020818303038152906040525b915050919050565b61180d611e97565b73ffffffffffffffffffffffffffffffffffffffff1661182b611211565b73ffffffffffffffffffffffffffffffffffffffff1614611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890614091565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600d5481565b6118ac611e97565b73ffffffffffffffffffffffffffffffffffffffff166118ca611211565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790614091565b60405180910390fd5b600061192a610a58565b905060005b828110156119595733818361194491906142e4565b50508080611951906144e1565b91505061192f565b6000600e54141561196c5743600e819055505b505050565b600581565b61197e611e97565b73ffffffffffffffffffffffffffffffffffffffff1661199c611211565b73ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990614091565b60405180910390fd5b6000600d5414611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614171565b60405180910390fd5b6000600e541415611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490613e51565b60405180910390fd5b6109c4600e544060001c611a91919061452a565b600d8190555060ff611aae600e54436122c690919063ffffffff16565b1115611ad9576109c4600143611ac491906143c5565b4060001c611ad2919061452a565b600d819055505b6000600d541415611b0157611afa6001600d5461257790919063ffffffff16565b600d819055505b565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba5611e97565b73ffffffffffffffffffffffffffffffffffffffff16611bc3611211565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090614091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090613eb1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e1457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e245750611e238261258d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1283610dc4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6382611e2b565b611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990613f31565b60405180910390fd5b6000611fad83610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061201c57508373ffffffffffffffffffffffffffffffffffffffff16612004846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061202d575061202c8185611b09565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205682610dc4565b73ffffffffffffffffffffffffffffffffffffffff16146120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a3906140b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390613ef1565b60405180910390fd5b6121278383836125f7565b612132600082611e9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218291906143c5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d991906142e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122a0919061436b565b905092915050565b6122c282826040518060200160405280600081525061270b565b5050565b600081836122d491906143c5565b905092915050565b6122e7848484612036565b6122f384848484612766565b612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990613e91565b60405180910390fd5b50505050565b6060600b8054612347906144af565b80601f0160208091040260200160405190810160405280929190818152602001828054612373906144af565b80156123c05780601f10612395576101008083540402835291602001916123c0565b820191906000526020600020905b8154815290600101906020018083116123a357829003601f168201915b5050505050905090565b60606000821415612412576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612572565b600082905060005b6000821461244457808061242d906144e1565b915050600a8261243d919061433a565b915061241a565b60008167ffffffffffffffff811115612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b85781602001600182028036833780820191505090505b5090505b6000851461256b576001826124d191906143c5565b9150600a856124e0919061452a565b60306124ec91906142e4565b60f81b818381518110612528577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612564919061433a565b94506124bc565b8093505050505b919050565b6000818361258591906142e4565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126028383836128fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126455761264081612902565b612684565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461268357612682838261294b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c7576126c281612ab8565b612706565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612705576127048282612bfb565b5b5b505050565b6127158383612c7a565b6127226000848484612766565b612761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275890613e91565b60405180910390fd5b505050565b60006127878473ffffffffffffffffffffffffffffffffffffffff16612e48565b156128f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b0611e97565b8786866040518563ffffffff1660e01b81526004016127d29493929190613da6565b602060405180830381600087803b1580156127ec57600080fd5b505af192505050801561281d57506040513d601f19601f8201168201806040525081019061281a9190613230565b60015b6128a0573d806000811461284d576040519150601f19603f3d011682016040523d82523d6000602084013e612852565b606091505b50600081511415612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f90613e91565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128f5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161295884610e81565b61296291906143c5565b9050600060076000848152602001908152602001600020549050818114612a47576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612acc91906143c5565b9050600060096000848152602001908152602001600020549050600060088381548110612b22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c0683610e81565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190613ff1565b60405180910390fd5b612cf381611e2b565b15612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a90613ed1565b60405180910390fd5b612d3f600083836125f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8f91906142e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e67906144af565b90600052602060002090601f016020900481019282612e895760008555612ed0565b82601f10612ea257805160ff1916838001178555612ed0565b82800160010185558215612ed0579182015b82811115612ecf578251825591602001919060010190612eb4565b5b509050612edd9190612ee1565b5090565b5b80821115612efa576000816000905550600101612ee2565b5090565b6000612f11612f0c846141fd565b6141cc565b905082815260208101848484011115612f2957600080fd5b612f3484828561446d565b509392505050565b6000612f4f612f4a8461422d565b6141cc565b905082815260208101848484011115612f6757600080fd5b612f7284828561446d565b509392505050565b600081359050612f8981614628565b92915050565b600081359050612f9e8161463f565b92915050565b600081359050612fb381614656565b92915050565b600081519050612fc881614656565b92915050565b600082601f830112612fdf57600080fd5b8135612fef848260208601612efe565b91505092915050565b600082601f83011261300957600080fd5b8135613019848260208601612f3c565b91505092915050565b6000813590506130318161466d565b92915050565b60006020828403121561304957600080fd5b600061305784828501612f7a565b91505092915050565b6000806040838503121561307357600080fd5b600061308185828601612f7a565b925050602061309285828601612f7a565b9150509250929050565b6000806000606084860312156130b157600080fd5b60006130bf86828701612f7a565b93505060206130d086828701612f7a565b92505060406130e186828701613022565b9150509250925092565b6000806000806080858703121561310157600080fd5b600061310f87828801612f7a565b945050602061312087828801612f7a565b935050604061313187828801613022565b925050606085013567ffffffffffffffff81111561314e57600080fd5b61315a87828801612fce565b91505092959194509250565b6000806040838503121561317957600080fd5b600061318785828601612f7a565b925050602061319885828601612f8f565b9150509250929050565b600080604083850312156131b557600080fd5b60006131c385828601612f7a565b92505060206131d485828601613022565b9150509250929050565b6000602082840312156131f057600080fd5b60006131fe84828501612f8f565b91505092915050565b60006020828403121561321957600080fd5b600061322784828501612fa4565b91505092915050565b60006020828403121561324257600080fd5b600061325084828501612fb9565b91505092915050565b60006020828403121561326b57600080fd5b600082013567ffffffffffffffff81111561328557600080fd5b61329184828501612ff8565b91505092915050565b6000602082840312156132ac57600080fd5b60006132ba84828501613022565b91505092915050565b60006132cf8383613d34565b60208301905092915050565b6132e4816143f9565b82525050565b60006132f58261426d565b6132ff818561429b565b935061330a8361425d565b8060005b8381101561333b57815161332288826132c3565b975061332d8361428e565b92505060018101905061330e565b5085935050505092915050565b6133518161440b565b82525050565b600061336282614278565b61336c81856142ac565b935061337c81856020860161447c565b61338581614617565b840191505092915050565b600061339b82614283565b6133a581856142c8565b93506133b581856020860161447c565b6133be81614617565b840191505092915050565b60006133d482614283565b6133de81856142d9565b93506133ee81856020860161447c565b80840191505092915050565b60006134076023836142c8565b91507f5374617274696e6720696e64657820686173206e6f74206265656e207365742060008301527f79657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061346d602b836142c8565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006134d36032836142c8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006135396026836142c8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061359f601c836142c8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135df6024836142c8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136456019836142c8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613685602c836142c8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136eb600f836142c8565b91507f53616c65206e6f742061637469766500000000000000000000000000000000006000830152602082019050919050565b600061372b601d836142c8565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b600061376b6038836142c8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006137d1602a836142c8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138376029836142c8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061389d6020836142c8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006138dd6008836142c8565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b600061391d602c836142c8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139836008836142c8565b91507f546f6f204c6174650000000000000000000000000000000000000000000000006000830152602082019050919050565b60006139c36008836142c8565b91507f546f6f206d616e790000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613a036020836142c8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a436029836142c8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa9602f836142c8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b0f6021836142c8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b756000836142bd565b9150600082019050919050565b6000613b8f6031836142c8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613bf5602c836142c8565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613c5b6005836142c8565b91507f4c696d69740000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613c9b6023836142c8565b91507f5374617274696e6720696e6465782068617320616c7265616479206265656e2060008301527f73657400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d01600a836142c8565b91507f546f6f204c6974746c65000000000000000000000000000000000000000000006000830152602082019050919050565b613d3d81614463565b82525050565b613d4c81614463565b82525050565b6000613d5e82856133c9565b9150613d6a82846133c9565b91508190509392505050565b6000613d8182613b68565b9150819050919050565b6000602082019050613da060008301846132db565b92915050565b6000608082019050613dbb60008301876132db565b613dc860208301866132db565b613dd56040830185613d43565b8181036060830152613de78184613357565b905095945050505050565b60006020820190508181036000830152613e0c81846132ea565b905092915050565b6000602082019050613e296000830184613348565b92915050565b60006020820190508181036000830152613e498184613390565b905092915050565b60006020820190508181036000830152613e6a816133fa565b9050919050565b60006020820190508181036000830152613e8a81613460565b9050919050565b60006020820190508181036000830152613eaa816134c6565b9050919050565b60006020820190508181036000830152613eca8161352c565b9050919050565b60006020820190508181036000830152613eea81613592565b9050919050565b60006020820190508181036000830152613f0a816135d2565b9050919050565b60006020820190508181036000830152613f2a81613638565b9050919050565b60006020820190508181036000830152613f4a81613678565b9050919050565b60006020820190508181036000830152613f6a816136de565b9050919050565b60006020820190508181036000830152613f8a8161371e565b9050919050565b60006020820190508181036000830152613faa8161375e565b9050919050565b60006020820190508181036000830152613fca816137c4565b9050919050565b60006020820190508181036000830152613fea8161382a565b9050919050565b6000602082019050818103600083015261400a81613890565b9050919050565b6000602082019050818103600083015261402a816138d0565b9050919050565b6000602082019050818103600083015261404a81613910565b9050919050565b6000602082019050818103600083015261406a81613976565b9050919050565b6000602082019050818103600083015261408a816139b6565b9050919050565b600060208201905081810360008301526140aa816139f6565b9050919050565b600060208201905081810360008301526140ca81613a36565b9050919050565b600060208201905081810360008301526140ea81613a9c565b9050919050565b6000602082019050818103600083015261410a81613b02565b9050919050565b6000602082019050818103600083015261412a81613b82565b9050919050565b6000602082019050818103600083015261414a81613be8565b9050919050565b6000602082019050818103600083015261416a81613c4e565b9050919050565b6000602082019050818103600083015261418a81613c8e565b9050919050565b600060208201905081810360008301526141aa81613cf4565b9050919050565b60006020820190506141c66000830184613d43565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141f3576141f26145e8565b5b8060405250919050565b600067ffffffffffffffff821115614218576142176145e8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614248576142476145e8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142ef82614463565b91506142fa83614463565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432f5761432e61455b565b5b828201905092915050565b600061434582614463565b915061435083614463565b9250826143605761435f61458a565b5b828204905092915050565b600061437682614463565b915061438183614463565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143ba576143b961455b565b5b828202905092915050565b60006143d082614463565b91506143db83614463565b9250828210156143ee576143ed61455b565b5b828203905092915050565b600061440482614443565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561449a57808201518184015260208101905061447f565b838111156144a9576000848401525b50505050565b600060028204905060018216806144c757607f821691505b602082108114156144db576144da6145b9565b5b50919050565b60006144ec82614463565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561451f5761451e61455b565b5b600182019050919050565b600061453582614463565b915061454083614463565b9250826145505761454f61458a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614631816143f9565b811461463c57600080fd5b50565b6146488161440b565b811461465357600080fd5b50565b61465f81614417565b811461466a57600080fd5b50565b61467681614463565b811461468157600080fd5b5056fea2646970667358221220427402757e9b06b030dfb264dd39c4c5d0f14d2bce3b1641482d75300b6dbac764736f6c63430008000033

Deployed Bytecode Sourcemap

50007:3569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34416:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22594:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24061:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23591:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35069:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50276:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24951:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34737:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25327:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52665:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35259:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52555:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22288:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50310:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22018:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42296:148;;;;;;;;;;;;;:::i;:::-;;50167:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52243:182;;;;;;;;;;;;;:::i;:::-;;53430:143;;;;;;;;;;;;;:::i;:::-;;41645:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22763:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50759:777;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24354:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25549:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22938:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53343:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50384:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53017:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50209:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51544:691;;;;;;;;;;;;;:::i;:::-;;50419:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24720:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42599:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34416:237;34518:4;34557:35;34542:50;;;:11;:50;;;;:103;;;;34609:36;34633:11;34609:23;:36::i;:::-;34542:103;34535:110;;34416:237;;;:::o;22594:100::-;22648:13;22681:5;22674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22594:100;:::o;24061:221::-;24137:7;24165:16;24173:7;24165;:16::i;:::-;24157:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24250:15;:24;24266:7;24250:24;;;;;;;;;;;;;;;;;;;;;24243:31;;24061:221;;;:::o;23591:404::-;23672:13;23688:23;23703:7;23688:14;:23::i;:::-;23672:39;;23736:5;23730:11;;:2;:11;;;;23722:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23816:5;23800:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;23825:44;23849:5;23856:12;:10;:12::i;:::-;23825:23;:44::i;:::-;23800:69;23792:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;23966:21;23975:2;23979:7;23966:8;:21::i;:::-;23591:404;;;:::o;35069:113::-;35130:7;35157:10;:17;;;;35150:24;;35069:113;:::o;50276:27::-;;;;;;;;;;;;;:::o;24951:305::-;25112:41;25131:12;:10;:12::i;:::-;25145:7;25112:18;:41::i;:::-;25104:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25220:28;25230:4;25236:2;25240:7;25220:9;:28::i;:::-;24951:305;;;:::o;34737:256::-;34834:7;34870:23;34887:5;34870:16;:23::i;:::-;34862:5;:31;34854:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:12;:19;34972:5;34959:19;;;;;;;;;;;;;;;:26;34979:5;34959:26;;;;;;;;;;;;34952:33;;34737:256;;;;:::o;25327:151::-;25431:39;25448:4;25454:2;25458:7;25431:39;;;;;;;;;;;;:16;:39::i;:::-;25327:151;;;:::o;52665:344::-;52726:16;52755:15;52773:17;52783:6;52773:9;:17::i;:::-;52755:35;;52803:25;52845:10;52831:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52803:53;;52871:6;52867:107;52887:10;52883:1;:14;52867:107;;;52932:30;52952:6;52960:1;52932:19;:30::i;:::-;52918:8;52927:1;52918:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;52899:3;;;;;:::i;:::-;;;;52867:107;;;;52993:8;52986:15;;;;52665:344;;;:::o;35259:233::-;35334:7;35370:30;:28;:30::i;:::-;35362:5;:38;35354:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35467:10;35478:5;35467:17;;;;;;;;;;;;;;;;;;;;;;;;35460:24;;35259:233;;;:::o;52555:102::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52642:7:::1;52626:13;:23;;;;;;;;;;;;:::i;:::-;;52555:102:::0;:::o;22288:239::-;22360:7;22380:13;22396:7;:16;22404:7;22396:16;;;;;;;;;;;;;;;;;;;;;22380:32;;22448:1;22431:19;;:5;:19;;;;22423:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22514:5;22507:12;;;22288:239;;;:::o;50310:53::-;50346:17;50310:53;:::o;22018:208::-;22090:7;22135:1;22118:19;;:5;:19;;;;22110:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22202:9;:16;22212:5;22202:16;;;;;;;;;;;;;;;;22195:23;;22018:208;;;:::o;42296:148::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42403:1:::1;42366:40;;42387:6;;;;;;;;;;;42366:40;;;;;;;;;;;;42434:1;42417:6;;:19;;;;;;;;;;;;;;;;;;42296:148::o:0;50167:35::-;50198:4;50167:35;:::o;52243:182::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52338:1:::1;52321:13;;:18;52313:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52405:12;52384:18;:33;;;;52243:182::o:0;53430:143::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53481:12:::1;53496:21;53481:36;;53536:10;53528:28;;:37;53557:7;53528:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41936:1;53430:143::o:0;41645:87::-;41691:7;41718:6;;;;;;;;;;;41711:13;;41645:87;:::o;22763:104::-;22819:13;22852:7;22845:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22763:104;:::o;50759:777::-;50198:4;50695:13;:11;:13::i;:::-;:23;50687:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50831:8:::1;;;;;;;;;;;50823:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50198:4;50894:6;50878:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;50870:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50198:4;50940:13;:11;:13::i;:::-;:23;50932:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50247:1;50995:6;:24;;50987:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;51053:13;51069:21;51083:6;50346:17;51069:13;;:21;;;;:::i;:::-;51053:37;;51128:9;51119:5;:18;;51111:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;51169:6;51165:95;51185:6;51181:1;:10;51165:95;;;51212:36;51222:10;51234:13;:11;:13::i;:::-;51212:9;:36::i;:::-;51193:3;;;;;:::i;:::-;;;;51165:95;;;;51333:17;51353:20;51367:5;51353:9;:13;;:20;;;;:::i;:::-;51333:40;;51402:1;51390:9;:13;51386:133;;;51421:12;51439:10;:15;;51462:9;51439:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51420:56;;;51499:7;51491:16;;;::::0;::::1;;51386:133;;50742:1;;50759:777:::0;:::o;24354:295::-;24469:12;:10;:12::i;:::-;24457:24;;:8;:24;;;;24449:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24569:8;24524:18;:32;24543:12;:10;:12::i;:::-;24524:32;;;;;;;;;;;;;;;:42;24557:8;24524:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24622:8;24593:48;;24608:12;:10;:12::i;:::-;24593:48;;;24632:8;24593:48;;;;;;:::i;:::-;;;;;;;;24354:295;;:::o;25549:285::-;25681:41;25700:12;:10;:12::i;:::-;25714:7;25681:18;:41::i;:::-;25673:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25787:39;25801:4;25807:2;25811:7;25820:5;25787:13;:39::i;:::-;25549:285;;;;:::o;22938:360::-;23011:13;23045:16;23053:7;23045;:16::i;:::-;23037:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23126:21;23150:10;:8;:10::i;:::-;23126:34;;23202:1;23184:7;23178:21;:25;:112;;;;;;;;;;;;;;;;;23243:7;23252:18;:7;:16;:18::i;:::-;23226:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23178:112;23171:119;;;22938:360;;;:::o;53343:79::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53411:3:::1;53400:8;;:14;;;;;;;;;;;;;;;;;;53343:79:::0;:::o;50384:28::-;;;;:::o;53017:318::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53081:11:::1;53095:13;:11;:13::i;:::-;53081:27;;53119:6;53136:91;53152:3;53148:1;:7;53136:91;;;53192:10;53213:1;53204:6;:10;;;;:::i;:::-;53191:24;;53157:3;;;;;:::i;:::-;;;;53136:91;;;53265:1;53243:18;;:23;53239:89;;;53304:12;53283:18;:33;;;;53239:89;41936:1;;53017:318:::0;:::o;50209:39::-;50247:1;50209:39;:::o;51544:691::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51626:1:::1;51609:13;;:18;51601:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51708:1;51686:18;;:23;;51678:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50198:4;51793:18;;51783:29;51778:35;;:45;;;;:::i;:::-;51762:13;:61;;;;51997:3;51958:36;51975:18;;51958:12;:16;;:36;;;;:::i;:::-;:42;51955:133;;;50198:4;52063:1;52048:12;:16;;;;:::i;:::-;52038:27;52033:33;;:43;;;;:::i;:::-;52017:13;:59;;;;51955:133;52162:1;52145:13;;:18;52141:87;;;52196:20;52214:1;52196:13;;:17;;:20;;;;:::i;:::-;52180:13;:36;;;;52141:87;51544:691::o:0;50419:33::-;;;;:::o;24720:164::-;24817:4;24841:18;:25;24860:5;24841:25;;;;;;;;;;;;;;;:35;24867:8;24841:35;;;;;;;;;;;;;;;;;;;;;;;;;24834:42;;24720:164;;;;:::o;42599:244::-;41876:12;:10;:12::i;:::-;41865:23;;:7;:5;:7::i;:::-;:23;;;41857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42708:1:::1;42688:22;;:8;:22;;;;42680:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42798:8;42769:38;;42790:6;;;;;;;;;;;42769:38;;;;;;;;;;;;42827:8;42818:6;;:17;;;;;;;;;;;;;;;;;;42599:244:::0;:::o;21662:292::-;21764:4;21803:25;21788:40;;;:11;:40;;;;:105;;;;21860:33;21845:48;;;:11;:48;;;;21788:105;:158;;;;21910:36;21934:11;21910:23;:36::i;:::-;21788:158;21781:165;;21662:292;;;:::o;27301:127::-;27366:4;27418:1;27390:30;;:7;:16;27398:7;27390:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27383:37;;27301:127;;;:::o;16928:98::-;16981:7;17008:10;17001:17;;16928:98;:::o;31185:174::-;31287:2;31260:15;:24;31276:7;31260:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31343:7;31339:2;31305:46;;31314:23;31329:7;31314:14;:23::i;:::-;31305:46;;;;;;;;;;;;31185:174;;:::o;27595:355::-;27688:4;27713:16;27721:7;27713;:16::i;:::-;27705:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27789:13;27805:23;27820:7;27805:14;:23::i;:::-;27789:39;;27858:5;27847:16;;:7;:16;;;:51;;;;27891:7;27867:31;;:20;27879:7;27867:11;:20::i;:::-;:31;;;27847:51;:94;;;;27902:39;27926:5;27933:7;27902:23;:39::i;:::-;27847:94;27839:103;;;27595:355;;;;:::o;30523:544::-;30648:4;30621:31;;:23;30636:7;30621:14;:23::i;:::-;:31;;;30613:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30731:1;30717:16;;:2;:16;;;;30709:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30787:39;30808:4;30814:2;30818:7;30787:20;:39::i;:::-;30891:29;30908:1;30912:7;30891:8;:29::i;:::-;30952:1;30933:9;:15;30943:4;30933:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30981:1;30964:9;:13;30974:2;30964:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31012:2;30993:7;:16;31001:7;30993:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31051:7;31047:2;31032:27;;31041:4;31032:27;;;;;;;;;;;;30523:544;;;:::o;46388:98::-;46446:7;46477:1;46473;:5;;;;:::i;:::-;46466:12;;46388:98;;;;:::o;28292:110::-;28368:26;28378:2;28382:7;28368:26;;;;;;;;;;;;:9;:26::i;:::-;28292:110;;:::o;46031:98::-;46089:7;46120:1;46116;:5;;;;:::i;:::-;46109:12;;46031:98;;;;:::o;26716:272::-;26830:28;26840:4;26846:2;26850:7;26830:9;:28::i;:::-;26877:48;26900:4;26906:2;26910:7;26919:5;26877:22;:48::i;:::-;26869:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26716:272;;;;:::o;52435:114::-;52495:13;52528;52521:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52435:114;:::o;17591:723::-;17647:13;17877:1;17868:5;:10;17864:53;;;17895:10;;;;;;;;;;;;;;;;;;;;;17864:53;17927:12;17942:5;17927:20;;17958:14;17983:78;17998:1;17990:4;:9;17983:78;;18016:8;;;;;:::i;:::-;;;;18047:2;18039:10;;;;;:::i;:::-;;;17983:78;;;18071:19;18103:6;18093:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18071:39;;18121:154;18137:1;18128:5;:10;18121:154;;18165:1;18155:11;;;;;:::i;:::-;;;18232:2;18224:5;:10;;;;:::i;:::-;18211:2;:24;;;;:::i;:::-;18198:39;;18181:6;18188;18181:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18261:2;18252:11;;;;;:::i;:::-;;;18121:154;;;18299:6;18285:21;;;;;17591:723;;;;:::o;45650:98::-;45708:7;45739:1;45735;:5;;;;:::i;:::-;45728:12;;45650:98;;;;:::o;20152:157::-;20237:4;20276:25;20261:40;;;:11;:40;;;;20254:47;;20152:157;;;:::o;36105:555::-;36215:45;36242:4;36248:2;36252:7;36215:26;:45::i;:::-;36293:1;36277:18;;:4;:18;;;36273:187;;;36312:40;36344:7;36312:31;:40::i;:::-;36273:187;;;36382:2;36374:10;;:4;:10;;;36370:90;;36401:47;36434:4;36440:7;36401:32;:47::i;:::-;36370:90;36273:187;36488:1;36474:16;;:2;:16;;;36470:183;;;36507:45;36544:7;36507:36;:45::i;:::-;36470:183;;;36580:4;36574:10;;:2;:10;;;36570:83;;36601:40;36629:2;36633:7;36601:27;:40::i;:::-;36570:83;36470:183;36105:555;;;:::o;28629:250::-;28725:18;28731:2;28735:7;28725:5;:18::i;:::-;28762:54;28793:1;28797:2;28801:7;28810:5;28762:22;:54::i;:::-;28754:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;28629:250;;;:::o;31924:843::-;32045:4;32071:15;:2;:13;;;:15::i;:::-;32067:693;;;32123:2;32107:36;;;32144:12;:10;:12::i;:::-;32158:4;32164:7;32173:5;32107:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32103:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32370:1;32353:6;:13;:18;32349:341;;;32396:60;;;;;;;;;;:::i;:::-;;;;;;;;32349:341;32640:6;32634:13;32625:6;32621:2;32617:15;32610:38;32103:602;32240:45;;;32230:55;;;:6;:55;;;;32223:62;;;;;32067:693;32744:4;32737:11;;31924:843;;;;;;;:::o;33380:93::-;;;;:::o;37383:164::-;37487:10;:17;;;;37460:15;:24;37476:7;37460:24;;;;;;;;;;;:44;;;;37515:10;37531:7;37515:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37383:164;:::o;38174:988::-;38440:22;38490:1;38465:22;38482:4;38465:16;:22::i;:::-;:26;;;;:::i;:::-;38440:51;;38502:18;38523:17;:26;38541:7;38523:26;;;;;;;;;;;;38502:47;;38670:14;38656:10;:28;38652:328;;38701:19;38723:12;:18;38736:4;38723:18;;;;;;;;;;;;;;;:34;38742:14;38723:34;;;;;;;;;;;;38701:56;;38807:11;38774:12;:18;38787:4;38774:18;;;;;;;;;;;;;;;:30;38793:10;38774:30;;;;;;;;;;;:44;;;;38924:10;38891:17;:30;38909:11;38891:30;;;;;;;;;;;:43;;;;38652:328;;39076:17;:26;39094:7;39076:26;;;;;;;;;;;39069:33;;;39120:12;:18;39133:4;39120:18;;;;;;;;;;;;;;;:34;39139:14;39120:34;;;;;;;;;;;39113:41;;;38174:988;;;;:::o;39457:1079::-;39710:22;39755:1;39735:10;:17;;;;:21;;;;:::i;:::-;39710:46;;39767:18;39788:15;:24;39804:7;39788:24;;;;;;;;;;;;39767:45;;40139:19;40161:10;40172:14;40161:26;;;;;;;;;;;;;;;;;;;;;;;;40139:48;;40225:11;40200:10;40211;40200:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40336:10;40305:15;:28;40321:11;40305:28;;;;;;;;;;;:41;;;;40477:15;:24;40493:7;40477:24;;;;;;;;;;;40470:31;;;40512:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39457:1079;;;;:::o;36961:221::-;37046:14;37063:20;37080:2;37063:16;:20::i;:::-;37046:37;;37121:7;37094:12;:16;37107:2;37094:16;;;;;;;;;;;;;;;:24;37111:6;37094:24;;;;;;;;;;;:34;;;;37168:6;37139:17;:26;37157:7;37139:26;;;;;;;;;;;:35;;;;36961:221;;;:::o;29215:382::-;29309:1;29295:16;;:2;:16;;;;29287:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29368:16;29376:7;29368;:16::i;:::-;29367:17;29359:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29430:45;29459:1;29463:2;29467:7;29430:20;:45::i;:::-;29505:1;29488:9;:13;29498:2;29488:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29536:2;29517:7;:16;29525:7;29517:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29581:7;29577:2;29556:33;;29573:1;29556:33;;;;;;;;;;;;29215:382;;:::o;9037:422::-;9097:4;9305:12;9416:7;9404:20;9396:28;;9450:1;9443:4;:8;9436:15;;;9037:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:367::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:34;8913:1;8908:3;8904:11;8897:55;8983:5;8978:2;8973:3;8969:12;8962:27;9015:2;9010:3;9006:12;8999:19;;8803:221;;;:::o;9030:375::-;;9193:67;9257:2;9252:3;9193:67;:::i;:::-;9186:74;;9290:34;9286:1;9281:3;9277:11;9270:55;9356:13;9351:2;9346:3;9342:12;9335:35;9396:2;9391:3;9387:12;9380:19;;9176:229;;;:::o;9411:382::-;;9574:67;9638:2;9633:3;9574:67;:::i;:::-;9567:74;;9671:34;9667:1;9662:3;9658:11;9651:55;9737:20;9732:2;9727:3;9723:12;9716:42;9784:2;9779:3;9775:12;9768:19;;9557:236;;;:::o;9799:370::-;;9962:67;10026:2;10021:3;9962:67;:::i;:::-;9955:74;;10059:34;10055:1;10050:3;10046:11;10039:55;10125:8;10120:2;10115:3;10111:12;10104:30;10160:2;10155:3;10151:12;10144:19;;9945:224;;;:::o;10175:326::-;;10338:67;10402:2;10397:3;10338:67;:::i;:::-;10331:74;;10435:30;10431:1;10426:3;10422:11;10415:51;10492:2;10487:3;10483:12;10476:19;;10321:180;;;:::o;10507:368::-;;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10767:34;10763:1;10758:3;10754:11;10747:55;10833:6;10828:2;10823:3;10819:12;10812:28;10866:2;10861:3;10857:12;10850:19;;10653:222;;;:::o;10881:323::-;;11044:67;11108:2;11103:3;11044:67;:::i;:::-;11037:74;;11141:27;11137:1;11132:3;11128:11;11121:48;11195:2;11190:3;11186:12;11179:19;;11027:177;;;:::o;11210:376::-;;11373:67;11437:2;11432:3;11373:67;:::i;:::-;11366:74;;11470:34;11466:1;11461:3;11457:11;11450:55;11536:14;11531:2;11526:3;11522:12;11515:36;11577:2;11572:3;11568:12;11561:19;;11356:230;;;:::o;11592:313::-;;11755:67;11819:2;11814:3;11755:67;:::i;:::-;11748:74;;11852:17;11848:1;11843:3;11839:11;11832:38;11896:2;11891:3;11887:12;11880:19;;11738:167;;;:::o;11911:327::-;;12074:67;12138:2;12133:3;12074:67;:::i;:::-;12067:74;;12171:31;12167:1;12162:3;12158:11;12151:52;12229:2;12224:3;12220:12;12213:19;;12057:181;;;:::o;12244:388::-;;12407:67;12471:2;12466:3;12407:67;:::i;:::-;12400:74;;12504:34;12500:1;12495:3;12491:11;12484:55;12570:26;12565:2;12560:3;12556:12;12549:48;12623:2;12618:3;12614:12;12607:19;;12390:242;;;:::o;12638:374::-;;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12898:34;12894:1;12889:3;12885:11;12878:55;12964:12;12959:2;12954:3;12950:12;12943:34;13003:2;12998:3;12994:12;12987:19;;12784:228;;;:::o;13018:373::-;;13181:67;13245:2;13240:3;13181:67;:::i;:::-;13174:74;;13278:34;13274:1;13269:3;13265:11;13258:55;13344:11;13339:2;13334:3;13330:12;13323:33;13382:2;13377:3;13373:12;13366:19;;13164:227;;;:::o;13397:330::-;;13560:67;13624:2;13619:3;13560:67;:::i;:::-;13553:74;;13657:34;13653:1;13648:3;13644:11;13637:55;13718:2;13713:3;13709:12;13702:19;;13543:184;;;:::o;13733:305::-;;13896:66;13960:1;13955:3;13896:66;:::i;:::-;13889:73;;13992:10;13988:1;13983:3;13979:11;13972:31;14029:2;14024:3;14020:12;14013:19;;13879:159;;;:::o;14044:376::-;;14207:67;14271:2;14266:3;14207:67;:::i;:::-;14200:74;;14304:34;14300:1;14295:3;14291:11;14284:55;14370:14;14365:2;14360:3;14356:12;14349:36;14411:2;14406:3;14402:12;14395:19;;14190:230;;;:::o;14426:305::-;;14589:66;14653:1;14648:3;14589:66;:::i;:::-;14582:73;;14685:10;14681:1;14676:3;14672:11;14665:31;14722:2;14717:3;14713:12;14706:19;;14572:159;;;:::o;14737:305::-;;14900:66;14964:1;14959:3;14900:66;:::i;:::-;14893:73;;14996:10;14992:1;14987:3;14983:11;14976:31;15033:2;15028:3;15024:12;15017:19;;14883:159;;;:::o;15048:330::-;;15211:67;15275:2;15270:3;15211:67;:::i;:::-;15204:74;;15308:34;15304:1;15299:3;15295:11;15288:55;15369:2;15364:3;15360:12;15353:19;;15194:184;;;:::o;15384:373::-;;15547:67;15611:2;15606:3;15547:67;:::i;:::-;15540:74;;15644:34;15640:1;15635:3;15631:11;15624:55;15710:11;15705:2;15700:3;15696:12;15689:33;15748:2;15743:3;15739:12;15732:19;;15530:227;;;:::o;15763:379::-;;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16023:34;16019:1;16014:3;16010:11;16003:55;16089:17;16084:2;16079:3;16075:12;16068:39;16133:2;16128:3;16124:12;16117:19;;15909:233;;;:::o;16148:365::-;;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16408:34;16404:1;16399:3;16395:11;16388:55;16474:3;16469:2;16464:3;16460:12;16453:25;16504:2;16499:3;16495:12;16488:19;;16294:219;;;:::o;16519:297::-;;16699:83;16780:1;16775:3;16699:83;:::i;:::-;16692:90;;16808:1;16803:3;16799:11;16792:18;;16682:134;;;:::o;16822:381::-;;16985:67;17049:2;17044:3;16985:67;:::i;:::-;16978:74;;17082:34;17078:1;17073:3;17069:11;17062:55;17148:19;17143:2;17138:3;17134:12;17127:41;17194:2;17189:3;17185:12;17178:19;;16968:235;;;:::o;17209:376::-;;17372:67;17436:2;17431:3;17372:67;:::i;:::-;17365:74;;17469:34;17465:1;17460:3;17456:11;17449:55;17535:14;17530:2;17525:3;17521:12;17514:36;17576:2;17571:3;17567:12;17560:19;;17355:230;;;:::o;17591:302::-;;17754:66;17818:1;17813:3;17754:66;:::i;:::-;17747:73;;17850:7;17846:1;17841:3;17837:11;17830:28;17884:2;17879:3;17875:12;17868:19;;17737:156;;;:::o;17899:367::-;;18062:67;18126:2;18121:3;18062:67;:::i;:::-;18055:74;;18159:34;18155:1;18150:3;18146:11;18139:55;18225:5;18220:2;18215:3;18211:12;18204:27;18257:2;18252:3;18248:12;18241:19;;18045:221;;;:::o;18272:308::-;;18435:67;18499:2;18494:3;18435:67;:::i;:::-;18428:74;;18532:12;18528:1;18523:3;18519:11;18512:33;18571:2;18566:3;18562:12;18555:19;;18418:162;;;:::o;18586:108::-;18663:24;18681:5;18663:24;:::i;:::-;18658:3;18651:37;18641:53;;:::o;18700:118::-;18787:24;18805:5;18787:24;:::i;:::-;18782:3;18775:37;18765:53;;:::o;18824:435::-;;19026:95;19117:3;19108:6;19026:95;:::i;:::-;19019:102;;19138:95;19229:3;19220:6;19138:95;:::i;:::-;19131:102;;19250:3;19243:10;;19008:251;;;;;:::o;19265:379::-;;19471:147;19614:3;19471:147;:::i;:::-;19464:154;;19635:3;19628:10;;19453:191;;;:::o;19650:222::-;;19781:2;19770:9;19766:18;19758:26;;19794:71;19862:1;19851:9;19847:17;19838:6;19794:71;:::i;:::-;19748:124;;;;:::o;19878:640::-;;20111:3;20100:9;20096:19;20088:27;;20125:71;20193:1;20182:9;20178:17;20169:6;20125:71;:::i;:::-;20206:72;20274:2;20263:9;20259:18;20250:6;20206:72;:::i;:::-;20288;20356:2;20345:9;20341:18;20332:6;20288:72;:::i;:::-;20407:9;20401:4;20397:20;20392:2;20381:9;20377:18;20370:48;20435:76;20506:4;20497:6;20435:76;:::i;:::-;20427:84;;20078:440;;;;;;;:::o;20524:373::-;;20705:2;20694:9;20690:18;20682:26;;20754:9;20748:4;20744:20;20740:1;20729:9;20725:17;20718:47;20782:108;20885:4;20876:6;20782:108;:::i;:::-;20774:116;;20672:225;;;;:::o;20903:210::-;;21028:2;21017:9;21013:18;21005:26;;21041:65;21103:1;21092:9;21088:17;21079:6;21041:65;:::i;:::-;20995:118;;;;:::o;21119:313::-;;21270:2;21259:9;21255:18;21247:26;;21319:9;21313:4;21309:20;21305:1;21294:9;21290:17;21283:47;21347:78;21420:4;21411:6;21347:78;:::i;:::-;21339:86;;21237:195;;;;:::o;21438:419::-;;21642:2;21631:9;21627:18;21619:26;;21691:9;21685:4;21681:20;21677:1;21666:9;21662:17;21655:47;21719:131;21845:4;21719:131;:::i;:::-;21711:139;;21609:248;;;:::o;21863:419::-;;22067:2;22056:9;22052:18;22044:26;;22116:9;22110:4;22106:20;22102:1;22091:9;22087:17;22080:47;22144:131;22270:4;22144:131;:::i;:::-;22136:139;;22034:248;;;:::o;22288:419::-;;22492:2;22481:9;22477:18;22469:26;;22541:9;22535:4;22531:20;22527:1;22516:9;22512:17;22505:47;22569:131;22695:4;22569:131;:::i;:::-;22561:139;;22459:248;;;:::o;22713:419::-;;22917:2;22906:9;22902:18;22894:26;;22966:9;22960:4;22956:20;22952:1;22941:9;22937:17;22930:47;22994:131;23120:4;22994:131;:::i;:::-;22986:139;;22884:248;;;:::o;23138:419::-;;23342:2;23331:9;23327:18;23319:26;;23391:9;23385:4;23381:20;23377:1;23366:9;23362:17;23355:47;23419:131;23545:4;23419:131;:::i;:::-;23411:139;;23309:248;;;:::o;23563:419::-;;23767:2;23756:9;23752:18;23744:26;;23816:9;23810:4;23806:20;23802:1;23791:9;23787:17;23780:47;23844:131;23970:4;23844:131;:::i;:::-;23836:139;;23734:248;;;:::o;23988:419::-;;24192:2;24181:9;24177:18;24169:26;;24241:9;24235:4;24231:20;24227:1;24216:9;24212:17;24205:47;24269:131;24395:4;24269:131;:::i;:::-;24261:139;;24159:248;;;:::o;24413:419::-;;24617:2;24606:9;24602:18;24594:26;;24666:9;24660:4;24656:20;24652:1;24641:9;24637:17;24630:47;24694:131;24820:4;24694:131;:::i;:::-;24686:139;;24584:248;;;:::o;24838:419::-;;25042:2;25031:9;25027:18;25019:26;;25091:9;25085:4;25081:20;25077:1;25066:9;25062:17;25055:47;25119:131;25245:4;25119:131;:::i;:::-;25111:139;;25009:248;;;:::o;25263:419::-;;25467:2;25456:9;25452:18;25444:26;;25516:9;25510:4;25506:20;25502:1;25491:9;25487:17;25480:47;25544:131;25670:4;25544:131;:::i;:::-;25536:139;;25434:248;;;:::o;25688:419::-;;25892:2;25881:9;25877:18;25869:26;;25941:9;25935:4;25931:20;25927:1;25916:9;25912:17;25905:47;25969:131;26095:4;25969:131;:::i;:::-;25961:139;;25859:248;;;:::o;26113:419::-;;26317:2;26306:9;26302:18;26294:26;;26366:9;26360:4;26356:20;26352:1;26341:9;26337:17;26330:47;26394:131;26520:4;26394:131;:::i;:::-;26386:139;;26284:248;;;:::o;26538:419::-;;26742:2;26731:9;26727:18;26719:26;;26791:9;26785:4;26781:20;26777:1;26766:9;26762:17;26755:47;26819:131;26945:4;26819:131;:::i;:::-;26811:139;;26709:248;;;:::o;26963:419::-;;27167:2;27156:9;27152:18;27144:26;;27216:9;27210:4;27206:20;27202:1;27191:9;27187:17;27180:47;27244:131;27370:4;27244:131;:::i;:::-;27236:139;;27134:248;;;:::o;27388:419::-;;27592:2;27581:9;27577:18;27569:26;;27641:9;27635:4;27631:20;27627:1;27616:9;27612:17;27605:47;27669:131;27795:4;27669:131;:::i;:::-;27661:139;;27559:248;;;:::o;27813:419::-;;28017:2;28006:9;28002:18;27994:26;;28066:9;28060:4;28056:20;28052:1;28041:9;28037:17;28030:47;28094:131;28220:4;28094:131;:::i;:::-;28086:139;;27984:248;;;:::o;28238:419::-;;28442:2;28431:9;28427:18;28419:26;;28491:9;28485:4;28481:20;28477:1;28466:9;28462:17;28455:47;28519:131;28645:4;28519:131;:::i;:::-;28511:139;;28409:248;;;:::o;28663:419::-;;28867:2;28856:9;28852:18;28844:26;;28916:9;28910:4;28906:20;28902:1;28891:9;28887:17;28880:47;28944:131;29070:4;28944:131;:::i;:::-;28936:139;;28834:248;;;:::o;29088:419::-;;29292:2;29281:9;29277:18;29269:26;;29341:9;29335:4;29331:20;29327:1;29316:9;29312:17;29305:47;29369:131;29495:4;29369:131;:::i;:::-;29361:139;;29259:248;;;:::o;29513:419::-;;29717:2;29706:9;29702:18;29694:26;;29766:9;29760:4;29756:20;29752:1;29741:9;29737:17;29730:47;29794:131;29920:4;29794:131;:::i;:::-;29786:139;;29684:248;;;:::o;29938:419::-;;30142:2;30131:9;30127:18;30119:26;;30191:9;30185:4;30181:20;30177:1;30166:9;30162:17;30155:47;30219:131;30345:4;30219:131;:::i;:::-;30211:139;;30109:248;;;:::o;30363:419::-;;30567:2;30556:9;30552:18;30544:26;;30616:9;30610:4;30606:20;30602:1;30591:9;30587:17;30580:47;30644:131;30770:4;30644:131;:::i;:::-;30636:139;;30534:248;;;:::o;30788:419::-;;30992:2;30981:9;30977:18;30969:26;;31041:9;31035:4;31031:20;31027:1;31016:9;31012:17;31005:47;31069:131;31195:4;31069:131;:::i;:::-;31061:139;;30959:248;;;:::o;31213:419::-;;31417:2;31406:9;31402:18;31394:26;;31466:9;31460:4;31456:20;31452:1;31441:9;31437:17;31430:47;31494:131;31620:4;31494:131;:::i;:::-;31486:139;;31384:248;;;:::o;31638:419::-;;31842:2;31831:9;31827:18;31819:26;;31891:9;31885:4;31881:20;31877:1;31866:9;31862:17;31855:47;31919:131;32045:4;31919:131;:::i;:::-;31911:139;;31809:248;;;:::o;32063:419::-;;32267:2;32256:9;32252:18;32244:26;;32316:9;32310:4;32306:20;32302:1;32291:9;32287:17;32280:47;32344:131;32470:4;32344:131;:::i;:::-;32336:139;;32234:248;;;:::o;32488:419::-;;32692:2;32681:9;32677:18;32669:26;;32741:9;32735:4;32731:20;32727:1;32716:9;32712:17;32705:47;32769:131;32895:4;32769:131;:::i;:::-;32761:139;;32659:248;;;:::o;32913:222::-;;33044:2;33033:9;33029:18;33021:26;;33057:71;33125:1;33114:9;33110:17;33101:6;33057:71;:::i;:::-;33011:124;;;;:::o;33141:283::-;;33207:2;33201:9;33191:19;;33249:4;33241:6;33237:17;33356:6;33344:10;33341:22;33320:18;33308:10;33305:34;33302:62;33299:2;;;33367:18;;:::i;:::-;33299:2;33407:10;33403:2;33396:22;33181:243;;;;:::o;33430:331::-;;33581:18;33573:6;33570:30;33567:2;;;33603:18;;:::i;:::-;33567:2;33688:4;33684:9;33677:4;33669:6;33665:17;33661:33;33653:41;;33749:4;33743;33739:15;33731:23;;33496:265;;;:::o;33767:332::-;;33919:18;33911:6;33908:30;33905:2;;;33941:18;;:::i;:::-;33905:2;34026:4;34022:9;34015:4;34007:6;34003:17;33999:33;33991:41;;34087:4;34081;34077:15;34069:23;;33834:265;;;:::o;34105:132::-;;34195:3;34187:11;;34225:4;34220:3;34216:14;34208:22;;34177:60;;;:::o;34243:114::-;;34344:5;34338:12;34328:22;;34317:40;;;:::o;34363:98::-;;34448:5;34442:12;34432:22;;34421:40;;;:::o;34467:99::-;;34553:5;34547:12;34537:22;;34526:40;;;:::o;34572:113::-;;34674:4;34669:3;34665:14;34657:22;;34647:38;;;:::o;34691:184::-;;34824:6;34819:3;34812:19;34864:4;34859:3;34855:14;34840:29;;34802:73;;;;:::o;34881:168::-;;34998:6;34993:3;34986:19;35038:4;35033:3;35029:14;35014:29;;34976:73;;;;:::o;35055:147::-;;35193:3;35178:18;;35168:34;;;;:::o;35208:169::-;;35326:6;35321:3;35314:19;35366:4;35361:3;35357:14;35342:29;;35304:73;;;;:::o;35383:148::-;;35522:3;35507:18;;35497:34;;;;:::o;35537:305::-;;35596:20;35614:1;35596:20;:::i;:::-;35591:25;;35630:20;35648:1;35630:20;:::i;:::-;35625:25;;35784:1;35716:66;35712:74;35709:1;35706:81;35703:2;;;35790:18;;:::i;:::-;35703:2;35834:1;35831;35827:9;35820:16;;35581:261;;;;:::o;35848:185::-;;35905:20;35923:1;35905:20;:::i;:::-;35900:25;;35939:20;35957:1;35939:20;:::i;:::-;35934:25;;35978:1;35968:2;;35983:18;;:::i;:::-;35968:2;36025:1;36022;36018:9;36013:14;;35890:143;;;;:::o;36039:348::-;;36102:20;36120:1;36102:20;:::i;:::-;36097:25;;36136:20;36154:1;36136:20;:::i;:::-;36131:25;;36324:1;36256:66;36252:74;36249:1;36246:81;36241:1;36234:9;36227:17;36223:105;36220:2;;;36331:18;;:::i;:::-;36220:2;36379:1;36376;36372:9;36361:20;;36087:300;;;;:::o;36393:191::-;;36453:20;36471:1;36453:20;:::i;:::-;36448:25;;36487:20;36505:1;36487:20;:::i;:::-;36482:25;;36526:1;36523;36520:8;36517:2;;;36531:18;;:::i;:::-;36517:2;36576:1;36573;36569:9;36561:17;;36438:146;;;;:::o;36590:96::-;;36656:24;36674:5;36656:24;:::i;:::-;36645:35;;36635:51;;;:::o;36692:90::-;;36769:5;36762:13;36755:21;36744:32;;36734:48;;;:::o;36788:149::-;;36864:66;36857:5;36853:78;36842:89;;36832:105;;;:::o;36943:126::-;;37020:42;37013:5;37009:54;36998:65;;36988:81;;;:::o;37075:77::-;;37141:5;37130:16;;37120:32;;;:::o;37158:154::-;37242:6;37237:3;37232;37219:30;37304:1;37295:6;37290:3;37286:16;37279:27;37209:103;;;:::o;37318:307::-;37386:1;37396:113;37410:6;37407:1;37404:13;37396:113;;;37495:1;37490:3;37486:11;37480:18;37476:1;37471:3;37467:11;37460:39;37432:2;37429:1;37425:10;37420:15;;37396:113;;;37527:6;37524:1;37521:13;37518:2;;;37607:1;37598:6;37593:3;37589:16;37582:27;37518:2;37367:258;;;;:::o;37631:320::-;;37712:1;37706:4;37702:12;37692:22;;37759:1;37753:4;37749:12;37780:18;37770:2;;37836:4;37828:6;37824:17;37814:27;;37770:2;37898;37890:6;37887:14;37867:18;37864:38;37861:2;;;37917:18;;:::i;:::-;37861:2;37682:269;;;;:::o;37957:233::-;;38019:24;38037:5;38019:24;:::i;:::-;38010:33;;38065:66;38058:5;38055:77;38052:2;;;38135:18;;:::i;:::-;38052:2;38182:1;38175:5;38171:13;38164:20;;38000:190;;;:::o;38196:176::-;;38245:20;38263:1;38245:20;:::i;:::-;38240:25;;38279:20;38297:1;38279:20;:::i;:::-;38274:25;;38318:1;38308:2;;38323:18;;:::i;:::-;38308:2;38364:1;38361;38357:9;38352:14;;38230:142;;;;:::o;38378:180::-;38426:77;38423:1;38416:88;38523:4;38520:1;38513:15;38547:4;38544:1;38537:15;38564:180;38612:77;38609:1;38602:88;38709:4;38706:1;38699:15;38733:4;38730:1;38723:15;38750:180;38798:77;38795:1;38788:88;38895:4;38892:1;38885:15;38919:4;38916:1;38909:15;38936:180;38984:77;38981:1;38974:88;39081:4;39078:1;39071:15;39105:4;39102:1;39095:15;39122:102;;39214:2;39210:7;39205:2;39198:5;39194:14;39190:28;39180:38;;39170:54;;;:::o;39230:122::-;39303:24;39321:5;39303:24;:::i;:::-;39296:5;39293:35;39283:2;;39342:1;39339;39332:12;39283:2;39273:79;:::o;39358:116::-;39428:21;39443:5;39428:21;:::i;:::-;39421:5;39418:32;39408:2;;39464:1;39461;39454:12;39408:2;39398:76;:::o;39480:120::-;39552:23;39569:5;39552:23;:::i;:::-;39545:5;39542:34;39532:2;;39590:1;39587;39580:12;39532:2;39522:78;:::o;39606:122::-;39679:24;39697:5;39679:24;:::i;:::-;39672:5;39669:35;39659:2;;39718:1;39715;39708:12;39659:2;39649:79;:::o

Swarm Source

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