ETH Price: $2,964.52 (-4.21%)
Gas: 2 Gwei

Token

CryptoNooniz (NOONIZ)
 

Overview

Max Total Supply

1,777 NOONIZ

Holders

646

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NOONIZ
0xa18e7bbdf4f4379f7d992c7e4a275f4a14bc124f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The NooniVerse collection contains 9,997 different types of Noonizon-chain in the NFT world above the Ethereum blockchain. Among them are 27 super special Nooniz that are very rare and unique. Every Nooni has a different level of rarity based on its characteristics.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoNooniz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.0;

/**
*                                                           .....#*.#.#,*
*                                                     ,*#.....................#..
*                                                 .%...............................#.
*                                              .#.....................................*.
*                                            *...........................................&(
*                                         (%...............................................#(
*                                        #...................................................*
*                                      .%..............................................#%####./.
*                                      ........................................,,####.&.####...,.
*                                   .(,..........................,#*##............######,###.....#
*                                  .#.....................#####.#######&.............######,......#%
*                                *#.........................######.###...................#..........,
*                                ,,............................######...............................#
*                               /#....*............................#...........&../*................/
*                             .#.....##........................................&##.(...............#(
*                           .*......% #...........................................................#(
*                        //..........#............................................................
*                       #...........#.*.##....................................................%.
*                    . ...........  .........#.............................................#,
*                 .,............... ......&&.# &.......................................&.
*                ..............#. ............. ,.,............................,#*./
*               ...............   ............       ..%#(.......&###....#
*               ............**    ./.........
*               .*........,,       .%....,..
*                 .#. &.              %.
*                                                        created by CryptoNooniz
*
*                                            @title Crypto Nooniz ERC-721 Smart Contract
*/


abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

// File: @openzeppelin/contracts/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/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: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

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

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

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

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


