ETH Price: $2,928.01 (-7.56%)
Gas: 7 Gwei

Token

GrandpaApes (GA)
 

Overview

Max Total Supply

10,000 GA

Holders

2,357

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ztaylor231.plsd.eth
Balance
4 GA
0x5519725c23a5d7a1d0efe5d289d043f8dc7c8414
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-11
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

// 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/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

pragma solidity >=0.7.0 <0.9.0;

contract NFT is ERC721Enumerable, Ownable {
  using Strings for uint256;
  
  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.08 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 5;
  bool public paused = true;
  bool public pausedPhase1Reward = true;
  bool public pausedWhiteListMint = true;
  bool public pausedOwner = true;
  mapping(address => bool) private phase1Addresses;
  mapping(address => uint8) private whitelist;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // add phase 1 reward addresses
  function setPhase1List(address[] calldata _addressToPhase1) external onlyOwner {
	for (uint i = 0; i < _addressToPhase1.length; i++) {
            phase1Addresses[_addressToPhase1[i]] = true;
        }
  }

  // add whitelist addresses
  function setWhiteList(address[] calldata addresses,uint[] calldata mintAmounts) external onlyOwner {
// ["0x5B38Da6a701c568545dCfcB03FcB875f56beddC4","0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2"],[55,1]
    for (uint i = 0; i < addresses.length; i++) {
        whitelist[addresses[i]] =  uint8(mintAmounts[i]);
    }
  }

  // mint phase 1 reward
  function mintPhase1Reward() public payable {
    uint256 supply = totalSupply();
    require(!pausedPhase1Reward,"Phase 1 reward minting is not active.");
    require(phase1Addresses[msg.sender],"Sorry, you are not on the phase 1 reward list or you have already claimed your reward.");
    require(supply + 1 <= maxSupply,"Purchase would exceed max supply of Apes.");
	cost = 0 ether;
    _safeMint(msg.sender, supply + 1);
	delete phase1Addresses[msg.sender];
  }
  
  // mint whitelist
  function mintWhitelist(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
	cost = 0.05 ether;
	maxMintAmount = 50;
    require(!pausedWhiteListMint,"Whitelist minting is not active.");
    require(_mintAmount <= whitelist[msg.sender],"You are not allowed to mint, or you are trying to mint more than you are allowed.");
    require(_mintAmount > 0,"You have to mint an Ape!");
    require(_mintAmount <= maxMintAmount,string(abi.encodePacked("You are not allowed to mint more than ",Strings.toString(maxMintAmount),".")));
    require(supply + _mintAmount <= maxSupply,"Purchase would exceed max supply of Apes.");
    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount,"Your wallet does not have enough ether to mint.");
    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
	whitelist[msg.sender] = uint8(whitelist[msg.sender]) - uint8(_mintAmount);
  }

  // public mint
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
	maxMintAmount = 5;
    require(!paused,"Public minting is not active.");
    require(_mintAmount > 0,"You have to mint an Ape!");
    require(_mintAmount <= maxMintAmount,string(abi.encodePacked("You are not allowed to mint more than ",Strings.toString(maxMintAmount),".")));
    require(supply + _mintAmount <= maxSupply,"Purchase would exceed max supply of Apes.");
    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount,"Your wallet does not have enough ether to mint.");
    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  // owner mint
  function ownerMint(uint256 _mintAmount) public onlyOwner {
    uint256 supply = totalSupply();
    require(!pausedOwner,"Owner minting is not active.");
    require(_mintAmount > 0,"You have to mint an Ape!");
    require(supply + _mintAmount <= maxSupply,"Purchase would exceed max supply of Apes.");
	cost = 0 ether;
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  // mint status
  function canMint(string memory _mintType) public view returns(bool) {
   if (keccak256(abi.encodePacked(_mintType)) == keccak256(abi.encodePacked("phase1reward")))
   {
    if (!pausedPhase1Reward) { return true; }
	else { return false; }
   }
   else if (keccak256(abi.encodePacked(_mintType)) == keccak256(abi.encodePacked("whitelist")))
   {
    if (!pausedWhiteListMint) { return true; }
	else { return false; }
   }
   else if (keccak256(abi.encodePacked(_mintType)) == keccak256(abi.encodePacked("owner")))
   {
    if (!pausedOwner) { return true; }
	else { return false; }
   }
   else
   {
    if (!paused) { return true; }
	else { return false; }
   }
  }
  
  // check reward list
  function checkRewardList(address _address) public view returns(bool) {
   return phase1Addresses[_address];
  } 
  
  // whitelist count
  function whitelistCount(address _address) public view returns(uint8) {
   return whitelist[_address];
  }  

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function pausePhase1Reward(bool _state) public onlyOwner {
    pausedPhase1Reward = _state;
  }
  
  function pauseWhiteListMint(bool _state) public onlyOwner {
    pausedWhiteListMint = _state;
  }
  
  function pausedOwnerMint(bool _state) public onlyOwner {
    pausedOwner = _state;
  }
  
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_mintType","type":"string"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkRewardList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPhase1Reward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePhase1Reward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseWhiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausedOwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausedPhase1Reward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedWhiteListMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressToPhase1","type":"address[]"}],"name":"setPhase1List","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"mintAmounts","type":"uint256[]"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whitelistCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003f3565b5067011c37937e080000600d55612710600e556005600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff0219169083151502179055506000601360006101000a81548160ff021916908315150217905550348015620000fd57600080fd5b50604051620066bf380380620066bf833981810160405281019062000123919062000521565b838381600090805190602001906200013d929190620003f3565b50806001908051906020019062000156929190620003f3565b505050620001796200016d620001a560201b60201c565b620001ad60201b60201c565b6200018a826200027360201b60201c565b6200019b816200031e60201b60201c565b5050505062000816565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000283620001a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a9620003c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000302576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f99062000636565b60405180910390fd5b80600b90805190602001906200031a929190620003f3565b5050565b6200032e620001a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000354620003c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a49062000636565b60405180910390fd5b8060149080519060200190620003c5929190620003f3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200040190620006fe565b90600052602060002090601f01602090048101928262000425576000855562000471565b82601f106200044057805160ff191683800117855562000471565b8280016001018555821562000471579182015b828111156200047057825182559160200191906001019062000453565b5b50905062000480919062000484565b5090565b5b808211156200049f57600081600090555060010162000485565b5090565b6000620004ba620004b48462000681565b62000658565b905082815260208101848484011115620004d957620004d8620007cd565b5b620004e6848285620006c8565b509392505050565b600082601f830112620005065762000505620007c8565b5b815162000518848260208601620004a3565b91505092915050565b600080600080608085870312156200053e576200053d620007d7565b5b600085015167ffffffffffffffff8111156200055f576200055e620007d2565b5b6200056d87828801620004ee565b945050602085015167ffffffffffffffff811115620005915762000590620007d2565b5b6200059f87828801620004ee565b935050604085015167ffffffffffffffff811115620005c357620005c2620007d2565b5b620005d187828801620004ee565b925050606085015167ffffffffffffffff811115620005f557620005f4620007d2565b5b6200060387828801620004ee565b91505092959194509250565b60006200061e602083620006b7565b91506200062b82620007ed565b602082019050919050565b6000602082019050818103600083015262000651816200060f565b9050919050565b60006200066462000677565b905062000672828262000734565b919050565b6000604051905090565b600067ffffffffffffffff8211156200069f576200069e62000799565b5b620006aa82620007dc565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006e8578082015181840152602081019050620006cb565b83811115620006f8576000848401525b50505050565b600060028204905060018216806200071757607f821691505b602082108114156200072e576200072d6200076a565b5b50919050565b6200073f82620007dc565b810181811067ffffffffffffffff8211171562000761576200076062000799565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615e9980620008266000396000f3fe6080604052600436106102c95760003560e01c80635c975abb11610175578063b88d4fde116100dc578063dc311e7911610095578063e985e9c51161006f578063e985e9c514610aa8578063f19e75d414610ae5578063f2c4ce1e14610b0e578063f2fde38b14610b37576102c9565b8063dc311e7914610a19578063def8727214610a42578063e394655614610a7f576102c9565b8063b88d4fde14610909578063c668286214610932578063c87b56dd1461095d578063d5abeb011461099a578063d7209fb3146109c5578063da3ef23f146109f0576102c9565b806394b9df021161012e57806394b9df021461081a57806395d89b4114610857578063a0712d6814610882578063a22cb4651461089e578063a475b5dd146108c7578063aabe92e9146108de576102c9565b80635c975abb1461070a5780636352211e1461073557806370a0823114610772578063715018a6146107af5780637f00c7a6146107c65780638da5cb5b146107ef576102c9565b8063269021431161023457806344a0d68a116101ed5780634f6ccce7116101c75780634f6ccce71461063c578063518302271461067957806355f804b3146106a4578063586a86fc146106cd576102c9565b806344a0d68a146105ce5780634618163e146105f75780634ac8456914610613576102c9565b806326902143146104ee5780632f745c59146105175780633ccfd60b146105545780633f8350701461055e57806342842e0e14610568578063438b630014610591576102c9565b8063095ea7b311610286578063095ea7b3146103f257806313faede61461041b57806318160ddd146104465780631a3e232814610471578063239c70ae1461049a57806323b872dd146104c5576102c9565b80630177f58e146102ce57806301ffc9a7146102f957806302329a291461033657806306fdde031461035f578063081812fc1461038a578063081c8c44146103c7575b600080fd5b3480156102da57600080fd5b506102e3610b60565b6040516102f09190614c78565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b91906143f0565b610b73565b60405161032d9190614c78565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906143c3565b610bed565b005b34801561036b57600080fd5b50610374610c86565b6040516103819190614c93565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190614493565b610d18565b6040516103be9190614bef565b60405180910390f35b3480156103d357600080fd5b506103dc610d9d565b6040516103e99190614c93565b60405180910390f35b3480156103fe57600080fd5b50610419600480360381019061041491906142b5565b610e2b565b005b34801561042757600080fd5b50610430610f43565b60405161043d9190615015565b60405180910390f35b34801561045257600080fd5b5061045b610f49565b6040516104689190615015565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906143c3565b610f56565b005b3480156104a657600080fd5b506104af610fef565b6040516104bc9190615015565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e7919061419f565b610ff5565b005b3480156104fa57600080fd5b50610515600480360381019061051091906142f5565b611055565b005b34801561052357600080fd5b5061053e600480360381019061053991906142b5565b611176565b60405161054b9190615015565b60405180910390f35b61055c61121b565b005b610566611317565b005b34801561057457600080fd5b5061058f600480360381019061058a919061419f565b6114c0565b005b34801561059d57600080fd5b506105b860048036038101906105b39190614132565b6114e0565b6040516105c59190614c56565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190614493565b61158e565b005b610611600480360381019061060c9190614493565b611614565b005b34801561061f57600080fd5b5061063a600480360381019061063591906143c3565b611992565b005b34801561064857600080fd5b50610663600480360381019061065e9190614493565b611a2b565b6040516106709190615015565b60405180910390f35b34801561068557600080fd5b5061068e611a9c565b60405161069b9190614c78565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061444a565b611aaf565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190614132565b611b45565b6040516107019190614c78565b60405180910390f35b34801561071657600080fd5b5061071f611b9b565b60405161072c9190614c78565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190614493565b611bae565b6040516107699190614bef565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190614132565b611c60565b6040516107a69190615015565b60405180910390f35b3480156107bb57600080fd5b506107c4611d18565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190614493565b611da0565b005b3480156107fb57600080fd5b50610804611e26565b6040516108119190614bef565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061444a565b611e50565b60405161084e9190614c78565b60405180910390f35b34801561086357600080fd5b5061086c611fe1565b6040516108799190614c93565b60405180910390f35b61089c60048036038101906108979190614493565b612073565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190614275565b6122a2565b005b3480156108d357600080fd5b506108dc612423565b005b3480156108ea57600080fd5b506108f36124bc565b6040516109009190614c78565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b91906141f2565b6124cf565b005b34801561093e57600080fd5b50610947612531565b6040516109549190614c93565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190614493565b6125bf565b6040516109919190614c93565b60405180910390f35b3480156109a657600080fd5b506109af612718565b6040516109bc9190615015565b60405180910390f35b3480156109d157600080fd5b506109da61271e565b6040516109e79190614c78565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a12919061444a565b612731565b005b348015610a2557600080fd5b50610a406004803603810190610a3b91906143c3565b6127c7565b005b348015610a4e57600080fd5b50610a696004803603810190610a649190614132565b612860565b604051610a769190615030565b60405180910390f35b348015610a8b57600080fd5b50610aa66004803603810190610aa19190614342565b6128b6565b005b348015610ab457600080fd5b50610acf6004803603810190610aca919061415f565b6129f2565b604051610adc9190614c78565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190614493565b612a86565b005b348015610b1a57600080fd5b50610b356004803603810190610b30919061444a565b612c34565b005b348015610b4357600080fd5b50610b5e6004803603810190610b599190614132565b612cca565b005b601060029054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610be65750610be582612dc2565b5b9050919050565b610bf5612ea4565b73ffffffffffffffffffffffffffffffffffffffff16610c13611e26565b73ffffffffffffffffffffffffffffffffffffffff1614610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090614ef5565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610c959061537a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc19061537a565b8015610d0e5780601f10610ce357610100808354040283529160200191610d0e565b820191906000526020600020905b815481529060010190602001808311610cf157829003601f168201915b5050505050905090565b6000610d2382612eac565b610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614eb5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60148054610daa9061537a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd69061537a565b8015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b505050505081565b6000610e3682611bae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90614f75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec6612ea4565b73ffffffffffffffffffffffffffffffffffffffff161480610ef55750610ef481610eef612ea4565b6129f2565b5b610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90614df5565b60405180910390fd5b610f3e8383612f18565b505050565b600d5481565b6000600880549050905090565b610f5e612ea4565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611e26565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990614ef5565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b600f5481565b611006611000612ea4565b82612fd1565b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90614fb5565b60405180910390fd5b6110508383836130af565b505050565b61105d612ea4565b73ffffffffffffffffffffffffffffffffffffffff1661107b611e26565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890614ef5565b60405180910390fd5b60005b82829050811015611171576001601160008585858181106110f8576110f7615513565b5b905060200201602081019061110d9190614132565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611169906153dd565b9150506110d4565b505050565b600061118183611c60565b82106111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614cd5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611223612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611241611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614ef5565b60405180910390fd5b60006112a1611e26565b73ffffffffffffffffffffffffffffffffffffffff16476040516112c490614bda565b60006040518083038185875af1925050503d8060008114611301576040519150601f19603f3d011682016040523d82523d6000602084013e611306565b606091505b505090508061131457600080fd5b50565b6000611321610f49565b9050601060019054906101000a900460ff1615611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90614d55565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690614f55565b60405180910390fd5b600e5460018261140f919061516e565b1115611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614ed5565b60405180910390fd5b6000600d8190555061146e33600183611469919061516e565b61330b565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b6114db838383604051806020016040528060008152506124cf565b505050565b606060006114ed83611c60565b905060008167ffffffffffffffff81111561150b5761150a615542565b5b6040519080825280602002602001820160405280156115395781602001602082028036833780820191505090505b50905060005b82811015611583576115518582611176565b82828151811061156457611563615513565b5b602002602001018181525050808061157b906153dd565b91505061153f565b508092505050919050565b611596612ea4565b73ffffffffffffffffffffffffffffffffffffffff166115b4611e26565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614ef5565b60405180910390fd5b80600d8190555050565b600061161e610f49565b905066b1a2bc2ec50000600d819055506032600f81905550601060029054906101000a900460ff1615611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614dd5565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16821115611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90614cb5565b60405180910390fd5b6000821161175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614ff5565b60405180910390fd5b600f5482111561176c600f54613329565b60405160200161177c9190614bad565b604051602081830303815290604052906117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39190614c93565b60405180910390fd5b50600e5482826117dc919061516e565b111561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614ed5565b60405180910390fd5b611825611e26565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118a85781600d5461186591906151f5565b3410156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614e15565b60405180910390fd5b5b6000600190505b8281116118de576118cb3382846118c6919061516e565b61330b565b80806118d6906153dd565b9150506118af565b5081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119379190615283565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b61199a612ea4565b73ffffffffffffffffffffffffffffffffffffffff166119b8611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614ef5565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6000611a35610f49565b8210611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90614fd5565b60405180910390fd5b60088281548110611a8a57611a89615513565b5b90600052602060002001549050919050565b601360009054906101000a900460ff1681565b611ab7612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611ad5611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614ef5565b60405180910390fd5b80600b9080519060200190611b41929190613e9a565b5050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90614e55565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890614e35565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d20612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611d3e611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90614ef5565b60405180910390fd5b611d9e600061348a565b565b611da8612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611dc6611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1390614ef5565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051602001611e6190614b98565b6040516020818303038152906040528051906020012082604051602001611e889190614b26565b604051602081830303815290604052805190602001201415611eca57601060019054906101000a900460ff16611ec15760019050611fdc565b60009050611fdc565b604051602001611ed990614b83565b6040516020818303038152906040528051906020012082604051602001611f009190614b26565b604051602081830303815290604052805190602001201415611f4257601060029054906101000a900460ff16611f395760019050611fdc565b60009050611fdc565b604051602001611f5190614b6e565b6040516020818303038152906040528051906020012082604051602001611f789190614b26565b604051602081830303815290604052805190602001201415611fba57601060039054906101000a900460ff16611fb15760019050611fdc565b60009050611fdc565b601060009054906101000a900460ff16611fd75760019050611fdc565b600090505b919050565b606060018054611ff09061537a565b80601f016020809104026020016040519081016040528092919081815260200182805461201c9061537a565b80156120695780601f1061203e57610100808354040283529160200191612069565b820191906000526020600020905b81548152906001019060200180831161204c57829003601f168201915b5050505050905090565b600061207d610f49565b90506005600f81905550601060009054906101000a900460ff16156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614f95565b60405180910390fd5b6000821161211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614ff5565b60405180910390fd5b600f5482111561212b600f54613329565b60405160200161213b9190614bad565b6040516020818303038152906040529061218b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121829190614c93565b60405180910390fd5b50600e54828261219b919061516e565b11156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614ed5565b60405180910390fd5b6121e4611e26565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122675781600d5461222491906151f5565b341015612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90614e15565b60405180910390fd5b5b6000600190505b82811161229d5761228a338284612285919061516e565b61330b565b8080612295906153dd565b91505061226e565b505050565b6122aa612ea4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90614d95565b60405180910390fd5b8060056000612325612ea4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123d2612ea4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124179190614c78565b60405180910390a35050565b61242b612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612449611e26565b73ffffffffffffffffffffffffffffffffffffffff161461249f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249690614ef5565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b601060019054906101000a900460ff1681565b6124e06124da612ea4565b83612fd1565b61251f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251690614fb5565b60405180910390fd5b61252b84848484613550565b50505050565b600c805461253e9061537a565b80601f016020809104026020016040519081016040528092919081815260200182805461256a9061537a565b80156125b75780601f1061258c576101008083540402835291602001916125b7565b820191906000526020600020905b81548152906001019060200180831161259a57829003601f168201915b505050505081565b60606125ca82612eac565b612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614f35565b60405180910390fd5b60001515601360009054906101000a900460ff16151514156126b757601480546126329061537a565b80601f016020809104026020016040519081016040528092919081815260200182805461265e9061537a565b80156126ab5780601f10612680576101008083540402835291602001916126ab565b820191906000526020600020905b81548152906001019060200180831161268e57829003601f168201915b50505050509050612713565b60006126c16135ac565b905060008151116126e1576040518060200160405280600081525061270f565b806126eb84613329565b600c6040516020016126ff93929190614b3d565b6040516020818303038152906040525b9150505b919050565b600e5481565b601060039054906101000a900460ff1681565b612739612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612757611e26565b73ffffffffffffffffffffffffffffffffffffffff16146127ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a490614ef5565b60405180910390fd5b80600c90805190602001906127c3929190613e9a565b5050565b6127cf612ea4565b73ffffffffffffffffffffffffffffffffffffffff166127ed611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a90614ef5565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6128be612ea4565b73ffffffffffffffffffffffffffffffffffffffff166128dc611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614ef5565b60405180910390fd5b60005b848490508110156129eb5782828281811061295357612952615513565b5b905060200201356012600087878581811061297157612970615513565b5b90506020020160208101906129869190614132565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806129e3906153dd565b915050612935565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a8e612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612aac611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990614ef5565b60405180910390fd5b6000612b0c610f49565b9050601060039054906101000a900460ff1615612b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5590614e95565b60405180910390fd5b60008211612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9890614ff5565b60405180910390fd5b600e548282612bb0919061516e565b1115612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be890614ed5565b60405180910390fd5b6000600d819055506000600190505b828111612c2f57612c1c338284612c17919061516e565b61330b565b8080612c27906153dd565b915050612c00565b505050565b612c3c612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612c5a611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790614ef5565b60405180910390fd5b8060149080519060200190612cc6929190613e9a565b5050565b612cd2612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612cf0611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90614ef5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad90614d15565b60405180910390fd5b612dbf8161348a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e9d5750612e9c8261363e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f8b83611bae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612fdc82612eac565b61301b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301290614db5565b60405180910390fd5b600061302683611bae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061309557508373ffffffffffffffffffffffffffffffffffffffff1661307d84610d18565b73ffffffffffffffffffffffffffffffffffffffff16145b806130a657506130a581856129f2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130cf82611bae565b73ffffffffffffffffffffffffffffffffffffffff1614613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311c90614f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318c90614d75565b60405180910390fd5b6131a08383836136a8565b6131ab600082612f18565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131fb919061524f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613252919061516e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6133258282604051806020016040528060008152506137bc565b5050565b60606000821415613371576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613485565b600082905060005b600082146133a357808061338c906153dd565b915050600a8261339c91906151c4565b9150613379565b60008167ffffffffffffffff8111156133bf576133be615542565b5b6040519080825280601f01601f1916602001820160405280156133f15781602001600182028036833780820191505090505b5090505b6000851461347e5760018261340a919061524f565b9150600a856134199190615426565b6030613425919061516e565b60f81b81838151811061343b5761343a615513565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561347791906151c4565b94506133f5565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61355b8484846130af565b61356784848484613817565b6135a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359d90614cf5565b60405180910390fd5b50505050565b6060600b80546135bb9061537a565b80601f01602080910402602001604051908101604052809291908181526020018280546135e79061537a565b80156136345780601f1061360957610100808354040283529160200191613634565b820191906000526020600020905b81548152906001019060200180831161361757829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136b38383836139ae565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136f6576136f1816139b3565b613735565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137345761373383826139fc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137785761377381613b69565b6137b7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137b6576137b58282613c3a565b5b5b505050565b6137c68383613cb9565b6137d36000848484613817565b613812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380990614cf5565b60405180910390fd5b505050565b60006138388473ffffffffffffffffffffffffffffffffffffffff16613e87565b156139a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613861612ea4565b8786866040518563ffffffff1660e01b81526004016138839493929190614c0a565b602060405180830381600087803b15801561389d57600080fd5b505af19250505080156138ce57506040513d601f19601f820116820180604052508101906138cb919061441d565b60015b613951573d80600081146138fe576040519150601f19603f3d011682016040523d82523d6000602084013e613903565b606091505b50600081511415613949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394090614cf5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139a6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a0984611c60565b613a13919061524f565b9050600060076000848152602001908152602001600020549050818114613af8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b7d919061524f565b9050600060096000848152602001908152602001600020549050600060088381548110613bad57613bac615513565b5b906000526020600020015490508060088381548110613bcf57613bce615513565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c1e57613c1d6154e4565b5b6001900381819060005260206000200160009055905550505050565b6000613c4583611c60565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d2090614e75565b60405180910390fd5b613d3281612eac565b15613d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6990614d35565b60405180910390fd5b613d7e600083836136a8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dce919061516e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ea69061537a565b90600052602060002090601f016020900481019282613ec85760008555613f0f565b82601f10613ee157805160ff1916838001178555613f0f565b82800160010185558215613f0f579182015b82811115613f0e578251825591602001919060010190613ef3565b5b509050613f1c9190613f20565b5090565b5b80821115613f39576000816000905550600101613f21565b5090565b6000613f50613f4b84615070565b61504b565b905082815260208101848484011115613f6c57613f6b615580565b5b613f77848285615338565b509392505050565b6000613f92613f8d846150a1565b61504b565b905082815260208101848484011115613fae57613fad615580565b5b613fb9848285615338565b509392505050565b600081359050613fd081615e07565b92915050565b60008083601f840112613fec57613feb615576565b5b8235905067ffffffffffffffff81111561400957614008615571565b5b6020830191508360208202830111156140255761402461557b565b5b9250929050565b60008083601f84011261404257614041615576565b5b8235905067ffffffffffffffff81111561405f5761405e615571565b5b60208301915083602082028301111561407b5761407a61557b565b5b9250929050565b60008135905061409181615e1e565b92915050565b6000813590506140a681615e35565b92915050565b6000815190506140bb81615e35565b92915050565b600082601f8301126140d6576140d5615576565b5b81356140e6848260208601613f3d565b91505092915050565b600082601f83011261410457614103615576565b5b8135614114848260208601613f7f565b91505092915050565b60008135905061412c81615e4c565b92915050565b6000602082840312156141485761414761558a565b5b600061415684828501613fc1565b91505092915050565b600080604083850312156141765761417561558a565b5b600061418485828601613fc1565b925050602061419585828601613fc1565b9150509250929050565b6000806000606084860312156141b8576141b761558a565b5b60006141c686828701613fc1565b93505060206141d786828701613fc1565b92505060406141e88682870161411d565b9150509250925092565b6000806000806080858703121561420c5761420b61558a565b5b600061421a87828801613fc1565b945050602061422b87828801613fc1565b935050604061423c8782880161411d565b925050606085013567ffffffffffffffff81111561425d5761425c615585565b5b614269878288016140c1565b91505092959194509250565b6000806040838503121561428c5761428b61558a565b5b600061429a85828601613fc1565b92505060206142ab85828601614082565b9150509250929050565b600080604083850312156142cc576142cb61558a565b5b60006142da85828601613fc1565b92505060206142eb8582860161411d565b9150509250929050565b6000806020838503121561430c5761430b61558a565b5b600083013567ffffffffffffffff81111561432a57614329615585565b5b61433685828601613fd6565b92509250509250929050565b6000806000806040858703121561435c5761435b61558a565b5b600085013567ffffffffffffffff81111561437a57614379615585565b5b61438687828801613fd6565b9450945050602085013567ffffffffffffffff8111156143a9576143a8615585565b5b6143b58782880161402c565b925092505092959194509250565b6000602082840312156143d9576143d861558a565b5b60006143e784828501614082565b91505092915050565b6000602082840312156144065761440561558a565b5b600061441484828501614097565b91505092915050565b6000602082840312156144335761443261558a565b5b6000614441848285016140ac565b91505092915050565b6000602082840312156144605761445f61558a565b5b600082013567ffffffffffffffff81111561447e5761447d615585565b5b61448a848285016140ef565b91505092915050565b6000602082840312156144a9576144a861558a565b5b60006144b78482850161411d565b91505092915050565b60006144cc8383614af9565b60208301905092915050565b6144e1816152b7565b82525050565b60006144f2826150f7565b6144fc8185615125565b9350614507836150d2565b8060005b8381101561453857815161451f88826144c0565b975061452a83615118565b92505060018101905061450b565b5085935050505092915050565b61454e816152c9565b82525050565b600061455f82615102565b6145698185615136565b9350614579818560208601615347565b6145828161558f565b840191505092915050565b60006145988261510d565b6145a28185615152565b93506145b2818560208601615347565b6145bb8161558f565b840191505092915050565b60006145d18261510d565b6145db8185615163565b93506145eb818560208601615347565b80840191505092915050565b600081546146048161537a565b61460e8186615163565b94506001821660008114614629576001811461463a5761466d565b60ff1983168652818601935061466d565b614643856150e2565b60005b8381101561466557815481890152600182019150602081019050614646565b838801955050505b50505092915050565b6000614683600583615163565b915061468e826155a0565b600582019050919050565b60006146a6605183615152565b91506146b1826155c9565b606082019050919050565b60006146c9602b83615152565b91506146d48261563e565b604082019050919050565b60006146ec603283615152565b91506146f78261568d565b604082019050919050565b600061470f602683615152565b915061471a826156dc565b604082019050919050565b6000614732601c83615152565b915061473d8261572b565b602082019050919050565b6000614755602583615152565b915061476082615754565b604082019050919050565b6000614778602483615152565b9150614783826157a3565b604082019050919050565b600061479b601983615152565b91506147a6826157f2565b602082019050919050565b60006147be600983615163565b91506147c98261581b565b600982019050919050565b60006147e1600c83615163565b91506147ec82615844565b600c82019050919050565b6000614804602c83615152565b915061480f8261586d565b604082019050919050565b6000614827602083615152565b9150614832826158bc565b602082019050919050565b600061484a603883615152565b9150614855826158e5565b604082019050919050565b600061486d600183615163565b915061487882615934565b600182019050919050565b6000614890602f83615152565b915061489b8261595d565b604082019050919050565b60006148b3602a83615152565b91506148be826159ac565b604082019050919050565b60006148d6602983615152565b91506148e1826159fb565b604082019050919050565b60006148f9602083615152565b915061490482615a4a565b602082019050919050565b600061491c601c83615152565b915061492782615a73565b602082019050919050565b600061493f602c83615152565b915061494a82615a9c565b604082019050919050565b6000614962602683615163565b915061496d82615aeb565b602682019050919050565b6000614985602983615152565b915061499082615b3a565b604082019050919050565b60006149a8602083615152565b91506149b382615b89565b602082019050919050565b60006149cb602983615152565b91506149d682615bb2565b604082019050919050565b60006149ee602f83615152565b91506149f982615c01565b604082019050919050565b6000614a11605683615152565b9150614a1c82615c50565b606082019050919050565b6000614a34602183615152565b9150614a3f82615cc5565b604082019050919050565b6000614a57601d83615152565b9150614a6282615d14565b602082019050919050565b6000614a7a600083615147565b9150614a8582615d3d565b600082019050919050565b6000614a9d603183615152565b9150614aa882615d40565b604082019050919050565b6000614ac0602c83615152565b9150614acb82615d8f565b604082019050919050565b6000614ae3601883615152565b9150614aee82615dde565b602082019050919050565b614b0281615321565b82525050565b614b1181615321565b82525050565b614b208161532b565b82525050565b6000614b3282846145c6565b915081905092915050565b6000614b4982866145c6565b9150614b5582856145c6565b9150614b6182846145f7565b9150819050949350505050565b6000614b7982614676565b9150819050919050565b6000614b8e826147b1565b9150819050919050565b6000614ba3826147d4565b9150819050919050565b6000614bb882614955565b9150614bc482846145c6565b9150614bcf82614860565b915081905092915050565b6000614be582614a6d565b9150819050919050565b6000602082019050614c0460008301846144d8565b92915050565b6000608082019050614c1f60008301876144d8565b614c2c60208301866144d8565b614c396040830185614b08565b8181036060830152614c4b8184614554565b905095945050505050565b60006020820190508181036000830152614c7081846144e7565b905092915050565b6000602082019050614c8d6000830184614545565b92915050565b60006020820190508181036000830152614cad818461458d565b905092915050565b60006020820190508181036000830152614cce81614699565b9050919050565b60006020820190508181036000830152614cee816146bc565b9050919050565b60006020820190508181036000830152614d0e816146df565b9050919050565b60006020820190508181036000830152614d2e81614702565b9050919050565b60006020820190508181036000830152614d4e81614725565b9050919050565b60006020820190508181036000830152614d6e81614748565b9050919050565b60006020820190508181036000830152614d8e8161476b565b9050919050565b60006020820190508181036000830152614dae8161478e565b9050919050565b60006020820190508181036000830152614dce816147f7565b9050919050565b60006020820190508181036000830152614dee8161481a565b9050919050565b60006020820190508181036000830152614e0e8161483d565b9050919050565b60006020820190508181036000830152614e2e81614883565b9050919050565b60006020820190508181036000830152614e4e816148a6565b9050919050565b60006020820190508181036000830152614e6e816148c9565b9050919050565b60006020820190508181036000830152614e8e816148ec565b9050919050565b60006020820190508181036000830152614eae8161490f565b9050919050565b60006020820190508181036000830152614ece81614932565b9050919050565b60006020820190508181036000830152614eee81614978565b9050919050565b60006020820190508181036000830152614f0e8161499b565b9050919050565b60006020820190508181036000830152614f2e816149be565b9050919050565b60006020820190508181036000830152614f4e816149e1565b9050919050565b60006020820190508181036000830152614f6e81614a04565b9050919050565b60006020820190508181036000830152614f8e81614a27565b9050919050565b60006020820190508181036000830152614fae81614a4a565b9050919050565b60006020820190508181036000830152614fce81614a90565b9050919050565b60006020820190508181036000830152614fee81614ab3565b9050919050565b6000602082019050818103600083015261500e81614ad6565b9050919050565b600060208201905061502a6000830184614b08565b92915050565b60006020820190506150456000830184614b17565b92915050565b6000615055615066565b905061506182826153ac565b919050565b6000604051905090565b600067ffffffffffffffff82111561508b5761508a615542565b5b6150948261558f565b9050602081019050919050565b600067ffffffffffffffff8211156150bc576150bb615542565b5b6150c58261558f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061517982615321565b915061518483615321565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151b9576151b8615457565b5b828201905092915050565b60006151cf82615321565b91506151da83615321565b9250826151ea576151e9615486565b5b828204905092915050565b600061520082615321565b915061520b83615321565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561524457615243615457565b5b828202905092915050565b600061525a82615321565b915061526583615321565b92508282101561527857615277615457565b5b828203905092915050565b600061528e8261532b565b91506152998361532b565b9250828210156152ac576152ab615457565b5b828203905092915050565b60006152c282615301565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561536557808201518184015260208101905061534a565b83811115615374576000848401525b50505050565b6000600282049050600182168061539257607f821691505b602082108114156153a6576153a56154b5565b5b50919050565b6153b58261558f565b810181811067ffffffffffffffff821117156153d4576153d3615542565b5b80604052505050565b60006153e882615321565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541b5761541a615457565b5b600182019050919050565b600061543182615321565b915061543c83615321565b92508261544c5761544b615486565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6f776e6572000000000000000000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420616c6c6f77656420746f206d696e742c206f722060008201527f796f752061726520747279696e6720746f206d696e74206d6f7265207468616e60208201527f20796f752061726520616c6c6f7765642e000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5068617365203120726577617264206d696e74696e67206973206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f77686974656c6973740000000000000000000000000000000000000000000000600082015250565b7f7068617365317265776172640000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206e6f74206163746976652e600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2e00000000000000000000000000000000000000000000000000000000000000600082015250565b7f596f75722077616c6c657420646f6573206e6f74206861766520656e6f75676860008201527f20657468657220746f206d696e742e0000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e6572206d696e74696e67206973206e6f74206163746976652e00000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420616c6c6f77656420746f206d696e74206d6f726560008201527f207468616e200000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620417065732e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f536f7272792c20796f7520617265206e6f74206f6e207468652070686173652060008201527f3120726577617264206c697374206f7220796f75206861766520616c7265616460208201527f7920636c61696d656420796f7572207265776172642e00000000000000000000604082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74696e67206973206e6f74206163746976652e000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f75206861766520746f206d696e7420616e20417065210000000000000000600082015250565b615e10816152b7565b8114615e1b57600080fd5b50565b615e27816152c9565b8114615e3257600080fd5b50565b615e3e816152d5565b8114615e4957600080fd5b50565b615e5581615321565b8114615e6057600080fd5b5056fea2646970667358221220553d177afeb0426eeec19f309c9d9264370bcb5288b34b94c2d0bb6795abb9bc64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b4772616e64706141706573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000247410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e63443631416b43386e6b64626a336e3970726673446d6437387837506678576f50464574343368616136782f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d623671624a5952694251503775677648334e4e4e347637734e346e356e31776a4c414376536a4a7833504b6f2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80635c975abb11610175578063b88d4fde116100dc578063dc311e7911610095578063e985e9c51161006f578063e985e9c514610aa8578063f19e75d414610ae5578063f2c4ce1e14610b0e578063f2fde38b14610b37576102c9565b8063dc311e7914610a19578063def8727214610a42578063e394655614610a7f576102c9565b8063b88d4fde14610909578063c668286214610932578063c87b56dd1461095d578063d5abeb011461099a578063d7209fb3146109c5578063da3ef23f146109f0576102c9565b806394b9df021161012e57806394b9df021461081a57806395d89b4114610857578063a0712d6814610882578063a22cb4651461089e578063a475b5dd146108c7578063aabe92e9146108de576102c9565b80635c975abb1461070a5780636352211e1461073557806370a0823114610772578063715018a6146107af5780637f00c7a6146107c65780638da5cb5b146107ef576102c9565b8063269021431161023457806344a0d68a116101ed5780634f6ccce7116101c75780634f6ccce71461063c578063518302271461067957806355f804b3146106a4578063586a86fc146106cd576102c9565b806344a0d68a146105ce5780634618163e146105f75780634ac8456914610613576102c9565b806326902143146104ee5780632f745c59146105175780633ccfd60b146105545780633f8350701461055e57806342842e0e14610568578063438b630014610591576102c9565b8063095ea7b311610286578063095ea7b3146103f257806313faede61461041b57806318160ddd146104465780631a3e232814610471578063239c70ae1461049a57806323b872dd146104c5576102c9565b80630177f58e146102ce57806301ffc9a7146102f957806302329a291461033657806306fdde031461035f578063081812fc1461038a578063081c8c44146103c7575b600080fd5b3480156102da57600080fd5b506102e3610b60565b6040516102f09190614c78565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b91906143f0565b610b73565b60405161032d9190614c78565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906143c3565b610bed565b005b34801561036b57600080fd5b50610374610c86565b6040516103819190614c93565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190614493565b610d18565b6040516103be9190614bef565b60405180910390f35b3480156103d357600080fd5b506103dc610d9d565b6040516103e99190614c93565b60405180910390f35b3480156103fe57600080fd5b50610419600480360381019061041491906142b5565b610e2b565b005b34801561042757600080fd5b50610430610f43565b60405161043d9190615015565b60405180910390f35b34801561045257600080fd5b5061045b610f49565b6040516104689190615015565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906143c3565b610f56565b005b3480156104a657600080fd5b506104af610fef565b6040516104bc9190615015565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e7919061419f565b610ff5565b005b3480156104fa57600080fd5b50610515600480360381019061051091906142f5565b611055565b005b34801561052357600080fd5b5061053e600480360381019061053991906142b5565b611176565b60405161054b9190615015565b60405180910390f35b61055c61121b565b005b610566611317565b005b34801561057457600080fd5b5061058f600480360381019061058a919061419f565b6114c0565b005b34801561059d57600080fd5b506105b860048036038101906105b39190614132565b6114e0565b6040516105c59190614c56565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f09190614493565b61158e565b005b610611600480360381019061060c9190614493565b611614565b005b34801561061f57600080fd5b5061063a600480360381019061063591906143c3565b611992565b005b34801561064857600080fd5b50610663600480360381019061065e9190614493565b611a2b565b6040516106709190615015565b60405180910390f35b34801561068557600080fd5b5061068e611a9c565b60405161069b9190614c78565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061444a565b611aaf565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190614132565b611b45565b6040516107019190614c78565b60405180910390f35b34801561071657600080fd5b5061071f611b9b565b60405161072c9190614c78565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190614493565b611bae565b6040516107699190614bef565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190614132565b611c60565b6040516107a69190615015565b60405180910390f35b3480156107bb57600080fd5b506107c4611d18565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190614493565b611da0565b005b3480156107fb57600080fd5b50610804611e26565b6040516108119190614bef565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061444a565b611e50565b60405161084e9190614c78565b60405180910390f35b34801561086357600080fd5b5061086c611fe1565b6040516108799190614c93565b60405180910390f35b61089c60048036038101906108979190614493565b612073565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190614275565b6122a2565b005b3480156108d357600080fd5b506108dc612423565b005b3480156108ea57600080fd5b506108f36124bc565b6040516109009190614c78565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b91906141f2565b6124cf565b005b34801561093e57600080fd5b50610947612531565b6040516109549190614c93565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190614493565b6125bf565b6040516109919190614c93565b60405180910390f35b3480156109a657600080fd5b506109af612718565b6040516109bc9190615015565b60405180910390f35b3480156109d157600080fd5b506109da61271e565b6040516109e79190614c78565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a12919061444a565b612731565b005b348015610a2557600080fd5b50610a406004803603810190610a3b91906143c3565b6127c7565b005b348015610a4e57600080fd5b50610a696004803603810190610a649190614132565b612860565b604051610a769190615030565b60405180910390f35b348015610a8b57600080fd5b50610aa66004803603810190610aa19190614342565b6128b6565b005b348015610ab457600080fd5b50610acf6004803603810190610aca919061415f565b6129f2565b604051610adc9190614c78565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190614493565b612a86565b005b348015610b1a57600080fd5b50610b356004803603810190610b30919061444a565b612c34565b005b348015610b4357600080fd5b50610b5e6004803603810190610b599190614132565b612cca565b005b601060029054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610be65750610be582612dc2565b5b9050919050565b610bf5612ea4565b73ffffffffffffffffffffffffffffffffffffffff16610c13611e26565b73ffffffffffffffffffffffffffffffffffffffff1614610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090614ef5565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610c959061537a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc19061537a565b8015610d0e5780601f10610ce357610100808354040283529160200191610d0e565b820191906000526020600020905b815481529060010190602001808311610cf157829003601f168201915b5050505050905090565b6000610d2382612eac565b610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614eb5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60148054610daa9061537a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd69061537a565b8015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b505050505081565b6000610e3682611bae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90614f75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec6612ea4565b73ffffffffffffffffffffffffffffffffffffffff161480610ef55750610ef481610eef612ea4565b6129f2565b5b610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90614df5565b60405180910390fd5b610f3e8383612f18565b505050565b600d5481565b6000600880549050905090565b610f5e612ea4565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611e26565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990614ef5565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b600f5481565b611006611000612ea4565b82612fd1565b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90614fb5565b60405180910390fd5b6110508383836130af565b505050565b61105d612ea4565b73ffffffffffffffffffffffffffffffffffffffff1661107b611e26565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890614ef5565b60405180910390fd5b60005b82829050811015611171576001601160008585858181106110f8576110f7615513565b5b905060200201602081019061110d9190614132565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611169906153dd565b9150506110d4565b505050565b600061118183611c60565b82106111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990614cd5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611223612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611241611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614ef5565b60405180910390fd5b60006112a1611e26565b73ffffffffffffffffffffffffffffffffffffffff16476040516112c490614bda565b60006040518083038185875af1925050503d8060008114611301576040519150601f19603f3d011682016040523d82523d6000602084013e611306565b606091505b505090508061131457600080fd5b50565b6000611321610f49565b9050601060019054906101000a900460ff1615611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90614d55565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690614f55565b60405180910390fd5b600e5460018261140f919061516e565b1115611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614ed5565b60405180910390fd5b6000600d8190555061146e33600183611469919061516e565b61330b565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b6114db838383604051806020016040528060008152506124cf565b505050565b606060006114ed83611c60565b905060008167ffffffffffffffff81111561150b5761150a615542565b5b6040519080825280602002602001820160405280156115395781602001602082028036833780820191505090505b50905060005b82811015611583576115518582611176565b82828151811061156457611563615513565b5b602002602001018181525050808061157b906153dd565b91505061153f565b508092505050919050565b611596612ea4565b73ffffffffffffffffffffffffffffffffffffffff166115b4611e26565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614ef5565b60405180910390fd5b80600d8190555050565b600061161e610f49565b905066b1a2bc2ec50000600d819055506032600f81905550601060029054906101000a900460ff1615611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614dd5565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16821115611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90614cb5565b60405180910390fd5b6000821161175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614ff5565b60405180910390fd5b600f5482111561176c600f54613329565b60405160200161177c9190614bad565b604051602081830303815290604052906117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39190614c93565b60405180910390fd5b50600e5482826117dc919061516e565b111561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614ed5565b60405180910390fd5b611825611e26565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118a85781600d5461186591906151f5565b3410156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614e15565b60405180910390fd5b5b6000600190505b8281116118de576118cb3382846118c6919061516e565b61330b565b80806118d6906153dd565b9150506118af565b5081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119379190615283565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b61199a612ea4565b73ffffffffffffffffffffffffffffffffffffffff166119b8611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614ef5565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6000611a35610f49565b8210611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90614fd5565b60405180910390fd5b60088281548110611a8a57611a89615513565b5b90600052602060002001549050919050565b601360009054906101000a900460ff1681565b611ab7612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611ad5611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614ef5565b60405180910390fd5b80600b9080519060200190611b41929190613e9a565b5050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90614e55565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890614e35565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d20612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611d3e611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90614ef5565b60405180910390fd5b611d9e600061348a565b565b611da8612ea4565b73ffffffffffffffffffffffffffffffffffffffff16611dc6611e26565b73ffffffffffffffffffffffffffffffffffffffff1614611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1390614ef5565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051602001611e6190614b98565b6040516020818303038152906040528051906020012082604051602001611e889190614b26565b604051602081830303815290604052805190602001201415611eca57601060019054906101000a900460ff16611ec15760019050611fdc565b60009050611fdc565b604051602001611ed990614b83565b6040516020818303038152906040528051906020012082604051602001611f009190614b26565b604051602081830303815290604052805190602001201415611f4257601060029054906101000a900460ff16611f395760019050611fdc565b60009050611fdc565b604051602001611f5190614b6e565b6040516020818303038152906040528051906020012082604051602001611f789190614b26565b604051602081830303815290604052805190602001201415611fba57601060039054906101000a900460ff16611fb15760019050611fdc565b60009050611fdc565b601060009054906101000a900460ff16611fd75760019050611fdc565b600090505b919050565b606060018054611ff09061537a565b80601f016020809104026020016040519081016040528092919081815260200182805461201c9061537a565b80156120695780601f1061203e57610100808354040283529160200191612069565b820191906000526020600020905b81548152906001019060200180831161204c57829003601f168201915b5050505050905090565b600061207d610f49565b90506005600f81905550601060009054906101000a900460ff16156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614f95565b60405180910390fd5b6000821161211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614ff5565b60405180910390fd5b600f5482111561212b600f54613329565b60405160200161213b9190614bad565b6040516020818303038152906040529061218b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121829190614c93565b60405180910390fd5b50600e54828261219b919061516e565b11156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614ed5565b60405180910390fd5b6121e4611e26565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122675781600d5461222491906151f5565b341015612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90614e15565b60405180910390fd5b5b6000600190505b82811161229d5761228a338284612285919061516e565b61330b565b8080612295906153dd565b91505061226e565b505050565b6122aa612ea4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90614d95565b60405180910390fd5b8060056000612325612ea4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123d2612ea4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124179190614c78565b60405180910390a35050565b61242b612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612449611e26565b73ffffffffffffffffffffffffffffffffffffffff161461249f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249690614ef5565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b601060019054906101000a900460ff1681565b6124e06124da612ea4565b83612fd1565b61251f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251690614fb5565b60405180910390fd5b61252b84848484613550565b50505050565b600c805461253e9061537a565b80601f016020809104026020016040519081016040528092919081815260200182805461256a9061537a565b80156125b75780601f1061258c576101008083540402835291602001916125b7565b820191906000526020600020905b81548152906001019060200180831161259a57829003601f168201915b505050505081565b60606125ca82612eac565b612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614f35565b60405180910390fd5b60001515601360009054906101000a900460ff16151514156126b757601480546126329061537a565b80601f016020809104026020016040519081016040528092919081815260200182805461265e9061537a565b80156126ab5780601f10612680576101008083540402835291602001916126ab565b820191906000526020600020905b81548152906001019060200180831161268e57829003601f168201915b50505050509050612713565b60006126c16135ac565b905060008151116126e1576040518060200160405280600081525061270f565b806126eb84613329565b600c6040516020016126ff93929190614b3d565b6040516020818303038152906040525b9150505b919050565b600e5481565b601060039054906101000a900460ff1681565b612739612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612757611e26565b73ffffffffffffffffffffffffffffffffffffffff16146127ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a490614ef5565b60405180910390fd5b80600c90805190602001906127c3929190613e9a565b5050565b6127cf612ea4565b73ffffffffffffffffffffffffffffffffffffffff166127ed611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a90614ef5565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6128be612ea4565b73ffffffffffffffffffffffffffffffffffffffff166128dc611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614ef5565b60405180910390fd5b60005b848490508110156129eb5782828281811061295357612952615513565b5b905060200201356012600087878581811061297157612970615513565b5b90506020020160208101906129869190614132565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806129e3906153dd565b915050612935565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a8e612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612aac611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990614ef5565b60405180910390fd5b6000612b0c610f49565b9050601060039054906101000a900460ff1615612b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5590614e95565b60405180910390fd5b60008211612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9890614ff5565b60405180910390fd5b600e548282612bb0919061516e565b1115612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be890614ed5565b60405180910390fd5b6000600d819055506000600190505b828111612c2f57612c1c338284612c17919061516e565b61330b565b8080612c27906153dd565b915050612c00565b505050565b612c3c612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612c5a611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790614ef5565b60405180910390fd5b8060149080519060200190612cc6929190613e9a565b5050565b612cd2612ea4565b73ffffffffffffffffffffffffffffffffffffffff16612cf0611e26565b73ffffffffffffffffffffffffffffffffffffffff1614612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90614ef5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad90614d15565b60405180910390fd5b612dbf8161348a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e9d5750612e9c8261363e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f8b83611bae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612fdc82612eac565b61301b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301290614db5565b60405180910390fd5b600061302683611bae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061309557508373ffffffffffffffffffffffffffffffffffffffff1661307d84610d18565b73ffffffffffffffffffffffffffffffffffffffff16145b806130a657506130a581856129f2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130cf82611bae565b73ffffffffffffffffffffffffffffffffffffffff1614613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311c90614f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318c90614d75565b60405180910390fd5b6131a08383836136a8565b6131ab600082612f18565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131fb919061524f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613252919061516e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6133258282604051806020016040528060008152506137bc565b5050565b60606000821415613371576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613485565b600082905060005b600082146133a357808061338c906153dd565b915050600a8261339c91906151c4565b9150613379565b60008167ffffffffffffffff8111156133bf576133be615542565b5b6040519080825280601f01601f1916602001820160405280156133f15781602001600182028036833780820191505090505b5090505b6000851461347e5760018261340a919061524f565b9150600a856134199190615426565b6030613425919061516e565b60f81b81838151811061343b5761343a615513565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561347791906151c4565b94506133f5565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61355b8484846130af565b61356784848484613817565b6135a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359d90614cf5565b60405180910390fd5b50505050565b6060600b80546135bb9061537a565b80601f01602080910402602001604051908101604052809291908181526020018280546135e79061537a565b80156136345780601f1061360957610100808354040283529160200191613634565b820191906000526020600020905b81548152906001019060200180831161361757829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136b38383836139ae565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136f6576136f1816139b3565b613735565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137345761373383826139fc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137785761377381613b69565b6137b7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137b6576137b58282613c3a565b5b5b505050565b6137c68383613cb9565b6137d36000848484613817565b613812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380990614cf5565b60405180910390fd5b505050565b60006138388473ffffffffffffffffffffffffffffffffffffffff16613e87565b156139a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613861612ea4565b8786866040518563ffffffff1660e01b81526004016138839493929190614c0a565b602060405180830381600087803b15801561389d57600080fd5b505af19250505080156138ce57506040513d601f19601f820116820180604052508101906138cb919061441d565b60015b613951573d80600081146138fe576040519150601f19603f3d011682016040523d82523d6000602084013e613903565b606091505b50600081511415613949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394090614cf5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139a6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a0984611c60565b613a13919061524f565b9050600060076000848152602001908152602001600020549050818114613af8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b7d919061524f565b9050600060096000848152602001908152602001600020549050600060088381548110613bad57613bac615513565b5b906000526020600020015490508060088381548110613bcf57613bce615513565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c1e57613c1d6154e4565b5b6001900381819060005260206000200160009055905550505050565b6000613c4583611c60565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d2090614e75565b60405180910390fd5b613d3281612eac565b15613d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6990614d35565b60405180910390fd5b613d7e600083836136a8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dce919061516e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ea69061537a565b90600052602060002090601f016020900481019282613ec85760008555613f0f565b82601f10613ee157805160ff1916838001178555613f0f565b82800160010185558215613f0f579182015b82811115613f0e578251825591602001919060010190613ef3565b5b509050613f1c9190613f20565b5090565b5b80821115613f39576000816000905550600101613f21565b5090565b6000613f50613f4b84615070565b61504b565b905082815260208101848484011115613f6c57613f6b615580565b5b613f77848285615338565b509392505050565b6000613f92613f8d846150a1565b61504b565b905082815260208101848484011115613fae57613fad615580565b5b613fb9848285615338565b509392505050565b600081359050613fd081615e07565b92915050565b60008083601f840112613fec57613feb615576565b5b8235905067ffffffffffffffff81111561400957614008615571565b5b6020830191508360208202830111156140255761402461557b565b5b9250929050565b60008083601f84011261404257614041615576565b5b8235905067ffffffffffffffff81111561405f5761405e615571565b5b60208301915083602082028301111561407b5761407a61557b565b5b9250929050565b60008135905061409181615e1e565b92915050565b6000813590506140a681615e35565b92915050565b6000815190506140bb81615e35565b92915050565b600082601f8301126140d6576140d5615576565b5b81356140e6848260208601613f3d565b91505092915050565b600082601f83011261410457614103615576565b5b8135614114848260208601613f7f565b91505092915050565b60008135905061412c81615e4c565b92915050565b6000602082840312156141485761414761558a565b5b600061415684828501613fc1565b91505092915050565b600080604083850312156141765761417561558a565b5b600061418485828601613fc1565b925050602061419585828601613fc1565b9150509250929050565b6000806000606084860312156141b8576141b761558a565b5b60006141c686828701613fc1565b93505060206141d786828701613fc1565b92505060406141e88682870161411d565b9150509250925092565b6000806000806080858703121561420c5761420b61558a565b5b600061421a87828801613fc1565b945050602061422b87828801613fc1565b935050604061423c8782880161411d565b925050606085013567ffffffffffffffff81111561425d5761425c615585565b5b614269878288016140c1565b91505092959194509250565b6000806040838503121561428c5761428b61558a565b5b600061429a85828601613fc1565b92505060206142ab85828601614082565b9150509250929050565b600080604083850312156142cc576142cb61558a565b5b60006142da85828601613fc1565b92505060206142eb8582860161411d565b9150509250929050565b6000806020838503121561430c5761430b61558a565b5b600083013567ffffffffffffffff81111561432a57614329615585565b5b61433685828601613fd6565b92509250509250929050565b6000806000806040858703121561435c5761435b61558a565b5b600085013567ffffffffffffffff81111561437a57614379615585565b5b61438687828801613fd6565b9450945050602085013567ffffffffffffffff8111156143a9576143a8615585565b5b6143b58782880161402c565b925092505092959194509250565b6000602082840312156143d9576143d861558a565b5b60006143e784828501614082565b91505092915050565b6000602082840312156144065761440561558a565b5b600061441484828501614097565b91505092915050565b6000602082840312156144335761443261558a565b5b6000614441848285016140ac565b91505092915050565b6000602082840312156144605761445f61558a565b5b600082013567ffffffffffffffff81111561447e5761447d615585565b5b61448a848285016140ef565b91505092915050565b6000602082840312156144a9576144a861558a565b5b60006144b78482850161411d565b91505092915050565b60006144cc8383614af9565b60208301905092915050565b6144e1816152b7565b82525050565b60006144f2826150f7565b6144fc8185615125565b9350614507836150d2565b8060005b8381101561453857815161451f88826144c0565b975061452a83615118565b92505060018101905061450b565b5085935050505092915050565b61454e816152c9565b82525050565b600061455f82615102565b6145698185615136565b9350614579818560208601615347565b6145828161558f565b840191505092915050565b60006145988261510d565b6145a28185615152565b93506145b2818560208601615347565b6145bb8161558f565b840191505092915050565b60006145d18261510d565b6145db8185615163565b93506145eb818560208601615347565b80840191505092915050565b600081546146048161537a565b61460e8186615163565b94506001821660008114614629576001811461463a5761466d565b60ff1983168652818601935061466d565b614643856150e2565b60005b8381101561466557815481890152600182019150602081019050614646565b838801955050505b50505092915050565b6000614683600583615163565b915061468e826155a0565b600582019050919050565b60006146a6605183615152565b91506146b1826155c9565b606082019050919050565b60006146c9602b83615152565b91506146d48261563e565b604082019050919050565b60006146ec603283615152565b91506146f78261568d565b604082019050919050565b600061470f602683615152565b915061471a826156dc565b604082019050919050565b6000614732601c83615152565b915061473d8261572b565b602082019050919050565b6000614755602583615152565b915061476082615754565b604082019050919050565b6000614778602483615152565b9150614783826157a3565b604082019050919050565b600061479b601983615152565b91506147a6826157f2565b602082019050919050565b60006147be600983615163565b91506147c98261581b565b600982019050919050565b60006147e1600c83615163565b91506147ec82615844565b600c82019050919050565b6000614804602c83615152565b915061480f8261586d565b604082019050919050565b6000614827602083615152565b9150614832826158bc565b602082019050919050565b600061484a603883615152565b9150614855826158e5565b604082019050919050565b600061486d600183615163565b915061487882615934565b600182019050919050565b6000614890602f83615152565b915061489b8261595d565b604082019050919050565b60006148b3602a83615152565b91506148be826159ac565b604082019050919050565b60006148d6602983615152565b91506148e1826159fb565b604082019050919050565b60006148f9602083615152565b915061490482615a4a565b602082019050919050565b600061491c601c83615152565b915061492782615a73565b602082019050919050565b600061493f602c83615152565b915061494a82615a9c565b604082019050919050565b6000614962602683615163565b915061496d82615aeb565b602682019050919050565b6000614985602983615152565b915061499082615b3a565b604082019050919050565b60006149a8602083615152565b91506149b382615b89565b602082019050919050565b60006149cb602983615152565b91506149d682615bb2565b604082019050919050565b60006149ee602f83615152565b91506149f982615c01565b604082019050919050565b6000614a11605683615152565b9150614a1c82615c50565b606082019050919050565b6000614a34602183615152565b9150614a3f82615cc5565b604082019050919050565b6000614a57601d83615152565b9150614a6282615d14565b602082019050919050565b6000614a7a600083615147565b9150614a8582615d3d565b600082019050919050565b6000614a9d603183615152565b9150614aa882615d40565b604082019050919050565b6000614ac0602c83615152565b9150614acb82615d8f565b604082019050919050565b6000614ae3601883615152565b9150614aee82615dde565b602082019050919050565b614b0281615321565b82525050565b614b1181615321565b82525050565b614b208161532b565b82525050565b6000614b3282846145c6565b915081905092915050565b6000614b4982866145c6565b9150614b5582856145c6565b9150614b6182846145f7565b9150819050949350505050565b6000614b7982614676565b9150819050919050565b6000614b8e826147b1565b9150819050919050565b6000614ba3826147d4565b9150819050919050565b6000614bb882614955565b9150614bc482846145c6565b9150614bcf82614860565b915081905092915050565b6000614be582614a6d565b9150819050919050565b6000602082019050614c0460008301846144d8565b92915050565b6000608082019050614c1f60008301876144d8565b614c2c60208301866144d8565b614c396040830185614b08565b8181036060830152614c4b8184614554565b905095945050505050565b60006020820190508181036000830152614c7081846144e7565b905092915050565b6000602082019050614c8d6000830184614545565b92915050565b60006020820190508181036000830152614cad818461458d565b905092915050565b60006020820190508181036000830152614cce81614699565b9050919050565b60006020820190508181036000830152614cee816146bc565b9050919050565b60006020820190508181036000830152614d0e816146df565b9050919050565b60006020820190508181036000830152614d2e81614702565b9050919050565b60006020820190508181036000830152614d4e81614725565b9050919050565b60006020820190508181036000830152614d6e81614748565b9050919050565b60006020820190508181036000830152614d8e8161476b565b9050919050565b60006020820190508181036000830152614dae8161478e565b9050919050565b60006020820190508181036000830152614dce816147f7565b9050919050565b60006020820190508181036000830152614dee8161481a565b9050919050565b60006020820190508181036000830152614e0e8161483d565b9050919050565b60006020820190508181036000830152614e2e81614883565b9050919050565b60006020820190508181036000830152614e4e816148a6565b9050919050565b60006020820190508181036000830152614e6e816148c9565b9050919050565b60006020820190508181036000830152614e8e816148ec565b9050919050565b60006020820190508181036000830152614eae8161490f565b9050919050565b60006020820190508181036000830152614ece81614932565b9050919050565b60006020820190508181036000830152614eee81614978565b9050919050565b60006020820190508181036000830152614f0e8161499b565b9050919050565b60006020820190508181036000830152614f2e816149be565b9050919050565b60006020820190508181036000830152614f4e816149e1565b9050919050565b60006020820190508181036000830152614f6e81614a04565b9050919050565b60006020820190508181036000830152614f8e81614a27565b9050919050565b60006020820190508181036000830152614fae81614a4a565b9050919050565b60006020820190508181036000830152614fce81614a90565b9050919050565b60006020820190508181036000830152614fee81614ab3565b9050919050565b6000602082019050818103600083015261500e81614ad6565b9050919050565b600060208201905061502a6000830184614b08565b92915050565b60006020820190506150456000830184614b17565b92915050565b6000615055615066565b905061506182826153ac565b919050565b6000604051905090565b600067ffffffffffffffff82111561508b5761508a615542565b5b6150948261558f565b9050602081019050919050565b600067ffffffffffffffff8211156150bc576150bb615542565b5b6150c58261558f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061517982615321565b915061518483615321565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151b9576151b8615457565b5b828201905092915050565b60006151cf82615321565b91506151da83615321565b9250826151ea576151e9615486565b5b828204905092915050565b600061520082615321565b915061520b83615321565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561524457615243615457565b5b828202905092915050565b600061525a82615321565b915061526583615321565b92508282101561527857615277615457565b5b828203905092915050565b600061528e8261532b565b91506152998361532b565b9250828210156152ac576152ab615457565b5b828203905092915050565b60006152c282615301565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561536557808201518184015260208101905061534a565b83811115615374576000848401525b50505050565b6000600282049050600182168061539257607f821691505b602082108114156153a6576153a56154b5565b5b50919050565b6153b58261558f565b810181811067ffffffffffffffff821117156153d4576153d3615542565b5b80604052505050565b60006153e882615321565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541b5761541a615457565b5b600182019050919050565b600061543182615321565b915061543c83615321565b92508261544c5761544b615486565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6f776e6572000000000000000000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420616c6c6f77656420746f206d696e742c206f722060008201527f796f752061726520747279696e6720746f206d696e74206d6f7265207468616e60208201527f20796f752061726520616c6c6f7765642e000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5068617365203120726577617264206d696e74696e67206973206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f77686974656c6973740000000000000000000000000000000000000000000000600082015250565b7f7068617365317265776172640000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206e6f74206163746976652e600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2e00000000000000000000000000000000000000000000000000000000000000600082015250565b7f596f75722077616c6c657420646f6573206e6f74206861766520656e6f75676860008201527f20657468657220746f206d696e742e0000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e6572206d696e74696e67206973206e6f74206163746976652e00000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420616c6c6f77656420746f206d696e74206d6f726560008201527f207468616e200000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620417065732e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f536f7272792c20796f7520617265206e6f74206f6e207468652070686173652060008201527f3120726577617264206c697374206f7220796f75206861766520616c7265616460208201527f7920636c61696d656420796f7572207265776172642e00000000000000000000604082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74696e67206973206e6f74206163746976652e000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f75206861766520746f206d696e7420616e20417065210000000000000000600082015250565b615e10816152b7565b8114615e1b57600080fd5b50565b615e27816152c9565b8114615e3257600080fd5b50565b615e3e816152d5565b8114615e4957600080fd5b50565b615e5581615321565b8114615e6057600080fd5b5056fea2646970667358221220553d177afeb0426eeec19f309c9d9264370bcb5288b34b94c2d0bb6795abb9bc64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b4772616e64706141706573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000247410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e63443631416b43386e6b64626a336e3970726673446d6437387837506678576f50464574343368616136782f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d623671624a5952694251503775677648334e4e4e347637734e346e356e31776a4c414376536a4a7833504b6f2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): GrandpaApes
Arg [1] : _symbol (string): GA
Arg [2] : _initBaseURI (string): ipfs://QmNcD61AkC8nkdbj3n9prfsDmd78x7PfxWoPFEt43haa6x/
Arg [3] : _initNotRevealedUri (string): ipfs://Qmb6qbJYRiBQP7ugvH3NNN4v7sN4n5n1wjLACvSjJx3PKo/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4772616e64706141706573000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4741000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e63443631416b43386e6b64626a336e3970726673446d
Arg [10] : 6437387837506678576f50464574343368616136782f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d623671624a5952694251503775677648334e4e4e347637
Arg [13] : 734e346e356e31776a4c414376536a4a7833504b6f2f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43120:7293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43445:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34667:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49873:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22559:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24118:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43657:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23641:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43262:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35307:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50166:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43336:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25008:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44105:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34975:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50265:145;;;:::i;:::-;;44707:472;;;:::i;:::-;;25418:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48359:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49305:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45208:966;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50059:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35497:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43624:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49641:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48100:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43373:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22253:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21983:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42456:94;;;;;;;;;;;;;:::i;:::-;;49391:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41805:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47382:686;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22728:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46198:706;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24411:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49232:65;;;;;;;;;;;;;:::i;:::-;;43403:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25674:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43220:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48713:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43299:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43488:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49745:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49954:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48244:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44350:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24777:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46929:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49515:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42705:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43445:38;;;;;;;;;;;;;:::o;34667:224::-;34769:4;34808:35;34793:50;;;:11;:50;;;;:90;;;;34847:36;34871:11;34847:23;:36::i;:::-;34793:90;34786:97;;34667:224;;;:::o;49873:73::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49934:6:::1;49925;;:15;;;;;;;;;;;;;;;;;;49873:73:::0;:::o;22559:100::-;22613:13;22646:5;22639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22559:100;:::o;24118:221::-;24194:7;24222:16;24230:7;24222;:16::i;:::-;24214:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24307:15;:24;24323:7;24307:24;;;;;;;;;;;;;;;;;;;;;24300:31;;24118:221;;;:::o;43657:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23641:411::-;23722:13;23738:23;23753:7;23738:14;:23::i;:::-;23722:39;;23786:5;23780:11;;:2;:11;;;;23772:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23880:5;23864:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23889:37;23906:5;23913:12;:10;:12::i;:::-;23889:16;:37::i;:::-;23864:62;23842:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24023:21;24032:2;24036:7;24023:8;:21::i;:::-;23711:341;23641:411;;:::o;43262:32::-;;;;:::o;35307:113::-;35368:7;35395:10;:17;;;;35388:24;;35307:113;:::o;50166:88::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50242:6:::1;50228:11;;:20;;;;;;;;;;;;;;;;;;50166:88:::0;:::o;43336:32::-;;;;:::o;25008:339::-;25203:41;25222:12;:10;:12::i;:::-;25236:7;25203:18;:41::i;:::-;25195:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25311:28;25321:4;25327:2;25331:7;25311:9;:28::i;:::-;25008:339;;;:::o;44105:209::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44193:6:::1;44188:121;44209:16;;:23;;44205:1;:27;44188:121;;;44293:4;44254:15;:36;44270:16;;44287:1;44270:19;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;44254:36;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;44234:3;;;;;:::i;:::-;;;;44188:121;;;;44105:209:::0;;:::o;34975:256::-;35072:7;35108:23;35125:5;35108:16;:23::i;:::-;35100:5;:31;35092:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35197:12;:19;35210:5;35197:19;;;;;;;;;;;;;;;:26;35217:5;35197:26;;;;;;;;;;;;35190:33;;34975:256;;;;:::o;50265:145::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50318:7:::1;50339;:5;:7::i;:::-;50331:21;;50360;50331:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50317:69;;;50401:2;50393:11;;;::::0;::::1;;50310:100;50265:145::o:0;44707:472::-;44757:14;44774:13;:11;:13::i;:::-;44757:30;;44803:18;;;;;;;;;;;44802:19;44794:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44877:15;:27;44893:10;44877:27;;;;;;;;;;;;;;;;;;;;;;;;;44869:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;45023:9;;45018:1;45009:6;:10;;;;:::i;:::-;:23;;45001:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45088:7;45081:4;:14;;;;45102:33;45112:10;45133:1;45124:6;:10;;;;:::i;:::-;45102:9;:33::i;:::-;45146:15;:27;45162:10;45146:27;;;;;;;;;;;;;;;;45139:34;;;;;;;;;;;44750:429;44707:472::o;25418:185::-;25556:39;25573:4;25579:2;25583:7;25556:39;;;;;;;;;;;;:16;:39::i;:::-;25418:185;;;:::o;48359:348::-;48434:16;48462:23;48488:17;48498:6;48488:9;:17::i;:::-;48462:43;;48512:25;48554:15;48540:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48512:58;;48582:9;48577:103;48597:15;48593:1;:19;48577:103;;;48642:30;48662:6;48670:1;48642:19;:30::i;:::-;48628:8;48637:1;48628:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48614:3;;;;;:::i;:::-;;;;48577:103;;;;48693:8;48686:15;;;;48359:348;;;:::o;49305:80::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49371:8:::1;49364:4;:15;;;;49305:80:::0;:::o;45208:966::-;45274:14;45291:13;:11;:13::i;:::-;45274:30;;45315:10;45308:4;:17;;;;45345:2;45329:13;:18;;;;45363:19;;;;;;;;;;;45362:20;45354:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45448:9;:21;45458:10;45448:21;;;;;;;;;;;;;;;;;;;;;;;;;45433:36;;:11;:36;;45425:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;45583:1;45569:11;:15;45561:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;45642:13;;45627:11;:28;;45721:31;45738:13;;45721:16;:31::i;:::-;45663:94;;;;;;;;:::i;:::-;;;;;;;;;;;;;45619:140;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;45798:9;;45783:11;45774:6;:20;;;;:::i;:::-;:33;;45766:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;45877:7;:5;:7::i;:::-;45863:21;;:10;:21;;;45859:134;;45923:11;45916:4;;:18;;;;:::i;:::-;45903:9;:31;;45895:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;45859:134;46004:9;46016:1;46004:13;;45999:93;46024:11;46019:1;:16;45999:93;;46051:33;46061:10;46082:1;46073:6;:10;;;;:::i;:::-;46051:9;:33::i;:::-;46037:3;;;;;:::i;:::-;;;;45999:93;;;;46156:11;46125:9;:21;46135:10;46125:21;;;;;;;;;;;;;;;;;;;;;;;;;46119:49;;;;:::i;:::-;46095:9;:21;46105:10;46095:21;;;;;;;;;;;;;;;;:73;;;;;;;;;;;;;;;;;;45267:907;45208:966;:::o;50059:99::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50146:6:::1;50124:19;;:28;;;;;;;;;;;;;;;;;;50059:99:::0;:::o;35497:233::-;35572:7;35608:30;:28;:30::i;:::-;35600:5;:38;35592:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35705:10;35716:5;35705:17;;;;;;;;:::i;:::-;;;;;;;;;;35698:24;;35497:233;;;:::o;43624:28::-;;;;;;;;;;;;;:::o;49641:98::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49722:11:::1;49712:7;:21;;;;;;;;;;;;:::i;:::-;;49641:98:::0;:::o;48100:113::-;48163:4;48182:15;:25;48198:8;48182:25;;;;;;;;;;;;;;;;;;;;;;;;;48175:32;;48100:113;;;:::o;43373:25::-;;;;;;;;;;;;;:::o;22253:239::-;22325:7;22345:13;22361:7;:16;22369:7;22361:16;;;;;;;;;;;;;;;;;;;;;22345:32;;22413:1;22396:19;;:5;:19;;;;22388:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22479:5;22472:12;;;22253:239;;;:::o;21983:208::-;22055:7;22100:1;22083:19;;:5;:19;;;;22075:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22167:9;:16;22177:5;22167:16;;;;;;;;;;;;;;;;22160:23;;21983:208;;;:::o;42456:94::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42521:21:::1;42539:1;42521:9;:21::i;:::-;42456:94::o:0;49391:116::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49484:17:::1;49468:13;:33;;;;49391:116:::0;:::o;41805:87::-;41851:7;41878:6;;;;;;;;;;;41871:13;;41805:87;:::o;47382:686::-;47444:4;47512:32;;;;;;;:::i;:::-;;;;;;;;;;;;;47502:43;;;;;;47487:9;47470:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;47460:38;;;;;;:85;47456:607;;;47563:18;;;;;;;;;;;47558:66;;47592:4;47585:11;;;;47558:66;47616:5;47609:12;;;;47456:607;47696:29;;;;;;;:::i;:::-;;;;;;;;;;;;;47686:40;;;;;;47671:9;47654:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;47644:38;;;;;;:82;47640:423;;;47744:19;;;;;;;;;;;47739:67;;47774:4;47767:11;;;;47739:67;47798:5;47791:12;;;;47640:423;47878:25;;;;;;;:::i;:::-;;;;;;;;;;;;;47868:36;;;;;;47853:9;47836:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;47826:38;;;;;;:78;47822:241;;;47922:11;;;;;;;;;;;47917:59;;47944:4;47937:11;;;;47917:59;47968:5;47961:12;;;;47822:241;48008:6;;;;;;;;;;;48003:54;;48025:4;48018:11;;;;48003:54;48049:5;48042:12;;47382:686;;;;:::o;22728:104::-;22784:13;22817:7;22810:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22728:104;:::o;46198:706::-;46255:14;46272:13;:11;:13::i;:::-;46255:30;;46305:1;46289:13;:17;;;;46322:6;;;;;;;;;;;46321:7;46313:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;46390:1;46376:11;:15;46368:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;46449:13;;46434:11;:28;;46528:31;46545:13;;46528:16;:31::i;:::-;46470:94;;;;;;;;:::i;:::-;;;;;;;;;;;;;46426:140;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;46605:9;;46590:11;46581:6;:20;;;;:::i;:::-;:33;;46573:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;46684:7;:5;:7::i;:::-;46670:21;;:10;:21;;;46666:134;;46730:11;46723:4;;:18;;;;:::i;:::-;46710:9;:31;;46702:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;46666:134;46811:9;46823:1;46811:13;;46806:93;46831:11;46826:1;:16;46806:93;;46858:33;46868:10;46889:1;46880:6;:10;;;;:::i;:::-;46858:9;:33::i;:::-;46844:3;;;;;:::i;:::-;;;;46806:93;;;;46248:656;46198:706;:::o;24411:295::-;24526:12;:10;:12::i;:::-;24514:24;;:8;:24;;;;24506:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24626:8;24581:18;:32;24600:12;:10;:12::i;:::-;24581:32;;;;;;;;;;;;;;;:42;24614:8;24581:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24679:8;24650:48;;24665:12;:10;:12::i;:::-;24650:48;;;24689:8;24650:48;;;;;;:::i;:::-;;;;;;;;24411:295;;:::o;49232:65::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49287:4:::1;49276:8;;:15;;;;;;;;;;;;;;;;;;49232:65::o:0;43403:37::-;;;;;;;;;;;;;:::o;25674:328::-;25849:41;25868:12;:10;:12::i;:::-;25882:7;25849:18;:41::i;:::-;25841:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25955:39;25969:4;25975:2;25979:7;25988:5;25955:13;:39::i;:::-;25674:328;;;;:::o;43220:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48713:497::-;48811:13;48852:16;48860:7;48852;:16::i;:::-;48836:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48961:5;48949:17;;:8;;;;;;;;;;;:17;;;48946:62;;;48986:14;48979:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48946:62;49016:28;49047:10;:8;:10::i;:::-;49016:41;;49102:1;49077:14;49071:28;:32;:133;;;;;;;;;;;;;;;;;49139:14;49155:18;:7;:16;:18::i;:::-;49175:13;49122:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49071:133;49064:140;;;48713:497;;;;:::o;43299:32::-;;;;:::o;43488:30::-;;;;;;;;;;;;;:::o;49745:122::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49844:17:::1;49828:13;:33;;;;;;;;;;;;:::i;:::-;;49745:122:::0;:::o;49954:97::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50039:6:::1;50018:18;;:27;;;;;;;;;;;;;;;;;;49954:97:::0;:::o;48244:107::-;48306:5;48326:9;:19;48336:8;48326:19;;;;;;;;;;;;;;;;;;;;;;;;;48319:26;;48244:107;;;:::o;44350:325::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44564:6:::1;44559:111;44580:9;;:16;;44576:1;:20;44559:111;;;44647:11;;44659:1;44647:14;;;;;;;:::i;:::-;;;;;;;;44614:9;:23;44624:9;;44634:1;44624:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;44614:23;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;;;;;44598:3;;;;;:::i;:::-;;;;44559:111;;;;44350:325:::0;;;;:::o;24777:164::-;24874:4;24898:18;:25;24917:5;24898:25;;;;;;;;;;;;;;;:35;24924:8;24898:35;;;;;;;;;;;;;;;;;;;;;;;;;24891:42;;24777:164;;;;:::o;46929:427::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46993:14:::1;47010:13;:11;:13::i;:::-;46993:30;;47039:11;;;;;;;;;;;47038:12;47030:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47111:1;47097:11;:15;47089:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;47179:9;;47164:11;47155:6;:20;;;;:::i;:::-;:33;;47147:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;47244:7;47237:4;:14;;;;47263:9;47275:1;47263:13;;47258:93;47283:11;47278:1;:16;47258:93;;47310:33;47320:10;47341:1;47332:6;:10;;;;:::i;:::-;47310:9;:33::i;:::-;47296:3;;;;;:::i;:::-;;;;47258:93;;;;46986:370;46929:427:::0;:::o;49515:120::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49614:15:::1;49597:14;:32;;;;;;;;;;;;:::i;:::-;;49515:120:::0;:::o;42705:192::-;42036:12;:10;:12::i;:::-;42025:23;;:7;:5;:7::i;:::-;:23;;;42017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42814:1:::1;42794:22;;:8;:22;;;;42786:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42870:19;42880:8;42870:9;:19::i;:::-;42705:192:::0;:::o;21614:305::-;21716:4;21768:25;21753:40;;;:11;:40;;;;:105;;;;21825:33;21810:48;;;:11;:48;;;;21753:105;:158;;;;21875:36;21899:11;21875:23;:36::i;:::-;21753:158;21733:178;;21614:305;;;:::o;20088:98::-;20141:7;20168:10;20161:17;;20088:98;:::o;27512:127::-;27577:4;27629:1;27601:30;;:7;:16;27609:7;27601:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27594:37;;27512:127;;;:::o;31494:174::-;31596:2;31569:15;:24;31585:7;31569:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31652:7;31648:2;31614:46;;31623:23;31638:7;31623:14;:23::i;:::-;31614:46;;;;;;;;;;;;31494:174;;:::o;27806:348::-;27899:4;27924:16;27932:7;27924;:16::i;:::-;27916:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28000:13;28016:23;28031:7;28016:14;:23::i;:::-;28000:39;;28069:5;28058:16;;:7;:16;;;:51;;;;28102:7;28078:31;;:20;28090:7;28078:11;:20::i;:::-;:31;;;28058:51;:87;;;;28113:32;28130:5;28137:7;28113:16;:32::i;:::-;28058:87;28050:96;;;27806:348;;;;:::o;30798:578::-;30957:4;30930:31;;:23;30945:7;30930:14;:23::i;:::-;:31;;;30922:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31040:1;31026:16;;:2;:16;;;;31018:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31096:39;31117:4;31123:2;31127:7;31096:20;:39::i;:::-;31200:29;31217:1;31221:7;31200:8;:29::i;:::-;31261:1;31242:9;:15;31252:4;31242:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31290:1;31273:9;:13;31283:2;31273:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31321:2;31302:7;:16;31310:7;31302:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31360:7;31356:2;31341:27;;31350:4;31341:27;;;;;;;;;;;;30798:578;;;:::o;28496:110::-;28572:26;28582:2;28586:7;28572:26;;;;;;;;;;;;:9;:26::i;:::-;28496:110;;:::o;7920:723::-;7976:13;8206:1;8197:5;:10;8193:53;;;8224:10;;;;;;;;;;;;;;;;;;;;;8193:53;8256:12;8271:5;8256:20;;8287:14;8312:78;8327:1;8319:4;:9;8312:78;;8345:8;;;;;:::i;:::-;;;;8376:2;8368:10;;;;;:::i;:::-;;;8312:78;;;8400:19;8432:6;8422:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400:39;;8450:154;8466:1;8457:5;:10;8450:154;;8494:1;8484:11;;;;;:::i;:::-;;;8561:2;8553:5;:10;;;;:::i;:::-;8540:2;:24;;;;:::i;:::-;8527:39;;8510:6;8517;8510:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8590:2;8581:11;;;;;:::i;:::-;;;8450:154;;;8628:6;8614:21;;;;;7920:723;;;;:::o;42905:173::-;42961:16;42980:6;;;;;;;;;;;42961:25;;43006:8;42997:6;;:17;;;;;;;;;;;;;;;;;;43061:8;43030:40;;43051:8;43030:40;;;;;;;;;;;;42950:128;42905:173;:::o;26884:315::-;27041:28;27051:4;27057:2;27061:7;27041:9;:28::i;:::-;27088:48;27111:4;27117:2;27121:7;27130:5;27088:22;:48::i;:::-;27080:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26884:315;;;;:::o;43962:102::-;44022:13;44051:7;44044:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43962:102;:::o;7445:157::-;7530:4;7569:25;7554:40;;;:11;:40;;;;7547:47;;7445:157;;;:::o;36343:589::-;36487:45;36514:4;36520:2;36524:7;36487:26;:45::i;:::-;36565:1;36549:18;;:4;:18;;;36545:187;;;36584:40;36616:7;36584:31;:40::i;:::-;36545:187;;;36654:2;36646:10;;:4;:10;;;36642:90;;36673:47;36706:4;36712:7;36673:32;:47::i;:::-;36642:90;36545:187;36760:1;36746:16;;:2;:16;;;36742:183;;;36779:45;36816:7;36779:36;:45::i;:::-;36742:183;;;36852:4;36846:10;;:2;:10;;;36842:83;;36873:40;36901:2;36905:7;36873:27;:40::i;:::-;36842:83;36742:183;36343:589;;;:::o;28833:321::-;28963:18;28969:2;28973:7;28963:5;:18::i;:::-;29014:54;29045:1;29049:2;29053:7;29062:5;29014:22;:54::i;:::-;28992:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28833:321;;;:::o;32233:799::-;32388:4;32409:15;:2;:13;;;:15::i;:::-;32405:620;;;32461:2;32445:36;;;32482:12;:10;:12::i;:::-;32496:4;32502:7;32511:5;32445:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32441:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32704:1;32687:6;:13;:18;32683:272;;;32730:60;;;;;;;;;;:::i;:::-;;;;;;;;32683:272;32905:6;32899:13;32890:6;32886:2;32882:15;32875:38;32441:529;32578:41;;;32568:51;;;:6;:51;;;;32561:58;;;;;32405:620;33009:4;33002:11;;32233:799;;;;;;;:::o;33604:126::-;;;;:::o;37655:164::-;37759:10;:17;;;;37732:15;:24;37748:7;37732:24;;;;;;;;;;;:44;;;;37787:10;37803:7;37787:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37655:164;:::o;38446:988::-;38712:22;38762:1;38737:22;38754:4;38737:16;:22::i;:::-;:26;;;;:::i;:::-;38712:51;;38774:18;38795:17;:26;38813:7;38795:26;;;;;;;;;;;;38774:47;;38942:14;38928:10;:28;38924:328;;38973:19;38995:12;:18;39008:4;38995:18;;;;;;;;;;;;;;;:34;39014:14;38995:34;;;;;;;;;;;;38973:56;;39079:11;39046:12;:18;39059:4;39046:18;;;;;;;;;;;;;;;:30;39065:10;39046:30;;;;;;;;;;;:44;;;;39196:10;39163:17;:30;39181:11;39163:30;;;;;;;;;;;:43;;;;38958:294;38924:328;39348:17;:26;39366:7;39348:26;;;;;;;;;;;39341:33;;;39392:12;:18;39405:4;39392:18;;;;;;;;;;;;;;;:34;39411:14;39392:34;;;;;;;;;;;39385:41;;;38527:907;;38446:988;;:::o;39729:1079::-;39982:22;40027:1;40007:10;:17;;;;:21;;;;:::i;:::-;39982:46;;40039:18;40060:15;:24;40076:7;40060:24;;;;;;;;;;;;40039:45;;40411:19;40433:10;40444:14;40433:26;;;;;;;;:::i;:::-;;;;;;;;;;40411:48;;40497:11;40472:10;40483;40472:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40608:10;40577:15;:28;40593:11;40577:28;;;;;;;;;;;:41;;;;40749:15;:24;40765:7;40749:24;;;;;;;;;;;40742:31;;;40784:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39800:1008;;;39729:1079;:::o;37233:221::-;37318:14;37335:20;37352:2;37335:16;:20::i;:::-;37318:37;;37393:7;37366:12;:16;37379:2;37366:16;;;;;;;;;;;;;;;:24;37383:6;37366:24;;;;;;;;;;;:34;;;;37440:6;37411:17;:26;37429:7;37411:26;;;;;;;;;;;:35;;;;37307:147;37233:221;;:::o;29490:382::-;29584:1;29570:16;;:2;:16;;;;29562:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29643:16;29651:7;29643;:16::i;:::-;29642:17;29634:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29705:45;29734:1;29738:2;29742:7;29705:20;:45::i;:::-;29780:1;29763:9;:13;29773:2;29763:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29811:2;29792:7;:16;29800:7;29792:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29856:7;29852:2;29831:33;;29848:1;29831:33;;;;;;;;;;;;29490:382;;:::o;10445:387::-;10505:4;10713:12;10780:7;10768:20;10760:28;;10823:1;10816:4;:8;10809:15;;;10445:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:559::-;6888:6;6896;6945:2;6933:9;6924:7;6920:23;6916:32;6913:119;;;6951:79;;:::i;:::-;6913:119;7099:1;7088:9;7084:17;7071:31;7129:18;7121:6;7118:30;7115:117;;;7151:79;;:::i;:::-;7115:117;7264:80;7336:7;7327:6;7316:9;7312:22;7264:80;:::i;:::-;7246:98;;;;7042:312;6802:559;;;;;:::o;7367:934::-;7489:6;7497;7505;7513;7562:2;7550:9;7541:7;7537:23;7533:32;7530:119;;;7568:79;;:::i;:::-;7530:119;7716:1;7705:9;7701:17;7688:31;7746:18;7738:6;7735:30;7732:117;;;7768:79;;:::i;:::-;7732:117;7881:80;7953:7;7944:6;7933:9;7929:22;7881:80;:::i;:::-;7863:98;;;;7659:312;8038:2;8027:9;8023:18;8010:32;8069:18;8061:6;8058:30;8055:117;;;8091:79;;:::i;:::-;8055:117;8204:80;8276:7;8267:6;8256:9;8252:22;8204:80;:::i;:::-;8186:98;;;;7981:313;7367:934;;;;;;;:::o;8307:323::-;8363:6;8412:2;8400:9;8391:7;8387:23;8383:32;8380:119;;;8418:79;;:::i;:::-;8380:119;8538:1;8563:50;8605:7;8596:6;8585:9;8581:22;8563:50;:::i;:::-;8553:60;;8509:114;8307:323;;;;:::o;8636:327::-;8694:6;8743:2;8731:9;8722:7;8718:23;8714:32;8711:119;;;8749:79;;:::i;:::-;8711:119;8869:1;8894:52;8938:7;8929:6;8918:9;8914:22;8894:52;:::i;:::-;8884:62;;8840:116;8636:327;;;;:::o;8969:349::-;9038:6;9087:2;9075:9;9066:7;9062:23;9058:32;9055:119;;;9093:79;;:::i;:::-;9055:119;9213:1;9238:63;9293:7;9284:6;9273:9;9269:22;9238:63;:::i;:::-;9228:73;;9184:127;8969:349;;;;:::o;9324:509::-;9393:6;9442:2;9430:9;9421:7;9417:23;9413:32;9410:119;;;9448:79;;:::i;:::-;9410:119;9596:1;9585:9;9581:17;9568:31;9626:18;9618:6;9615:30;9612:117;;;9648:79;;:::i;:::-;9612:117;9753:63;9808:7;9799:6;9788:9;9784:22;9753:63;:::i;:::-;9743:73;;9539:287;9324:509;;;;:::o;9839:329::-;9898:6;9947:2;9935:9;9926:7;9922:23;9918:32;9915:119;;;9953:79;;:::i;:::-;9915:119;10073:1;10098:53;10143:7;10134:6;10123:9;10119:22;10098:53;:::i;:::-;10088:63;;10044:117;9839:329;;;;:::o;10174:179::-;10243:10;10264:46;10306:3;10298:6;10264:46;:::i;:::-;10342:4;10337:3;10333:14;10319:28;;10174:179;;;;:::o;10359:118::-;10446:24;10464:5;10446:24;:::i;:::-;10441:3;10434:37;10359:118;;:::o;10513:732::-;10632:3;10661:54;10709:5;10661:54;:::i;:::-;10731:86;10810:6;10805:3;10731:86;:::i;:::-;10724:93;;10841:56;10891:5;10841:56;:::i;:::-;10920:7;10951:1;10936:284;10961:6;10958:1;10955:13;10936:284;;;11037:6;11031:13;11064:63;11123:3;11108:13;11064:63;:::i;:::-;11057:70;;11150:60;11203:6;11150:60;:::i;:::-;11140:70;;10996:224;10983:1;10980;10976:9;10971:14;;10936:284;;;10940:14;11236:3;11229:10;;10637:608;;;10513:732;;;;:::o;11251:109::-;11332:21;11347:5;11332:21;:::i;:::-;11327:3;11320:34;11251:109;;:::o;11366:360::-;11452:3;11480:38;11512:5;11480:38;:::i;:::-;11534:70;11597:6;11592:3;11534:70;:::i;:::-;11527:77;;11613:52;11658:6;11653:3;11646:4;11639:5;11635:16;11613:52;:::i;:::-;11690:29;11712:6;11690:29;:::i;:::-;11685:3;11681:39;11674:46;;11456:270;11366:360;;;;:::o;11732:364::-;11820:3;11848:39;11881:5;11848:39;:::i;:::-;11903:71;11967:6;11962:3;11903:71;:::i;:::-;11896:78;;11983:52;12028:6;12023:3;12016:4;12009:5;12005:16;11983:52;:::i;:::-;12060:29;12082:6;12060:29;:::i;:::-;12055:3;12051:39;12044:46;;11824:272;11732:364;;;;:::o;12102:377::-;12208:3;12236:39;12269:5;12236:39;:::i;:::-;12291:89;12373:6;12368:3;12291:89;:::i;:::-;12284:96;;12389:52;12434:6;12429:3;12422:4;12415:5;12411:16;12389:52;:::i;:::-;12466:6;12461:3;12457:16;12450:23;;12212:267;12102:377;;;;:::o;12509:845::-;12612:3;12649:5;12643:12;12678:36;12704:9;12678:36;:::i;:::-;12730:89;12812:6;12807:3;12730:89;:::i;:::-;12723:96;;12850:1;12839:9;12835:17;12866:1;12861:137;;;;13012:1;13007:341;;;;12828:520;;12861:137;12945:4;12941:9;12930;12926:25;12921:3;12914:38;12981:6;12976:3;12972:16;12965:23;;12861:137;;13007:341;13074:38;13106:5;13074:38;:::i;:::-;13134:1;13148:154;13162:6;13159:1;13156:13;13148:154;;;13236:7;13230:14;13226:1;13221:3;13217:11;13210:35;13286:1;13277:7;13273:15;13262:26;;13184:4;13181:1;13177:12;13172:17;;13148:154;;;13331:6;13326:3;13322:16;13315:23;;13014:334;;12828:520;;12616:738;;12509:845;;;;:::o;13360:400::-;13520:3;13541:84;13623:1;13618:3;13541:84;:::i;:::-;13534:91;;13634:93;13723:3;13634:93;:::i;:::-;13752:1;13747:3;13743:11;13736:18;;13360:400;;;:::o;13766:366::-;13908:3;13929:67;13993:2;13988:3;13929:67;:::i;:::-;13922:74;;14005:93;14094:3;14005:93;:::i;:::-;14123:2;14118:3;14114:12;14107:19;;13766:366;;;:::o;14138:::-;14280:3;14301:67;14365:2;14360:3;14301:67;:::i;:::-;14294:74;;14377:93;14466:3;14377:93;:::i;:::-;14495:2;14490:3;14486:12;14479:19;;14138:366;;;:::o;14510:::-;14652:3;14673:67;14737:2;14732:3;14673:67;:::i;:::-;14666:74;;14749:93;14838:3;14749:93;:::i;:::-;14867:2;14862:3;14858:12;14851:19;;14510:366;;;:::o;14882:::-;15024:3;15045:67;15109:2;15104:3;15045:67;:::i;:::-;15038:74;;15121:93;15210:3;15121:93;:::i;:::-;15239:2;15234:3;15230:12;15223:19;;14882:366;;;:::o;15254:::-;15396:3;15417:67;15481:2;15476:3;15417:67;:::i;:::-;15410:74;;15493:93;15582:3;15493:93;:::i;:::-;15611:2;15606:3;15602:12;15595:19;;15254:366;;;:::o;15626:::-;15768:3;15789:67;15853:2;15848:3;15789:67;:::i;:::-;15782:74;;15865:93;15954:3;15865:93;:::i;:::-;15983:2;15978:3;15974:12;15967:19;;15626:366;;;:::o;15998:::-;16140:3;16161:67;16225:2;16220:3;16161:67;:::i;:::-;16154:74;;16237:93;16326:3;16237:93;:::i;:::-;16355:2;16350:3;16346:12;16339:19;;15998:366;;;:::o;16370:::-;16512:3;16533:67;16597:2;16592:3;16533:67;:::i;:::-;16526:74;;16609:93;16698:3;16609:93;:::i;:::-;16727:2;16722:3;16718:12;16711:19;;16370:366;;;:::o;16742:400::-;16902:3;16923:84;17005:1;17000:3;16923:84;:::i;:::-;16916:91;;17016:93;17105:3;17016:93;:::i;:::-;17134:1;17129:3;17125:11;17118:18;;16742:400;;;:::o;17148:402::-;17308:3;17329:85;17411:2;17406:3;17329:85;:::i;:::-;17322:92;;17423:93;17512:3;17423:93;:::i;:::-;17541:2;17536:3;17532:12;17525:19;;17148:402;;;:::o;17556:366::-;17698:3;17719:67;17783:2;17778:3;17719:67;:::i;:::-;17712:74;;17795:93;17884:3;17795:93;:::i;:::-;17913:2;17908:3;17904:12;17897:19;;17556:366;;;:::o;17928:::-;18070:3;18091:67;18155:2;18150:3;18091:67;:::i;:::-;18084:74;;18167:93;18256:3;18167:93;:::i;:::-;18285:2;18280:3;18276:12;18269:19;;17928:366;;;:::o;18300:::-;18442:3;18463:67;18527:2;18522:3;18463:67;:::i;:::-;18456:74;;18539:93;18628:3;18539:93;:::i;:::-;18657:2;18652:3;18648:12;18641:19;;18300:366;;;:::o;18672:400::-;18832:3;18853:84;18935:1;18930:3;18853:84;:::i;:::-;18846:91;;18946:93;19035:3;18946:93;:::i;:::-;19064:1;19059:3;19055:11;19048:18;;18672:400;;;:::o;19078:366::-;19220:3;19241:67;19305:2;19300:3;19241:67;:::i;:::-;19234:74;;19317:93;19406:3;19317:93;:::i;:::-;19435:2;19430:3;19426:12;19419:19;;19078:366;;;:::o;19450:::-;19592:3;19613:67;19677:2;19672:3;19613:67;:::i;:::-;19606:74;;19689:93;19778:3;19689:93;:::i;:::-;19807:2;19802:3;19798:12;19791:19;;19450:366;;;:::o;19822:::-;19964:3;19985:67;20049:2;20044:3;19985:67;:::i;:::-;19978:74;;20061:93;20150:3;20061:93;:::i;:::-;20179:2;20174:3;20170:12;20163:19;;19822:366;;;:::o;20194:::-;20336:3;20357:67;20421:2;20416:3;20357:67;:::i;:::-;20350:74;;20433:93;20522:3;20433:93;:::i;:::-;20551:2;20546:3;20542:12;20535:19;;20194:366;;;:::o;20566:::-;20708:3;20729:67;20793:2;20788:3;20729:67;:::i;:::-;20722:74;;20805:93;20894:3;20805:93;:::i;:::-;20923:2;20918:3;20914:12;20907:19;;20566:366;;;:::o;20938:::-;21080:3;21101:67;21165:2;21160:3;21101:67;:::i;:::-;21094:74;;21177:93;21266:3;21177:93;:::i;:::-;21295:2;21290:3;21286:12;21279:19;;20938:366;;;:::o;21310:402::-;21470:3;21491:85;21573:2;21568:3;21491:85;:::i;:::-;21484:92;;21585:93;21674:3;21585:93;:::i;:::-;21703:2;21698:3;21694:12;21687:19;;21310:402;;;:::o;21718:366::-;21860:3;21881:67;21945:2;21940:3;21881:67;:::i;:::-;21874:74;;21957:93;22046:3;21957:93;:::i;:::-;22075:2;22070:3;22066:12;22059:19;;21718:366;;;:::o;22090:::-;22232:3;22253:67;22317:2;22312:3;22253:67;:::i;:::-;22246:74;;22329:93;22418:3;22329:93;:::i;:::-;22447:2;22442:3;22438:12;22431:19;;22090:366;;;:::o;22462:::-;22604:3;22625:67;22689:2;22684:3;22625:67;:::i;:::-;22618:74;;22701:93;22790:3;22701:93;:::i;:::-;22819:2;22814:3;22810:12;22803:19;;22462:366;;;:::o;22834:::-;22976:3;22997:67;23061:2;23056:3;22997:67;:::i;:::-;22990:74;;23073:93;23162:3;23073:93;:::i;:::-;23191:2;23186:3;23182:12;23175:19;;22834:366;;;:::o;23206:::-;23348:3;23369:67;23433:2;23428:3;23369:67;:::i;:::-;23362:74;;23445:93;23534:3;23445:93;:::i;:::-;23563:2;23558:3;23554:12;23547:19;;23206:366;;;:::o;23578:::-;23720:3;23741:67;23805:2;23800:3;23741:67;:::i;:::-;23734:74;;23817:93;23906:3;23817:93;:::i;:::-;23935:2;23930:3;23926:12;23919:19;;23578:366;;;:::o;23950:::-;24092:3;24113:67;24177:2;24172:3;24113:67;:::i;:::-;24106:74;;24189:93;24278:3;24189:93;:::i;:::-;24307:2;24302:3;24298:12;24291:19;;23950:366;;;:::o;24322:398::-;24481:3;24502:83;24583:1;24578:3;24502:83;:::i;:::-;24495:90;;24594:93;24683:3;24594:93;:::i;:::-;24712:1;24707:3;24703:11;24696:18;;24322:398;;;:::o;24726:366::-;24868:3;24889:67;24953:2;24948:3;24889:67;:::i;:::-;24882:74;;24965:93;25054:3;24965:93;:::i;:::-;25083:2;25078:3;25074:12;25067:19;;24726:366;;;:::o;25098:::-;25240:3;25261:67;25325:2;25320:3;25261:67;:::i;:::-;25254:74;;25337:93;25426:3;25337:93;:::i;:::-;25455:2;25450:3;25446:12;25439:19;;25098:366;;;:::o;25470:::-;25612:3;25633:67;25697:2;25692:3;25633:67;:::i;:::-;25626:74;;25709:93;25798:3;25709:93;:::i;:::-;25827:2;25822:3;25818:12;25811:19;;25470:366;;;:::o;25842:108::-;25919:24;25937:5;25919:24;:::i;:::-;25914:3;25907:37;25842:108;;:::o;25956:118::-;26043:24;26061:5;26043:24;:::i;:::-;26038:3;26031:37;25956:118;;:::o;26080:112::-;26163:22;26179:5;26163:22;:::i;:::-;26158:3;26151:35;26080:112;;:::o;26198:275::-;26330:3;26352:95;26443:3;26434:6;26352:95;:::i;:::-;26345:102;;26464:3;26457:10;;26198:275;;;;:::o;26479:589::-;26704:3;26726:95;26817:3;26808:6;26726:95;:::i;:::-;26719:102;;26838:95;26929:3;26920:6;26838:95;:::i;:::-;26831:102;;26950:92;27038:3;27029:6;26950:92;:::i;:::-;26943:99;;27059:3;27052:10;;26479:589;;;;;;:::o;27074:381::-;27259:3;27281:148;27425:3;27281:148;:::i;:::-;27274:155;;27446:3;27439:10;;27074:381;;;:::o;27461:::-;27646:3;27668:148;27812:3;27668:148;:::i;:::-;27661:155;;27833:3;27826:10;;27461:381;;;:::o;27848:::-;28033:3;28055:148;28199:3;28055:148;:::i;:::-;28048:155;;28220:3;28213:10;;27848:381;;;:::o;28235:807::-;28569:3;28591:148;28735:3;28591:148;:::i;:::-;28584:155;;28756:95;28847:3;28838:6;28756:95;:::i;:::-;28749:102;;28868:148;29012:3;28868:148;:::i;:::-;28861:155;;29033:3;29026:10;;28235:807;;;;:::o;29048:379::-;29232:3;29254:147;29397:3;29254:147;:::i;:::-;29247:154;;29418:3;29411:10;;29048:379;;;:::o;29433:222::-;29526:4;29564:2;29553:9;29549:18;29541:26;;29577:71;29645:1;29634:9;29630:17;29621:6;29577:71;:::i;:::-;29433:222;;;;:::o;29661:640::-;29856:4;29894:3;29883:9;29879:19;29871:27;;29908:71;29976:1;29965:9;29961:17;29952:6;29908:71;:::i;:::-;29989:72;30057:2;30046:9;30042:18;30033:6;29989:72;:::i;:::-;30071;30139:2;30128:9;30124:18;30115:6;30071:72;:::i;:::-;30190:9;30184:4;30180:20;30175:2;30164:9;30160:18;30153:48;30218:76;30289:4;30280:6;30218:76;:::i;:::-;30210:84;;29661:640;;;;;;;:::o;30307:373::-;30450:4;30488:2;30477:9;30473:18;30465:26;;30537:9;30531:4;30527:20;30523:1;30512:9;30508:17;30501:47;30565:108;30668:4;30659:6;30565:108;:::i;:::-;30557:116;;30307:373;;;;:::o;30686:210::-;30773:4;30811:2;30800:9;30796:18;30788:26;;30824:65;30886:1;30875:9;30871:17;30862:6;30824:65;:::i;:::-;30686:210;;;;:::o;30902:313::-;31015:4;31053:2;31042:9;31038:18;31030:26;;31102:9;31096:4;31092:20;31088:1;31077:9;31073:17;31066:47;31130:78;31203:4;31194:6;31130:78;:::i;:::-;31122:86;;30902:313;;;;:::o;31221:419::-;31387:4;31425:2;31414:9;31410:18;31402:26;;31474:9;31468:4;31464:20;31460:1;31449:9;31445:17;31438:47;31502:131;31628:4;31502:131;:::i;:::-;31494:139;;31221:419;;;:::o;31646:::-;31812:4;31850:2;31839:9;31835:18;31827:26;;31899:9;31893:4;31889:20;31885:1;31874:9;31870:17;31863:47;31927:131;32053:4;31927:131;:::i;:::-;31919:139;;31646:419;;;:::o;32071:::-;32237:4;32275:2;32264:9;32260:18;32252:26;;32324:9;32318:4;32314:20;32310:1;32299:9;32295:17;32288:47;32352:131;32478:4;32352:131;:::i;:::-;32344:139;;32071:419;;;:::o;32496:::-;32662:4;32700:2;32689:9;32685:18;32677:26;;32749:9;32743:4;32739:20;32735:1;32724:9;32720:17;32713:47;32777:131;32903:4;32777:131;:::i;:::-;32769:139;;32496:419;;;:::o;32921:::-;33087:4;33125:2;33114:9;33110:18;33102:26;;33174:9;33168:4;33164:20;33160:1;33149:9;33145:17;33138:47;33202:131;33328:4;33202:131;:::i;:::-;33194:139;;32921:419;;;:::o;33346:::-;33512:4;33550:2;33539:9;33535:18;33527:26;;33599:9;33593:4;33589:20;33585:1;33574:9;33570:17;33563:47;33627:131;33753:4;33627:131;:::i;:::-;33619:139;;33346:419;;;:::o;33771:::-;33937:4;33975:2;33964:9;33960:18;33952:26;;34024:9;34018:4;34014:20;34010:1;33999:9;33995:17;33988:47;34052:131;34178:4;34052:131;:::i;:::-;34044:139;;33771:419;;;:::o;34196:::-;34362:4;34400:2;34389:9;34385:18;34377:26;;34449:9;34443:4;34439:20;34435:1;34424:9;34420:17;34413:47;34477:131;34603:4;34477:131;:::i;:::-;34469:139;;34196:419;;;:::o;34621:::-;34787:4;34825:2;34814:9;34810:18;34802:26;;34874:9;34868:4;34864:20;34860:1;34849:9;34845:17;34838:47;34902:131;35028:4;34902:131;:::i;:::-;34894:139;;34621:419;;;:::o;35046:::-;35212:4;35250:2;35239:9;35235:18;35227:26;;35299:9;35293:4;35289:20;35285:1;35274:9;35270:17;35263:47;35327:131;35453:4;35327:131;:::i;:::-;35319:139;;35046:419;;;:::o;35471:::-;35637:4;35675:2;35664:9;35660:18;35652:26;;35724:9;35718:4;35714:20;35710:1;35699:9;35695:17;35688:47;35752:131;35878:4;35752:131;:::i;:::-;35744:139;;35471:419;;;:::o;35896:::-;36062:4;36100:2;36089:9;36085:18;36077:26;;36149:9;36143:4;36139:20;36135:1;36124:9;36120:17;36113:47;36177:131;36303:4;36177:131;:::i;:::-;36169:139;;35896:419;;;:::o;36321:::-;36487:4;36525:2;36514:9;36510:18;36502:26;;36574:9;36568:4;36564:20;36560:1;36549:9;36545:17;36538:47;36602:131;36728:4;36602:131;:::i;:::-;36594:139;;36321:419;;;:::o;36746:::-;36912:4;36950:2;36939:9;36935:18;36927:26;;36999:9;36993:4;36989:20;36985:1;36974:9;36970:17;36963:47;37027:131;37153:4;37027:131;:::i;:::-;37019:139;;36746:419;;;:::o;37171:::-;37337:4;37375:2;37364:9;37360:18;37352:26;;37424:9;37418:4;37414:20;37410:1;37399:9;37395:17;37388:47;37452:131;37578:4;37452:131;:::i;:::-;37444:139;;37171:419;;;:::o;37596:::-;37762:4;37800:2;37789:9;37785:18;37777:26;;37849:9;37843:4;37839:20;37835:1;37824:9;37820:17;37813:47;37877:131;38003:4;37877:131;:::i;:::-;37869:139;;37596:419;;;:::o;38021:::-;38187:4;38225:2;38214:9;38210:18;38202:26;;38274:9;38268:4;38264:20;38260:1;38249:9;38245:17;38238:47;38302:131;38428:4;38302:131;:::i;:::-;38294:139;;38021:419;;;:::o;38446:::-;38612:4;38650:2;38639:9;38635:18;38627:26;;38699:9;38693:4;38689:20;38685:1;38674:9;38670:17;38663:47;38727:131;38853:4;38727:131;:::i;:::-;38719:139;;38446:419;;;:::o;38871:::-;39037:4;39075:2;39064:9;39060:18;39052:26;;39124:9;39118:4;39114:20;39110:1;39099:9;39095:17;39088:47;39152:131;39278:4;39152:131;:::i;:::-;39144:139;;38871:419;;;:::o;39296:::-;39462:4;39500:2;39489:9;39485:18;39477:26;;39549:9;39543:4;39539:20;39535:1;39524:9;39520:17;39513:47;39577:131;39703:4;39577:131;:::i;:::-;39569:139;;39296:419;;;:::o;39721:::-;39887:4;39925:2;39914:9;39910:18;39902:26;;39974:9;39968:4;39964:20;39960:1;39949:9;39945:17;39938:47;40002:131;40128:4;40002:131;:::i;:::-;39994:139;;39721:419;;;:::o;40146:::-;40312:4;40350:2;40339:9;40335:18;40327:26;;40399:9;40393:4;40389:20;40385:1;40374:9;40370:17;40363:47;40427:131;40553:4;40427:131;:::i;:::-;40419:139;;40146:419;;;:::o;40571:::-;40737:4;40775:2;40764:9;40760:18;40752:26;;40824:9;40818:4;40814:20;40810:1;40799:9;40795:17;40788:47;40852:131;40978:4;40852:131;:::i;:::-;40844:139;;40571:419;;;:::o;40996:::-;41162:4;41200:2;41189:9;41185:18;41177:26;;41249:9;41243:4;41239:20;41235:1;41224:9;41220:17;41213:47;41277:131;41403:4;41277:131;:::i;:::-;41269:139;;40996:419;;;:::o;41421:::-;41587:4;41625:2;41614:9;41610:18;41602:26;;41674:9;41668:4;41664:20;41660:1;41649:9;41645:17;41638:47;41702:131;41828:4;41702:131;:::i;:::-;41694:139;;41421:419;;;:::o;41846:::-;42012:4;42050:2;42039:9;42035:18;42027:26;;42099:9;42093:4;42089:20;42085:1;42074:9;42070:17;42063:47;42127:131;42253:4;42127:131;:::i;:::-;42119:139;;41846:419;;;:::o;42271:::-;42437:4;42475:2;42464:9;42460:18;42452:26;;42524:9;42518:4;42514:20;42510:1;42499:9;42495:17;42488:47;42552:131;42678:4;42552:131;:::i;:::-;42544:139;;42271:419;;;:::o;42696:222::-;42789:4;42827:2;42816:9;42812:18;42804:26;;42840:71;42908:1;42897:9;42893:17;42884:6;42840:71;:::i;:::-;42696:222;;;;:::o;42924:214::-;43013:4;43051:2;43040:9;43036:18;43028:26;;43064:67;43128:1;43117:9;43113:17;43104:6;43064:67;:::i;:::-;42924:214;;;;:::o;43144:129::-;43178:6;43205:20;;:::i;:::-;43195:30;;43234:33;43262:4;43254:6;43234:33;:::i;:::-;43144:129;;;:::o;43279:75::-;43312:6;43345:2;43339:9;43329:19;;43279:75;:::o;43360:307::-;43421:4;43511:18;43503:6;43500:30;43497:56;;;43533:18;;:::i;:::-;43497:56;43571:29;43593:6;43571:29;:::i;:::-;43563:37;;43655:4;43649;43645:15;43637:23;;43360:307;;;:::o;43673:308::-;43735:4;43825:18;43817:6;43814:30;43811:56;;;43847:18;;:::i;:::-;43811:56;43885:29;43907:6;43885:29;:::i;:::-;43877:37;;43969:4;43963;43959:15;43951:23;;43673:308;;;:::o;43987:132::-;44054:4;44077:3;44069:11;;44107:4;44102:3;44098:14;44090:22;;43987:132;;;:::o;44125:141::-;44174:4;44197:3;44189:11;;44220:3;44217:1;44210:14;44254:4;44251:1;44241:18;44233:26;;44125:141;;;:::o;44272:114::-;44339:6;44373:5;44367:12;44357:22;;44272:114;;;:::o;44392:98::-;44443:6;44477:5;44471:12;44461:22;;44392:98;;;:::o;44496:99::-;44548:6;44582:5;44576:12;44566:22;;44496:99;;;:::o;44601:113::-;44671:4;44703;44698:3;44694:14;44686:22;;44601:113;;;:::o;44720:184::-;44819:11;44853:6;44848:3;44841:19;44893:4;44888:3;44884:14;44869:29;;44720:184;;;;:::o;44910:168::-;44993:11;45027:6;45022:3;45015:19;45067:4;45062:3;45058:14;45043:29;;44910:168;;;;:::o;45084:147::-;45185:11;45222:3;45207:18;;45084:147;;;;:::o;45237:169::-;45321:11;45355:6;45350:3;45343:19;45395:4;45390:3;45386:14;45371:29;;45237:169;;;;:::o;45412:148::-;45514:11;45551:3;45536:18;;45412:148;;;;:::o;45566:305::-;45606:3;45625:20;45643:1;45625:20;:::i;:::-;45620:25;;45659:20;45677:1;45659:20;:::i;:::-;45654:25;;45813:1;45745:66;45741:74;45738:1;45735:81;45732:107;;;45819:18;;:::i;:::-;45732:107;45863:1;45860;45856:9;45849:16;;45566:305;;;;:::o;45877:185::-;45917:1;45934:20;45952:1;45934:20;:::i;:::-;45929:25;;45968:20;45986:1;45968:20;:::i;:::-;45963:25;;46007:1;45997:35;;46012:18;;:::i;:::-;45997:35;46054:1;46051;46047:9;46042:14;;45877:185;;;;:::o;46068:348::-;46108:7;46131:20;46149:1;46131:20;:::i;:::-;46126:25;;46165:20;46183:1;46165:20;:::i;:::-;46160:25;;46353:1;46285:66;46281:74;46278:1;46275:81;46270:1;46263:9;46256:17;46252:105;46249:131;;;46360:18;;:::i;:::-;46249:131;46408:1;46405;46401:9;46390:20;;46068:348;;;;:::o;46422:191::-;46462:4;46482:20;46500:1;46482:20;:::i;:::-;46477:25;;46516:20;46534:1;46516:20;:::i;:::-;46511:25;;46555:1;46552;46549:8;46546:34;;;46560:18;;:::i;:::-;46546:34;46605:1;46602;46598:9;46590:17;;46422:191;;;;:::o;46619:185::-;46657:4;46677:18;46693:1;46677:18;:::i;:::-;46672:23;;46709:18;46725:1;46709:18;:::i;:::-;46704:23;;46746:1;46743;46740:8;46737:34;;;46751:18;;:::i;:::-;46737:34;46796:1;46793;46789:9;46781:17;;46619:185;;;;:::o;46810:96::-;46847:7;46876:24;46894:5;46876:24;:::i;:::-;46865:35;;46810:96;;;:::o;46912:90::-;46946:7;46989:5;46982:13;46975:21;46964:32;;46912:90;;;:::o;47008:149::-;47044:7;47084:66;47077:5;47073:78;47062:89;;47008:149;;;:::o;47163:126::-;47200:7;47240:42;47233:5;47229:54;47218:65;;47163:126;;;:::o;47295:77::-;47332:7;47361:5;47350:16;;47295:77;;;:::o;47378:86::-;47413:7;47453:4;47446:5;47442:16;47431:27;;47378:86;;;:::o;47470:154::-;47554:6;47549:3;47544;47531:30;47616:1;47607:6;47602:3;47598:16;47591:27;47470:154;;;:::o;47630:307::-;47698:1;47708:113;47722:6;47719:1;47716:13;47708:113;;;47807:1;47802:3;47798:11;47792:18;47788:1;47783:3;47779:11;47772:39;47744:2;47741:1;47737:10;47732:15;;47708:113;;;47839:6;47836:1;47833:13;47830:101;;;47919:1;47910:6;47905:3;47901:16;47894:27;47830:101;47679:258;47630:307;;;:::o;47943:320::-;47987:6;48024:1;48018:4;48014:12;48004:22;;48071:1;48065:4;48061:12;48092:18;48082:81;;48148:4;48140:6;48136:17;48126:27;;48082:81;48210:2;48202:6;48199:14;48179:18;48176:38;48173:84;;;48229:18;;:::i;:::-;48173:84;47994:269;47943:320;;;:::o;48269:281::-;48352:27;48374:4;48352:27;:::i;:::-;48344:6;48340:40;48482:6;48470:10;48467:22;48446:18;48434:10;48431:34;48428:62;48425:88;;;48493:18;;:::i;:::-;48425:88;48533:10;48529:2;48522:22;48312:238;48269:281;;:::o;48556:233::-;48595:3;48618:24;48636:5;48618:24;:::i;:::-;48609:33;;48664:66;48657:5;48654:77;48651:103;;;48734:18;;:::i;:::-;48651:103;48781:1;48774:5;48770:13;48763:20;;48556:233;;;:::o;48795:176::-;48827:1;48844:20;48862:1;48844:20;:::i;:::-;48839:25;;48878:20;48896:1;48878:20;:::i;:::-;48873:25;;48917:1;48907:35;;48922:18;;:::i;:::-;48907:35;48963:1;48960;48956:9;48951:14;;48795:176;;;;:::o;48977:180::-;49025:77;49022:1;49015:88;49122:4;49119:1;49112:15;49146:4;49143:1;49136:15;49163:180;49211:77;49208:1;49201:88;49308:4;49305:1;49298:15;49332:4;49329:1;49322:15;49349:180;49397:77;49394:1;49387:88;49494:4;49491:1;49484:15;49518:4;49515:1;49508:15;49535:180;49583:77;49580:1;49573:88;49680:4;49677:1;49670:15;49704:4;49701:1;49694:15;49721:180;49769:77;49766:1;49759:88;49866:4;49863:1;49856:15;49890:4;49887:1;49880:15;49907:180;49955:77;49952:1;49945:88;50052:4;50049:1;50042:15;50076:4;50073:1;50066:15;50093:117;50202:1;50199;50192:12;50216:117;50325:1;50322;50315:12;50339:117;50448:1;50445;50438:12;50462:117;50571:1;50568;50561:12;50585:117;50694:1;50691;50684:12;50708:117;50817:1;50814;50807:12;50831:102;50872:6;50923:2;50919:7;50914:2;50907:5;50903:14;50899:28;50889:38;;50831:102;;;:::o;50939:155::-;51079:7;51075:1;51067:6;51063:14;51056:31;50939:155;:::o;51100:305::-;51240:34;51236:1;51228:6;51224:14;51217:58;51309:34;51304:2;51296:6;51292:15;51285:59;51378:19;51373:2;51365:6;51361:15;51354:44;51100:305;:::o;51411:230::-;51551:34;51547:1;51539:6;51535:14;51528:58;51620:13;51615:2;51607:6;51603:15;51596:38;51411:230;:::o;51647:237::-;51787:34;51783:1;51775:6;51771:14;51764:58;51856:20;51851:2;51843:6;51839:15;51832:45;51647:237;:::o;51890:225::-;52030:34;52026:1;52018:6;52014:14;52007:58;52099:8;52094:2;52086:6;52082:15;52075:33;51890:225;:::o;52121:178::-;52261:30;52257:1;52249:6;52245:14;52238:54;52121:178;:::o;52305:224::-;52445:34;52441:1;52433:6;52429:14;52422:58;52514:7;52509:2;52501:6;52497:15;52490:32;52305:224;:::o;52535:223::-;52675:34;52671:1;52663:6;52659:14;52652:58;52744:6;52739:2;52731:6;52727:15;52720:31;52535:223;:::o;52764:175::-;52904:27;52900:1;52892:6;52888:14;52881:51;52764:175;:::o;52945:159::-;53085:11;53081:1;53073:6;53069:14;53062:35;52945:159;:::o;53110:162::-;53250:14;53246:1;53238:6;53234:14;53227:38;53110:162;:::o;53278:231::-;53418:34;53414:1;53406:6;53402:14;53395:58;53487:14;53482:2;53474:6;53470:15;53463:39;53278:231;:::o;53515:182::-;53655:34;53651:1;53643:6;53639:14;53632:58;53515:182;:::o;53703:243::-;53843:34;53839:1;53831:6;53827:14;53820:58;53912:26;53907:2;53899:6;53895:15;53888:51;53703:243;:::o;53952:151::-;54092:3;54088:1;54080:6;54076:14;54069:27;53952:151;:::o;54109:234::-;54249:34;54245:1;54237:6;54233:14;54226:58;54318:17;54313:2;54305:6;54301:15;54294:42;54109:234;:::o;54349:229::-;54489:34;54485:1;54477:6;54473:14;54466:58;54558:12;54553:2;54545:6;54541:15;54534:37;54349:229;:::o;54584:228::-;54724:34;54720:1;54712:6;54708:14;54701:58;54793:11;54788:2;54780:6;54776:15;54769:36;54584:228;:::o;54818:182::-;54958:34;54954:1;54946:6;54942:14;54935:58;54818:182;:::o;55006:178::-;55146:30;55142:1;55134:6;55130:14;55123:54;55006:178;:::o;55190:231::-;55330:34;55326:1;55318:6;55314:14;55307:58;55399:14;55394:2;55386:6;55382:15;55375:39;55190:231;:::o;55427:225::-;55567:34;55563:1;55555:6;55551:14;55544:58;55636:8;55631:2;55623:6;55619:15;55612:33;55427:225;:::o;55658:228::-;55798:34;55794:1;55786:6;55782:14;55775:58;55867:11;55862:2;55854:6;55850:15;55843:36;55658:228;:::o;55892:182::-;56032:34;56028:1;56020:6;56016:14;56009:58;55892:182;:::o;56080:228::-;56220:34;56216:1;56208:6;56204:14;56197:58;56289:11;56284:2;56276:6;56272:15;56265:36;56080:228;:::o;56314:234::-;56454:34;56450:1;56442:6;56438:14;56431:58;56523:17;56518:2;56510:6;56506:15;56499:42;56314:234;:::o;56554:310::-;56694:34;56690:1;56682:6;56678:14;56671:58;56763:34;56758:2;56750:6;56746:15;56739:59;56832:24;56827:2;56819:6;56815:15;56808:49;56554:310;:::o;56870:220::-;57010:34;57006:1;56998:6;56994:14;56987:58;57079:3;57074:2;57066:6;57062:15;57055:28;56870:220;:::o;57096:179::-;57236:31;57232:1;57224:6;57220:14;57213:55;57096:179;:::o;57281:114::-;;:::o;57401:236::-;57541:34;57537:1;57529:6;57525:14;57518:58;57610:19;57605:2;57597:6;57593:15;57586:44;57401:236;:::o;57643:231::-;57783:34;57779:1;57771:6;57767:14;57760:58;57852:14;57847:2;57839:6;57835:15;57828:39;57643:231;:::o;57880:174::-;58020:26;58016:1;58008:6;58004:14;57997:50;57880:174;:::o;58060:122::-;58133:24;58151:5;58133:24;:::i;:::-;58126:5;58123:35;58113:63;;58172:1;58169;58162:12;58113:63;58060:122;:::o;58188:116::-;58258:21;58273:5;58258:21;:::i;:::-;58251:5;58248:32;58238:60;;58294:1;58291;58284:12;58238:60;58188:116;:::o;58310:120::-;58382:23;58399:5;58382:23;:::i;:::-;58375:5;58372:34;58362:62;;58420:1;58417;58410:12;58362:62;58310:120;:::o;58436:122::-;58509:24;58527:5;58509:24;:::i;:::-;58502:5;58499:35;58489:63;;58548:1;58545;58538:12;58489:63;58436:122;:::o

Swarm Source

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