ETH Price: $3,254.11 (-2.35%)
 

Overview

Max Total Supply

385 NERDS

Holders

87

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 NERDS
0x331eafa3f2b4973cb9ece3a884ccc3cb9c171ce7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
cryptonerd

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT

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


pragma solidity ^0.8.0;


contract cryptonerd is Ownable, ERC721 {
    
    uint constant tokenPrice = 0.04 ether;
    uint constant maxSupply = 8888;
    uint public totalSupply = 0;
    uint public presale_Supply = 888;
    bool public sale_Status = false;
    string public baseURI;
    uint public maxPerTransaction = 15; //Max per transaction
    uint public maxPerWallet = 5;
    constructor() ERC721("CryptoNerds", "NERDS"){}

   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
         require(_count <= maxPerTransaction, "mint at least one token");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        require(sale_Status == true, "Sale is Paused.");

        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
        totalSupply += _count;
    }
     function presale(uint _count) public {
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "mint at least one token");
        require(totalSupply <= presale_Supply, "mint at least one token");
        require(sale_Status == true, "Sale is Paused.");
        require(balanceOf(msg.sender) + _count <= maxPerWallet, "5 tokens per wallet");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
        totalSupply += _count;
    }
    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function saleStatus(bool temp) external onlyOwner {
        sale_Status = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presale_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"saleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_Status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","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":"_uri","type":"string"}],"name":"setBaseUri","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006007556103786008556000600960006101000a81548160ff021916908315150217905550600f600b556005600c553480156200004157600080fd5b506040518060400160405280600b81526020017f43727970746f4e657264730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e45524453000000000000000000000000000000000000000000000000000000815250620000ce620000c26200010860201b60201c565b6200011060201b60201c565b8160019080519060200190620000e6929190620001d4565b508060029080519060200190620000ff929190620001d4565b505050620002e9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e29062000284565b90600052602060002090601f01602090048101928262000206576000855562000252565b82601f106200022157805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025157825182559160200191906001019062000234565b5b50905062000261919062000265565b5090565b5b808211156200028057600081600090555060010162000266565b5090565b600060028204905060018216806200029d57607f821691505b60208210811415620002b457620002b3620002ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b5780620002f96000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d96a094a11610064578063d96a094a146105e6578063e6ab143414610602578063e985e9c51461062b578063f2fde38b14610668576101b7565b8063b88d4fde14610555578063c87b56dd1461057e578063d8c884db146105bb576101b7565b80638da5cb5b116100c65780638da5cb5b146104ad57806395d89b41146104d8578063a0bcfc7f14610503578063a22cb4651461052c576101b7565b8063715018a6146104445780637c8255db1461045b5780638032abbc14610484576101b7565b80633ccfd60b116101595780634b980d67116101335780634b980d67146103745780636352211e1461039f5780636c0360eb146103dc57806370a0823114610407576101b7565b80633ccfd60b1461030957806342842e0e14610320578063453c231014610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631d2e5055146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906128eb565b610691565b6040516101f09190612df5565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612e10565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061298e565b610805565b6040516102589190612d8e565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612835565b61088a565b005b34801561029657600080fd5b5061029f6109a2565b6040516102ac91906130d2565b60405180910390f35b3480156102c157600080fd5b506102ca6109a8565b6040516102d79190612df5565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061271f565b6109bb565b005b34801561031557600080fd5b5061031e610a1b565b005b34801561032c57600080fd5b506103476004803603810190610342919061271f565b610ae7565b005b34801561035557600080fd5b5061035e610b07565b60405161036b91906130d2565b60405180910390f35b34801561038057600080fd5b50610389610b0d565b60405161039691906130d2565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c1919061298e565b610b13565b6040516103d39190612d8e565b60405180910390f35b3480156103e857600080fd5b506103f1610bc5565b6040516103fe9190612e10565b60405180910390f35b34801561041357600080fd5b5061042e600480360381019061042991906126b2565b610c53565b60405161043b91906130d2565b60405180910390f35b34801561045057600080fd5b50610459610d0b565b005b34801561046757600080fd5b50610482600480360381019061047d9190612875565b610d93565b005b34801561049057600080fd5b506104ab60048036038101906104a691906128be565b610edc565b005b3480156104b957600080fd5b506104c2610f75565b6040516104cf9190612d8e565b60405180910390f35b3480156104e457600080fd5b506104ed610f9e565b6040516104fa9190612e10565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612945565b611030565b005b34801561053857600080fd5b50610553600480360381019061054e91906127f5565b6110c6565b005b34801561056157600080fd5b5061057c60048036038101906105779190612772565b611247565b005b34801561058a57600080fd5b506105a560048036038101906105a0919061298e565b6112a9565b6040516105b29190612e10565b60405180910390f35b3480156105c757600080fd5b506105d0611350565b6040516105dd91906130d2565b60405180910390f35b61060060048036038101906105fb919061298e565b611356565b005b34801561060e57600080fd5b506106296004803603810190610624919061298e565b6114e7565b005b34801561063757600080fd5b50610652600480360381019061064d91906126df565b6116c2565b60405161065f9190612df5565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906126b2565b611756565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b8261184e565b5b9050919050565b606060018054610782906133ae565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae906133ae565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b6000610810826118b8565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612fb2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610b13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90613032565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610925611924565b73ffffffffffffffffffffffffffffffffffffffff16148061095457506109538161094e611924565b6116c2565b5b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90612f32565b60405180910390fd5b61099d838361192c565b505050565b60075481565b600960009054906101000a900460ff1681565b6109cc6109c6611924565b826119e5565b610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290613052565b60405180910390fd5b610a16838383611ac3565b505050565b610a23611924565b73ffffffffffffffffffffffffffffffffffffffff16610a41610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612fd2565b60405180910390fd5b610a9f610f75565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ae4573d6000803e3d6000fd5b50565b610b0283838360405180602001604052806000815250611247565b505050565b600c5481565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390612f72565b60405180910390fd5b80915050919050565b600a8054610bd2906133ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe906133ae565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90612f52565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d13611924565b73ffffffffffffffffffffffffffffffffffffffff16610d31610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90612fd2565b60405180910390fd5b610d916000611d1f565b565b610d9b611924565b73ffffffffffffffffffffffffffffffffffffffff16610db9610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690612fd2565b60405180910390fd5b6122b88151600754610e2191906131e3565b1115610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990613092565b60405180910390fd5b60005b8151811015610ebe57610eab828281518110610e8457610e83613518565b5b6020026020010151826001600754610e9c91906131e3565b610ea691906131e3565b611de3565b8080610eb690613411565b915050610e65565b50805160076000828254610ed291906131e3565b9250508190555050565b610ee4611924565b73ffffffffffffffffffffffffffffffffffffffff16610f02610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90612fd2565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610fad906133ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd9906133ae565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905090565b611038611924565b73ffffffffffffffffffffffffffffffffffffffff16611056610f75565b73ffffffffffffffffffffffffffffffffffffffff16146110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390612fd2565b60405180910390fd5b80600a90805190602001906110c2929190612428565b5050565b6110ce611924565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390612ed2565b60405180910390fd5b8060066000611149611924565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111f6611924565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123b9190612df5565b60405180910390a35050565b611258611252611924565b836119e5565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613052565b60405180910390fd5b6112a384848484611e01565b50505050565b60606112b4826118b8565b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613012565b60405180910390fd5b60006112fd611e5d565b9050600081511161131d5760405180602001604052806000815250611348565b8061132784611eef565b604051602001611338929190612d6a565b6040516020818303038152906040525b915050919050565b60085481565b60008111611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090613072565b60405180910390fd5b600b548111156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613072565b60405180910390fd5b80668e1bc9bf0400006113f1919061326a565b341015611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612f12565b60405180910390fd5b60011515600960009054906101000a900460ff16151514611489576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611480906130b2565b60405180910390fd5b60005b818110156114ca576114b7338260016007546114a891906131e3565b6114b291906131e3565b611de3565b80806114c290613411565b91505061148c565b5080600760008282546114dd91906131e3565b9250508190555050565b6000811161152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190613072565b60405180910390fd5b600b5481111561156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613072565b60405180910390fd5b60085460075411156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613072565b60405180910390fd5b60011515600960009054906101000a900460ff1615151461160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906130b2565b60405180910390fd5b600c548161161933610c53565b61162391906131e3565b1115611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90612e32565b60405180910390fd5b60005b818110156116a5576116923382600160075461168391906131e3565b61168d91906131e3565b611de3565b808061169d90613411565b915050611667565b5080600760008282546116b891906131e3565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61175e611924565b73ffffffffffffffffffffffffffffffffffffffff1661177c610f75565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990612fd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990612e72565b60405180910390fd5b61184b81611d1f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199f83610b13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119f0826118b8565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690612ef2565b60405180910390fd5b6000611a3a83610b13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611aa957508373ffffffffffffffffffffffffffffffffffffffff16611a9184610805565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aba5750611ab981856116c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ae382610b13565b73ffffffffffffffffffffffffffffffffffffffff1614611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090612ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090612eb2565b60405180910390fd5b611bb4838383612050565b611bbf60008261192c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0f91906132c4565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6691906131e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dfd828260405180602001604052806000815250612055565b5050565b611e0c848484611ac3565b611e18848484846120b0565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612e52565b60405180910390fd5b50505050565b6060600a8054611e6c906133ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611e98906133ae565b8015611ee55780601f10611eba57610100808354040283529160200191611ee5565b820191906000526020600020905b815481529060010190602001808311611ec857829003601f168201915b5050505050905090565b60606000821415611f37576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061204b565b600082905060005b60008214611f69578080611f5290613411565b915050600a82611f629190613239565b9150611f3f565b60008167ffffffffffffffff811115611f8557611f84613547565b5b6040519080825280601f01601f191660200182016040528015611fb75781602001600182028036833780820191505090505b5090505b6000851461204457600182611fd091906132c4565b9150600a85611fdf919061345a565b6030611feb91906131e3565b60f81b81838151811061200157612000613518565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561203d9190613239565b9450611fbb565b8093505050505b919050565b505050565b61205f8383612247565b61206c60008484846120b0565b6120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290612e52565b60405180910390fd5b505050565b60006120d18473ffffffffffffffffffffffffffffffffffffffff16612415565b1561223a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120fa611924565b8786866040518563ffffffff1660e01b815260040161211c9493929190612da9565b602060405180830381600087803b15801561213657600080fd5b505af192505050801561216757506040513d601f19601f820116820180604052508101906121649190612918565b60015b6121ea573d8060008114612197576040519150601f19603f3d011682016040523d82523d6000602084013e61219c565b606091505b506000815114156121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990612e52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061223f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90612f92565b60405180910390fd5b6122c0816118b8565b15612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790612e92565b60405180910390fd5b61230c60008383612050565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461235c91906131e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612434906133ae565b90600052602060002090601f016020900481019282612456576000855561249d565b82601f1061246f57805160ff191683800117855561249d565b8280016001018555821561249d579182015b8281111561249c578251825591602001919060010190612481565b5b5090506124aa91906124ae565b5090565b5b808211156124c75760008160009055506001016124af565b5090565b60006124de6124d984613112565b6130ed565b905080838252602082019050828560208602820111156125015761250061357b565b5b60005b85811015612531578161251788826125bf565b845260208401935060208301925050600181019050612504565b5050509392505050565b600061254e6125498461313e565b6130ed565b90508281526020810184848401111561256a57612569613580565b5b61257584828561336c565b509392505050565b600061259061258b8461316f565b6130ed565b9050828152602081018484840111156125ac576125ab613580565b5b6125b784828561336c565b509392505050565b6000813590506125ce81613ac5565b92915050565b600082601f8301126125e9576125e8613576565b5b81356125f98482602086016124cb565b91505092915050565b60008135905061261181613adc565b92915050565b60008135905061262681613af3565b92915050565b60008151905061263b81613af3565b92915050565b600082601f83011261265657612655613576565b5b813561266684826020860161253b565b91505092915050565b600082601f83011261268457612683613576565b5b813561269484826020860161257d565b91505092915050565b6000813590506126ac81613b0a565b92915050565b6000602082840312156126c8576126c761358a565b5b60006126d6848285016125bf565b91505092915050565b600080604083850312156126f6576126f561358a565b5b6000612704858286016125bf565b9250506020612715858286016125bf565b9150509250929050565b6000806000606084860312156127385761273761358a565b5b6000612746868287016125bf565b9350506020612757868287016125bf565b92505060406127688682870161269d565b9150509250925092565b6000806000806080858703121561278c5761278b61358a565b5b600061279a878288016125bf565b94505060206127ab878288016125bf565b93505060406127bc8782880161269d565b925050606085013567ffffffffffffffff8111156127dd576127dc613585565b5b6127e987828801612641565b91505092959194509250565b6000806040838503121561280c5761280b61358a565b5b600061281a858286016125bf565b925050602061282b85828601612602565b9150509250929050565b6000806040838503121561284c5761284b61358a565b5b600061285a858286016125bf565b925050602061286b8582860161269d565b9150509250929050565b60006020828403121561288b5761288a61358a565b5b600082013567ffffffffffffffff8111156128a9576128a8613585565b5b6128b5848285016125d4565b91505092915050565b6000602082840312156128d4576128d361358a565b5b60006128e284828501612602565b91505092915050565b6000602082840312156129015761290061358a565b5b600061290f84828501612617565b91505092915050565b60006020828403121561292e5761292d61358a565b5b600061293c8482850161262c565b91505092915050565b60006020828403121561295b5761295a61358a565b5b600082013567ffffffffffffffff81111561297957612978613585565b5b6129858482850161266f565b91505092915050565b6000602082840312156129a4576129a361358a565b5b60006129b28482850161269d565b91505092915050565b6129c4816132f8565b82525050565b6129d38161330a565b82525050565b60006129e4826131a0565b6129ee81856131b6565b93506129fe81856020860161337b565b612a078161358f565b840191505092915050565b6000612a1d826131ab565b612a2781856131c7565b9350612a3781856020860161337b565b612a408161358f565b840191505092915050565b6000612a56826131ab565b612a6081856131d8565b9350612a7081856020860161337b565b80840191505092915050565b6000612a896013836131c7565b9150612a94826135a0565b602082019050919050565b6000612aac6032836131c7565b9150612ab7826135c9565b604082019050919050565b6000612acf6026836131c7565b9150612ada82613618565b604082019050919050565b6000612af2601c836131c7565b9150612afd82613667565b602082019050919050565b6000612b156024836131c7565b9150612b2082613690565b604082019050919050565b6000612b386019836131c7565b9150612b43826136df565b602082019050919050565b6000612b5b602c836131c7565b9150612b6682613708565b604082019050919050565b6000612b7e6016836131c7565b9150612b8982613757565b602082019050919050565b6000612ba16038836131c7565b9150612bac82613780565b604082019050919050565b6000612bc4602a836131c7565b9150612bcf826137cf565b604082019050919050565b6000612be76029836131c7565b9150612bf28261381e565b604082019050919050565b6000612c0a6020836131c7565b9150612c158261386d565b602082019050919050565b6000612c2d602c836131c7565b9150612c3882613896565b604082019050919050565b6000612c506020836131c7565b9150612c5b826138e5565b602082019050919050565b6000612c736029836131c7565b9150612c7e8261390e565b604082019050919050565b6000612c96602f836131c7565b9150612ca18261395d565b604082019050919050565b6000612cb96021836131c7565b9150612cc4826139ac565b604082019050919050565b6000612cdc6031836131c7565b9150612ce7826139fb565b604082019050919050565b6000612cff6017836131c7565b9150612d0a82613a4a565b602082019050919050565b6000612d226016836131c7565b9150612d2d82613a73565b602082019050919050565b6000612d45600f836131c7565b9150612d5082613a9c565b602082019050919050565b612d6481613362565b82525050565b6000612d768285612a4b565b9150612d828284612a4b565b91508190509392505050565b6000602082019050612da360008301846129bb565b92915050565b6000608082019050612dbe60008301876129bb565b612dcb60208301866129bb565b612dd86040830185612d5b565b8181036060830152612dea81846129d9565b905095945050505050565b6000602082019050612e0a60008301846129ca565b92915050565b60006020820190508181036000830152612e2a8184612a12565b905092915050565b60006020820190508181036000830152612e4b81612a7c565b9050919050565b60006020820190508181036000830152612e6b81612a9f565b9050919050565b60006020820190508181036000830152612e8b81612ac2565b9050919050565b60006020820190508181036000830152612eab81612ae5565b9050919050565b60006020820190508181036000830152612ecb81612b08565b9050919050565b60006020820190508181036000830152612eeb81612b2b565b9050919050565b60006020820190508181036000830152612f0b81612b4e565b9050919050565b60006020820190508181036000830152612f2b81612b71565b9050919050565b60006020820190508181036000830152612f4b81612b94565b9050919050565b60006020820190508181036000830152612f6b81612bb7565b9050919050565b60006020820190508181036000830152612f8b81612bda565b9050919050565b60006020820190508181036000830152612fab81612bfd565b9050919050565b60006020820190508181036000830152612fcb81612c20565b9050919050565b60006020820190508181036000830152612feb81612c43565b9050919050565b6000602082019050818103600083015261300b81612c66565b9050919050565b6000602082019050818103600083015261302b81612c89565b9050919050565b6000602082019050818103600083015261304b81612cac565b9050919050565b6000602082019050818103600083015261306b81612ccf565b9050919050565b6000602082019050818103600083015261308b81612cf2565b9050919050565b600060208201905081810360008301526130ab81612d15565b9050919050565b600060208201905081810360008301526130cb81612d38565b9050919050565b60006020820190506130e76000830184612d5b565b92915050565b60006130f7613108565b905061310382826133e0565b919050565b6000604051905090565b600067ffffffffffffffff82111561312d5761312c613547565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561315957613158613547565b5b6131628261358f565b9050602081019050919050565b600067ffffffffffffffff82111561318a57613189613547565b5b6131938261358f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ee82613362565b91506131f983613362565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322e5761322d61348b565b5b828201905092915050565b600061324482613362565b915061324f83613362565b92508261325f5761325e6134ba565b5b828204905092915050565b600061327582613362565b915061328083613362565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b9576132b861348b565b5b828202905092915050565b60006132cf82613362565b91506132da83613362565b9250828210156132ed576132ec61348b565b5b828203905092915050565b600061330382613342565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561339957808201518184015260208101905061337e565b838111156133a8576000848401525b50505050565b600060028204905060018216806133c657607f821691505b602082108114156133da576133d96134e9565b5b50919050565b6133e98261358f565b810181811067ffffffffffffffff8211171561340857613407613547565b5b80604052505050565b600061341c82613362565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344f5761344e61348b565b5b600182019050919050565b600061346582613362565b915061347083613362565b9250826134805761347f6134ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f3520746f6b656e73207065722077616c6c657400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b613ace816132f8565b8114613ad957600080fd5b50565b613ae58161330a565b8114613af057600080fd5b50565b613afc81613316565b8114613b0757600080fd5b50565b613b1381613362565b8114613b1e57600080fd5b5056fea26469706673582212202f2d973809e3010192565d0c929e92176801b501782ea373ce42d0854ce439e864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d96a094a11610064578063d96a094a146105e6578063e6ab143414610602578063e985e9c51461062b578063f2fde38b14610668576101b7565b8063b88d4fde14610555578063c87b56dd1461057e578063d8c884db146105bb576101b7565b80638da5cb5b116100c65780638da5cb5b146104ad57806395d89b41146104d8578063a0bcfc7f14610503578063a22cb4651461052c576101b7565b8063715018a6146104445780637c8255db1461045b5780638032abbc14610484576101b7565b80633ccfd60b116101595780634b980d67116101335780634b980d67146103745780636352211e1461039f5780636c0360eb146103dc57806370a0823114610407576101b7565b80633ccfd60b1461030957806342842e0e14610320578063453c231014610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631d2e5055146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906128eb565b610691565b6040516101f09190612df5565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612e10565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061298e565b610805565b6040516102589190612d8e565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612835565b61088a565b005b34801561029657600080fd5b5061029f6109a2565b6040516102ac91906130d2565b60405180910390f35b3480156102c157600080fd5b506102ca6109a8565b6040516102d79190612df5565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061271f565b6109bb565b005b34801561031557600080fd5b5061031e610a1b565b005b34801561032c57600080fd5b506103476004803603810190610342919061271f565b610ae7565b005b34801561035557600080fd5b5061035e610b07565b60405161036b91906130d2565b60405180910390f35b34801561038057600080fd5b50610389610b0d565b60405161039691906130d2565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c1919061298e565b610b13565b6040516103d39190612d8e565b60405180910390f35b3480156103e857600080fd5b506103f1610bc5565b6040516103fe9190612e10565b60405180910390f35b34801561041357600080fd5b5061042e600480360381019061042991906126b2565b610c53565b60405161043b91906130d2565b60405180910390f35b34801561045057600080fd5b50610459610d0b565b005b34801561046757600080fd5b50610482600480360381019061047d9190612875565b610d93565b005b34801561049057600080fd5b506104ab60048036038101906104a691906128be565b610edc565b005b3480156104b957600080fd5b506104c2610f75565b6040516104cf9190612d8e565b60405180910390f35b3480156104e457600080fd5b506104ed610f9e565b6040516104fa9190612e10565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190612945565b611030565b005b34801561053857600080fd5b50610553600480360381019061054e91906127f5565b6110c6565b005b34801561056157600080fd5b5061057c60048036038101906105779190612772565b611247565b005b34801561058a57600080fd5b506105a560048036038101906105a0919061298e565b6112a9565b6040516105b29190612e10565b60405180910390f35b3480156105c757600080fd5b506105d0611350565b6040516105dd91906130d2565b60405180910390f35b61060060048036038101906105fb919061298e565b611356565b005b34801561060e57600080fd5b506106296004803603810190610624919061298e565b6114e7565b005b34801561063757600080fd5b50610652600480360381019061064d91906126df565b6116c2565b60405161065f9190612df5565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906126b2565b611756565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b8261184e565b5b9050919050565b606060018054610782906133ae565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae906133ae565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b6000610810826118b8565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612fb2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610b13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90613032565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610925611924565b73ffffffffffffffffffffffffffffffffffffffff16148061095457506109538161094e611924565b6116c2565b5b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90612f32565b60405180910390fd5b61099d838361192c565b505050565b60075481565b600960009054906101000a900460ff1681565b6109cc6109c6611924565b826119e5565b610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290613052565b60405180910390fd5b610a16838383611ac3565b505050565b610a23611924565b73ffffffffffffffffffffffffffffffffffffffff16610a41610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612fd2565b60405180910390fd5b610a9f610f75565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ae4573d6000803e3d6000fd5b50565b610b0283838360405180602001604052806000815250611247565b505050565b600c5481565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390612f72565b60405180910390fd5b80915050919050565b600a8054610bd2906133ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe906133ae565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90612f52565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d13611924565b73ffffffffffffffffffffffffffffffffffffffff16610d31610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90612fd2565b60405180910390fd5b610d916000611d1f565b565b610d9b611924565b73ffffffffffffffffffffffffffffffffffffffff16610db9610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690612fd2565b60405180910390fd5b6122b88151600754610e2191906131e3565b1115610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990613092565b60405180910390fd5b60005b8151811015610ebe57610eab828281518110610e8457610e83613518565b5b6020026020010151826001600754610e9c91906131e3565b610ea691906131e3565b611de3565b8080610eb690613411565b915050610e65565b50805160076000828254610ed291906131e3565b9250508190555050565b610ee4611924565b73ffffffffffffffffffffffffffffffffffffffff16610f02610f75565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90612fd2565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610fad906133ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd9906133ae565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b5050505050905090565b611038611924565b73ffffffffffffffffffffffffffffffffffffffff16611056610f75565b73ffffffffffffffffffffffffffffffffffffffff16146110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390612fd2565b60405180910390fd5b80600a90805190602001906110c2929190612428565b5050565b6110ce611924565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390612ed2565b60405180910390fd5b8060066000611149611924565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111f6611924565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123b9190612df5565b60405180910390a35050565b611258611252611924565b836119e5565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613052565b60405180910390fd5b6112a384848484611e01565b50505050565b60606112b4826118b8565b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613012565b60405180910390fd5b60006112fd611e5d565b9050600081511161131d5760405180602001604052806000815250611348565b8061132784611eef565b604051602001611338929190612d6a565b6040516020818303038152906040525b915050919050565b60085481565b60008111611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090613072565b60405180910390fd5b600b548111156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613072565b60405180910390fd5b80668e1bc9bf0400006113f1919061326a565b341015611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612f12565b60405180910390fd5b60011515600960009054906101000a900460ff16151514611489576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611480906130b2565b60405180910390fd5b60005b818110156114ca576114b7338260016007546114a891906131e3565b6114b291906131e3565b611de3565b80806114c290613411565b91505061148c565b5080600760008282546114dd91906131e3565b9250508190555050565b6000811161152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190613072565b60405180910390fd5b600b5481111561156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613072565b60405180910390fd5b60085460075411156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613072565b60405180910390fd5b60011515600960009054906101000a900460ff1615151461160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906130b2565b60405180910390fd5b600c548161161933610c53565b61162391906131e3565b1115611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90612e32565b60405180910390fd5b60005b818110156116a5576116923382600160075461168391906131e3565b61168d91906131e3565b611de3565b808061169d90613411565b915050611667565b5080600760008282546116b891906131e3565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61175e611924565b73ffffffffffffffffffffffffffffffffffffffff1661177c610f75565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990612fd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990612e72565b60405180910390fd5b61184b81611d1f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199f83610b13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119f0826118b8565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690612ef2565b60405180910390fd5b6000611a3a83610b13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611aa957508373ffffffffffffffffffffffffffffffffffffffff16611a9184610805565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aba5750611ab981856116c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ae382610b13565b73ffffffffffffffffffffffffffffffffffffffff1614611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090612ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090612eb2565b60405180910390fd5b611bb4838383612050565b611bbf60008261192c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0f91906132c4565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6691906131e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dfd828260405180602001604052806000815250612055565b5050565b611e0c848484611ac3565b611e18848484846120b0565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612e52565b60405180910390fd5b50505050565b6060600a8054611e6c906133ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611e98906133ae565b8015611ee55780601f10611eba57610100808354040283529160200191611ee5565b820191906000526020600020905b815481529060010190602001808311611ec857829003601f168201915b5050505050905090565b60606000821415611f37576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061204b565b600082905060005b60008214611f69578080611f5290613411565b915050600a82611f629190613239565b9150611f3f565b60008167ffffffffffffffff811115611f8557611f84613547565b5b6040519080825280601f01601f191660200182016040528015611fb75781602001600182028036833780820191505090505b5090505b6000851461204457600182611fd091906132c4565b9150600a85611fdf919061345a565b6030611feb91906131e3565b60f81b81838151811061200157612000613518565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561203d9190613239565b9450611fbb565b8093505050505b919050565b505050565b61205f8383612247565b61206c60008484846120b0565b6120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290612e52565b60405180910390fd5b505050565b60006120d18473ffffffffffffffffffffffffffffffffffffffff16612415565b1561223a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120fa611924565b8786866040518563ffffffff1660e01b815260040161211c9493929190612da9565b602060405180830381600087803b15801561213657600080fd5b505af192505050801561216757506040513d601f19601f820116820180604052508101906121649190612918565b60015b6121ea573d8060008114612197576040519150601f19603f3d011682016040523d82523d6000602084013e61219c565b606091505b506000815114156121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990612e52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061223f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90612f92565b60405180910390fd5b6122c0816118b8565b15612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790612e92565b60405180910390fd5b61230c60008383612050565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461235c91906131e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612434906133ae565b90600052602060002090601f016020900481019282612456576000855561249d565b82601f1061246f57805160ff191683800117855561249d565b8280016001018555821561249d579182015b8281111561249c578251825591602001919060010190612481565b5b5090506124aa91906124ae565b5090565b5b808211156124c75760008160009055506001016124af565b5090565b60006124de6124d984613112565b6130ed565b905080838252602082019050828560208602820111156125015761250061357b565b5b60005b85811015612531578161251788826125bf565b845260208401935060208301925050600181019050612504565b5050509392505050565b600061254e6125498461313e565b6130ed565b90508281526020810184848401111561256a57612569613580565b5b61257584828561336c565b509392505050565b600061259061258b8461316f565b6130ed565b9050828152602081018484840111156125ac576125ab613580565b5b6125b784828561336c565b509392505050565b6000813590506125ce81613ac5565b92915050565b600082601f8301126125e9576125e8613576565b5b81356125f98482602086016124cb565b91505092915050565b60008135905061261181613adc565b92915050565b60008135905061262681613af3565b92915050565b60008151905061263b81613af3565b92915050565b600082601f83011261265657612655613576565b5b813561266684826020860161253b565b91505092915050565b600082601f83011261268457612683613576565b5b813561269484826020860161257d565b91505092915050565b6000813590506126ac81613b0a565b92915050565b6000602082840312156126c8576126c761358a565b5b60006126d6848285016125bf565b91505092915050565b600080604083850312156126f6576126f561358a565b5b6000612704858286016125bf565b9250506020612715858286016125bf565b9150509250929050565b6000806000606084860312156127385761273761358a565b5b6000612746868287016125bf565b9350506020612757868287016125bf565b92505060406127688682870161269d565b9150509250925092565b6000806000806080858703121561278c5761278b61358a565b5b600061279a878288016125bf565b94505060206127ab878288016125bf565b93505060406127bc8782880161269d565b925050606085013567ffffffffffffffff8111156127dd576127dc613585565b5b6127e987828801612641565b91505092959194509250565b6000806040838503121561280c5761280b61358a565b5b600061281a858286016125bf565b925050602061282b85828601612602565b9150509250929050565b6000806040838503121561284c5761284b61358a565b5b600061285a858286016125bf565b925050602061286b8582860161269d565b9150509250929050565b60006020828403121561288b5761288a61358a565b5b600082013567ffffffffffffffff8111156128a9576128a8613585565b5b6128b5848285016125d4565b91505092915050565b6000602082840312156128d4576128d361358a565b5b60006128e284828501612602565b91505092915050565b6000602082840312156129015761290061358a565b5b600061290f84828501612617565b91505092915050565b60006020828403121561292e5761292d61358a565b5b600061293c8482850161262c565b91505092915050565b60006020828403121561295b5761295a61358a565b5b600082013567ffffffffffffffff81111561297957612978613585565b5b6129858482850161266f565b91505092915050565b6000602082840312156129a4576129a361358a565b5b60006129b28482850161269d565b91505092915050565b6129c4816132f8565b82525050565b6129d38161330a565b82525050565b60006129e4826131a0565b6129ee81856131b6565b93506129fe81856020860161337b565b612a078161358f565b840191505092915050565b6000612a1d826131ab565b612a2781856131c7565b9350612a3781856020860161337b565b612a408161358f565b840191505092915050565b6000612a56826131ab565b612a6081856131d8565b9350612a7081856020860161337b565b80840191505092915050565b6000612a896013836131c7565b9150612a94826135a0565b602082019050919050565b6000612aac6032836131c7565b9150612ab7826135c9565b604082019050919050565b6000612acf6026836131c7565b9150612ada82613618565b604082019050919050565b6000612af2601c836131c7565b9150612afd82613667565b602082019050919050565b6000612b156024836131c7565b9150612b2082613690565b604082019050919050565b6000612b386019836131c7565b9150612b43826136df565b602082019050919050565b6000612b5b602c836131c7565b9150612b6682613708565b604082019050919050565b6000612b7e6016836131c7565b9150612b8982613757565b602082019050919050565b6000612ba16038836131c7565b9150612bac82613780565b604082019050919050565b6000612bc4602a836131c7565b9150612bcf826137cf565b604082019050919050565b6000612be76029836131c7565b9150612bf28261381e565b604082019050919050565b6000612c0a6020836131c7565b9150612c158261386d565b602082019050919050565b6000612c2d602c836131c7565b9150612c3882613896565b604082019050919050565b6000612c506020836131c7565b9150612c5b826138e5565b602082019050919050565b6000612c736029836131c7565b9150612c7e8261390e565b604082019050919050565b6000612c96602f836131c7565b9150612ca18261395d565b604082019050919050565b6000612cb96021836131c7565b9150612cc4826139ac565b604082019050919050565b6000612cdc6031836131c7565b9150612ce7826139fb565b604082019050919050565b6000612cff6017836131c7565b9150612d0a82613a4a565b602082019050919050565b6000612d226016836131c7565b9150612d2d82613a73565b602082019050919050565b6000612d45600f836131c7565b9150612d5082613a9c565b602082019050919050565b612d6481613362565b82525050565b6000612d768285612a4b565b9150612d828284612a4b565b91508190509392505050565b6000602082019050612da360008301846129bb565b92915050565b6000608082019050612dbe60008301876129bb565b612dcb60208301866129bb565b612dd86040830185612d5b565b8181036060830152612dea81846129d9565b905095945050505050565b6000602082019050612e0a60008301846129ca565b92915050565b60006020820190508181036000830152612e2a8184612a12565b905092915050565b60006020820190508181036000830152612e4b81612a7c565b9050919050565b60006020820190508181036000830152612e6b81612a9f565b9050919050565b60006020820190508181036000830152612e8b81612ac2565b9050919050565b60006020820190508181036000830152612eab81612ae5565b9050919050565b60006020820190508181036000830152612ecb81612b08565b9050919050565b60006020820190508181036000830152612eeb81612b2b565b9050919050565b60006020820190508181036000830152612f0b81612b4e565b9050919050565b60006020820190508181036000830152612f2b81612b71565b9050919050565b60006020820190508181036000830152612f4b81612b94565b9050919050565b60006020820190508181036000830152612f6b81612bb7565b9050919050565b60006020820190508181036000830152612f8b81612bda565b9050919050565b60006020820190508181036000830152612fab81612bfd565b9050919050565b60006020820190508181036000830152612fcb81612c20565b9050919050565b60006020820190508181036000830152612feb81612c43565b9050919050565b6000602082019050818103600083015261300b81612c66565b9050919050565b6000602082019050818103600083015261302b81612c89565b9050919050565b6000602082019050818103600083015261304b81612cac565b9050919050565b6000602082019050818103600083015261306b81612ccf565b9050919050565b6000602082019050818103600083015261308b81612cf2565b9050919050565b600060208201905081810360008301526130ab81612d15565b9050919050565b600060208201905081810360008301526130cb81612d38565b9050919050565b60006020820190506130e76000830184612d5b565b92915050565b60006130f7613108565b905061310382826133e0565b919050565b6000604051905090565b600067ffffffffffffffff82111561312d5761312c613547565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561315957613158613547565b5b6131628261358f565b9050602081019050919050565b600067ffffffffffffffff82111561318a57613189613547565b5b6131938261358f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ee82613362565b91506131f983613362565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322e5761322d61348b565b5b828201905092915050565b600061324482613362565b915061324f83613362565b92508261325f5761325e6134ba565b5b828204905092915050565b600061327582613362565b915061328083613362565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b9576132b861348b565b5b828202905092915050565b60006132cf82613362565b91506132da83613362565b9250828210156132ed576132ec61348b565b5b828203905092915050565b600061330382613342565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561339957808201518184015260208101905061337e565b838111156133a8576000848401525b50505050565b600060028204905060018216806133c657607f821691505b602082108114156133da576133d96134e9565b5b50919050565b6133e98261358f565b810181811067ffffffffffffffff8211171561340857613407613547565b5b80604052505050565b600061341c82613362565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344f5761344e61348b565b5b600182019050919050565b600061346582613362565b915061347083613362565b9250826134805761347f6134ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f3520746f6b656e73207065722077616c6c657400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b613ace816132f8565b8114613ad957600080fd5b50565b613ae58161330a565b8114613af057600080fd5b50565b613afc81613316565b8114613b0757600080fd5b50565b613b1381613362565b8114613b1e57600080fd5b5056fea26469706673582212202f2d973809e3010192565d0c929e92176801b501782ea373ce42d0854ce439e864736f6c63430008070033