// 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 CryptoNooniz is ERC721, Ownable, ReentrancyGuard  {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.03 ether;
    uint256 public constant NOONIZ_MAX_SUPPLY = 9997;
    uint256 public nftPerAddressLimit = 7;

    bool public isPaused = true;
    bool public isPresale = true;
    bool public presaleBenefits = true;
    mapping(address => uint8) public allowListMap;

    constructor() ERC721("CryptoNooniz", "NOONIZ") {
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    // public
    function mint(uint256 _mintAmount) public payable nonReentrant{
        require(!isPaused, "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        uint256 tokensToMint = setDynamicMintAmount(_mintAmount);
        require(supply.current() + tokensToMint <= NOONIZ_MAX_SUPPLY, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            if(isPresale == true) {
                require(isInAllowList(msg.sender), "user is not in allow list");
            }
            uint256 ownerMintedCount = balanceOf(msg.sender);
            require(ownerMintedCount + tokensToMint <= nftPerAddressLimit, "max NFT per address exceeded");

            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }

        for (uint256 i = 1; i <= tokensToMint; i++) {
            supply.increment();
            _safeMint(msg.sender, supply.current());
        }
    }

    function isInAllowList(address _user) public view returns (bool){
        uint256 _userRole = allowListMap[_user];
        if(_userRole == 1 || _userRole == 2){
            return true;
        }
        return false;
    }

    function getUserRole(address _user) public view returns (uint8){
        return allowListMap[_user];
    }

    function setDynamicMintAmount(uint256 _mintAmount) internal view returns(uint256){
        if(presaleBenefits == true){
            uint256 _userRole = allowListMap[msg.sender];
            if(_userRole == 1 && _mintAmount >= 5){
                return _mintAmount + 2;
            } else if((_userRole == 1 || _userRole == 2) && _mintAmount >= 3 && balanceOf(msg.sender) < 4){
                return _mintAmount + 1;
            }
        }
        return _mintAmount;
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= NOONIZ_MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension));
    }

    // BURN IT
    function burn(uint256 tokenId) external virtual {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }

    //only owner
    function ownerMint(address to, uint256 _mintAmount) public payable onlyOwner{
        require(supply.current() + _mintAmount <= NOONIZ_MAX_SUPPLY, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            supply.increment();
            _safeMint(to, supply.current());
        }
    }

    function setPause(bool _state) public onlyOwner {
        isPaused = _state;
    }

    function setPresale(bool _state) public onlyOwner {
        isPresale = _state;
    }

    function setPresaleBenefits(bool _state) public onlyOwner {
        presaleBenefits = _state;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

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

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

    function setAllowMap(address[] calldata _allowUsers, uint8 role) public onlyOwner {
        for (uint i = 0; i < _allowUsers.length; i++) {
            allowListMap[_allowUsers[i]] = role;
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NOONIZ_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListMap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"_user","type":"address"}],"name":"getUserRole","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isInAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleBenefits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_allowUsers","type":"address[]"},{"internalType":"uint8","name":"role","type":"uint8"}],"name":"setAllowMap","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":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleBenefits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000519291906200025d565b50666a94d74f430000600b556007600c556001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550348015620000c057600080fd5b506040518060400160405280600c81526020017f43727970746f4e6f6f6e697a00000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4f4f4e495a00000000000000000000000000000000000000000000000000008152508160009080519060200190620001459291906200025d565b5080600190805190602001906200015e9291906200025d565b50505062000181620001756200018f60201b60201c565b6200019760201b60201c565b600160078190555062000372565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026b906200030d565b90600052602060002090601f0160209004810192826200028f5760008555620002db565b82601f10620002aa57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002da578251825591602001919060010190620002bd565b5b509050620002ea9190620002ee565b5090565b5b8082111562000309576000816000905550600101620002ef565b5090565b600060028204905060018216806200032657607f821691505b602082108114156200033d576200033c62000343565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61496f80620003826000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063ba7d2c76116100b6578063c87b56dd1161007a578063c87b56dd14610851578063d0eb26b01461088e578063da3ef23f146108b7578063e3f1e53a146108e0578063e985e9c51461090b578063f2fde38b1461094857610246565b8063ba7d2c761461076c578063ba81c38514610797578063bedb86fb146107d4578063c54e73e3146107fd578063c66828621461082657610246565b8063a0712d68116100fd578063a0712d68146106a8578063a22cb465146106c4578063aa90ed84146106ed578063b187bd2614610718578063b88d4fde1461074357610246565b806370a08231146105d3578063715018a6146106105780638da5cb5b1461062757806395364a841461065257806395d89b411461067d57610246565b80633ccfd60b116101c7578063484b973c1161018b578063484b973c146104fd57806355f804b31461051957806360fac2a4146105425780636352211e1461056b5780636c0360eb146105a857610246565b80633ccfd60b1461043b57806342842e0e1461044557806342966c681461046e578063438b63001461049757806344a0d68a146104d457610246565b806313faede61161020e57806313faede61461034257806318160ddd1461036d57806323b872dd14610398578063245a3dac146103c157806327820851146103fe57610246565b8063019137af1461024b57806301ffc9a71461027457806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061337e565b610971565b005b34801561028057600080fd5b5061029b600480360381019061029691906133ab565b610a0a565b6040516102a89190613a98565b60405180910390f35b3480156102bd57600080fd5b506102c6610aec565b6040516102d39190613ab3565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061344e565b610b7e565b6040516103109190613a0f565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b91906132de565b610c03565b005b34801561034e57600080fd5b50610357610d1b565b6040516103649190613dd5565b60405180910390f35b34801561037957600080fd5b50610382610d21565b60405161038f9190613dd5565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906131c8565b610d32565b005b3480156103cd57600080fd5b506103e860048036038101906103e3919061315b565b610d92565b6040516103f59190613a98565b60405180910390f35b34801561040a57600080fd5b506104256004803603810190610420919061315b565b610e10565b6040516104329190613df0565b60405180910390f35b610443610e66565b005b34801561045157600080fd5b5061046c600480360381019061046791906131c8565b610f62565b005b34801561047a57600080fd5b506104956004803603810190610490919061344e565b610f82565b005b3480156104a357600080fd5b506104be60048036038101906104b9919061315b565b610fde565b6040516104cb9190613a76565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f6919061344e565b6110e9565b005b610517600480360381019061051291906132de565b61116f565b005b34801561052557600080fd5b50610540600480360381019061053b9190613405565b611287565b005b34801561054e57600080fd5b506105696004803603810190610564919061331e565b61131d565b005b34801561057757600080fd5b50610592600480360381019061058d919061344e565b61143f565b60405161059f9190613a0f565b60405180910390f35b3480156105b457600080fd5b506105bd6114f1565b6040516105ca9190613ab3565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f5919061315b565b61157f565b6040516106079190613dd5565b60405180910390f35b34801561061c57600080fd5b50610625611637565b005b34801561063357600080fd5b5061063c6116bf565b6040516106499190613a0f565b60405180910390f35b34801561065e57600080fd5b506106676116e9565b6040516106749190613a98565b60405180910390f35b34801561068957600080fd5b506106926116fc565b60405161069f9190613ab3565b60405180910390f35b6106c260048036038101906106bd919061344e565b61178e565b005b3480156106d057600080fd5b506106eb60048036038101906106e6919061329e565b611a6e565b005b3480156106f957600080fd5b50610702611bef565b60405161070f9190613a98565b60405180910390f35b34801561072457600080fd5b5061072d611c02565b60405161073a9190613a98565b60405180910390f35b34801561074f57600080fd5b5061076a6004803603810190610765919061321b565b611c15565b005b34801561077857600080fd5b50610781611c77565b60405161078e9190613dd5565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061315b565b611c7d565b6040516107cb9190613df0565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061337e565b611c9d565b005b34801561080957600080fd5b50610824600480360381019061081f919061337e565b611d36565b005b34801561083257600080fd5b5061083b611dcf565b6040516108489190613ab3565b60405180910390f35b34801561085d57600080fd5b506108786004803603810190610873919061344e565b611e5d565b6040516108859190613ab3565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b0919061344e565b611edc565b005b3480156108c357600080fd5b506108de60048036038101906108d99190613405565b611f62565b005b3480156108ec57600080fd5b506108f5611ff8565b6040516109029190613dd5565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613188565b611ffe565b60405161093f9190613a98565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a919061315b565b612092565b005b61097961218a565b73ffffffffffffffffffffffffffffffffffffffff166109976116bf565b73ffffffffffffffffffffffffffffffffffffffff16146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613c95565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae55750610ae482612192565b5b9050919050565b606060008054610afb90614106565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2790614106565b8015610b745780601f10610b4957610100808354040283529160200191610b74565b820191906000526020600020905b815481529060010190602001808311610b5757829003601f168201915b5050505050905090565b6000610b89826121fc565b610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613c75565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0e8261143f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613d15565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9e61218a565b73ffffffffffffffffffffffffffffffffffffffff161480610ccd5750610ccc81610cc761218a565b611ffe565b5b610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613bb5565b60405180910390fd5b610d168383612268565b505050565b600b5481565b6000610d2d6008612321565b905090565b610d43610d3d61218a565b8261232f565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613d55565b60405180910390fd5b610d8d83838361240d565b505050565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1690506001811480610df65750600281145b15610e05576001915050610e0b565b60009150505b919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e6e61218a565b73ffffffffffffffffffffffffffffffffffffffff16610e8c6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990613c95565b60405180910390fd5b6000610eec6116bf565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f0f906139fa565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b50565b610f7d83838360405180602001604052806000815250611c15565b505050565b610f93610f8d61218a565b8261232f565b610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990613d95565b60405180910390fd5b610fdb81612669565b50565b60606000610feb8361157f565b905060008167ffffffffffffffff8111156110095761100861429f565b5b6040519080825280602002602001820160405280156110375781602001602082028036833780820191505090505b50905060006001905060005b8381108015611054575061270d8211155b156110dd5760006110648361143f565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c957828483815181106110ae576110ad614270565b5b60200260200101818152505081806110c590614169565b9250505b82806110d490614169565b93505050611043565b82945050505050919050565b6110f161218a565b73ffffffffffffffffffffffffffffffffffffffff1661110f6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613c95565b60405180910390fd5b80600b8190555050565b61117761218a565b73ffffffffffffffffffffffffffffffffffffffff166111956116bf565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613c95565b60405180910390fd5b61270d816111f96008612321565b6112039190613f2e565b1115611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613c35565b60405180910390fd5b6000600190505b8181116112825761125c600861277a565b61126f8361126a6008612321565b612799565b808061127a90614169565b91505061124b565b505050565b61128f61218a565b73ffffffffffffffffffffffffffffffffffffffff166112ad6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90613c95565b60405180910390fd5b8060099080519060200190611319929190612f04565b5050565b61132561218a565b73ffffffffffffffffffffffffffffffffffffffff166113436116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090613c95565b60405180910390fd5b60005b838390508110156114395781600e60008686858181106113bf576113be614270565b5b90506020020160208101906113d4919061315b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061143190614169565b91505061139c565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613c15565b60405180910390fd5b80915050919050565b600980546114fe90614106565b80601f016020809104026020016040519081016040528092919081815260200182805461152a90614106565b80156115775780601f1061154c57610100808354040283529160200191611577565b820191906000526020600020905b81548152906001019060200180831161155a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613bf5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163f61218a565b73ffffffffffffffffffffffffffffffffffffffff1661165d6116bf565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613c95565b60405180910390fd5b6116bd60006127b7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60019054906101000a900460ff1681565b60606001805461170b90614106565b80601f016020809104026020016040519081016040528092919081815260200182805461173790614106565b80156117845780601f1061175957610100808354040283529160200191611784565b820191906000526020600020905b81548152906001019060200180831161176757829003601f168201915b5050505050905090565b600260075414156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613d75565b60405180910390fd5b6002600781905550600d60009054906101000a900460ff161561182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613cb5565b60405180910390fd5b6000811161186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613db5565b60405180910390fd5b600061187a8261287d565b905061270d8161188a6008612321565b6118949190613f2e565b11156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613c35565b60405180910390fd5b6118dd6116bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a235760011515600d60019054906101000a900460ff16151514156119745761193433610d92565b611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90613bd5565b60405180910390fd5b5b600061197f3361157f565b9050600c5482826119909190613f2e565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890613b35565b60405180910390fd5b82600b546119df9190613fb5565b341015611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890613d35565b60405180910390fd5b505b6000600190505b818111611a6157611a3b600861277a565b611a4e33611a496008612321565b612799565b8080611a5990614169565b915050611a2a565b5050600160078190555050565b611a7661218a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613b75565b60405180910390fd5b8060056000611af161218a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b9e61218a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be39190613a98565b60405180910390a35050565b600d60029054906101000a900460ff1681565b600d60009054906101000a900460ff1681565b611c26611c2061218a565b8361232f565b611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613d55565b60405180910390fd5b611c718484848461296f565b50505050565b600c5481565b600e6020528060005260406000206000915054906101000a900460ff1681565b611ca561218a565b73ffffffffffffffffffffffffffffffffffffffff16611cc36116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090613c95565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b611d3e61218a565b73ffffffffffffffffffffffffffffffffffffffff16611d5c6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613c95565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b600a8054611ddc90614106565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0890614106565b8015611e555780601f10611e2a57610100808354040283529160200191611e55565b820191906000526020600020905b815481529060010190602001808311611e3857829003601f168201915b505050505081565b6060611e68826121fc565b611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e90613cf5565b60405180910390fd5b6009611eb2836129cb565b600a604051602001611ec6939291906139c9565b6040516020818303038152906040529050919050565b611ee461218a565b73ffffffffffffffffffffffffffffffffffffffff16611f026116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90613c95565b60405180910390fd5b80600c8190555050565b611f6a61218a565b73ffffffffffffffffffffffffffffffffffffffff16611f886116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590613c95565b60405180910390fd5b80600a9080519060200190611ff4929190612f04565b5050565b61270d81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209a61218a565b73ffffffffffffffffffffffffffffffffffffffff166120b86116bf565b73ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590613c95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613af5565b60405180910390fd5b612187816127b7565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122db8361143f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061233a826121fc565b612379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237090613b95565b60405180910390fd5b60006123848361143f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f357508373ffffffffffffffffffffffffffffffffffffffff166123db84610b7e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240457506124038185611ffe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242d8261143f565b73ffffffffffffffffffffffffffffffffffffffff1614612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90613cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea90613b55565b60405180910390fd5b6124fe838383612b2c565b612509600082612268565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612559919061400f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b09190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006126748261143f565b905061268281600084612b2c565b61268d600083612268565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126dd919061400f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600181600001600082825461278f9190613f2e565b9250508190555050565b6127b3828260405180602001604052806000815250612b31565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060011515600d60029054906101000a900460ff1615151415612966576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169050600181148015612900575060058310155b1561291a576002836129129190613f2e565b91505061296a565b60018114806129295750600281145b8015612936575060038310155b801561294a575060046129483361157f565b105b156129645760018361295c9190613f2e565b91505061296a565b505b8190505b919050565b61297a84848461240d565b61298684848484612b8c565b6129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90613ad5565b60405180910390fd5b50505050565b60606000821415612a13576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b27565b600082905060005b60008214612a45578080612a2e90614169565b915050600a82612a3e9190613f84565b9150612a1b565b60008167ffffffffffffffff811115612a6157612a6061429f565b5b6040519080825280601f01601f191660200182016040528015612a935781602001600182028036833780820191505090505b5090505b60008514612b2057600182612aac919061400f565b9150600a85612abb91906141b2565b6030612ac79190613f2e565b60f81b818381518110612add57612adc614270565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b199190613f84565b9450612a97565b8093505050505b919050565b505050565b612b3b8383612d23565b612b486000848484612b8c565b612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90613ad5565b60405180910390fd5b505050565b6000612bad8473ffffffffffffffffffffffffffffffffffffffff16612ef1565b15612d16578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bd661218a565b8786866040518563ffffffff1660e01b8152600401612bf89493929190613a2a565b602060405180830381600087803b158015612c1257600080fd5b505af1925050508015612c4357506040513d601f19601f82011682018060405250810190612c4091906133d8565b60015b612cc6573d8060008114612c73576040519150601f19603f3d011682016040523d82523d6000602084013e612c78565b606091505b50600081511415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590613ad5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8a90613c55565b60405180910390fd5b612d9c816121fc565b15612ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd390613b15565b60405180910390fd5b612de860008383612b2c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e389190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f1090614106565b90600052602060002090601f016020900481019282612f325760008555612f79565b82601f10612f4b57805160ff1916838001178555612f79565b82800160010185558215612f79579182015b82811115612f78578251825591602001919060010190612f5d565b5b509050612f869190612f8a565b5090565b5b80821115612fa3576000816000905550600101612f8b565b5090565b6000612fba612fb584613e30565b613e0b565b905082815260208101848484011115612fd657612fd56142dd565b5b612fe18482856140c4565b509392505050565b6000612ffc612ff784613e61565b613e0b565b905082815260208101848484011115613018576130176142dd565b5b6130238482856140c4565b509392505050565b60008135905061303a816148c6565b92915050565b60008083601f840112613056576130556142d3565b5b8235905067ffffffffffffffff811115613073576130726142ce565b5b60208301915083602082028301111561308f5761308e6142d8565b5b9250929050565b6000813590506130a5816148dd565b92915050565b6000813590506130ba816148f4565b92915050565b6000815190506130cf816148f4565b92915050565b600082601f8301126130ea576130e96142d3565b5b81356130fa848260208601612fa7565b91505092915050565b600082601f830112613118576131176142d3565b5b8135613128848260208601612fe9565b91505092915050565b6000813590506131408161490b565b92915050565b60008135905061315581614922565b92915050565b600060208284031215613171576131706142e7565b5b600061317f8482850161302b565b91505092915050565b6000806040838503121561319f5761319e6142e7565b5b60006131ad8582860161302b565b92505060206131be8582860161302b565b9150509250929050565b6000806000606084860312156131e1576131e06142e7565b5b60006131ef8682870161302b565b93505060206132008682870161302b565b925050604061321186828701613131565b9150509250925092565b60008060008060808587031215613235576132346142e7565b5b60006132438782880161302b565b94505060206132548782880161302b565b935050604061326587828801613131565b925050606085013567ffffffffffffffff811115613286576132856142e2565b5b613292878288016130d5565b91505092959194509250565b600080604083850312156132b5576132b46142e7565b5b60006132c38582860161302b565b92505060206132d485828601613096565b9150509250929050565b600080604083850312156132f5576132f46142e7565b5b60006133038582860161302b565b925050602061331485828601613131565b9150509250929050565b600080600060408486031215613337576133366142e7565b5b600084013567ffffffffffffffff811115613355576133546142e2565b5b61336186828701613040565b9350935050602061337486828701613146565b9150509250925092565b600060208284031215613394576133936142e7565b5b60006133a284828501613096565b91505092915050565b6000602082840312156133c1576133c06142e7565b5b60006133cf848285016130ab565b91505092915050565b6000602082840312156133ee576133ed6142e7565b5b60006133fc848285016130c0565b91505092915050565b60006020828403121561341b5761341a6142e7565b5b600082013567ffffffffffffffff811115613439576134386142e2565b5b61344584828501613103565b91505092915050565b600060208284031215613464576134636142e7565b5b600061347284828501613131565b91505092915050565b6000613487838361399c565b60208301905092915050565b61349c81614043565b82525050565b60006134ad82613eb7565b6134b78185613ee5565b93506134c283613e92565b8060005b838110156134f35781516134da888261347b565b97506134e583613ed8565b9250506001810190506134c6565b5085935050505092915050565b61350981614055565b82525050565b600061351a82613ec2565b6135248185613ef6565b93506135348185602086016140d3565b61353d816142ec565b840191505092915050565b600061355382613ecd565b61355d8185613f12565b935061356d8185602086016140d3565b613576816142ec565b840191505092915050565b600061358c82613ecd565b6135968185613f23565b93506135a68185602086016140d3565b80840191505092915050565b600081546135bf81614106565b6135c98186613f23565b945060018216600081146135e457600181146135f557613628565b60ff19831686528186019350613628565b6135fe85613ea2565b60005b8381101561362057815481890152600182019150602081019050613601565b838801955050505b50505092915050565b600061363e603283613f12565b9150613649826142fd565b604082019050919050565b6000613661602683613f12565b915061366c8261434c565b604082019050919050565b6000613684601c83613f12565b915061368f8261439b565b602082019050919050565b60006136a7601c83613f12565b91506136b2826143c4565b602082019050919050565b60006136ca602483613f12565b91506136d5826143ed565b604082019050919050565b60006136ed601983613f12565b91506136f88261443c565b602082019050919050565b6000613710602c83613f12565b915061371b82614465565b604082019050919050565b6000613733603883613f12565b915061373e826144b4565b604082019050919050565b6000613756601983613f12565b915061376182614503565b602082019050919050565b6000613779602a83613f12565b91506137848261452c565b604082019050919050565b600061379c602983613f12565b91506137a78261457b565b604082019050919050565b60006137bf601683613f12565b91506137ca826145ca565b602082019050919050565b60006137e2602083613f12565b91506137ed826145f3565b602082019050919050565b6000613805602c83613f12565b91506138108261461c565b604082019050919050565b6000613828602083613f12565b91506138338261466b565b602082019050919050565b600061384b601683613f12565b915061385682614694565b602082019050919050565b600061386e602983613f12565b9150613879826146bd565b604082019050919050565b6000613891602f83613f12565b915061389c8261470c565b604082019050919050565b60006138b4602183613f12565b91506138bf8261475b565b604082019050919050565b60006138d7600083613f07565b91506138e2826147aa565b600082019050919050565b60006138fa601283613f12565b9150613905826147ad565b602082019050919050565b600061391d603183613f12565b9150613928826147d6565b604082019050919050565b6000613940601f83613f12565b915061394b82614825565b602082019050919050565b6000613963603083613f12565b915061396e8261484e565b604082019050919050565b6000613986601b83613f12565b91506139918261489d565b602082019050919050565b6139a5816140ad565b82525050565b6139b4816140ad565b82525050565b6139c3816140b7565b82525050565b60006139d582866135b2565b91506139e18285613581565b91506139ed82846135b2565b9150819050949350505050565b6000613a05826138ca565b9150819050919050565b6000602082019050613a246000830184613493565b92915050565b6000608082019050613a3f6000830187613493565b613a4c6020830186613493565b613a5960408301856139ab565b8181036060830152613a6b818461350f565b905095945050505050565b60006020820190508181036000830152613a9081846134a2565b905092915050565b6000602082019050613aad6000830184613500565b92915050565b60006020820190508181036000830152613acd8184613548565b905092915050565b60006020820190508181036000830152613aee81613631565b9050919050565b60006020820190508181036000830152613b0e81613654565b9050919050565b60006020820190508181036000830152613b2e81613677565b9050919050565b60006020820190508181036000830152613b4e8161369a565b9050919050565b60006020820190508181036000830152613b6e816136bd565b9050919050565b60006020820190508181036000830152613b8e816136e0565b9050919050565b60006020820190508181036000830152613bae81613703565b9050919050565b60006020820190508181036000830152613bce81613726565b9050919050565b60006020820190508181036000830152613bee81613749565b9050919050565b60006020820190508181036000830152613c0e8161376c565b9050919050565b60006020820190508181036000830152613c2e8161378f565b9050919050565b60006020820190508181036000830152613c4e816137b2565b9050919050565b60006020820190508181036000830152613c6e816137d5565b9050919050565b60006020820190508181036000830152613c8e816137f8565b9050919050565b60006020820190508181036000830152613cae8161381b565b9050919050565b60006020820190508181036000830152613cce8161383e565b9050919050565b60006020820190508181036000830152613cee81613861565b9050919050565b60006020820190508181036000830152613d0e81613884565b9050919050565b60006020820190508181036000830152613d2e816138a7565b9050919050565b60006020820190508181036000830152613d4e816138ed565b9050919050565b60006020820190508181036000830152613d6e81613910565b9050919050565b60006020820190508181036000830152613d8e81613933565b9050919050565b60006020820190508181036000830152613dae81613956565b9050919050565b60006020820190508181036000830152613dce81613979565b9050919050565b6000602082019050613dea60008301846139ab565b92915050565b6000602082019050613e0560008301846139ba565b92915050565b6000613e15613e26565b9050613e218282614138565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4b57613e4a61429f565b5b613e54826142ec565b9050602081019050919050565b600067ffffffffffffffff821115613e7c57613e7b61429f565b5b613e85826142ec565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f39826140ad565b9150613f44836140ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7957613f786141e3565b5b828201905092915050565b6000613f8f826140ad565b9150613f9a836140ad565b925082613faa57613fa9614212565b5b828204905092915050565b6000613fc0826140ad565b9150613fcb836140ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614004576140036141e3565b5b828202905092915050565b600061401a826140ad565b9150614025836140ad565b925082821015614038576140376141e3565b5b828203905092915050565b600061404e8261408d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140f15780820151818401526020810190506140d6565b83811115614100576000848401525b50505050565b6000600282049050600182168061411e57607f821691505b6020821081141561413257614131614241565b5b50919050565b614141826142ec565b810181811067ffffffffffffffff821117156141605761415f61429f565b5b80604052505050565b6000614174826140ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141a7576141a66141e3565b5b600182019050919050565b60006141bd826140ad565b91506141c8836140ad565b9250826141d8576141d7614212565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f75736572206973206e6f7420696e20616c6c6f77206c69737400000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6148cf81614043565b81146148da57600080fd5b50565b6148e681614055565b81146148f157600080fd5b50565b6148fd81614061565b811461490857600080fd5b50565b614914816140ad565b811461491f57600080fd5b50565b61492b816140b7565b811461493657600080fd5b5056fea264697066735822122042f7075c73217852b5fd95e59bcb14482cde91527a6585d6f652b31499f15f8e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063ba7d2c76116100b6578063c87b56dd1161007a578063c87b56dd14610851578063d0eb26b01461088e578063da3ef23f146108b7578063e3f1e53a146108e0578063e985e9c51461090b578063f2fde38b1461094857610246565b8063ba7d2c761461076c578063ba81c38514610797578063bedb86fb146107d4578063c54e73e3146107fd578063c66828621461082657610246565b8063a0712d68116100fd578063a0712d68146106a8578063a22cb465146106c4578063aa90ed84146106ed578063b187bd2614610718578063b88d4fde1461074357610246565b806370a08231146105d3578063715018a6146106105780638da5cb5b1461062757806395364a841461065257806395d89b411461067d57610246565b80633ccfd60b116101c7578063484b973c1161018b578063484b973c146104fd57806355f804b31461051957806360fac2a4146105425780636352211e1461056b5780636c0360eb146105a857610246565b80633ccfd60b1461043b57806342842e0e1461044557806342966c681461046e578063438b63001461049757806344a0d68a146104d457610246565b806313faede61161020e57806313faede61461034257806318160ddd1461036d57806323b872dd14610398578063245a3dac146103c157806327820851146103fe57610246565b8063019137af1461024b57806301ffc9a71461027457806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061337e565b610971565b005b34801561028057600080fd5b5061029b600480360381019061029691906133ab565b610a0a565b6040516102a89190613a98565b60405180910390f35b3480156102bd57600080fd5b506102c6610aec565b6040516102d39190613ab3565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061344e565b610b7e565b6040516103109190613a0f565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b91906132de565b610c03565b005b34801561034e57600080fd5b50610357610d1b565b6040516103649190613dd5565b60405180910390f35b34801561037957600080fd5b50610382610d21565b60405161038f9190613dd5565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906131c8565b610d32565b005b3480156103cd57600080fd5b506103e860048036038101906103e3919061315b565b610d92565b6040516103f59190613a98565b60405180910390f35b34801561040a57600080fd5b506104256004803603810190610420919061315b565b610e10565b6040516104329190613df0565b60405180910390f35b610443610e66565b005b34801561045157600080fd5b5061046c600480360381019061046791906131c8565b610f62565b005b34801561047a57600080fd5b506104956004803603810190610490919061344e565b610f82565b005b3480156104a357600080fd5b506104be60048036038101906104b9919061315b565b610fde565b6040516104cb9190613a76565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f6919061344e565b6110e9565b005b610517600480360381019061051291906132de565b61116f565b005b34801561052557600080fd5b50610540600480360381019061053b9190613405565b611287565b005b34801561054e57600080fd5b506105696004803603810190610564919061331e565b61131d565b005b34801561057757600080fd5b50610592600480360381019061058d919061344e565b61143f565b60405161059f9190613a0f565b60405180910390f35b3480156105b457600080fd5b506105bd6114f1565b6040516105ca9190613ab3565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f5919061315b565b61157f565b6040516106079190613dd5565b60405180910390f35b34801561061c57600080fd5b50610625611637565b005b34801561063357600080fd5b5061063c6116bf565b6040516106499190613a0f565b60405180910390f35b34801561065e57600080fd5b506106676116e9565b6040516106749190613a98565b60405180910390f35b34801561068957600080fd5b506106926116fc565b60405161069f9190613ab3565b60405180910390f35b6106c260048036038101906106bd919061344e565b61178e565b005b3480156106d057600080fd5b506106eb60048036038101906106e6919061329e565b611a6e565b005b3480156106f957600080fd5b50610702611bef565b60405161070f9190613a98565b60405180910390f35b34801561072457600080fd5b5061072d611c02565b60405161073a9190613a98565b60405180910390f35b34801561074f57600080fd5b5061076a6004803603810190610765919061321b565b611c15565b005b34801561077857600080fd5b50610781611c77565b60405161078e9190613dd5565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061315b565b611c7d565b6040516107cb9190613df0565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061337e565b611c9d565b005b34801561080957600080fd5b50610824600480360381019061081f919061337e565b611d36565b005b34801561083257600080fd5b5061083b611dcf565b6040516108489190613ab3565b60405180910390f35b34801561085d57600080fd5b506108786004803603810190610873919061344e565b611e5d565b6040516108859190613ab3565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b0919061344e565b611edc565b005b3480156108c357600080fd5b506108de60048036038101906108d99190613405565b611f62565b005b3480156108ec57600080fd5b506108f5611ff8565b6040516109029190613dd5565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613188565b611ffe565b60405161093f9190613a98565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a919061315b565b612092565b005b61097961218a565b73ffffffffffffffffffffffffffffffffffffffff166109976116bf565b73ffffffffffffffffffffffffffffffffffffffff16146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613c95565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae55750610ae482612192565b5b9050919050565b606060008054610afb90614106565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2790614106565b8015610b745780601f10610b4957610100808354040283529160200191610b74565b820191906000526020600020905b815481529060010190602001808311610b5757829003601f168201915b5050505050905090565b6000610b89826121fc565b610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613c75565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0e8261143f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613d15565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9e61218a565b73ffffffffffffffffffffffffffffffffffffffff161480610ccd5750610ccc81610cc761218a565b611ffe565b5b610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613bb5565b60405180910390fd5b610d168383612268565b505050565b600b5481565b6000610d2d6008612321565b905090565b610d43610d3d61218a565b8261232f565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613d55565b60405180910390fd5b610d8d83838361240d565b505050565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1690506001811480610df65750600281145b15610e05576001915050610e0b565b60009150505b919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e6e61218a565b73ffffffffffffffffffffffffffffffffffffffff16610e8c6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990613c95565b60405180910390fd5b6000610eec6116bf565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f0f906139fa565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b50565b610f7d83838360405180602001604052806000815250611c15565b505050565b610f93610f8d61218a565b8261232f565b610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990613d95565b60405180910390fd5b610fdb81612669565b50565b60606000610feb8361157f565b905060008167ffffffffffffffff8111156110095761100861429f565b5b6040519080825280602002602001820160405280156110375781602001602082028036833780820191505090505b50905060006001905060005b8381108015611054575061270d8211155b156110dd5760006110648361143f565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c957828483815181106110ae576110ad614270565b5b60200260200101818152505081806110c590614169565b9250505b82806110d490614169565b93505050611043565b82945050505050919050565b6110f161218a565b73ffffffffffffffffffffffffffffffffffffffff1661110f6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613c95565b60405180910390fd5b80600b8190555050565b61117761218a565b73ffffffffffffffffffffffffffffffffffffffff166111956116bf565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613c95565b60405180910390fd5b61270d816111f96008612321565b6112039190613f2e565b1115611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613c35565b60405180910390fd5b6000600190505b8181116112825761125c600861277a565b61126f8361126a6008612321565b612799565b808061127a90614169565b91505061124b565b505050565b61128f61218a565b73ffffffffffffffffffffffffffffffffffffffff166112ad6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90613c95565b60405180910390fd5b8060099080519060200190611319929190612f04565b5050565b61132561218a565b73ffffffffffffffffffffffffffffffffffffffff166113436116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090613c95565b60405180910390fd5b60005b838390508110156114395781600e60008686858181106113bf576113be614270565b5b90506020020160208101906113d4919061315b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061143190614169565b91505061139c565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613c15565b60405180910390fd5b80915050919050565b600980546114fe90614106565b80601f016020809104026020016040519081016040528092919081815260200182805461152a90614106565b80156115775780601f1061154c57610100808354040283529160200191611577565b820191906000526020600020905b81548152906001019060200180831161155a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613bf5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163f61218a565b73ffffffffffffffffffffffffffffffffffffffff1661165d6116bf565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613c95565b60405180910390fd5b6116bd60006127b7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60019054906101000a900460ff1681565b60606001805461170b90614106565b80601f016020809104026020016040519081016040528092919081815260200182805461173790614106565b80156117845780601f1061175957610100808354040283529160200191611784565b820191906000526020600020905b81548152906001019060200180831161176757829003601f168201915b5050505050905090565b600260075414156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613d75565b60405180910390fd5b6002600781905550600d60009054906101000a900460ff161561182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613cb5565b60405180910390fd5b6000811161186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613db5565b60405180910390fd5b600061187a8261287d565b905061270d8161188a6008612321565b6118949190613f2e565b11156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613c35565b60405180910390fd5b6118dd6116bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a235760011515600d60019054906101000a900460ff16151514156119745761193433610d92565b611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90613bd5565b60405180910390fd5b5b600061197f3361157f565b9050600c5482826119909190613f2e565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890613b35565b60405180910390fd5b82600b546119df9190613fb5565b341015611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890613d35565b60405180910390fd5b505b6000600190505b818111611a6157611a3b600861277a565b611a4e33611a496008612321565b612799565b8080611a5990614169565b915050611a2a565b5050600160078190555050565b611a7661218a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613b75565b60405180910390fd5b8060056000611af161218a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b9e61218a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be39190613a98565b60405180910390a35050565b600d60029054906101000a900460ff1681565b600d60009054906101000a900460ff1681565b611c26611c2061218a565b8361232f565b611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613d55565b60405180910390fd5b611c718484848461296f565b50505050565b600c5481565b600e6020528060005260406000206000915054906101000a900460ff1681565b611ca561218a565b73ffffffffffffffffffffffffffffffffffffffff16611cc36116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090613c95565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b611d3e61218a565b73ffffffffffffffffffffffffffffffffffffffff16611d5c6116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613c95565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b600a8054611ddc90614106565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0890614106565b8015611e555780601f10611e2a57610100808354040283529160200191611e55565b820191906000526020600020905b815481529060010190602001808311611e3857829003601f168201915b505050505081565b6060611e68826121fc565b611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e90613cf5565b60405180910390fd5b6009611eb2836129cb565b600a604051602001611ec6939291906139c9565b6040516020818303038152906040529050919050565b611ee461218a565b73ffffffffffffffffffffffffffffffffffffffff16611f026116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90613c95565b60405180910390fd5b80600c8190555050565b611f6a61218a565b73ffffffffffffffffffffffffffffffffffffffff16611f886116bf565b73ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590613c95565b60405180910390fd5b80600a9080519060200190611ff4929190612f04565b5050565b61270d81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209a61218a565b73ffffffffffffffffffffffffffffffffffffffff166120b86116bf565b73ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590613c95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613af5565b60405180910390fd5b612187816127b7565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122db8361143f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061233a826121fc565b612379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237090613b95565b60405180910390fd5b60006123848361143f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f357508373ffffffffffffffffffffffffffffffffffffffff166123db84610b7e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240457506124038185611ffe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242d8261143f565b73ffffffffffffffffffffffffffffffffffffffff1614612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90613cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea90613b55565b60405180910390fd5b6124fe838383612b2c565b612509600082612268565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612559919061400f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b09190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006126748261143f565b905061268281600084612b2c565b61268d600083612268565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126dd919061400f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600181600001600082825461278f9190613f2e565b9250508190555050565b6127b3828260405180602001604052806000815250612b31565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060011515600d60029054906101000a900460ff1615151415612966576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169050600181148015612900575060058310155b1561291a576002836129129190613f2e565b91505061296a565b60018114806129295750600281145b8015612936575060038310155b801561294a575060046129483361157f565b105b156129645760018361295c9190613f2e565b91505061296a565b505b8190505b919050565b61297a84848461240d565b61298684848484612b8c565b6129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90613ad5565b60405180910390fd5b50505050565b60606000821415612a13576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b27565b600082905060005b60008214612a45578080612a2e90614169565b915050600a82612a3e9190613f84565b9150612a1b565b60008167ffffffffffffffff811115612a6157612a6061429f565b5b6040519080825280601f01601f191660200182016040528015612a935781602001600182028036833780820191505090505b5090505b60008514612b2057600182612aac919061400f565b9150600a85612abb91906141b2565b6030612ac79190613f2e565b60f81b818381518110612add57612adc614270565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b199190613f84565b9450612a97565b8093505050505b919050565b505050565b612b3b8383612d23565b612b486000848484612b8c565b612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90613ad5565b60405180910390fd5b505050565b6000612bad8473ffffffffffffffffffffffffffffffffffffffff16612ef1565b15612d16578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bd661218a565b8786866040518563ffffffff1660e01b8152600401612bf89493929190613a2a565b602060405180830381600087803b158015612c1257600080fd5b505af1925050508015612c4357506040513d601f19601f82011682018060405250810190612c4091906133d8565b60015b612cc6573d8060008114612c73576040519150601f19603f3d011682016040523d82523d6000602084013e612c78565b606091505b50600081511415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590613ad5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8a90613c55565b60405180910390fd5b612d9c816121fc565b15612ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd390613b15565b60405180910390fd5b612de860008383612b2c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e389190613f2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f1090614106565b90600052602060002090601f016020900481019282612f325760008555612f79565b82601f10612f4b57805160ff1916838001178555612f79565b82800160010185558215612f79579182015b82811115612f78578251825591602001919060010190612f5d565b5b509050612f869190612f8a565b5090565b5b80821115612fa3576000816000905550600101612f8b565b5090565b6000612fba612fb584613e30565b613e0b565b905082815260208101848484011115612fd657612fd56142dd565b5b612fe18482856140c4565b509392505050565b6000612ffc612ff784613e61565b613e0b565b905082815260208101848484011115613018576130176142dd565b5b6130238482856140c4565b509392505050565b60008135905061303a816148c6565b92915050565b60008083601f840112613056576130556142d3565b5b8235905067ffffffffffffffff811115613073576130726142ce565b5b60208301915083602082028301111561308f5761308e6142d8565b5b9250929050565b6000813590506130a5816148dd565b92915050565b6000813590506130ba816148f4565b92915050565b6000815190506130cf816148f4565b92915050565b600082601f8301126130ea576130e96142d3565b5b81356130fa848260208601612fa7565b91505092915050565b600082601f830112613118576131176142d3565b5b8135613128848260208601612fe9565b91505092915050565b6000813590506131408161490b565b92915050565b60008135905061315581614922565b92915050565b600060208284031215613171576131706142e7565b5b600061317f8482850161302b565b91505092915050565b6000806040838503121561319f5761319e6142e7565b5b60006131ad8582860161302b565b92505060206131be8582860161302b565b9150509250929050565b6000806000606084860312156131e1576131e06142e7565b5b60006131ef8682870161302b565b93505060206132008682870161302b565b925050604061321186828701613131565b9150509250925092565b60008060008060808587031215613235576132346142e7565b5b60006132438782880161302b565b94505060206132548782880161302b565b935050604061326587828801613131565b925050606085013567ffffffffffffffff811115613286576132856142e2565b5b613292878288016130d5565b91505092959194509250565b600080604083850312156132b5576132b46142e7565b5b60006132c38582860161302b565b92505060206132d485828601613096565b9150509250929050565b600080604083850312156132f5576132f46142e7565b5b60006133038582860161302b565b925050602061331485828601613131565b9150509250929050565b600080600060408486031215613337576133366142e7565b5b600084013567ffffffffffffffff811115613355576133546142e2565b5b61336186828701613040565b9350935050602061337486828701613146565b9150509250925092565b600060208284031215613394576133936142e7565b5b60006133a284828501613096565b91505092915050565b6000602082840312156133c1576133c06142e7565b5b60006133cf848285016130ab565b91505092915050565b6000602082840312156133ee576133ed6142e7565b5b60006133fc848285016130c0565b91505092915050565b60006020828403121561341b5761341a6142e7565b5b600082013567ffffffffffffffff811115613439576134386142e2565b5b61344584828501613103565b91505092915050565b600060208284031215613464576134636142e7565b5b600061347284828501613131565b91505092915050565b6000613487838361399c565b60208301905092915050565b61349c81614043565b82525050565b60006134ad82613eb7565b6134b78185613ee5565b93506134c283613e92565b8060005b838110156134f35781516134da888261347b565b97506134e583613ed8565b9250506001810190506134c6565b5085935050505092915050565b61350981614055565b82525050565b600061351a82613ec2565b6135248185613ef6565b93506135348185602086016140d3565b61353d816142ec565b840191505092915050565b600061355382613ecd565b61355d8185613f12565b935061356d8185602086016140d3565b613576816142ec565b840191505092915050565b600061358c82613ecd565b6135968185613f23565b93506135a68185602086016140d3565b80840191505092915050565b600081546135bf81614106565b6135c98186613f23565b945060018216600081146135e457600181146135f557613628565b60ff19831686528186019350613628565b6135fe85613ea2565b60005b8381101561362057815481890152600182019150602081019050613601565b838801955050505b50505092915050565b600061363e603283613f12565b9150613649826142fd565b604082019050919050565b6000613661602683613f12565b915061366c8261434c565b604082019050919050565b6000613684601c83613f12565b915061368f8261439b565b602082019050919050565b60006136a7601c83613f12565b91506136b2826143c4565b602082019050919050565b60006136ca602483613f12565b91506136d5826143ed565b604082019050919050565b60006136ed601983613f12565b91506136f88261443c565b602082019050919050565b6000613710602c83613f12565b915061371b82614465565b604082019050919050565b6000613733603883613f12565b915061373e826144b4565b604082019050919050565b6000613756601983613f12565b915061376182614503565b602082019050919050565b6000613779602a83613f12565b91506137848261452c565b604082019050919050565b600061379c602983613f12565b91506137a78261457b565b604082019050919050565b60006137bf601683613f12565b91506137ca826145ca565b602082019050919050565b60006137e2602083613f12565b91506137ed826145f3565b602082019050919050565b6000613805602c83613f12565b91506138108261461c565b604082019050919050565b6000613828602083613f12565b91506138338261466b565b602082019050919050565b600061384b601683613f12565b915061385682614694565b602082019050919050565b600061386e602983613f12565b9150613879826146bd565b604082019050919050565b6000613891602f83613f12565b915061389c8261470c565b604082019050919050565b60006138b4602183613f12565b91506138bf8261475b565b604082019050919050565b60006138d7600083613f07565b91506138e2826147aa565b600082019050919050565b60006138fa601283613f12565b9150613905826147ad565b602082019050919050565b600061391d603183613f12565b9150613928826147d6565b604082019050919050565b6000613940601f83613f12565b915061394b82614825565b602082019050919050565b6000613963603083613f12565b915061396e8261484e565b604082019050919050565b6000613986601b83613f12565b91506139918261489d565b602082019050919050565b6139a5816140ad565b82525050565b6139b4816140ad565b82525050565b6139c3816140b7565b82525050565b60006139d582866135b2565b91506139e18285613581565b91506139ed82846135b2565b9150819050949350505050565b6000613a05826138ca565b9150819050919050565b6000602082019050613a246000830184613493565b92915050565b6000608082019050613a3f6000830187613493565b613a4c6020830186613493565b613a5960408301856139ab565b8181036060830152613a6b818461350f565b905095945050505050565b60006020820190508181036000830152613a9081846134a2565b905092915050565b6000602082019050613aad6000830184613500565b92915050565b60006020820190508181036000830152613acd8184613548565b905092915050565b60006020820190508181036000830152613aee81613631565b9050919050565b60006020820190508181036000830152613b0e81613654565b9050919050565b60006020820190508181036000830152613b2e81613677565b9050919050565b60006020820190508181036000830152613b4e8161369a565b9050919050565b60006020820190508181036000830152613b6e816136bd565b9050919050565b60006020820190508181036000830152613b8e816136e0565b9050919050565b60006020820190508181036000830152613bae81613703565b9050919050565b60006020820190508181036000830152613bce81613726565b9050919050565b60006020820190508181036000830152613bee81613749565b9050919050565b60006020820190508181036000830152613c0e8161376c565b9050919050565b60006020820190508181036000830152613c2e8161378f565b9050919050565b60006020820190508181036000830152613c4e816137b2565b9050919050565b60006020820190508181036000830152613c6e816137d5565b9050919050565b60006020820190508181036000830152613c8e816137f8565b9050919050565b60006020820190508181036000830152613cae8161381b565b9050919050565b60006020820190508181036000830152613cce8161383e565b9050919050565b60006020820190508181036000830152613cee81613861565b9050919050565b60006020820190508181036000830152613d0e81613884565b9050919050565b60006020820190508181036000830152613d2e816138a7565b9050919050565b60006020820190508181036000830152613d4e816138ed565b9050919050565b60006020820190508181036000830152613d6e81613910565b9050919050565b60006020820190508181036000830152613d8e81613933565b9050919050565b60006020820190508181036000830152613dae81613956565b9050919050565b60006020820190508181036000830152613dce81613979565b9050919050565b6000602082019050613dea60008301846139ab565b92915050565b6000602082019050613e0560008301846139ba565b92915050565b6000613e15613e26565b9050613e218282614138565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4b57613e4a61429f565b5b613e54826142ec565b9050602081019050919050565b600067ffffffffffffffff821115613e7c57613e7b61429f565b5b613e85826142ec565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f39826140ad565b9150613f44836140ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7957613f786141e3565b5b828201905092915050565b6000613f8f826140ad565b9150613f9a836140ad565b925082613faa57613fa9614212565b5b828204905092915050565b6000613fc0826140ad565b9150613fcb836140ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614004576140036141e3565b5b828202905092915050565b600061401a826140ad565b9150614025836140ad565b925082821015614038576140376141e3565b5b828203905092915050565b600061404e8261408d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140f15780820151818401526020810190506140d6565b83811115614100576000848401525b50505050565b6000600282049050600182168061411e57607f821691505b6020821081141561413257614131614241565b5b50919050565b614141826142ec565b810181811067ffffffffffffffff821117156141605761415f61429f565b5b80604052505050565b6000614174826140ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141a7576141a66141e3565b5b600182019050919050565b60006141bd826140ad565b91506141c8836140ad565b9250826141d8576141d7614212565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f75736572206973206e6f7420696e20616c6c6f77206c69737400000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6148cf81614043565b81146148da57600080fd5b50565b6148e681614055565b81146148f157600080fd5b50565b6148fd81614061565b811461490857600080fd5b50565b614914816140ad565b811461491f57600080fd5b50565b61492b816140b7565b811461493657600080fd5b5056fea264697066735822122042f7075c73217852b5fd95e59bcb14482cde91527a6585d6f652b31499f15f8e64736f6c63430008070033