Deployed Bytecode Sourcemap

34562:2159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22408:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24912:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24435:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34695:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34768:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25802:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36612:106;;;;;;;;;;;;;:::i;:::-;;26212:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34897:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34834:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23047:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34806:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22777:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14255:94;;;;;;;;;;;;;:::i;:::-;;35987:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36399:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13604;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23522:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36301:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25205:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26468:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23697:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34729:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34985:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35441:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25571:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14504:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22408:305;22510:4;22562:25;22547:40;;;:11;:40;;;;:105;;;;22619:33;22604:48;;;:11;:48;;;;22547:105;:158;;;;22669:36;22693:11;22669:23;:36::i;:::-;22547:158;22527:178;;22408:305;;;:::o;23353:100::-;23407:13;23440:5;23433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23353:100;:::o;24912:221::-;24988:7;25016:16;25024:7;25016;:16::i;:::-;25008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25101:15;:24;25117:7;25101:24;;;;;;;;;;;;;;;;;;;;;25094:31;;24912:221;;;:::o;24435:411::-;24516:13;24532:23;24547:7;24532:14;:23::i;:::-;24516:39;;24580:5;24574:11;;:2;:11;;;;24566:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24674:5;24658:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24683:37;24700:5;24707:12;:10;:12::i;:::-;24683:16;:37::i;:::-;24658:62;24636:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24817:21;24826:2;24830:7;24817:8;:21::i;:::-;24505:341;24435:411;;:::o;34695:27::-;;;;:::o;34768:31::-;;;;;;;;;;;;;:::o;25802:339::-;25997:41;26016:12;:10;:12::i;:::-;26030:7;25997:18;:41::i;:::-;25989:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:28;26115:4;26121:2;26125:7;26105:9;:28::i;:::-;25802:339;;;:::o;36612:106::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36670:7:::1;:5;:7::i;:::-;36662:25;;:48;36688:21;36662:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;36612:106::o:0;26212:185::-;26350:39;26367:4;26373:2;26377:7;26350:39;;;;;;;;;;;;:16;:39::i;:::-;26212:185;;;:::o;34897:28::-;;;;:::o;34834:34::-;;;;:::o;23047:239::-;23119:7;23139:13;23155:7;:16;23163:7;23155:16;;;;;;;;;;;;;;;;;;;;;23139:32;;23207:1;23190:19;;:5;:19;;;;23182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23273:5;23266:12;;;23047:239;;;:::o;34806:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22777:208::-;22849:7;22894:1;22877:19;;:5;:19;;;;22869:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22961:9;:16;22971:5;22961:16;;;;;;;;;;;;;;;;22954:23;;22777:208;;;:::o;14255:94::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14320:21:::1;14338:1;14320:9;:21::i;:::-;14255:94::o:0;35987:308::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34684:4:::1;36082:8;:15;36068:11;;:29;;;;:::i;:::-;:42;;36060:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;36152:6;36148:98;36168:8;:15;36164:1;:19;36148:98;;;36203:43;36213:8;36222:1;36213:11;;;;;;;;:::i;:::-;;;;;;;;36244:1;36240;36226:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36203:9;:43::i;:::-;36185:3;;;;;:::i;:::-;;;;36148:98;;;;36272:8;:15;36257:11;;:30;;;;;;;:::i;:::-;;;;;;;;35987:308:::0;:::o;36399:87::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36474:4:::1;36460:11;;:18;;;;;;;;;;;;;;;;;;36399:87:::0;:::o;13604:::-;13650:7;13677:6;;;;;;;;;;;13670:13;;13604:87;:::o;23522:104::-;23578:13;23611:7;23604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23522:104;:::o;36301:92::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36381:4:::1;36371:7;:14;;;;;;;;;;;;:::i;:::-;;36301:92:::0;:::o;25205:295::-;25320:12;:10;:12::i;:::-;25308:24;;:8;:24;;;;25300:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25420:8;25375:18;:32;25394:12;:10;:12::i;:::-;25375:32;;;;;;;;;;;;;;;:42;25408:8;25375:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25473:8;25444:48;;25459:12;:10;:12::i;:::-;25444:48;;;25483:8;25444:48;;;;;;:::i;:::-;;;;;;;;25205:295;;:::o;26468:328::-;26643:41;26662:12;:10;:12::i;:::-;26676:7;26643:18;:41::i;:::-;26635:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26749:39;26763:4;26769:2;26773:7;26782:5;26749:13;:39::i;:::-;26468:328;;;;:::o;23697:334::-;23770:13;23804:16;23812:7;23804;:16::i;:::-;23796:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23885:21;23909:10;:8;:10::i;:::-;23885:34;;23961:1;23943:7;23937:21;:25;:86;;;;;;;;;;;;;;;;;23989:7;23998:18;:7;:16;:18::i;:::-;23972:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23937:86;23930:93;;;23697:334;;;:::o;34729:32::-;;;;:::o;34985:449::-;35053:1;35044:6;:10;35036:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35112:17;;35102:6;:27;;35094:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35202:6;34641:10;35189:19;;;;:::i;:::-;35176:9;:32;;35168:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35269:4;35254:19;;:11;;;;;;;;;;;:19;;;35246:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;35310:6;35306:88;35326:6;35322:1;:10;35306:88;;;35352:42;35362:10;35392:1;35388;35374:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35352:9;:42::i;:::-;35334:3;;;;;:::i;:::-;;;;35306:88;;;;35420:6;35405:11;;:21;;;;;;;:::i;:::-;;;;;;;;34985:449;:::o;35441:540::-;35506:1;35497:6;:10;35489:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35564:17;;35554:6;:27;;35546:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35643:14;;35628:11;;:29;;35620:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35719:4;35704:19;;:11;;;;;;;;;;;:19;;;35696:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;35796:12;;35786:6;35762:21;35772:10;35762:9;:21::i;:::-;:30;;;;:::i;:::-;:46;;35754:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;35857:6;35853:88;35873:6;35869:1;:10;35853:88;;;35899:42;35909:10;35939:1;35935;35921:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35899:9;:42::i;:::-;35881:3;;;;;:::i;:::-;;;;35853:88;;;;35967:6;35952:11;;:21;;;;;;;:::i;:::-;;;;;;;;35441:540;:::o;25571:164::-;25668:4;25692:18;:25;25711:5;25692:25;;;;;;;;;;;;;;;:35;25718:8;25692:35;;;;;;;;;;;;;;;;;;;;;;;;;25685:42;;25571:164;;;;:::o;14504:192::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14613:1:::1;14593:22;;:8;:22;;;;14585:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14669:19;14679:8;14669:9;:19::i;:::-;14504:192:::0;:::o;15609:157::-;15694:4;15733:25;15718:40;;;:11;:40;;;;15711:47;;15609:157;;;:::o;28306:127::-;28371:4;28423:1;28395:30;;:7;:16;28403:7;28395:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28388:37;;28306:127;;;:::o;744:98::-;797:7;824:10;817:17;;744:98;:::o;32288:174::-;32390:2;32363:15;:24;32379:7;32363:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32446:7;32442:2;32408:46;;32417:23;32432:7;32417:14;:23::i;:::-;32408:46;;;;;;;;;;;;32288:174;;:::o;28600:348::-;28693:4;28718:16;28726:7;28718;:16::i;:::-;28710:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28794:13;28810:23;28825:7;28810:14;:23::i;:::-;28794:39;;28863:5;28852:16;;:7;:16;;;:51;;;;28896:7;28872:31;;:20;28884:7;28872:11;:20::i;:::-;:31;;;28852:51;:87;;;;28907:32;28924:5;28931:7;28907:16;:32::i;:::-;28852:87;28844:96;;;28600:348;;;;:::o;31592:578::-;31751:4;31724:31;;:23;31739:7;31724:14;:23::i;:::-;:31;;;31716:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31834:1;31820:16;;:2;:16;;;;31812:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31890:39;31911:4;31917:2;31921:7;31890:20;:39::i;:::-;31994:29;32011:1;32015:7;31994:8;:29::i;:::-;32055:1;32036:9;:15;32046:4;32036:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32084:1;32067:9;:13;32077:2;32067:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32115:2;32096:7;:16;32104:7;32096:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32154:7;32150:2;32135:27;;32144:4;32135:27;;;;;;;;;;;;31592:578;;;:::o;14704:173::-;14760:16;14779:6;;;;;;;;;;;14760:25;;14805:8;14796:6;;:17;;;;;;;;;;;;;;;;;;14860:8;14829:40;;14850:8;14829:40;;;;;;;;;;;;14749:128;14704:173;:::o;29290:110::-;29366:26;29376:2;29380:7;29366:26;;;;;;;;;;;;:9;:26::i;:::-;29290:110;;:::o;27678:315::-;27835:28;27845:4;27851:2;27855:7;27835:9;:28::i;:::-;27882:48;27905:4;27911:2;27915:7;27924:5;27882:22;:48::i;:::-;27874:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27678:315;;;;:::o;36498:108::-;36558:13;36591:7;36584:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36498:108;:::o;1209:723::-;1265:13;1495:1;1486:5;:10;1482:53;;;1513:10;;;;;;;;;;;;;;;;;;;;;1482:53;1545:12;1560:5;1545:20;;1576:14;1601:78;1616:1;1608:4;:9;1601:78;;1634:8;;;;;:::i;:::-;;;;1665:2;1657:10;;;;;:::i;:::-;;;1601:78;;;1689:19;1721:6;1711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689:39;;1739:154;1755:1;1746:5;:10;1739:154;;1783:1;1773:11;;;;;:::i;:::-;;;1850:2;1842:5;:10;;;;:::i;:::-;1829:2;:24;;;;:::i;:::-;1816:39;;1799:6;1806;1799:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1879:2;1870:11;;;;;:::i;:::-;;;1739:154;;;1917:6;1903:21;;;;;1209:723;;;;:::o;34398:126::-;;;;:::o;29627:321::-;29757:18;29763:2;29767:7;29757:5;:18::i;:::-;29808:54;29839:1;29843:2;29847:7;29856:5;29808:22;:54::i;:::-;29786:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29627:321;;;:::o;33027:799::-;33182:4;33203:15;:2;:13;;;:15::i;:::-;33199:620;;;33255:2;33239:36;;;33276:12;:10;:12::i;:::-;33290:4;33296:7;33305:5;33239:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33235:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33498:1;33481:6;:13;:18;33477:272;;;33524:60;;;;;;;;;;:::i;:::-;;;;;;;;33477:272;33699:6;33693:13;33684:6;33680:2;33676:15;33669:38;33235:529;33372:41;;;33362:51;;;:6;:51;;;;33355:58;;;;;33199:620;33803:4;33796:11;;33027:799;;;;;;;:::o;30284:382::-;30378:1;30364:16;;:2;:16;;;;30356:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30437:16;30445:7;30437;:16::i;:::-;30436:17;30428:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30499:45;30528:1;30532:2;30536:7;30499:20;:45::i;:::-;30574:1;30557:9;:13;30567:2;30557:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30605:2;30586:7;:16;30594:7;30586:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30650:7;30646:2;30625:33;;30642:1;30625:33;;;;;;;;;;;;30284:382;;:::o;3674:387::-;3734:4;3942:12;4009:7;3997:20;3989:28;;4052:1;4045:4;:8;4038:15;;;3674:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:::-;18110:3;18131:67;18195:2;18190:3;18131:67;:::i;:::-;18124:74;;18207:93;18296:3;18207:93;:::i;:::-;18325:2;18320:3;18316:12;18309:19;;17968:366;;;:::o;18340:118::-;18427:24;18445:5;18427:24;:::i;:::-;18422:3;18415:37;18340:118;;:::o;18464:435::-;18644:3;18666:95;18757:3;18748:6;18666:95;:::i;:::-;18659:102;;18778:95;18869:3;18860:6;18778:95;:::i;:::-;18771:102;;18890:3;18883:10;;18464:435;;;;;:::o;18905:222::-;18998:4;19036:2;19025:9;19021:18;19013:26;;19049:71;19117:1;19106:9;19102:17;19093:6;19049:71;:::i;:::-;18905:222;;;;:::o;19133:640::-;19328:4;19366:3;19355:9;19351:19;19343:27;;19380:71;19448:1;19437:9;19433:17;19424:6;19380:71;:::i;:::-;19461:72;19529:2;19518:9;19514:18;19505:6;19461:72;:::i;:::-;19543;19611:2;19600:9;19596:18;19587:6;19543:72;:::i;:::-;19662:9;19656:4;19652:20;19647:2;19636:9;19632:18;19625:48;19690:76;19761:4;19752:6;19690:76;:::i;:::-;19682:84;;19133:640;;;;;;;:::o;19779:210::-;19866:4;19904:2;19893:9;19889:18;19881:26;;19917:65;19979:1;19968:9;19964:17;19955:6;19917:65;:::i;:::-;19779:210;;;;:::o;19995:313::-;20108:4;20146:2;20135:9;20131:18;20123:26;;20195:9;20189:4;20185:20;20181:1;20170:9;20166:17;20159:47;20223:78;20296:4;20287:6;20223:78;:::i;:::-;20215:86;;19995:313;;;;:::o;20314:419::-;20480:4;20518:2;20507:9;20503:18;20495:26;;20567:9;20561:4;20557:20;20553:1;20542:9;20538:17;20531:47;20595:131;20721:4;20595:131;:::i;:::-;20587:139;;20314:419;;;:::o;20739:::-;20905:4;20943:2;20932:9;20928:18;20920:26;;20992:9;20986:4;20982:20;20978:1;20967:9;20963:17;20956:47;21020:131;21146:4;21020:131;:::i;:::-;21012:139;;20739:419;;;:::o;21164:::-;21330:4;21368:2;21357:9;21353:18;21345:26;;21417:9;21411:4;21407:20;21403:1;21392:9;21388:17;21381:47;21445:131;21571:4;21445:131;:::i;:::-;21437:139;;21164:419;;;:::o;21589:::-;21755:4;21793:2;21782:9;21778:18;21770:26;;21842:9;21836:4;21832:20;21828:1;21817:9;21813:17;21806:47;21870:131;21996:4;21870:131;:::i;:::-;21862:139;;21589:419;;;:::o;22014:::-;22180:4;22218:2;22207:9;22203:18;22195:26;;22267:9;22261:4;22257:20;22253:1;22242:9;22238:17;22231:47;22295:131;22421:4;22295:131;:::i;:::-;22287:139;;22014:419;;;:::o;22439:::-;22605:4;22643:2;22632:9;22628:18;22620:26;;22692:9;22686:4;22682:20;22678:1;22667:9;22663:17;22656:47;22720:131;22846:4;22720:131;:::i;:::-;22712:139;;22439:419;;;:::o;22864:::-;23030:4;23068:2;23057:9;23053:18;23045:26;;23117:9;23111:4;23107:20;23103:1;23092:9;23088:17;23081:47;23145:131;23271:4;23145:131;:::i;:::-;23137:139;;22864:419;;;:::o;23289:::-;23455:4;23493:2;23482:9;23478:18;23470:26;;23542:9;23536:4;23532:20;23528:1;23517:9;23513:17;23506:47;23570:131;23696:4;23570:131;:::i;:::-;23562:139;;23289:419;;;:::o;23714:::-;23880:4;23918:2;23907:9;23903:18;23895:26;;23967:9;23961:4;23957:20;23953:1;23942:9;23938:17;23931:47;23995:131;24121:4;23995:131;:::i;:::-;23987:139;;23714:419;;;:::o;24139:::-;24305:4;24343:2;24332:9;24328:18;24320:26;;24392:9;24386:4;24382:20;24378:1;24367:9;24363:17;24356:47;24420:131;24546:4;24420:131;:::i;:::-;24412:139;;24139:419;;;:::o;24564:::-;24730:4;24768:2;24757:9;24753:18;24745:26;;24817:9;24811:4;24807:20;24803:1;24792:9;24788:17;24781:47;24845:131;24971:4;24845:131;:::i;:::-;24837:139;;24564:419;;;:::o;24989:::-;25155:4;25193:2;25182:9;25178:18;25170:26;;25242:9;25236:4;25232:20;25228:1;25217:9;25213:17;25206:47;25270:131;25396:4;25270:131;:::i;:::-;25262:139;;24989:419;;;:::o;25414:::-;25580:4;25618:2;25607:9;25603:18;25595:26;;25667:9;25661:4;25657:20;25653:1;25642:9;25638:17;25631:47;25695:131;25821:4;25695:131;:::i;:::-;25687:139;;25414:419;;;:::o;25839:::-;26005:4;26043:2;26032:9;26028:18;26020:26;;26092:9;26086:4;26082:20;26078:1;26067:9;26063:17;26056:47;26120:131;26246:4;26120:131;:::i;:::-;26112:139;;25839:419;;;:::o;26264:::-;26430:4;26468:2;26457:9;26453:18;26445:26;;26517:9;26511:4;26507:20;26503:1;26492:9;26488:17;26481:47;26545:131;26671:4;26545:131;:::i;:::-;26537:139;;26264:419;;;:::o;26689:::-;26855:4;26893:2;26882:9;26878:18;26870:26;;26942:9;26936:4;26932:20;26928:1;26917:9;26913:17;26906:47;26970:131;27096:4;26970:131;:::i;:::-;26962:139;;26689:419;;;:::o;27114:::-;27280:4;27318:2;27307:9;27303:18;27295:26;;27367:9;27361:4;27357:20;27353:1;27342:9;27338:17;27331:47;27395:131;27521:4;27395:131;:::i;:::-;27387:139;;27114:419;;;:::o;27539:::-;27705:4;27743:2;27732:9;27728:18;27720:26;;27792:9;27786:4;27782:20;27778:1;27767:9;27763:17;27756:47;27820:131;27946:4;27820:131;:::i;:::-;27812:139;;27539:419;;;:::o;27964:::-;28130:4;28168:2;28157:9;28153:18;28145:26;;28217:9;28211:4;28207:20;28203:1;28192:9;28188:17;28181:47;28245:131;28371:4;28245:131;:::i;:::-;28237:139;;27964:419;;;:::o;28389:::-;28555:4;28593:2;28582:9;28578:18;28570:26;;28642:9;28636:4;28632:20;28628:1;28617:9;28613:17;28606:47;28670:131;28796:4;28670:131;:::i;:::-;28662:139;;28389:419;;;:::o;28814:::-;28980:4;29018:2;29007:9;29003:18;28995:26;;29067:9;29061:4;29057:20;29053:1;29042:9;29038:17;29031:47;29095:131;29221:4;29095:131;:::i;:::-;29087:139;;28814:419;;;:::o;29239:222::-;29332:4;29370:2;29359:9;29355:18;29347:26;;29383:71;29451:1;29440:9;29436:17;29427:6;29383:71;:::i;:::-;29239:222;;;;:::o;29467:129::-;29501:6;29528:20;;:::i;:::-;29518:30;;29557:33;29585:4;29577:6;29557:33;:::i;:::-;29467:129;;;:::o;29602:75::-;29635:6;29668:2;29662:9;29652:19;;29602:75;:::o;29683:311::-;29760:4;29850:18;29842:6;29839:30;29836:56;;;29872:18;;:::i;:::-;29836:56;29922:4;29914:6;29910:17;29902:25;;29982:4;29976;29972:15;29964:23;;29683:311;;;:::o;30000:307::-;30061:4;30151:18;30143:6;30140:30;30137:56;;;30173:18;;:::i;:::-;30137:56;30211:29;30233:6;30211:29;:::i;:::-;30203:37;;30295:4;30289;30285:15;30277:23;;30000:307;;;:::o;30313:308::-;30375:4;30465:18;30457:6;30454:30;30451:56;;;30487:18;;:::i;:::-;30451:56;30525:29;30547:6;30525:29;:::i;:::-;30517:37;;30609:4;30603;30599:15;30591:23;;30313:308;;;:::o;30627:98::-;30678:6;30712:5;30706:12;30696:22;;30627:98;;;:::o;30731:99::-;30783:6;30817:5;30811:12;30801:22;;30731:99;;;:::o;30836:168::-;30919:11;30953:6;30948:3;30941:19;30993:4;30988:3;30984:14;30969:29;;30836:168;;;;:::o;31010:169::-;31094:11;31128:6;31123:3;31116:19;31168:4;31163:3;31159:14;31144:29;;31010:169;;;;:::o;31185:148::-;31287:11;31324:3;31309:18;;31185:148;;;;:::o;31339:305::-;31379:3;31398:20;31416:1;31398:20;:::i;:::-;31393:25;;31432:20;31450:1;31432:20;:::i;:::-;31427:25;;31586:1;31518:66;31514:74;31511:1;31508:81;31505:107;;;31592:18;;:::i;:::-;31505:107;31636:1;31633;31629:9;31622:16;;31339:305;;;;:::o;31650:185::-;31690:1;31707:20;31725:1;31707:20;:::i;:::-;31702:25;;31741:20;31759:1;31741:20;:::i;:::-;31736:25;;31780:1;31770:35;;31785:18;;:::i;:::-;31770:35;31827:1;31824;31820:9;31815:14;;31650:185;;;;:::o;31841:348::-;31881:7;31904:20;31922:1;31904:20;:::i;:::-;31899:25;;31938:20;31956:1;31938:20;:::i;:::-;31933:25;;32126:1;32058:66;32054:74;32051:1;32048:81;32043:1;32036:9;32029:17;32025:105;32022:131;;;32133:18;;:::i;:::-;32022:131;32181:1;32178;32174:9;32163:20;;31841:348;;;;:::o;32195:191::-;32235:4;32255:20;32273:1;32255:20;:::i;:::-;32250:25;;32289:20;32307:1;32289:20;:::i;:::-;32284:25;;32328:1;32325;32322:8;32319:34;;;32333:18;;:::i;:::-;32319:34;32378:1;32375;32371:9;32363:17;;32195:191;;;;:::o;32392:96::-;32429:7;32458:24;32476:5;32458:24;:::i;:::-;32447:35;;32392:96;;;:::o;32494:90::-;32528:7;32571:5;32564:13;32557:21;32546:32;;32494:90;;;:::o;32590:149::-;32626:7;32666:66;32659:5;32655:78;32644:89;;32590:149;;;:::o;32745:126::-;32782:7;32822:42;32815:5;32811:54;32800:65;;32745:126;;;:::o;32877:77::-;32914:7;32943:5;32932:16;;32877:77;;;:::o;32960:154::-;33044:6;33039:3;33034;33021:30;33106:1;33097:6;33092:3;33088:16;33081:27;32960:154;;;:::o;33120:307::-;33188:1;33198:113;33212:6;33209:1;33206:13;33198:113;;;33297:1;33292:3;33288:11;33282:18;33278:1;33273:3;33269:11;33262:39;33234:2;33231:1;33227:10;33222:15;;33198:113;;;33329:6;33326:1;33323:13;33320:101;;;33409:1;33400:6;33395:3;33391:16;33384:27;33320:101;33169:258;33120:307;;;:::o;33433:320::-;33477:6;33514:1;33508:4;33504:12;33494:22;;33561:1;33555:4;33551:12;33582:18;33572:81;;33638:4;33630:6;33626:17;33616:27;;33572:81;33700:2;33692:6;33689:14;33669:18;33666:38;33663:84;;;33719:18;;:::i;:::-;33663:84;33484:269;33433:320;;;:::o;33759:281::-;33842:27;33864:4;33842:27;:::i;:::-;33834:6;33830:40;33972:6;33960:10;33957:22;33936:18;33924:10;33921:34;33918:62;33915:88;;;33983:18;;:::i;:::-;33915:88;34023:10;34019:2;34012:22;33802:238;33759:281;;:::o;34046:233::-;34085:3;34108:24;34126:5;34108:24;:::i;:::-;34099:33;;34154:66;34147:5;34144:77;34141:103;;;34224:18;;:::i;:::-;34141:103;34271:1;34264:5;34260:13;34253:20;;34046:233;;;:::o;34285:176::-;34317:1;34334:20;34352:1;34334:20;:::i;:::-;34329:25;;34368:20;34386:1;34368:20;:::i;:::-;34363:25;;34407:1;34397:35;;34412:18;;:::i;:::-;34397:35;34453:1;34450;34446:9;34441:14;;34285:176;;;;:::o;34467:180::-;34515:77;34512:1;34505:88;34612:4;34609:1;34602:15;34636:4;34633:1;34626:15;34653:180;34701:77;34698:1;34691:88;34798:4;34795:1;34788:15;34822:4;34819:1;34812:15;34839:180;34887:77;34884:1;34877:88;34984:4;34981:1;34974:15;35008:4;35005:1;34998:15;35025:180;35073:77;35070:1;35063:88;35170:4;35167:1;35160:15;35194:4;35191:1;35184:15;35211:180;35259:77;35256:1;35249:88;35356:4;35353:1;35346:15;35380:4;35377:1;35370:15;35397:117;35506:1;35503;35496:12;35520:117;35629:1;35626;35619:12;35643:117;35752:1;35749;35742:12;35766:117;35875:1;35872;35865:12;35889:117;35998:1;35995;35988:12;36012:102;36053:6;36104:2;36100:7;36095:2;36088:5;36084:14;36080:28;36070:38;;36012:102;;;:::o;36120:169::-;36260:21;36256:1;36248:6;36244:14;36237:45;36120:169;:::o;36295:237::-;36435:34;36431:1;36423:6;36419:14;36412:58;36504:20;36499:2;36491:6;36487:15;36480:45;36295:237;:::o;36538:225::-;36678:34;36674:1;36666:6;36662:14;36655:58;36747:8;36742:2;36734:6;36730:15;36723:33;36538:225;:::o;36769:178::-;36909:30;36905:1;36897:6;36893:14;36886:54;36769:178;:::o;36953:223::-;37093:34;37089:1;37081:6;37077:14;37070:58;37162:6;37157:2;37149:6;37145:15;37138:31;36953:223;:::o;37182:175::-;37322:27;37318:1;37310:6;37306:14;37299:51;37182:175;:::o;37363:231::-;37503:34;37499:1;37491:6;37487:14;37480:58;37572:14;37567:2;37559:6;37555:15;37548:39;37363:231;:::o;37600:172::-;37740:24;37736:1;37728:6;37724:14;37717:48;37600:172;:::o;37778:243::-;37918:34;37914:1;37906:6;37902:14;37895:58;37987:26;37982:2;37974:6;37970:15;37963:51;37778:243;:::o;38027:229::-;38167:34;38163:1;38155:6;38151:14;38144:58;38236:12;38231:2;38223:6;38219:15;38212:37;38027:229;:::o;38262:228::-;38402:34;38398:1;38390:6;38386:14;38379:58;38471:11;38466:2;38458:6;38454:15;38447:36;38262:228;:::o;38496:182::-;38636:34;38632:1;38624:6;38620:14;38613:58;38496:182;:::o;38684:231::-;38824:34;38820:1;38812:6;38808:14;38801:58;38893:14;38888:2;38880:6;38876:15;38869:39;38684:231;:::o;38921:182::-;39061:34;39057:1;39049:6;39045:14;39038:58;38921:182;:::o;39109:228::-;39249:34;39245:1;39237:6;39233:14;39226:58;39318:11;39313:2;39305:6;39301:15;39294:36;39109:228;:::o;39343:234::-;39483:34;39479:1;39471:6;39467:14;39460:58;39552:17;39547:2;39539:6;39535:15;39528:42;39343:234;:::o;39583:220::-;39723:34;39719:1;39711:6;39707:14;39700:58;39792:3;39787:2;39779:6;39775:15;39768:28;39583:220;:::o;39809:236::-;39949:34;39945:1;39937:6;39933:14;39926:58;40018:19;40013:2;40005:6;40001:15;39994:44;39809:236;:::o;40051:173::-;40191:25;40187:1;40179:6;40175:14;40168:49;40051:173;:::o;40230:172::-;40370:24;40366:1;40358:6;40354:14;40347:48;40230:172;:::o;40408:165::-;40548:17;40544:1;40536:6;40532:14;40525:41;40408:165;:::o;40579:122::-;40652:24;40670:5;40652:24;:::i;:::-;40645:5;40642:35;40632:63;;40691:1;40688;40681:12;40632:63;40579:122;:::o;40707:116::-;40777:21;40792:5;40777:21;:::i;:::-;40770:5;40767:32;40757:60;;40813:1;40810;40803:12;40757:60;40707:116;:::o;40829:120::-;40901:23;40918:5;40901:23;:::i;:::-;40894:5;40891:34;40881:62;;40939:1;40936;40929:12;40881:62;40829:120;:::o;40955:122::-;41028:24;41046:5;41028:24;:::i;:::-;41021:5;41018:35;41008:63;;41067:1;41064;41057:12;41008:63;40955:122;:::o

Swarm Source

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