Deployed Bytecode Sourcemap

40583:5345:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44985:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24887:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25820:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27379:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26902:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40837:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41204:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28269:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42275:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42512:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45770:155;;;:::i;:::-;;28679:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44206:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43121:715;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45212:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44463:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45306:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45554:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25514:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40765:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25244:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39915:94;;;;;;;;;;;;;:::i;:::-;;39264:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41011:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25989:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41322:945;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27672:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41046:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40977:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28935:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40931:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41087:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44798:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44890:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40793:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43844:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45094:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45418:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40876:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28038:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40164:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44985:101;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45072:6:::1;45054:15;;:24;;;;;;;;;;;;;;;;;;44985:101:::0;:::o;24887:293::-;24989:4;25037:25;25022:40;;;:11;:40;;;;:101;;;;25090:33;25075:48;;;:11;:48;;;;25022:101;:150;;;;25136:36;25160:11;25136:23;:36::i;:::-;25022:150;25006:166;;24887:293;;;:::o;25820:100::-;25874:13;25907:5;25900:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25820:100;:::o;27379:221::-;27455:7;27483:16;27491:7;27483;:16::i;:::-;27475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27568:15;:24;27584:7;27568:24;;;;;;;;;;;;;;;;;;;;;27561:31;;27379:221;;;:::o;26902:411::-;26983:13;26999:23;27014:7;26999:14;:23::i;:::-;26983:39;;27047:5;27041:11;;:2;:11;;;;27033:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27141:5;27125:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27150:37;27167:5;27174:12;:10;:12::i;:::-;27150:16;:37::i;:::-;27125:62;27103:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27284:21;27293:2;27297:7;27284:8;:21::i;:::-;26972:341;26902:411;;:::o;40837:32::-;;;;:::o;41204:95::-;41248:7;41275:16;:6;:14;:16::i;:::-;41268:23;;41204:95;:::o;28269:339::-;28464:41;28483:12;:10;:12::i;:::-;28497:7;28464:18;:41::i;:::-;28456:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28572:28;28582:4;28588:2;28592:7;28572:9;:28::i;:::-;28269:339;;;:::o;42275:229::-;42334:4;42350:17;42370:12;:19;42383:5;42370:19;;;;;;;;;;;;;;;;;;;;;;;;;42350:39;;;;42416:1;42403:9;:14;:32;;;;42434:1;42421:9;:14;42403:32;42400:74;;;42458:4;42451:11;;;;;42400:74;42491:5;42484:12;;;42275:229;;;;:::o;42512:108::-;42569:5;42593:12;:19;42606:5;42593:19;;;;;;;;;;;;;;;;;;;;;;;;;42586:26;;42512:108;;;:::o;45770:155::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45827:7:::1;45848;:5;:7::i;:::-;45840:21;;45869;45840:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45826:69;;;45914:2;45906:11;;;::::0;::::1;;45815:110;45770:155::o:0;28679:185::-;28817:39;28834:4;28840:2;28844:7;28817:39;;;;;;;;;;;;:16;:39::i;:::-;28679:185;;;:::o;44206:231::-;44287:41;44306:12;:10;:12::i;:::-;44320:7;44287:18;:41::i;:::-;44265:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;44415:14;44421:7;44415:5;:14::i;:::-;44206:231;:::o;43121:715::-;43196:16;43230:23;43256:17;43266:6;43256:9;:17::i;:::-;43230:43;;43284:30;43331:15;43317:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43284:63;;43358:22;43383:1;43358:26;;43395:23;43435:361;43460:15;43442;:33;:72;;;;;40920:4;43479:14;:35;;43442:72;43435:361;;;43531:25;43559:23;43567:14;43559:7;:23::i;:::-;43531:51;;43624:6;43603:27;;:17;:27;;;43599:153;;;43684:14;43651:13;43665:15;43651:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;43719:17;;;;;:::i;:::-;;;;43599:153;43768:16;;;;;:::i;:::-;;;;43516:280;43435:361;;;43815:13;43808:20;;;;;;43121:715;;;:::o;45212:86::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45282:8:::1;45275:4;:15;;;;45212:86:::0;:::o;44463:327::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40920:4:::1;44577:11;44558:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:51;;44550:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:9;44666:1;44654:13;;44649:134;44674:11;44669:1;:16;44649:134;;44707:18;:6;:16;:18::i;:::-;44740:31;44750:2;44754:16;:6;:14;:16::i;:::-;44740:9;:31::i;:::-;44687:3;;;;;:::i;:::-;;;;44649:134;;;;44463:327:::0;;:::o;45306:104::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45391:11:::1;45381:7;:21;;;;;;;;;;;;:::i;:::-;;45306:104:::0;:::o;45554:208::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45652:6:::1;45647:108;45668:11;;:18;;45664:1;:22;45647:108;;;45739:4;45708:12;:28;45721:11;;45733:1;45721:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;45708:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;45688:3;;;;;:::i;:::-;;;;45647:108;;;;45554:208:::0;;;:::o;25514:239::-;25586:7;25606:13;25622:7;:16;25630:7;25622:16;;;;;;;;;;;;;;;;;;;;;25606:32;;25674:1;25657:19;;:5;:19;;;;25649:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25740:5;25733:12;;;25514:239;;;:::o;40765:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25244:208::-;25316:7;25361:1;25344:19;;:5;:19;;;;25336:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25428:9;:16;25438:5;25428:16;;;;;;;;;;;;;;;;25421:23;;25244:208;;;:::o;39915:94::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39980:21:::1;39998:1;39980:9;:21::i;:::-;39915:94::o:0;39264:87::-;39310:7;39337:6;;;;;;;;;;;39330:13;;39264:87;:::o;41011:28::-;;;;;;;;;;;;;:::o;25989:104::-;26045:13;26078:7;26071:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25989:104;:::o;41322:945::-;3351:1;3947:7;;:19;;3939:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3351:1;4080:7;:18;;;;41404:8:::1;;;;;;;;;;;41403:9;41395:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;41472:1;41458:11;:15;41450:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41516:20;41539:33;41560:11;41539:20;:33::i;:::-;41516:56;;40920:4;41610:12;41591:16;:6;:14;:16::i;:::-;:31;;;;:::i;:::-;:52;;41583:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;41699:7;:5;:7::i;:::-;41685:21;;:10;:21;;;41681:424;;41739:4;41726:17;;:9;;;;;;;;;;;:17;;;41723:120;;;41772:25;41786:10;41772:13;:25::i;:::-;41764:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41723:120;41857:24;41884:21;41894:10;41884:9;:21::i;:::-;41857:48;;41963:18;;41947:12;41928:16;:31;;;;:::i;:::-;:53;;41920:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;42059:11;42052:4;;:18;;;;:::i;:::-;42039:9;:31;;42031:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41708:397;41681:424;42122:9;42134:1;42122:13;;42117:143;42142:12;42137:1;:17;42117:143;;42176:18;:6;:16;:18::i;:::-;42209:39;42219:10;42231:16;:6;:14;:16::i;:::-;42209:9;:39::i;:::-;42156:3;;;;;:::i;:::-;;;;42117:143;;;;41384:883;3307:1:::0;4259:7;:22;;;;41322:945;:::o;27672:295::-;27787:12;:10;:12::i;:::-;27775:24;;:8;:24;;;;27767:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27887:8;27842:18;:32;27861:12;:10;:12::i;:::-;27842:32;;;;;;;;;;;;;;;:42;27875:8;27842:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27940:8;27911:48;;27926:12;:10;:12::i;:::-;27911:48;;;27950:8;27911:48;;;;;;:::i;:::-;;;;;;;;27672:295;;:::o;41046:34::-;;;;;;;;;;;;;:::o;40977:27::-;;;;;;;;;;;;;:::o;28935:328::-;29110:41;29129:12;:10;:12::i;:::-;29143:7;29110:18;:41::i;:::-;29102:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29216:39;29230:4;29236:2;29240:7;29249:5;29216:13;:39::i;:::-;28935:328;;;;:::o;40931:37::-;;;;:::o;41087:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;44798:84::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44868:6:::1;44857:8;;:17;;;;;;;;;;;;;;;;;;44798:84:::0;:::o;44890:87::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44963:6:::1;44951:9;;:18;;;;;;;;;;;;;;;;;;44890:87:::0;:::o;40793:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43844:338::-;43942:13;43995:16;44003:7;43995;:16::i;:::-;43973:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;44130:7;44139:18;:7;:16;:18::i;:::-;44159:13;44113:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44099:75;;43844:338;;;:::o;45094:110::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45190:6:::1;45169:18;:27;;;;45094:110:::0;:::o;45418:128::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45521:17:::1;45505:13;:33;;;;;;;;;;;;:::i;:::-;;45418:128:::0;:::o;40876:48::-;40920:4;40876:48;:::o;28038:164::-;28135:4;28159:18;:25;28178:5;28159:25;;;;;;;;;;;;;;;:35;28185:8;28159:35;;;;;;;;;;;;;;;;;;;;;;;;;28152:42;;28038:164;;;;:::o;40164:192::-;39495:12;:10;:12::i;:::-;39484:23;;:7;:5;:7::i;:::-;:23;;;39476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40273:1:::1;40253:22;;:8;:22;;;;40245:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40329:19;40339:8;40329:9;:19::i;:::-;40164:192:::0;:::o;23361:98::-;23414:7;23441:10;23434:17;;23361:98;:::o;10718:157::-;10803:4;10842:25;10827:40;;;:11;:40;;;;10820:47;;10718:157;;;:::o;30773:127::-;30838:4;30890:1;30862:30;;:7;:16;30870:7;30862:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30855:37;;30773:127;;;:::o;34755:174::-;34857:2;34830:15;:24;34846:7;34830:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34913:7;34909:2;34875:46;;34884:23;34899:7;34884:14;:23::i;:::-;34875:46;;;;;;;;;;;;34755:174;;:::o;37795:114::-;37860:7;37887;:14;;;37880:21;;37795:114;;;:::o;31067:348::-;31160:4;31185:16;31193:7;31185;:16::i;:::-;31177:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31261:13;31277:23;31292:7;31277:14;:23::i;:::-;31261:39;;31330:5;31319:16;;:7;:16;;;:51;;;;31363:7;31339:31;;:20;31351:7;31339:11;:20::i;:::-;:31;;;31319:51;:87;;;;31374:32;31391:5;31398:7;31374:16;:32::i;:::-;31319:87;31311:96;;;31067:348;;;;:::o;34059:578::-;34218:4;34191:31;;:23;34206:7;34191:14;:23::i;:::-;:31;;;34183:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34301:1;34287:16;;:2;:16;;;;34279:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34357:39;34378:4;34384:2;34388:7;34357:20;:39::i;:::-;34461:29;34478:1;34482:7;34461:8;:29::i;:::-;34522:1;34503:9;:15;34513:4;34503:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34551:1;34534:9;:13;34544:2;34534:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34582:2;34563:7;:16;34571:7;34563:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34621:7;34617:2;34602:27;;34611:4;34602:27;;;;;;;;;;;;34059:578;;;:::o;33362:360::-;33422:13;33438:23;33453:7;33438:14;:23::i;:::-;33422:39;;33474:48;33495:5;33510:1;33514:7;33474:20;:48::i;:::-;33563:29;33580:1;33584:7;33563:8;:29::i;:::-;33625:1;33605:9;:16;33615:5;33605:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;33644:7;:16;33652:7;33644:16;;;;;;;;;;;;33637:23;;;;;;;;;;;33706:7;33702:1;33678:36;;33687:5;33678:36;;;;;;;;;;;;33411:311;33362:360;:::o;37917:117::-;38014:1;37996:7;:14;;;:19;;;;;;;:::i;:::-;;;;;;;;37917:117;:::o;31757:110::-;31833:26;31843:2;31847:7;31833:26;;;;;;;;;;;;:9;:26::i;:::-;31757:110;;:::o;40364:173::-;40420:16;40439:6;;;;;;;;;;;40420:25;;40465:8;40456:6;;:17;;;;;;;;;;;;;;;;;;40520:8;40489:40;;40510:8;40489:40;;;;;;;;;;;;40409:128;40364:173;:::o;42628:485::-;42701:7;42742:4;42723:23;;:15;;;;;;;;;;;:23;;;42720:357;;;42762:17;42782:12;:24;42795:10;42782:24;;;;;;;;;;;;;;;;;;;;;;;;;42762:44;;;;42837:1;42824:9;:14;:34;;;;;42857:1;42842:11;:16;;42824:34;42821:245;;;42899:1;42885:11;:15;;;;:::i;:::-;42878:22;;;;;42821:245;42939:1;42926:9;:14;:32;;;;42957:1;42944:9;:14;42926:32;42925:54;;;;;42978:1;42963:11;:16;;42925:54;:83;;;;;43007:1;42983:21;42993:10;42983:9;:21::i;:::-;:25;42925:83;42922:144;;;43049:1;43035:11;:15;;;;:::i;:::-;43028:22;;;;;42922:144;42747:330;42720:357;43094:11;43087:18;;42628:485;;;;:::o;30145:315::-;30302:28;30312:4;30318:2;30322:7;30302:9;:28::i;:::-;30349:48;30372:4;30378:2;30382:7;30391:5;30349:22;:48::i;:::-;30341:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30145:315;;;;:::o;11193:723::-;11249:13;11479:1;11470:5;:10;11466:53;;;11497:10;;;;;;;;;;;;;;;;;;;;;11466:53;11529:12;11544:5;11529:20;;11560:14;11585:78;11600:1;11592:4;:9;11585:78;;11618:8;;;;;:::i;:::-;;;;11649:2;11641:10;;;;;:::i;:::-;;;11585:78;;;11673:19;11705:6;11695:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11673:39;;11723:154;11739:1;11730:5;:10;11723:154;;11767:1;11757:11;;;;;:::i;:::-;;;11834:2;11826:5;:10;;;;:::i;:::-;11813:2;:24;;;;:::i;:::-;11800:39;;11783:6;11790;11783:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11863:2;11854:11;;;;;:::i;:::-;;;11723:154;;;11901:6;11887:21;;;;;11193:723;;;;:::o;36865:126::-;;;;:::o;32094:321::-;32224:18;32230:2;32234:7;32224:5;:18::i;:::-;32275:54;32306:1;32310:2;32314:7;32323:5;32275:22;:54::i;:::-;32253:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32094:321;;;:::o;35494:799::-;35649:4;35670:15;:2;:13;;;:15::i;:::-;35666:620;;;35722:2;35706:36;;;35743:12;:10;:12::i;:::-;35757:4;35763:7;35772:5;35706:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35702:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35965:1;35948:6;:13;:18;35944:272;;;35991:60;;;;;;;;;;:::i;:::-;;;;;;;;35944:272;36166:6;36160:13;36151:6;36147:2;36143:15;36136:38;35702:529;35839:41;;;35829:51;;;:6;:51;;;;35822:58;;;;;35666:620;36270:4;36263:11;;35494:799;;;;;;;:::o;32751:382::-;32845:1;32831:16;;:2;:16;;;;32823:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32904:16;32912:7;32904;:16::i;:::-;32903:17;32895:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32966:45;32995:1;32999:2;33003:7;32966:20;:45::i;:::-;33041:1;33024:9;:13;33034:2;33024:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33072:2;33053:7;:16;33061:7;33053:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33117:7;33113:2;33092:33;;33109:1;33092:33;;;;;;;;;;;;32751:382;;:::o;13718:387::-;13778:4;13986:12;14053:7;14041:20;14033:28;;14096:1;14089:4;:8;14082:15;;;13718: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;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:135::-;2912:5;2950:6;2937:20;2928:29;;2966:31;2991:5;2966:31;:::i;:::-;2868:135;;;;:::o;3009:329::-;3068:6;3117:2;3105:9;3096:7;3092:23;3088:32;3085:119;;;3123:79;;:::i;:::-;3085:119;3243:1;3268:53;3313:7;3304:6;3293:9;3289:22;3268:53;:::i;:::-;3258:63;;3214:117;3009:329;;;;:::o;3344:474::-;3412:6;3420;3469:2;3457:9;3448:7;3444:23;3440:32;3437:119;;;3475:79;;:::i;:::-;3437:119;3595:1;3620:53;3665:7;3656:6;3645:9;3641:22;3620:53;:::i;:::-;3610:63;;3566:117;3722:2;3748:53;3793:7;3784:6;3773:9;3769:22;3748:53;:::i;:::-;3738:63;;3693:118;3344:474;;;;;:::o;3824:619::-;3901:6;3909;3917;3966:2;3954:9;3945:7;3941:23;3937:32;3934:119;;;3972:79;;:::i;:::-;3934:119;4092:1;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4063:117;4219:2;4245:53;4290:7;4281:6;4270:9;4266:22;4245:53;:::i;:::-;4235:63;;4190:118;4347:2;4373:53;4418:7;4409:6;4398:9;4394:22;4373:53;:::i;:::-;4363:63;;4318:118;3824:619;;;;;:::o;4449:943::-;4544:6;4552;4560;4568;4617:3;4605:9;4596:7;4592:23;4588:33;4585:120;;;4624:79;;:::i;:::-;4585:120;4744:1;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4715:117;4871:2;4897:53;4942:7;4933:6;4922:9;4918:22;4897:53;:::i;:::-;4887:63;;4842:118;4999:2;5025:53;5070:7;5061:6;5050:9;5046:22;5025:53;:::i;:::-;5015:63;;4970:118;5155:2;5144:9;5140:18;5127:32;5186:18;5178:6;5175:30;5172:117;;;5208:79;;:::i;:::-;5172:117;5313:62;5367:7;5358:6;5347:9;5343:22;5313:62;:::i;:::-;5303:72;;5098:287;4449:943;;;;;;;:::o;5398:468::-;5463:6;5471;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:53;5716:7;5707:6;5696:9;5692:22;5671:53;:::i;:::-;5661:63;;5617:117;5773:2;5799:50;5841:7;5832:6;5821:9;5817:22;5799:50;:::i;:::-;5789:60;;5744:115;5398:468;;;;;:::o;5872:474::-;5940:6;5948;5997:2;5985:9;5976:7;5972:23;5968:32;5965:119;;;6003:79;;:::i;:::-;5965:119;6123:1;6148:53;6193:7;6184:6;6173:9;6169:22;6148:53;:::i;:::-;6138:63;;6094:117;6250:2;6276:53;6321:7;6312:6;6301:9;6297:22;6276:53;:::i;:::-;6266:63;;6221:118;5872:474;;;;;:::o;6352:700::-;6445:6;6453;6461;6510:2;6498:9;6489:7;6485:23;6481:32;6478:119;;;6516:79;;:::i;:::-;6478:119;6664:1;6653:9;6649:17;6636:31;6694:18;6686:6;6683:30;6680:117;;;6716:79;;:::i;:::-;6680:117;6829:80;6901:7;6892:6;6881:9;6877:22;6829:80;:::i;:::-;6811:98;;;;6607:312;6958:2;6984:51;7027:7;7018:6;7007:9;7003:22;6984:51;:::i;:::-;6974:61;;6929:116;6352:700;;;;;:::o;7058:323::-;7114:6;7163:2;7151:9;7142:7;7138:23;7134:32;7131:119;;;7169:79;;:::i;:::-;7131:119;7289:1;7314:50;7356:7;7347:6;7336:9;7332:22;7314:50;:::i;:::-;7304:60;;7260:114;7058:323;;;;:::o;7387:327::-;7445:6;7494:2;7482:9;7473:7;7469:23;7465:32;7462:119;;;7500:79;;:::i;:::-;7462:119;7620:1;7645:52;7689:7;7680:6;7669:9;7665:22;7645:52;:::i;:::-;7635:62;;7591:116;7387:327;;;;:::o;7720:349::-;7789:6;7838:2;7826:9;7817:7;7813:23;7809:32;7806:119;;;7844:79;;:::i;:::-;7806:119;7964:1;7989:63;8044:7;8035:6;8024:9;8020:22;7989:63;:::i;:::-;7979:73;;7935:127;7720:349;;;;:::o;8075:509::-;8144:6;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8347:1;8336:9;8332:17;8319:31;8377:18;8369:6;8366:30;8363:117;;;8399:79;;:::i;:::-;8363:117;8504:63;8559:7;8550:6;8539:9;8535:22;8504:63;:::i;:::-;8494:73;;8290:287;8075:509;;;;:::o;8590:329::-;8649:6;8698:2;8686:9;8677:7;8673:23;8669:32;8666:119;;;8704:79;;:::i;:::-;8666:119;8824:1;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8795:117;8590:329;;;;:::o;8925:179::-;8994:10;9015:46;9057:3;9049:6;9015:46;:::i;:::-;9093:4;9088:3;9084:14;9070:28;;8925:179;;;;:::o;9110:118::-;9197:24;9215:5;9197:24;:::i;:::-;9192:3;9185:37;9110:118;;:::o;9264:732::-;9383:3;9412:54;9460:5;9412:54;:::i;:::-;9482:86;9561:6;9556:3;9482:86;:::i;:::-;9475:93;;9592:56;9642:5;9592:56;:::i;:::-;9671:7;9702:1;9687:284;9712:6;9709:1;9706:13;9687:284;;;9788:6;9782:13;9815:63;9874:3;9859:13;9815:63;:::i;:::-;9808:70;;9901:60;9954:6;9901:60;:::i;:::-;9891:70;;9747:224;9734:1;9731;9727:9;9722:14;;9687:284;;;9691:14;9987:3;9980:10;;9388:608;;;9264:732;;;;:::o;10002:109::-;10083:21;10098:5;10083:21;:::i;:::-;10078:3;10071:34;10002:109;;:::o;10117:360::-;10203:3;10231:38;10263:5;10231:38;:::i;:::-;10285:70;10348:6;10343:3;10285:70;:::i;:::-;10278:77;;10364:52;10409:6;10404:3;10397:4;10390:5;10386:16;10364:52;:::i;:::-;10441:29;10463:6;10441:29;:::i;:::-;10436:3;10432:39;10425:46;;10207:270;10117:360;;;;:::o;10483:364::-;10571:3;10599:39;10632:5;10599:39;:::i;:::-;10654:71;10718:6;10713:3;10654:71;:::i;:::-;10647:78;;10734:52;10779:6;10774:3;10767:4;10760:5;10756:16;10734:52;:::i;:::-;10811:29;10833:6;10811:29;:::i;:::-;10806:3;10802:39;10795:46;;10575:272;10483:364;;;;:::o;10853:377::-;10959:3;10987:39;11020:5;10987:39;:::i;:::-;11042:89;11124:6;11119:3;11042:89;:::i;:::-;11035:96;;11140:52;11185:6;11180:3;11173:4;11166:5;11162:16;11140:52;:::i;:::-;11217:6;11212:3;11208:16;11201:23;;10963:267;10853:377;;;;:::o;11260:845::-;11363:3;11400:5;11394:12;11429:36;11455:9;11429:36;:::i;:::-;11481:89;11563:6;11558:3;11481:89;:::i;:::-;11474:96;;11601:1;11590:9;11586:17;11617:1;11612:137;;;;11763:1;11758:341;;;;11579:520;;11612:137;11696:4;11692:9;11681;11677:25;11672:3;11665:38;11732:6;11727:3;11723:16;11716:23;;11612:137;;11758:341;11825:38;11857:5;11825:38;:::i;:::-;11885:1;11899:154;11913:6;11910:1;11907:13;11899:154;;;11987:7;11981:14;11977:1;11972:3;11968:11;11961:35;12037:1;12028:7;12024:15;12013:26;;11935:4;11932:1;11928:12;11923:17;;11899:154;;;12082:6;12077:3;12073:16;12066:23;;11765:334;;11579:520;;11367:738;;11260:845;;;;:::o;12111:366::-;12253:3;12274:67;12338:2;12333:3;12274:67;:::i;:::-;12267:74;;12350:93;12439:3;12350:93;:::i;:::-;12468:2;12463:3;12459:12;12452:19;;12111:366;;;:::o;12483:::-;12625:3;12646:67;12710:2;12705:3;12646:67;:::i;:::-;12639:74;;12722:93;12811:3;12722:93;:::i;:::-;12840:2;12835:3;12831:12;12824:19;;12483:366;;;:::o;12855:::-;12997:3;13018:67;13082:2;13077:3;13018:67;:::i;:::-;13011:74;;13094:93;13183:3;13094:93;:::i;:::-;13212:2;13207:3;13203:12;13196:19;;12855:366;;;:::o;13227:::-;13369:3;13390:67;13454:2;13449:3;13390:67;:::i;:::-;13383:74;;13466:93;13555:3;13466:93;:::i;:::-;13584:2;13579:3;13575:12;13568:19;;13227:366;;;:::o;13599:::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:::-;14113:3;14134:67;14198:2;14193:3;14134:67;:::i;:::-;14127:74;;14210:93;14299:3;14210:93;:::i;:::-;14328:2;14323:3;14319:12;14312:19;;13971:366;;;:::o;14343:::-;14485:3;14506:67;14570:2;14565:3;14506:67;:::i;:::-;14499:74;;14582:93;14671:3;14582:93;:::i;:::-;14700:2;14695:3;14691:12;14684:19;;14343:366;;;:::o;14715:::-;14857:3;14878:67;14942:2;14937:3;14878:67;:::i;:::-;14871:74;;14954:93;15043:3;14954:93;:::i;:::-;15072:2;15067:3;15063:12;15056:19;;14715:366;;;:::o;15087:::-;15229:3;15250:67;15314:2;15309:3;15250:67;:::i;:::-;15243:74;;15326:93;15415:3;15326:93;:::i;:::-;15444:2;15439:3;15435:12;15428:19;;15087:366;;;:::o;15459:::-;15601:3;15622:67;15686:2;15681:3;15622:67;:::i;:::-;15615:74;;15698:93;15787:3;15698:93;:::i;:::-;15816:2;15811:3;15807:12;15800:19;;15459:366;;;:::o;15831:::-;15973:3;15994:67;16058:2;16053:3;15994:67;:::i;:::-;15987:74;;16070:93;16159:3;16070:93;:::i;:::-;16188:2;16183:3;16179:12;16172:19;;15831:366;;;:::o;16203:::-;16345:3;16366:67;16430:2;16425:3;16366:67;:::i;:::-;16359:74;;16442:93;16531:3;16442:93;:::i;:::-;16560:2;16555:3;16551:12;16544:19;;16203:366;;;:::o;16575:::-;16717:3;16738:67;16802:2;16797:3;16738:67;:::i;:::-;16731:74;;16814:93;16903:3;16814:93;:::i;:::-;16932:2;16927:3;16923:12;16916:19;;16575:366;;;:::o;16947:::-;17089:3;17110:67;17174:2;17169:3;17110:67;:::i;:::-;17103:74;;17186:93;17275:3;17186:93;:::i;:::-;17304:2;17299:3;17295:12;17288:19;;16947:366;;;:::o;17319:::-;17461:3;17482:67;17546:2;17541:3;17482:67;:::i;:::-;17475:74;;17558:93;17647:3;17558:93;:::i;:::-;17676:2;17671:3;17667:12;17660:19;;17319:366;;;:::o;17691:::-;17833:3;17854:67;17918:2;17913:3;17854:67;:::i;:::-;17847:74;;17930:93;18019:3;17930:93;:::i;:::-;18048:2;18043:3;18039:12;18032:19;;17691:366;;;:::o;18063:::-;18205:3;18226:67;18290:2;18285:3;18226:67;:::i;:::-;18219:74;;18302:93;18391:3;18302:93;:::i;:::-;18420:2;18415:3;18411:12;18404:19;;18063:366;;;:::o;18435:::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:::-;18949:3;18970:67;19034:2;19029:3;18970:67;:::i;:::-;18963:74;;19046:93;19135:3;19046:93;:::i;:::-;19164:2;19159:3;19155:12;19148:19;;18807:366;;;:::o;19179:398::-;19338:3;19359:83;19440:1;19435:3;19359:83;:::i;:::-;19352:90;;19451:93;19540:3;19451:93;:::i;:::-;19569:1;19564:3;19560:11;19553:18;;19179:398;;;:::o;19583:366::-;19725:3;19746:67;19810:2;19805:3;19746:67;:::i;:::-;19739:74;;19822:93;19911:3;19822:93;:::i;:::-;19940:2;19935:3;19931:12;19924:19;;19583:366;;;:::o;19955:::-;20097:3;20118:67;20182:2;20177:3;20118:67;:::i;:::-;20111:74;;20194:93;20283:3;20194:93;:::i;:::-;20312:2;20307:3;20303:12;20296:19;;19955:366;;;:::o;20327:::-;20469:3;20490:67;20554:2;20549:3;20490:67;:::i;:::-;20483:74;;20566:93;20655:3;20566:93;:::i;:::-;20684:2;20679:3;20675:12;20668:19;;20327:366;;;:::o;20699:::-;20841:3;20862:67;20926:2;20921:3;20862:67;:::i;:::-;20855:74;;20938:93;21027:3;20938:93;:::i;:::-;21056:2;21051:3;21047:12;21040:19;;20699:366;;;:::o;21071:::-;21213:3;21234:67;21298:2;21293:3;21234:67;:::i;:::-;21227:74;;21310:93;21399:3;21310:93;:::i;:::-;21428:2;21423:3;21419:12;21412:19;;21071:366;;;:::o;21443:108::-;21520:24;21538:5;21520:24;:::i;:::-;21515:3;21508:37;21443:108;;:::o;21557:118::-;21644:24;21662:5;21644:24;:::i;:::-;21639:3;21632:37;21557:118;;:::o;21681:112::-;21764:22;21780:5;21764:22;:::i;:::-;21759:3;21752:35;21681:112;;:::o;21799:583::-;22021:3;22043:92;22131:3;22122:6;22043:92;:::i;:::-;22036:99;;22152:95;22243:3;22234:6;22152:95;:::i;:::-;22145:102;;22264:92;22352:3;22343:6;22264:92;:::i;:::-;22257:99;;22373:3;22366:10;;21799:583;;;;;;:::o;22388:379::-;22572:3;22594:147;22737:3;22594:147;:::i;:::-;22587:154;;22758:3;22751:10;;22388:379;;;:::o;22773:222::-;22866:4;22904:2;22893:9;22889:18;22881:26;;22917:71;22985:1;22974:9;22970:17;22961:6;22917:71;:::i;:::-;22773:222;;;;:::o;23001:640::-;23196:4;23234:3;23223:9;23219:19;23211:27;;23248:71;23316:1;23305:9;23301:17;23292:6;23248:71;:::i;:::-;23329:72;23397:2;23386:9;23382:18;23373:6;23329:72;:::i;:::-;23411;23479:2;23468:9;23464:18;23455:6;23411:72;:::i;:::-;23530:9;23524:4;23520:20;23515:2;23504:9;23500:18;23493:48;23558:76;23629:4;23620:6;23558:76;:::i;:::-;23550:84;;23001:640;;;;;;;:::o;23647:373::-;23790:4;23828:2;23817:9;23813:18;23805:26;;23877:9;23871:4;23867:20;23863:1;23852:9;23848:17;23841:47;23905:108;24008:4;23999:6;23905:108;:::i;:::-;23897:116;;23647:373;;;;:::o;24026:210::-;24113:4;24151:2;24140:9;24136:18;24128:26;;24164:65;24226:1;24215:9;24211:17;24202:6;24164:65;:::i;:::-;24026:210;;;;:::o;24242:313::-;24355:4;24393:2;24382:9;24378:18;24370:26;;24442:9;24436:4;24432:20;24428:1;24417:9;24413:17;24406:47;24470:78;24543:4;24534:6;24470:78;:::i;:::-;24462:86;;24242:313;;;;:::o;24561:419::-;24727:4;24765:2;24754:9;24750:18;24742:26;;24814:9;24808:4;24804:20;24800:1;24789:9;24785:17;24778:47;24842:131;24968:4;24842:131;:::i;:::-;24834:139;;24561:419;;;:::o;24986:::-;25152:4;25190:2;25179:9;25175:18;25167:26;;25239:9;25233:4;25229:20;25225:1;25214:9;25210:17;25203:47;25267:131;25393:4;25267:131;:::i;:::-;25259:139;;24986:419;;;:::o;25411:::-;25577:4;25615:2;25604:9;25600:18;25592:26;;25664:9;25658:4;25654:20;25650:1;25639:9;25635:17;25628:47;25692:131;25818:4;25692:131;:::i;:::-;25684:139;;25411:419;;;:::o;25836:::-;26002:4;26040:2;26029:9;26025:18;26017:26;;26089:9;26083:4;26079:20;26075:1;26064:9;26060:17;26053:47;26117:131;26243:4;26117:131;:::i;:::-;26109:139;;25836:419;;;:::o;26261:::-;26427:4;26465:2;26454:9;26450:18;26442:26;;26514:9;26508:4;26504:20;26500:1;26489:9;26485:17;26478:47;26542:131;26668:4;26542:131;:::i;:::-;26534:139;;26261:419;;;:::o;26686:::-;26852:4;26890:2;26879:9;26875:18;26867:26;;26939:9;26933:4;26929:20;26925:1;26914:9;26910:17;26903:47;26967:131;27093:4;26967:131;:::i;:::-;26959:139;;26686:419;;;:::o;27111:::-;27277:4;27315:2;27304:9;27300:18;27292:26;;27364:9;27358:4;27354:20;27350:1;27339:9;27335:17;27328:47;27392:131;27518:4;27392:131;:::i;:::-;27384:139;;27111:419;;;:::o;27536:::-;27702:4;27740:2;27729:9;27725:18;27717:26;;27789:9;27783:4;27779:20;27775:1;27764:9;27760:17;27753:47;27817:131;27943:4;27817:131;:::i;:::-;27809:139;;27536:419;;;:::o;27961:::-;28127:4;28165:2;28154:9;28150:18;28142:26;;28214:9;28208:4;28204:20;28200:1;28189:9;28185:17;28178:47;28242:131;28368:4;28242:131;:::i;:::-;28234:139;;27961:419;;;:::o;28386:::-;28552:4;28590:2;28579:9;28575:18;28567:26;;28639:9;28633:4;28629:20;28625:1;28614:9;28610:17;28603:47;28667:131;28793:4;28667:131;:::i;:::-;28659:139;;28386:419;;;:::o;28811:::-;28977:4;29015:2;29004:9;29000:18;28992:26;;29064:9;29058:4;29054:20;29050:1;29039:9;29035:17;29028:47;29092:131;29218:4;29092:131;:::i;:::-;29084:139;;28811:419;;;:::o;29236:::-;29402:4;29440:2;29429:9;29425:18;29417:26;;29489:9;29483:4;29479:20;29475:1;29464:9;29460:17;29453:47;29517:131;29643:4;29517:131;:::i;:::-;29509:139;;29236:419;;;:::o;29661:::-;29827:4;29865:2;29854:9;29850:18;29842:26;;29914:9;29908:4;29904:20;29900:1;29889:9;29885:17;29878:47;29942:131;30068:4;29942:131;:::i;:::-;29934:139;;29661:419;;;:::o;30086:::-;30252:4;30290:2;30279:9;30275:18;30267:26;;30339:9;30333:4;30329:20;30325:1;30314:9;30310:17;30303:47;30367:131;30493:4;30367:131;:::i;:::-;30359:139;;30086:419;;;:::o;30511:::-;30677:4;30715:2;30704:9;30700:18;30692:26;;30764:9;30758:4;30754:20;30750:1;30739:9;30735:17;30728:47;30792:131;30918:4;30792:131;:::i;:::-;30784:139;;30511:419;;;:::o;30936:::-;31102:4;31140:2;31129:9;31125:18;31117:26;;31189:9;31183:4;31179:20;31175:1;31164:9;31160:17;31153:47;31217:131;31343:4;31217:131;:::i;:::-;31209:139;;30936:419;;;:::o;31361:::-;31527:4;31565:2;31554:9;31550:18;31542:26;;31614:9;31608:4;31604:20;31600:1;31589:9;31585:17;31578:47;31642:131;31768:4;31642:131;:::i;:::-;31634:139;;31361:419;;;:::o;31786:::-;31952:4;31990:2;31979:9;31975:18;31967:26;;32039:9;32033:4;32029:20;32025:1;32014:9;32010:17;32003:47;32067:131;32193:4;32067:131;:::i;:::-;32059:139;;31786:419;;;:::o;32211:::-;32377:4;32415:2;32404:9;32400:18;32392:26;;32464:9;32458:4;32454:20;32450:1;32439:9;32435:17;32428:47;32492:131;32618:4;32492:131;:::i;:::-;32484:139;;32211:419;;;:::o;32636:::-;32802:4;32840:2;32829:9;32825:18;32817:26;;32889:9;32883:4;32879:20;32875:1;32864:9;32860:17;32853:47;32917:131;33043:4;32917:131;:::i;:::-;32909:139;;32636:419;;;:::o;33061:::-;33227:4;33265:2;33254:9;33250:18;33242:26;;33314:9;33308:4;33304:20;33300:1;33289:9;33285:17;33278:47;33342:131;33468:4;33342:131;:::i;:::-;33334:139;;33061:419;;;:::o;33486:::-;33652:4;33690:2;33679:9;33675:18;33667:26;;33739:9;33733:4;33729:20;33725:1;33714:9;33710:17;33703:47;33767:131;33893:4;33767:131;:::i;:::-;33759:139;;33486:419;;;:::o;33911:::-;34077:4;34115:2;34104:9;34100:18;34092:26;;34164:9;34158:4;34154:20;34150:1;34139:9;34135:17;34128:47;34192:131;34318:4;34192:131;:::i;:::-;34184:139;;33911:419;;;:::o;34336:::-;34502:4;34540:2;34529:9;34525:18;34517:26;;34589:9;34583:4;34579:20;34575:1;34564:9;34560:17;34553:47;34617:131;34743:4;34617:131;:::i;:::-;34609:139;;34336:419;;;:::o;34761:222::-;34854:4;34892:2;34881:9;34877:18;34869:26;;34905:71;34973:1;34962:9;34958:17;34949:6;34905:71;:::i;:::-;34761:222;;;;:::o;34989:214::-;35078:4;35116:2;35105:9;35101:18;35093:26;;35129:67;35193:1;35182:9;35178:17;35169:6;35129:67;:::i;:::-;34989:214;;;;:::o;35209:129::-;35243:6;35270:20;;:::i;:::-;35260:30;;35299:33;35327:4;35319:6;35299:33;:::i;:::-;35209:129;;;:::o;35344:75::-;35377:6;35410:2;35404:9;35394:19;;35344:75;:::o;35425:307::-;35486:4;35576:18;35568:6;35565:30;35562:56;;;35598:18;;:::i;:::-;35562:56;35636:29;35658:6;35636:29;:::i;:::-;35628:37;;35720:4;35714;35710:15;35702:23;;35425:307;;;:::o;35738:308::-;35800:4;35890:18;35882:6;35879:30;35876:56;;;35912:18;;:::i;:::-;35876:56;35950:29;35972:6;35950:29;:::i;:::-;35942:37;;36034:4;36028;36024:15;36016:23;;35738:308;;;:::o;36052:132::-;36119:4;36142:3;36134:11;;36172:4;36167:3;36163:14;36155:22;;36052:132;;;:::o;36190:141::-;36239:4;36262:3;36254:11;;36285:3;36282:1;36275:14;36319:4;36316:1;36306:18;36298:26;;36190:141;;;:::o;36337:114::-;36404:6;36438:5;36432:12;36422:22;;36337:114;;;:::o;36457:98::-;36508:6;36542:5;36536:12;36526:22;;36457:98;;;:::o;36561:99::-;36613:6;36647:5;36641:12;36631:22;;36561:99;;;:::o;36666:113::-;36736:4;36768;36763:3;36759:14;36751:22;;36666:113;;;:::o;36785:184::-;36884:11;36918:6;36913:3;36906:19;36958:4;36953:3;36949:14;36934:29;;36785:184;;;;:::o;36975:168::-;37058:11;37092:6;37087:3;37080:19;37132:4;37127:3;37123:14;37108:29;;36975:168;;;;:::o;37149:147::-;37250:11;37287:3;37272:18;;37149:147;;;;:::o;37302:169::-;37386:11;37420:6;37415:3;37408:19;37460:4;37455:3;37451:14;37436:29;;37302:169;;;;:::o;37477:148::-;37579:11;37616:3;37601:18;;37477:148;;;;:::o;37631:305::-;37671:3;37690:20;37708:1;37690:20;:::i;:::-;37685:25;;37724:20;37742:1;37724:20;:::i;:::-;37719:25;;37878:1;37810:66;37806:74;37803:1;37800:81;37797:107;;;37884:18;;:::i;:::-;37797:107;37928:1;37925;37921:9;37914:16;;37631:305;;;;:::o;37942:185::-;37982:1;37999:20;38017:1;37999:20;:::i;:::-;37994:25;;38033:20;38051:1;38033:20;:::i;:::-;38028:25;;38072:1;38062:35;;38077:18;;:::i;:::-;38062:35;38119:1;38116;38112:9;38107:14;;37942:185;;;;:::o;38133:348::-;38173:7;38196:20;38214:1;38196:20;:::i;:::-;38191:25;;38230:20;38248:1;38230:20;:::i;:::-;38225:25;;38418:1;38350:66;38346:74;38343:1;38340:81;38335:1;38328:9;38321:17;38317:105;38314:131;;;38425:18;;:::i;:::-;38314:131;38473:1;38470;38466:9;38455:20;;38133:348;;;;:::o;38487:191::-;38527:4;38547:20;38565:1;38547:20;:::i;:::-;38542:25;;38581:20;38599:1;38581:20;:::i;:::-;38576:25;;38620:1;38617;38614:8;38611:34;;;38625:18;;:::i;:::-;38611:34;38670:1;38667;38663:9;38655:17;;38487:191;;;;:::o;38684:96::-;38721:7;38750:24;38768:5;38750:24;:::i;:::-;38739:35;;38684:96;;;:::o;38786:90::-;38820:7;38863:5;38856:13;38849:21;38838:32;;38786:90;;;:::o;38882:149::-;38918:7;38958:66;38951:5;38947:78;38936:89;;38882:149;;;:::o;39037:126::-;39074:7;39114:42;39107:5;39103:54;39092:65;;39037:126;;;:::o;39169:77::-;39206:7;39235:5;39224:16;;39169:77;;;:::o;39252:86::-;39287:7;39327:4;39320:5;39316:16;39305:27;;39252:86;;;:::o;39344:154::-;39428:6;39423:3;39418;39405:30;39490:1;39481:6;39476:3;39472:16;39465:27;39344:154;;;:::o;39504:307::-;39572:1;39582:113;39596:6;39593:1;39590:13;39582:113;;;39681:1;39676:3;39672:11;39666:18;39662:1;39657:3;39653:11;39646:39;39618:2;39615:1;39611:10;39606:15;;39582:113;;;39713:6;39710:1;39707:13;39704:101;;;39793:1;39784:6;39779:3;39775:16;39768:27;39704:101;39553:258;39504:307;;;:::o;39817:320::-;39861:6;39898:1;39892:4;39888:12;39878:22;;39945:1;39939:4;39935:12;39966:18;39956:81;;40022:4;40014:6;40010:17;40000:27;;39956:81;40084:2;40076:6;40073:14;40053:18;40050:38;40047:84;;;40103:18;;:::i;:::-;40047:84;39868:269;39817:320;;;:::o;40143:281::-;40226:27;40248:4;40226:27;:::i;:::-;40218:6;40214:40;40356:6;40344:10;40341:22;40320:18;40308:10;40305:34;40302:62;40299:88;;;40367:18;;:::i;:::-;40299:88;40407:10;40403:2;40396:22;40186:238;40143:281;;:::o;40430:233::-;40469:3;40492:24;40510:5;40492:24;:::i;:::-;40483:33;;40538:66;40531:5;40528:77;40525:103;;;40608:18;;:::i;:::-;40525:103;40655:1;40648:5;40644:13;40637:20;;40430:233;;;:::o;40669:176::-;40701:1;40718:20;40736:1;40718:20;:::i;:::-;40713:25;;40752:20;40770:1;40752:20;:::i;:::-;40747:25;;40791:1;40781:35;;40796:18;;:::i;:::-;40781:35;40837:1;40834;40830:9;40825:14;;40669:176;;;;:::o;40851:180::-;40899:77;40896:1;40889:88;40996:4;40993:1;40986:15;41020:4;41017:1;41010:15;41037:180;41085:77;41082:1;41075:88;41182:4;41179:1;41172:15;41206:4;41203:1;41196:15;41223:180;41271:77;41268:1;41261:88;41368:4;41365:1;41358:15;41392:4;41389:1;41382:15;41409:180;41457:77;41454:1;41447:88;41554:4;41551:1;41544:15;41578:4;41575:1;41568:15;41595:180;41643:77;41640:1;41633:88;41740:4;41737:1;41730:15;41764:4;41761:1;41754:15;41781:117;41890:1;41887;41880:12;41904:117;42013:1;42010;42003:12;42027:117;42136:1;42133;42126:12;42150:117;42259:1;42256;42249:12;42273:117;42382:1;42379;42372:12;42396:117;42505:1;42502;42495:12;42519:102;42560:6;42611:2;42607:7;42602:2;42595:5;42591:14;42587:28;42577:38;;42519:102;;;:::o;42627:237::-;42767:34;42763:1;42755:6;42751:14;42744:58;42836:20;42831:2;42823:6;42819:15;42812:45;42627:237;:::o;42870:225::-;43010:34;43006:1;42998:6;42994:14;42987:58;43079:8;43074:2;43066:6;43062:15;43055:33;42870:225;:::o;43101:178::-;43241:30;43237:1;43229:6;43225:14;43218:54;43101:178;:::o;43285:::-;43425:30;43421:1;43413:6;43409:14;43402:54;43285:178;:::o;43469:223::-;43609:34;43605:1;43597:6;43593:14;43586:58;43678:6;43673:2;43665:6;43661:15;43654:31;43469:223;:::o;43698:175::-;43838:27;43834:1;43826:6;43822:14;43815:51;43698:175;:::o;43879:231::-;44019:34;44015:1;44007:6;44003:14;43996:58;44088:14;44083:2;44075:6;44071:15;44064:39;43879:231;:::o;44116:243::-;44256:34;44252:1;44244:6;44240:14;44233:58;44325:26;44320:2;44312:6;44308:15;44301:51;44116:243;:::o;44365:175::-;44505:27;44501:1;44493:6;44489:14;44482:51;44365:175;:::o;44546:229::-;44686:34;44682:1;44674:6;44670:14;44663:58;44755:12;44750:2;44742:6;44738:15;44731:37;44546:229;:::o;44781:228::-;44921:34;44917:1;44909:6;44905:14;44898:58;44990:11;44985:2;44977:6;44973:15;44966:36;44781:228;:::o;45015:172::-;45155:24;45151:1;45143:6;45139:14;45132:48;45015:172;:::o;45193:182::-;45333:34;45329:1;45321:6;45317:14;45310:58;45193:182;:::o;45381:231::-;45521:34;45517:1;45509:6;45505:14;45498:58;45590:14;45585:2;45577:6;45573:15;45566:39;45381:231;:::o;45618:182::-;45758:34;45754:1;45746:6;45742:14;45735:58;45618:182;:::o;45806:172::-;45946:24;45942:1;45934:6;45930:14;45923:48;45806:172;:::o;45984:228::-;46124:34;46120:1;46112:6;46108:14;46101:58;46193:11;46188:2;46180:6;46176:15;46169:36;45984:228;:::o;46218:234::-;46358:34;46354:1;46346:6;46342:14;46335:58;46427:17;46422:2;46414:6;46410:15;46403:42;46218:234;:::o;46458:220::-;46598:34;46594:1;46586:6;46582:14;46575:58;46667:3;46662:2;46654:6;46650:15;46643:28;46458:220;:::o;46684:114::-;;:::o;46804:168::-;46944:20;46940:1;46932:6;46928:14;46921:44;46804:168;:::o;46978:236::-;47118:34;47114:1;47106:6;47102:14;47095:58;47187:19;47182:2;47174:6;47170:15;47163:44;46978:236;:::o;47220:181::-;47360:33;47356:1;47348:6;47344:14;47337:57;47220:181;:::o;47407:235::-;47547:34;47543:1;47535:6;47531:14;47524:58;47616:18;47611:2;47603:6;47599:15;47592:43;47407:235;:::o;47648:177::-;47788:29;47784:1;47776:6;47772:14;47765:53;47648:177;:::o;47831:122::-;47904:24;47922:5;47904:24;:::i;:::-;47897:5;47894:35;47884:63;;47943:1;47940;47933:12;47884:63;47831:122;:::o;47959:116::-;48029:21;48044:5;48029:21;:::i;:::-;48022:5;48019:32;48009:60;;48065:1;48062;48055:12;48009:60;47959:116;:::o;48081:120::-;48153:23;48170:5;48153:23;:::i;:::-;48146:5;48143:34;48133:62;;48191:1;48188;48181:12;48133:62;48081:120;:::o;48207:122::-;48280:24;48298:5;48280:24;:::i;:::-;48273:5;48270:35;48260:63;;48319:1;48316;48309:12;48260:63;48207:122;:::o;48335:118::-;48406:22;48422:5;48406:22;:::i;:::-;48399:5;48396:33;48386:61;;48443:1;48440;48433:12;48386:61;48335:118;:::o

Swarm Source

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