ETH Price: $3,115.97 (-1.62%)
 

Overview

Max Total Supply

201 BBD

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
32 BBD
0x2ccc2221618084c6d6b59f12845349ee2042856c
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:
Brainbuddy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-25
*/

/*
.______   .______          ___       __  .__   __.    .______    __    __   _______   _______  ____    ____ 
|   _  \  |   _  \        /   \     |  | |  \ |  |    |   _  \  |  |  |  | |       \ |       \ \   \  /   / 
|  |_)  | |  |_)  |      /  ^  \    |  | |   \|  |    |  |_)  | |  |  |  | |  .--.  ||  .--.  | \   \/   /  
|   _  <  |      /      /  /_\  \   |  | |  . `  |    |   _  <  |  |  |  | |  |  |  ||  |  |  |  \_    _/   
|  |_)  | |  |\  \----./  _____  \  |  | |  |\   |    |  |_)  | |  `--'  | |  '--'  ||  '--'  |    |  |     
|______/  | _| `._____/__/     \__\ |__| |__| \__|    |______/   \______/  |_______/ |_______/     |__|     
                                                                                                            

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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


// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


interface ILOBE {
    function burn(address from, uint256 amount) external;
    function mint(address to, uint256 amount) external;
}

interface IStakingToken {
    function update(address from, address to) external;
}

// File contracts/Brainbuddy.sol

pragma solidity ^0.8.4;






contract Brainbuddy is ERC721Enumerable, ReentrancyGuard, Ownable, Pausable {
    using SafeMath for uint256;
    using Strings for uint256;

    struct BrainBuddyInfo {
        string name;
        string description;
    }

    mapping(uint256 => BrainBuddyInfo) public buddyInfo;

    uint256 public RESERVE_NFT = 100;     // Expected to use last 100 tokenIDs.
    uint256 public LOBE_Mint_NFT = 2500;
    uint256 public ETH_Mint_NFT = 7400;
    uint256 public constant MAX_NFT = 10000;

    uint256 public LOBE_PRICE = 3000 ether;
    uint256 public ETH_PRICE = 0.02 ether;
    uint256 public VIP_ETH_PRICE = 0.01 ether;
    uint256 public UPDATE_NAME_PRICE = 2000 ether;
    uint256 public UPDATE_DESCRIPTION_PRICE = 2000 ether;

    uint256 public PURCHASE_LIMIT = 50;

    uint256 public totalLOBEMinted;
    uint256 public totalETHMinted;
    uint256 public totalReserveClaimed;
    uint256 public publicTotalSupply;

    string public baseURI;
    string public blindURI;

    bool public isPublicSaleActive;
    bool public isReveal;

    ILOBE public LOBEContract;
    IStakingToken public stakingTokenContract;

    mapping(address => uint256) public publicSaleClaimed;

    mapping(address => uint256[]) public giveaway;

    mapping(address => bool) public isVIP;

    address public communityTreasuryWallet;
    address public LOBELiquidityWallet;

    event UpdateName(uint256 indexed tokenId, string name);
    event UpdateDescription(uint256 indexed tokenId, string description);

    constructor(address _community, address _liquidity, address _LOBE) ERC721("BrainBuddies", "BBD") {
        communityTreasuryWallet = _community;
        LOBELiquidityWallet = _liquidity;
        LOBEContract = ILOBE(_LOBE);
    }    

    // Function to start main sale
    function changePublicSaleStatus(bool _status) external onlyOwner {
        isPublicSaleActive = _status;
    }    

    // Function to reveal all NFTs
    function changeRevealStatus(bool _status) external onlyOwner {
        isReveal = _status;
    }  

    // Function to change LOBE mint price
    function changeLOBEPrice(uint256 amount) external onlyOwner {
        LOBE_PRICE = amount;
    }   

    // Function to change ETH mint price
    function changeETHPrice(uint256 amount) external onlyOwner {
        ETH_PRICE = amount;
    }    

    // Function to change VIP ETH mint price
    function changeVIPETHPrice(uint256 amount) external onlyOwner {
        VIP_ETH_PRICE = amount;
    } 

    // Function to change UPDATE name and description price
    function changeUpdateNameAndDescriptionPrice(uint256 _name, uint256 _description) external onlyOwner {
        UPDATE_NAME_PRICE = _name;
        UPDATE_DESCRIPTION_PRICE = _description;
    } 

    // Function to change max mint per wallet
    function changePurchaseLimit(uint256 amount) external onlyOwner {
        PURCHASE_LIMIT = amount;
    }   

    // Function to change LOBE mint to giveway
    function changeLOBEToGiveway(uint256 amount) external onlyOwner {
        require(totalLOBEMinted.add(amount) <= LOBE_Mint_NFT, "Amount exceed available.");
        LOBE_Mint_NFT = LOBE_Mint_NFT.sub(amount);
        RESERVE_NFT = RESERVE_NFT.add(amount);
    } 

    // Function to change ETH mint to giveway
    function changeETHToGiveway(uint256 amount) external onlyOwner {
        require(totalETHMinted.add(amount) <= ETH_Mint_NFT, "Amount exceed available.");
        ETH_Mint_NFT = ETH_Mint_NFT.sub(amount);
        RESERVE_NFT = RESERVE_NFT.add(amount);
    } 
    
    // Function VIP access to to addresses
    function giveVIPAccess(address[] memory _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            isVIP[_addresses[i]] = true;
        }
    }

    // Function to set giveaway users
    function setGiveawayUsers(address[] memory _to, uint256[] memory _tokenIds) external onlyOwner {
        require(_to.length == _tokenIds.length, "array size mismatch");
        for(uint256 i = 0; i < _to.length; i++) {
            require(_tokenIds[i] >= MAX_NFT - RESERVE_NFT, "Giveaway tokenID must be set from Reserved IDs which are lastest");            
            giveaway[_to[i]].push(_tokenIds[i]);
        }
    }

    // Function to set $LOBE and future staking token address
    function setContractAddresses(address _lobe, address _stakingToken) external onlyOwner {
        LOBEContract = ILOBE(_lobe);
        stakingTokenContract = IStakingToken(_stakingToken);
    }
    
    // Function to set Base and Blind URI
    function setURIs(string memory _blindURI, string memory _URI) external onlyOwner {
        blindURI = _blindURI;
        baseURI = _URI;        
    }

    // Function to update name
    function updateName(uint256 tokenId, string calldata name) external  {
        require(ownerOf(tokenId) == msg.sender, "Caller must be token owner");
        require(address(LOBEContract) != address(0), "No token contract set");

        bytes memory n = bytes(name);
        require(n.length > 0 && n.length < 25, "Invalid name length");
        require(
        sha256(n) != sha256(bytes(buddyInfo[tokenId].name)),
        "New name is same as current name"
        );

        LOBEContract.burn(msg.sender, UPDATE_NAME_PRICE);
        LOBEContract.mint(LOBELiquidityWallet, UPDATE_NAME_PRICE.div(100).mul(30));
        buddyInfo[tokenId].name = name;
        emit UpdateName(tokenId, name);
    }

    // Function to update description
    function updateDescription(uint256 tokenId, string calldata description) external  {
        require(ownerOf(tokenId) == msg.sender, "Caller must be token owner");
        require(address(LOBEContract) != address(0), "No token contract set");

        bytes memory d = bytes(description);
        require(d.length > 0 && d.length < 280, "Invalid description length");
        require(
            sha256(bytes(d)) != sha256(bytes(buddyInfo[tokenId].description)),
            "New description is same as current description"
        );

        LOBEContract.burn(msg.sender, UPDATE_DESCRIPTION_PRICE);
        LOBEContract.mint(LOBELiquidityWallet, UPDATE_DESCRIPTION_PRICE.div(100).mul(30));
        buddyInfo[tokenId].description = description;
        emit UpdateDescription(tokenId, description);
    }

    //Function to withdraw collected amount during minting by the owner
    function withdraw(address _to, uint256 _amount) external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance >= _amount, "Balance should atleast equal to amount");
        payable(_to).transfer(_amount);
    }    

    // Function to mint using LOBE
    function mintWithLOBE(uint256 _numOfTokens) public whenNotPaused nonReentrant {
        require(address(LOBEContract) != address(0), "No token contract set");
        require(isPublicSaleActive==true, "Sale Not Active");        
        require(totalLOBEMinted.add(_numOfTokens) <= LOBE_Mint_NFT, "Purchase would exceed max LOBE mint NFTs");
        LOBEContract.burn(msg.sender, _numOfTokens.mul(LOBE_PRICE));
        LOBEContract.mint(LOBELiquidityWallet, _numOfTokens.mul(LOBE_PRICE).div(100).mul(30));
        for(uint256 i = 0; i < _numOfTokens; i++) {
            _mint(msg.sender, publicTotalSupply);
            publicTotalSupply = publicTotalSupply.add(1);
        }
        totalLOBEMinted = totalLOBEMinted.add(_numOfTokens);        
    }

    // Function to mint using ETH
    function mintWithETH(uint256 _numOfTokens) public payable whenNotPaused nonReentrant {
        require(isPublicSaleActive==true, "Sale Not Active");
        require(publicSaleClaimed[msg.sender].add(_numOfTokens) <= PURCHASE_LIMIT, 
            "Above Sale Purchase Limit");
        require(totalETHMinted.add(_numOfTokens) <= ETH_Mint_NFT, "Purchase would exceed max ETH mint NFTs");
        if (isVIP[msg.sender]){
            require(VIP_ETH_PRICE.mul(_numOfTokens) == msg.value, "Invalid Amount");
        } else {
            require(ETH_PRICE.mul(_numOfTokens) == msg.value, "Invalid Amount");
        }
        for(uint256 i = 0; i < _numOfTokens; i++) {
            _mint(msg.sender, publicTotalSupply);
            publicTotalSupply = publicTotalSupply.add(1);
        }
        totalETHMinted = totalETHMinted.add(_numOfTokens);
        publicSaleClaimed[msg.sender] = publicSaleClaimed[msg.sender].add(_numOfTokens);
    }

    // Function to claim giveaway
    function claimGiveaway() external whenNotPaused nonReentrant {
        for(uint256 i=0; i < giveaway[msg.sender].length; i++) {            
            _safeMint(msg.sender, giveaway[msg.sender][i]);
            totalReserveClaimed = totalReserveClaimed.add(1);
        }
    }

    // Function to airdrop unclaimed
    function airdropNFT(address _to, uint256[] memory _tokenIds) external onlyOwner {
        for(uint256 i=0; i < _tokenIds.length; i++) {            
            require(_tokenIds[i] >= MAX_NFT - RESERVE_NFT, "Airdrop tokenID must be set from Reserved IDs which are lastest");
            _safeMint(_to, _tokenIds[i]);
            totalReserveClaimed = totalReserveClaimed.add(1);
        }
    }

    // Function to migrate from past contract
    function mirrorDropNFT(address[] memory _to, uint256[] memory _tokenIds) external onlyOwner {
        uint256 holderIndex = 0;
        for(uint256 i = 0; i < _tokenIds.length; i++) {      
            if (_tokenIds[i] == 11111111){
                holderIndex ++;
            } else {                
                _safeMint(_to[holderIndex], _tokenIds[i]);
            }            
        }
    }
    
    // Function to get token URI of given token ID
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!isReveal) {
            return string(abi.encodePacked(blindURI, _tokenId.toString()));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }    

    // Function to list own NFTs 
    function listMyNFTs(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

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

    // Function to get ETH mint price
    function getETHmintPrice() public view returns(uint256) {
        return isVIP[msg.sender] ? VIP_ETH_PRICE : ETH_PRICE;
    }

    // Function to pause 
    function pause() external onlyOwner {
        _pause();
    }

    // Function to unpause 
    function unpause() external onlyOwner {
        _unpause();
    }

    function transferFrom(address from, address to, uint256 tokenId)
        public        
        override(ERC721)
        nonReentrant
    {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        if (address(stakingTokenContract) != address(0)) {
            stakingTokenContract.update(from, to);
        }

        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override(ERC721)
        nonReentrant
    {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        if (address(stakingTokenContract) != address(0)) {
            stakingTokenContract.update(from, to);
        }

        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_community","type":"address"},{"internalType":"address","name":"_liquidity","type":"address"},{"internalType":"address","name":"_LOBE","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"UpdateDescription","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"UpdateName","type":"event"},{"inputs":[],"name":"ETH_Mint_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBEContract","outputs":[{"internalType":"contract ILOBE","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBELiquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBE_Mint_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOBE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_DESCRIPTION_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_NAME_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VIP_ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"airdropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blindURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"buddyInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeETHPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeETHToGiveway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeLOBEPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeLOBEToGiveway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changePublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changePurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_name","type":"uint256"},{"internalType":"uint256","name":"_description","type":"uint256"}],"name":"changeUpdateNameAndDescriptionPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeVIPETHPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityTreasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giveVIPAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"giveaway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isVIP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"listMyNFTs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintWithLOBE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mirrorDropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTotalSupply","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lobe","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"}],"name":"setContractAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"setGiveawayUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingTokenContract","outputs":[{"internalType":"contract IStakingToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalETHMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLOBEMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserveClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"description","type":"string"}],"name":"updateDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"updateName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600d556109c4600e55611ce8600f5568a2a15d09519be0000060105566470de4df820000601155662386f26fc10000601255686c6b935b8bbd400000601355686c6b935b8bbd40000060145560326015553480156200006457600080fd5b506040516200485938038062004859833981016040819052620000879162000276565b604080518082018252600c81526b427261696e4275646469657360a01b60208083019182528351808501909452600384526210909160ea1b908401528151919291620000d691600091620001b3565b508051620000ec906001906020840190620001b3565b50506001600a5550620000ff3362000161565b600b805460ff60a01b19169055602180546001600160a01b039485166001600160a01b031991821617909155602280549385169390911692909217909155601c805491909216620100000262010000600160b01b0319909116179055620002fd565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c190620002c0565b90600052602060002090601f016020900481019282620001e5576000855562000230565b82601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b80516001600160a01b03811681146200027157600080fd5b919050565b6000806000606084860312156200028c57600080fd5b620002978462000259565b9250620002a76020850162000259565b9150620002b76040850162000259565b90509250925092565b600181811c90821680620002d557607f821691505b60208210811415620002f757634e487b7160e01b600052602260045260246000fd5b50919050565b61454c806200030d6000396000f3fe6080604052600436106104105760003560e01c806370a082311161021e578063bfecf89511610123578063e8254174116100ab578063f2fde38b1161007a578063f2fde38b14610be6578063f3fef3a314610c06578063f4201c3c14610c26578063f72e2d0d14610c55578063fae4c7f914610c7557600080fd5b8063e825417414610b52578063e985e9c514610b72578063eff9553714610bbb578063f14cdf6e14610bd057600080fd5b8063d3bfe077116100f2578063d3bfe07714610aa2578063d3c553ad14610acf578063d42e591b14610afc578063d75e611014610b1c578063e365eca614610b3257600080fd5b8063bfecf89514610a36578063c87b56dd14610a4c578063cd931e4014610a6c578063d28a1f1d14610a8c57600080fd5b806395d89b41116101a6578063ac32be6011610175578063ac32be6014610992578063b19ec5e2146109c0578063b88d4fde146109e0578063b985add814610a00578063bf5f559714610a1657600080fd5b806395d89b411461092757806398e901841461093c578063a22cb46514610952578063a29fb1fd1461097257600080fd5b8063881b884a116101ed578063881b884a1461089d5780638832bc29146108bd5780638d007f69146108d35780638da5cb5b146108e9578063949028a71461090757600080fd5b806370a082311461082d578063715018a61461084d57806373da60ad146108625780638456cb591461088857600080fd5b806340146353116103245780635ad71002116102ac5780635f36fa261161027b5780635f36fa26146107b65780636352211e146107cc5780636aa605f6146107ec5780636c0360eb146108025780636fdaddf11461081757600080fd5b80635ad710021461074c5780635c7b9f891461076c5780635c975abb146107825780635db62358146107a157600080fd5b80634f6ccce7116102f35780634f6ccce7146106b6578063530e3b52146106d657806353e76f2c146106f6578063560c155f14610716578063586892191461072c57600080fd5b8063401463531461064157806342842e0e146106615780634af9bc10146106815780634d78a0f71461069657600080fd5b8063185c6a6e116103a75780632c3b372e116103765780632c3b372e146105c35780632ee75a40146105d65780632f745c59146105ec578063376ea8e31461060c5780633f4ba83a1461062c57600080fd5b8063185c6a6e146105495780631ae56350146105695780631e84c4131461058957806323b872dd146105a357600080fd5b8063095ea7b3116103e3578063095ea7b3146104d257806314dee4b3146104f4578063173ac3df1461051457806318160ddd1461053457600080fd5b806301ffc9a714610415578063050225ea1461044a57806306fdde0314610478578063081812fc1461049a575b600080fd5b34801561042157600080fd5b50610435610430366004613e95565b610c94565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061046a610465366004613da8565b610cbf565b604051908152602001610441565b34801561048457600080fd5b5061048d610cf0565b60405161044191906141a2565b3480156104a657600080fd5b506104ba6104b5366004613f29565b610d82565b6040516001600160a01b039091168152602001610441565b3480156104de57600080fd5b506104f26104ed366004613da8565b610e1c565b005b34801561050057600080fd5b506104f261050f366004613f42565b610f32565b34801561052057600080fd5b50601d546104ba906001600160a01b031681565b34801561054057600080fd5b5060085461046a565b34801561055557600080fd5b506021546104ba906001600160a01b031681565b34801561057557600080fd5b506104f2610584366004613d30565b6112d7565b34801561059557600080fd5b50601c546104359060ff1681565b3480156105af57600080fd5b506104f26105be366004613c78565b6113f0565b6104f26105d1366004613f29565b6114cd565b3480156105e257600080fd5b5061046a60135481565b3480156105f857600080fd5b5061046a610607366004613da8565b611774565b34801561061857600080fd5b506104f2610627366004613dd2565b61180a565b34801561063857600080fd5b506104f26118a0565b34801561064d57600080fd5b506104f261065c366004613f29565b6118d4565b34801561066d57600080fd5b506104f261067c366004613c78565b611903565b34801561068d57600080fd5b506104f261191e565b3480156106a257600080fd5b506104f26106b1366004613fbe565b6119ec565b3480156106c257600080fd5b5061046a6106d1366004613f29565b611a21565b3480156106e257600080fd5b506104f26106f1366004613f29565b611ab4565b34801561070257600080fd5b506104f2610711366004613f42565b611ae3565b34801561072257600080fd5b5061046a600e5481565b34801561073857600080fd5b506104f2610747366004613e61565b611e48565b34801561075857600080fd5b506104f2610767366004613f29565b611e85565b34801561077857600080fd5b5061046a60125481565b34801561078e57600080fd5b50600b54600160a01b900460ff16610435565b3480156107ad57600080fd5b5061046a611f2b565b3480156107c257600080fd5b5061046a60185481565b3480156107d857600080fd5b506104ba6107e7366004613f29565b611f4f565b3480156107f857600080fd5b5061046a60165481565b34801561080e57600080fd5b5061048d611fc6565b34801561082357600080fd5b5061046a61271081565b34801561083957600080fd5b5061046a610848366004613c2a565b612054565b34801561085957600080fd5b506104f26120db565b34801561086e57600080fd5b50601c546104ba906201000090046001600160a01b031681565b34801561089457600080fd5b506104f261210f565b3480156108a957600080fd5b506104f26108b8366004613e07565b612141565b3480156108c957600080fd5b5061046a60115481565b3480156108df57600080fd5b5061046a600d5481565b3480156108f557600080fd5b50600b546001600160a01b03166104ba565b34801561091357600080fd5b506104f2610922366004613e61565b6122de565b34801561093357600080fd5b5061048d612322565b34801561094857600080fd5b5061046a60145481565b34801561095e57600080fd5b506104f261096d366004613d7e565b612331565b34801561097e57600080fd5b506104f261098d366004613f29565b61233c565b34801561099e57600080fd5b506109b26109ad366004613f29565b61236b565b6040516104419291906141b5565b3480156109cc57600080fd5b506104f26109db366004613f29565b612497565b3480156109ec57600080fd5b506104f26109fb366004613cb4565b6124c6565b348015610a0c57600080fd5b5061046a60195481565b348015610a2257600080fd5b506104f2610a31366004613f29565b6125a5565b348015610a4257600080fd5b5061046a600f5481565b348015610a5857600080fd5b5061048d610a67366004613f29565b612869565b348015610a7857600080fd5b506104f2610a87366004613c45565b612939565b348015610a9857600080fd5b5061046a60175481565b348015610aae57600080fd5b50610ac2610abd366004613c2a565b61299d565b604051610441919061412f565b348015610adb57600080fd5b5061046a610aea366004613c2a565b601e6020526000908152604090205481565b348015610b0857600080fd5b506104f2610b17366004613e07565b612a5c565b348015610b2857600080fd5b5061046a60155481565b348015610b3e57600080fd5b506104f2610b4d366004613f29565b612b10565b348015610b5e57600080fd5b506104f2610b6d366004613ecf565b612bb0565b348015610b7e57600080fd5b50610435610b8d366004613c45565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610bc757600080fd5b5061048d612c01565b348015610bdc57600080fd5b5061046a60105481565b348015610bf257600080fd5b506104f2610c01366004613c2a565b612c0e565b348015610c1257600080fd5b506104f2610c21366004613da8565b612ca9565b348015610c3257600080fd5b50610435610c41366004613c2a565b602080526000908152604090205460ff1681565b348015610c6157600080fd5b506022546104ba906001600160a01b031681565b348015610c8157600080fd5b50601c5461043590610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610cb95750610cb982612d69565b92915050565b601f6020528160005260406000208181548110610cdb57600080fd5b90600052602060002001600091509150505481565b606060008054610cff9061442e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2b9061442e565b8015610d785780601f10610d4d57610100808354040283529160200191610d78565b820191906000526020600020905b815481529060010190602001808311610d5b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610e005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610e2782611f4f565b9050806001600160a01b0316836001600160a01b03161415610e955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610df7565b336001600160a01b0382161480610eb15750610eb18133610b8d565b610f235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610df7565b610f2d8383612db9565b505050565b33610f3c84611f4f565b6001600160a01b031614610f925760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610df7565b601c546201000090046001600160a01b0316610fc05760405162461bcd60e51b8152600401610df79061425f565b600082828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050825192935050501580159061100d57506101188151105b6110595760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206465736372697074696f6e206c656e6774680000000000006044820152606401610df7565b6002600c600086815260200190815260200160002060010160405161107e91906140c1565b602060405180830381855afa15801561109b573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906110be9190613e7c565b6002826040516110ce91906140a5565b602060405180830381855afa1580156110eb573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061110e9190613e7c565b14156111735760405162461bcd60e51b815260206004820152602e60248201527f4e6577206465736372697074696f6e2069732073616d6520617320637572726560448201526d373a103232b9b1b934b83a34b7b760911b6064820152608401610df7565b601c54601454604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b1580156111c857600080fd5b505af11580156111dc573d6000803e3d6000fd5b5050601c546022546014546001600160a01b0362010000909304831694506340c10f19935091169061121c90601e90611216906064612e27565b90612e3a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561126257600080fd5b505af1158015611276573d6000803e3d6000fd5b5050506000858152600c60205260409020611296915060010184846139a5565b50837fa5eb4fe2f21ddb28c752c9927387264d67ce06b0ce619ad8b4b06d8dfe94834784846040516112c9929190614173565b60405180910390a250505050565b600b546001600160a01b031633146113015760405162461bcd60e51b8152600401610df79061428e565b60005b8151811015610f2d57600d5461131c906127106143eb565b82828151811061132e5761132e6144d4565b602002602001015110156113aa5760405162461bcd60e51b815260206004820152603f60248201527f41697264726f7020746f6b656e4944206d757374206265207365742066726f6d60448201527f2052657365727665642049447320776869636820617265206c617374657374006064820152608401610df7565b6113cd838383815181106113c0576113c06144d4565b6020026020010151612e46565b6018546113db906001612e60565b601855806113e881614463565b915050611304565b6002600a5414156114135760405162461bcd60e51b8152600401610df790614314565b6002600a55611423335b82612e6c565b61143f5760405162461bcd60e51b8152600401610df7906142c3565b601d546001600160a01b0316156114b857601d5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b15801561149f57600080fd5b505af11580156114b3573d6000803e3d6000fd5b505050505b6114c3838383612f63565b50506001600a5550565b600b54600160a01b900460ff16156114f75760405162461bcd60e51b8152600401610df790614235565b6002600a54141561151a5760405162461bcd60e51b8152600401610df790614314565b6002600a55601c5460ff1615156001146115685760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610df7565b601554336000908152601e60205260409020546115859083612e60565b11156115d35760405162461bcd60e51b815260206004820152601960248201527f41626f76652053616c65205075726368617365204c696d6974000000000000006044820152606401610df7565b600f546017546115e39083612e60565b11156116415760405162461bcd60e51b815260206004820152602760248201527f507572636861736520776f756c6420657863656564206d617820455448206d696044820152666e74204e46547360c81b6064820152608401610df7565b33600090815260208052604090205460ff16156116aa5760125434906116679083612e3a565b146116a55760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610df7565b6116f7565b60115434906116b99083612e3a565b146116f75760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610df7565b60005b818110156117315761170e33601954612f93565b60195461171c906001612e60565b6019558061172981614463565b9150506116fa565b5060175461173f9082612e60565b601755336000908152601e602052604090205461175c9082612e60565b336000908152601e6020526040902055506001600a55565b600061177f83612054565b82106117e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610df7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146118345760405162461bcd60e51b8152600401610df79061428e565b60005b815181101561189c57600160206000848481518110611858576118586144d4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061189481614463565b915050611837565b5050565b600b546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610df79061428e565b6118d26130e1565b565b600b546001600160a01b031633146118fe5760405162461bcd60e51b8152600401610df79061428e565b601555565b610f2d838383604051806020016040528060008152506124c6565b600b54600160a01b900460ff16156119485760405162461bcd60e51b8152600401610df790614235565b6002600a54141561196b5760405162461bcd60e51b8152600401610df790614314565b6002600a5560005b336000908152601f60205260409020548110156119e457336000818152601f6020526040902080546119c1929190849081106119b1576119b16144d4565b9060005260206000200154612e46565b6018546119cf906001612e60565b601855806119dc81614463565b915050611973565b506001600a55565b600b546001600160a01b03163314611a165760405162461bcd60e51b8152600401610df79061428e565b601391909155601455565b6000611a2c60085490565b8210611a8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610df7565b60088281548110611aa257611aa26144d4565b90600052602060002001549050919050565b600b546001600160a01b03163314611ade5760405162461bcd60e51b8152600401610df79061428e565b601155565b33611aed84611f4f565b6001600160a01b031614611b435760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610df7565b601c546201000090046001600160a01b0316611b715760405162461bcd60e51b8152600401610df79061425f565b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350505015801590611bbd575060198151105b611bff5760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840dcc2daca40d8cadccee8d606b1b6044820152606401610df7565b6000848152600c6020526040908190209051600291611c1d916140c1565b602060405180830381855afa158015611c3a573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c5d9190613e7c565b600282604051611c6d91906140a5565b602060405180830381855afa158015611c8a573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611cad9190613e7c565b1415611cfb5760405162461bcd60e51b815260206004820181905260248201527f4e6577206e616d652069732073616d652061732063757272656e74206e616d656044820152606401610df7565b601c54601354604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b158015611d5057600080fd5b505af1158015611d64573d6000803e3d6000fd5b5050601c546022546013546001600160a01b0362010000909304831694506340c10f199350911690611d9e90601e90611216906064612e27565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611de457600080fd5b505af1158015611df8573d6000803e3d6000fd5b5050506000858152600c60205260409020611e15915084846139a5565b50837fac2072268d18e10aecad35c0c04acd66330b2571a8ff403e3c702d77d3bab13484846040516112c9929190614173565b600b546001600160a01b03163314611e725760405162461bcd60e51b8152600401610df79061428e565b601c805460ff1916911515919091179055565b600b546001600160a01b03163314611eaf5760405162461bcd60e51b8152600401610df79061428e565b600f54601754611ebf9083612e60565b1115611f085760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610df7565b600f54611f15908261317e565b600f55600d54611f259082612e60565b600d5550565b33600090815260208052604081205460ff16611f48575060115490565b5060125490565b6000818152600260205260408120546001600160a01b031680610cb95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610df7565b601a8054611fd39061442e565b80601f0160208091040260200160405190810160405280929190818152602001828054611fff9061442e565b801561204c5780601f106120215761010080835404028352916020019161204c565b820191906000526020600020905b81548152906001019060200180831161202f57829003601f168201915b505050505081565b60006001600160a01b0382166120bf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610df7565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146121055760405162461bcd60e51b8152600401610df79061428e565b6118d2600061318a565b600b546001600160a01b031633146121395760405162461bcd60e51b8152600401610df79061428e565b6118d26131dc565b600b546001600160a01b0316331461216b5760405162461bcd60e51b8152600401610df79061428e565b80518251146121b25760405162461bcd60e51b81526020600482015260136024820152720c2e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b6044820152606401610df7565b60005b8251811015610f2d57600d546121cd906127106143eb565b8282815181106121df576121df6144d4565b6020026020010151101561225d576040805162461bcd60e51b81526020600482015260248101919091527f476976656177617920746f6b656e4944206d757374206265207365742066726f60448201527f6d2052657365727665642049447320776869636820617265206c6173746573746064820152608401610df7565b601f6000848381518110612273576122736144d4565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208282815181106122ad576122ad6144d4565b60209081029190910181015182546001810184556000938452919092200155806122d681614463565b9150506121b5565b600b546001600160a01b031633146123085760405162461bcd60e51b8152600401610df79061428e565b601c80549115156101000261ff0019909216919091179055565b606060018054610cff9061442e565b61189c338383613241565b600b546001600160a01b031633146123665760405162461bcd60e51b8152600401610df79061428e565b601255565b600c602052600090815260409020805481906123869061442e565b80601f01602080910402602001604051908101604052809291908181526020018280546123b29061442e565b80156123ff5780601f106123d4576101008083540402835291602001916123ff565b820191906000526020600020905b8154815290600101906020018083116123e257829003601f168201915b5050505050908060010180546124149061442e565b80601f01602080910402602001604051908101604052809291908181526020018280546124409061442e565b801561248d5780601f106124625761010080835404028352916020019161248d565b820191906000526020600020905b81548152906001019060200180831161247057829003601f168201915b5050505050905082565b600b546001600160a01b031633146124c15760405162461bcd60e51b8152600401610df79061428e565b601055565b6002600a5414156124e95760405162461bcd60e51b8152600401610df790614314565b6002600a556124f9335b83612e6c565b6125155760405162461bcd60e51b8152600401610df7906142c3565b601d546001600160a01b03161561258e57601d5460405163c640752d60e01b81526001600160a01b03868116600483015285811660248301529091169063c640752d90604401600060405180830381600087803b15801561257557600080fd5b505af1158015612589573d6000803e3d6000fd5b505050505b61259a84848484613310565b50506001600a555050565b600b54600160a01b900460ff16156125cf5760405162461bcd60e51b8152600401610df790614235565b6002600a5414156125f25760405162461bcd60e51b8152600401610df790614314565b6002600a55601c546201000090046001600160a01b03166126255760405162461bcd60e51b8152600401610df79061425f565b601c5460ff16151560011461266e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610df7565b600e5460165461267e9083612e60565b11156126dd5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178204c4f4245206d604482015267696e74204e46547360c01b6064820152608401610df7565b601c60029054906101000a90046001600160a01b03166001600160a01b0316639dc29fac3361271760105485612e3a90919063ffffffff16565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561275d57600080fd5b505af1158015612771573d6000803e3d6000fd5b5050601c546022546010546001600160a01b0362010000909304831694506340c10f1993509116906127b890601e90611216906064906127b2908990612e3a565b90612e27565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127fe57600080fd5b505af1158015612812573d6000803e3d6000fd5b5050505060005b818110156128505761282d33601954612f93565b60195461283b906001612e60565b6019558061284881614463565b915050612819565b5060165461285e9082612e60565b601655506001600a55565b6000818152600260205260409020546060906001600160a01b03166128e85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610df7565b601c54610100900460ff1661292957601b61290283613341565b6040516020016129139291906140cd565b6040516020818303038152906040529050919050565b601a61290283613341565b919050565b600b546001600160a01b031633146129635760405162461bcd60e51b8152600401610df79061428e565b601c805462010000600160b01b031916620100006001600160a01b0394851602179055601d80546001600160a01b03191691909216179055565b606060006129aa83612054565b9050806129cb5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156129e6576129e66144ea565b604051908082528060200260200182016040528015612a0f578160200160208202803683370190505b50905060005b828110156129c357612a278582611774565b828281518110612a3957612a396144d4565b602090810291909101015280612a4e81614463565b915050612a15565b50919050565b600b546001600160a01b03163314612a865760405162461bcd60e51b8152600401610df79061428e565b6000805b8251811015612b0a57828181518110612aa557612aa56144d4565b602002602001015162a98ac71415612ac95781612ac181614463565b925050612af8565b612af8848381518110612ade57612ade6144d4565b60200260200101518483815181106113c0576113c06144d4565b80612b0281614463565b915050612a8a565b50505050565b600b546001600160a01b03163314612b3a5760405162461bcd60e51b8152600401610df79061428e565b600e54601654612b4a9083612e60565b1115612b935760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610df7565b600e54612ba0908261317e565b600e55600d54611f259082612e60565b600b546001600160a01b03163314612bda5760405162461bcd60e51b8152600401610df79061428e565b8151612bed90601b906020850190613a29565b508051610f2d90601a906020840190613a29565b601b8054611fd39061442e565b600b546001600160a01b03163314612c385760405162461bcd60e51b8152600401610df79061428e565b6001600160a01b038116612c9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610df7565b612ca68161318a565b50565b600b546001600160a01b03163314612cd35760405162461bcd60e51b8152600401610df79061428e565b4781811015612d335760405162461bcd60e51b815260206004820152602660248201527f42616c616e63652073686f756c642061746c6561737420657175616c20746f20604482015265185b5bdd5b9d60d21b6064820152608401610df7565b6040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015612b0a573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b1480612d9a57506001600160e01b03198216635b5e139f60e01b145b80610cb957506301ffc9a760e01b6001600160e01b0319831614610cb9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612dee82611f4f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e3382846143b8565b9392505050565b6000612e3382846143cc565b61189c82826040518060200160405280600081525061343f565b6000612e3382846143a0565b6000818152600260205260408120546001600160a01b0316612ee55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610df7565b6000612ef083611f4f565b9050806001600160a01b0316846001600160a01b03161480612f2b5750836001600160a01b0316612f2084610d82565b6001600160a01b0316145b80612f5b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b612f6c3361141d565b612f885760405162461bcd60e51b8152600401610df7906142c3565b610f2d838383613472565b6001600160a01b038216612fe95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610df7565b6000818152600260205260409020546001600160a01b03161561304e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610df7565b61305a6000838361361d565b6001600160a01b03821660009081526003602052604081208054600192906130839084906143a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600b54600160a01b900460ff166131315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610df7565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612e3382846143eb565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600160a01b900460ff16156132065760405162461bcd60e51b8152600401610df790614235565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586131613390565b816001600160a01b0316836001600160a01b031614156132a35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610df7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613319336124f3565b6133355760405162461bcd60e51b8152600401610df7906142c3565b612b0a848484846136d5565b6060816133655750506040805180820190915260018152600360fc1b602082015290565b8160005b811561338f578061337981614463565b91506133889050600a836143b8565b9150613369565b60008167ffffffffffffffff8111156133aa576133aa6144ea565b6040519080825280601f01601f1916602001820160405280156133d4576020820181803683370190505b5090505b8415612f5b576133e96001836143eb565b91506133f6600a8661447e565b6134019060306143a0565b60f81b818381518110613416576134166144d4565b60200101906001600160f81b031916908160001a905350613438600a866143b8565b94506133d8565b6134498383612f93565b6134566000848484613708565b610f2d5760405162461bcd60e51b8152600401610df7906141e3565b826001600160a01b031661348582611f4f565b6001600160a01b0316146134ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610df7565b6001600160a01b03821661354f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610df7565b61355a83838361361d565b613565600082612db9565b6001600160a01b038316600090815260036020526040812080546001929061358e9084906143eb565b90915550506001600160a01b03821660009081526003602052604081208054600192906135bc9084906143a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0383166136785761367381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61369b565b816001600160a01b0316836001600160a01b03161461369b5761369b8382613815565b6001600160a01b0382166136b257610f2d816138b2565b826001600160a01b0316826001600160a01b031614610f2d57610f2d8282613961565b6136e0848484613472565b6136ec84848484613708565b612b0a5760405162461bcd60e51b8152600401610df7906141e3565b60006001600160a01b0384163b1561380a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061374c9033908990889088906004016140f2565b602060405180830381600087803b15801561376657600080fd5b505af1925050508015613796575060408051601f3d908101601f1916820190925261379391810190613eb2565b60015b6137f0573d8080156137c4576040519150601f19603f3d011682016040523d82523d6000602084013e6137c9565b606091505b5080516137e85760405162461bcd60e51b8152600401610df7906141e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f5b565b506001949350505050565b6000600161382284612054565b61382c91906143eb565b60008381526007602052604090205490915080821461387f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138c4906001906143eb565b600083815260096020526040812054600880549394509092849081106138ec576138ec6144d4565b90600052602060002001549050806008838154811061390d5761390d6144d4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613945576139456144be565b6001900381819060005260206000200160009055905550505050565b600061396c83612054565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546139b19061442e565b90600052602060002090601f0160209004810192826139d35760008555613a19565b82601f106139ec5782800160ff19823516178555613a19565b82800160010185558215613a19579182015b82811115613a195782358255916020019190600101906139fe565b50613a25929150613a9d565b5090565b828054613a359061442e565b90600052602060002090601f016020900481019282613a575760008555613a19565b82601f10613a7057805160ff1916838001178555613a19565b82800160010185558215613a19579182015b82811115613a19578251825591602001919060010190613a82565b5b80821115613a255760008155600101613a9e565b600067ffffffffffffffff831115613acc57613acc6144ea565b613adf601f8401601f191660200161434b565b9050828152838383011115613af357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461293457600080fd5b600082601f830112613b3257600080fd5b81356020613b47613b428361437c565b61434b565b80838252828201915082860187848660051b8901011115613b6757600080fd5b60005b85811015613b8d57613b7b82613b0a565b84529284019290840190600101613b6a565b5090979650505050505050565b600082601f830112613bab57600080fd5b81356020613bbb613b428361437c565b80838252828201915082860187848660051b8901011115613bdb57600080fd5b60005b85811015613b8d57813584529284019290840190600101613bde565b8035801515811461293457600080fd5b600082601f830112613c1b57600080fd5b612e3383833560208501613ab2565b600060208284031215613c3c57600080fd5b612e3382613b0a565b60008060408385031215613c5857600080fd5b613c6183613b0a565b9150613c6f60208401613b0a565b90509250929050565b600080600060608486031215613c8d57600080fd5b613c9684613b0a565b9250613ca460208501613b0a565b9150604084013590509250925092565b60008060008060808587031215613cca57600080fd5b613cd385613b0a565b9350613ce160208601613b0a565b925060408501359150606085013567ffffffffffffffff811115613d0457600080fd5b8501601f81018713613d1557600080fd5b613d2487823560208401613ab2565b91505092959194509250565b60008060408385031215613d4357600080fd5b613d4c83613b0a565b9150602083013567ffffffffffffffff811115613d6857600080fd5b613d7485828601613b9a565b9150509250929050565b60008060408385031215613d9157600080fd5b613d9a83613b0a565b9150613c6f60208401613bfa565b60008060408385031215613dbb57600080fd5b613dc483613b0a565b946020939093013593505050565b600060208284031215613de457600080fd5b813567ffffffffffffffff811115613dfb57600080fd5b612f5b84828501613b21565b60008060408385031215613e1a57600080fd5b823567ffffffffffffffff80821115613e3257600080fd5b613e3e86838701613b21565b93506020850135915080821115613e5457600080fd5b50613d7485828601613b9a565b600060208284031215613e7357600080fd5b612e3382613bfa565b600060208284031215613e8e57600080fd5b5051919050565b600060208284031215613ea757600080fd5b8135612e3381614500565b600060208284031215613ec457600080fd5b8151612e3381614500565b60008060408385031215613ee257600080fd5b823567ffffffffffffffff80821115613efa57600080fd5b613f0686838701613c0a565b93506020850135915080821115613f1c57600080fd5b50613d7485828601613c0a565b600060208284031215613f3b57600080fd5b5035919050565b600080600060408486031215613f5757600080fd5b83359250602084013567ffffffffffffffff80821115613f7657600080fd5b818601915086601f830112613f8a57600080fd5b813581811115613f9957600080fd5b876020828501011115613fab57600080fd5b6020830194508093505050509250925092565b60008060408385031215613fd157600080fd5b50508035926020909101359150565b60008151808452613ff8816020860160208601614402565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061402657607f831692505b602080841082141561404857634e487b7160e01b600052602260045260246000fd5b81801561405c576001811461406d57614099565b60ff19861689528489019650614099565b876000528160002060005b868110156140915781548b820152908501908301614078565b505084890196505b50505050505092915050565b600082516140b7818460208701614402565b9190910192915050565b6000612e33828461400c565b60006140d9828561400c565b83516140e9818360208801614402565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061412590830184613fe0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156141675783518352928401929184019160010161414b565b50909695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612e336020830184613fe0565b6040815260006141c86040830185613fe0565b82810360208401526141da8185613fe0565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b602080825260159082015274139bc81d1bdad95b8818dbdb9d1c9858dd081cd95d605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715614374576143746144ea565b604052919050565b600067ffffffffffffffff821115614396576143966144ea565b5060051b60200190565b600082198211156143b3576143b3614492565b500190565b6000826143c7576143c76144a8565b500490565b60008160001904831182151516156143e6576143e6614492565b500290565b6000828210156143fd576143fd614492565b500390565b60005b8381101561441d578181015183820152602001614405565b83811115612b0a5750506000910152565b600181811c9082168061444257607f821691505b60208210811415612a5657634e487b7160e01b600052602260045260246000fd5b600060001982141561447757614477614492565b5060010190565b60008261448d5761448d6144a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612ca657600080fdfea26469706673582212203522b66f4e8032772501323c5beca7728567c31e2e81c55d4212583d551bd0cd64736f6c63430008070033000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a90000000000000000000000009765d4aa7d34f2c8ae5a311b83f0ce08373a8ef6000000000000000000000000991f09114a025398b448de8511a7e816320d36b1

Deployed Bytecode

0x6080604052600436106104105760003560e01c806370a082311161021e578063bfecf89511610123578063e8254174116100ab578063f2fde38b1161007a578063f2fde38b14610be6578063f3fef3a314610c06578063f4201c3c14610c26578063f72e2d0d14610c55578063fae4c7f914610c7557600080fd5b8063e825417414610b52578063e985e9c514610b72578063eff9553714610bbb578063f14cdf6e14610bd057600080fd5b8063d3bfe077116100f2578063d3bfe07714610aa2578063d3c553ad14610acf578063d42e591b14610afc578063d75e611014610b1c578063e365eca614610b3257600080fd5b8063bfecf89514610a36578063c87b56dd14610a4c578063cd931e4014610a6c578063d28a1f1d14610a8c57600080fd5b806395d89b41116101a6578063ac32be6011610175578063ac32be6014610992578063b19ec5e2146109c0578063b88d4fde146109e0578063b985add814610a00578063bf5f559714610a1657600080fd5b806395d89b411461092757806398e901841461093c578063a22cb46514610952578063a29fb1fd1461097257600080fd5b8063881b884a116101ed578063881b884a1461089d5780638832bc29146108bd5780638d007f69146108d35780638da5cb5b146108e9578063949028a71461090757600080fd5b806370a082311461082d578063715018a61461084d57806373da60ad146108625780638456cb591461088857600080fd5b806340146353116103245780635ad71002116102ac5780635f36fa261161027b5780635f36fa26146107b65780636352211e146107cc5780636aa605f6146107ec5780636c0360eb146108025780636fdaddf11461081757600080fd5b80635ad710021461074c5780635c7b9f891461076c5780635c975abb146107825780635db62358146107a157600080fd5b80634f6ccce7116102f35780634f6ccce7146106b6578063530e3b52146106d657806353e76f2c146106f6578063560c155f14610716578063586892191461072c57600080fd5b8063401463531461064157806342842e0e146106615780634af9bc10146106815780634d78a0f71461069657600080fd5b8063185c6a6e116103a75780632c3b372e116103765780632c3b372e146105c35780632ee75a40146105d65780632f745c59146105ec578063376ea8e31461060c5780633f4ba83a1461062c57600080fd5b8063185c6a6e146105495780631ae56350146105695780631e84c4131461058957806323b872dd146105a357600080fd5b8063095ea7b3116103e3578063095ea7b3146104d257806314dee4b3146104f4578063173ac3df1461051457806318160ddd1461053457600080fd5b806301ffc9a714610415578063050225ea1461044a57806306fdde0314610478578063081812fc1461049a575b600080fd5b34801561042157600080fd5b50610435610430366004613e95565b610c94565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061046a610465366004613da8565b610cbf565b604051908152602001610441565b34801561048457600080fd5b5061048d610cf0565b60405161044191906141a2565b3480156104a657600080fd5b506104ba6104b5366004613f29565b610d82565b6040516001600160a01b039091168152602001610441565b3480156104de57600080fd5b506104f26104ed366004613da8565b610e1c565b005b34801561050057600080fd5b506104f261050f366004613f42565b610f32565b34801561052057600080fd5b50601d546104ba906001600160a01b031681565b34801561054057600080fd5b5060085461046a565b34801561055557600080fd5b506021546104ba906001600160a01b031681565b34801561057557600080fd5b506104f2610584366004613d30565b6112d7565b34801561059557600080fd5b50601c546104359060ff1681565b3480156105af57600080fd5b506104f26105be366004613c78565b6113f0565b6104f26105d1366004613f29565b6114cd565b3480156105e257600080fd5b5061046a60135481565b3480156105f857600080fd5b5061046a610607366004613da8565b611774565b34801561061857600080fd5b506104f2610627366004613dd2565b61180a565b34801561063857600080fd5b506104f26118a0565b34801561064d57600080fd5b506104f261065c366004613f29565b6118d4565b34801561066d57600080fd5b506104f261067c366004613c78565b611903565b34801561068d57600080fd5b506104f261191e565b3480156106a257600080fd5b506104f26106b1366004613fbe565b6119ec565b3480156106c257600080fd5b5061046a6106d1366004613f29565b611a21565b3480156106e257600080fd5b506104f26106f1366004613f29565b611ab4565b34801561070257600080fd5b506104f2610711366004613f42565b611ae3565b34801561072257600080fd5b5061046a600e5481565b34801561073857600080fd5b506104f2610747366004613e61565b611e48565b34801561075857600080fd5b506104f2610767366004613f29565b611e85565b34801561077857600080fd5b5061046a60125481565b34801561078e57600080fd5b50600b54600160a01b900460ff16610435565b3480156107ad57600080fd5b5061046a611f2b565b3480156107c257600080fd5b5061046a60185481565b3480156107d857600080fd5b506104ba6107e7366004613f29565b611f4f565b3480156107f857600080fd5b5061046a60165481565b34801561080e57600080fd5b5061048d611fc6565b34801561082357600080fd5b5061046a61271081565b34801561083957600080fd5b5061046a610848366004613c2a565b612054565b34801561085957600080fd5b506104f26120db565b34801561086e57600080fd5b50601c546104ba906201000090046001600160a01b031681565b34801561089457600080fd5b506104f261210f565b3480156108a957600080fd5b506104f26108b8366004613e07565b612141565b3480156108c957600080fd5b5061046a60115481565b3480156108df57600080fd5b5061046a600d5481565b3480156108f557600080fd5b50600b546001600160a01b03166104ba565b34801561091357600080fd5b506104f2610922366004613e61565b6122de565b34801561093357600080fd5b5061048d612322565b34801561094857600080fd5b5061046a60145481565b34801561095e57600080fd5b506104f261096d366004613d7e565b612331565b34801561097e57600080fd5b506104f261098d366004613f29565b61233c565b34801561099e57600080fd5b506109b26109ad366004613f29565b61236b565b6040516104419291906141b5565b3480156109cc57600080fd5b506104f26109db366004613f29565b612497565b3480156109ec57600080fd5b506104f26109fb366004613cb4565b6124c6565b348015610a0c57600080fd5b5061046a60195481565b348015610a2257600080fd5b506104f2610a31366004613f29565b6125a5565b348015610a4257600080fd5b5061046a600f5481565b348015610a5857600080fd5b5061048d610a67366004613f29565b612869565b348015610a7857600080fd5b506104f2610a87366004613c45565b612939565b348015610a9857600080fd5b5061046a60175481565b348015610aae57600080fd5b50610ac2610abd366004613c2a565b61299d565b604051610441919061412f565b348015610adb57600080fd5b5061046a610aea366004613c2a565b601e6020526000908152604090205481565b348015610b0857600080fd5b506104f2610b17366004613e07565b612a5c565b348015610b2857600080fd5b5061046a60155481565b348015610b3e57600080fd5b506104f2610b4d366004613f29565b612b10565b348015610b5e57600080fd5b506104f2610b6d366004613ecf565b612bb0565b348015610b7e57600080fd5b50610435610b8d366004613c45565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610bc757600080fd5b5061048d612c01565b348015610bdc57600080fd5b5061046a60105481565b348015610bf257600080fd5b506104f2610c01366004613c2a565b612c0e565b348015610c1257600080fd5b506104f2610c21366004613da8565b612ca9565b348015610c3257600080fd5b50610435610c41366004613c2a565b602080526000908152604090205460ff1681565b348015610c6157600080fd5b506022546104ba906001600160a01b031681565b348015610c8157600080fd5b50601c5461043590610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610cb95750610cb982612d69565b92915050565b601f6020528160005260406000208181548110610cdb57600080fd5b90600052602060002001600091509150505481565b606060008054610cff9061442e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2b9061442e565b8015610d785780601f10610d4d57610100808354040283529160200191610d78565b820191906000526020600020905b815481529060010190602001808311610d5b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610e005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610e2782611f4f565b9050806001600160a01b0316836001600160a01b03161415610e955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610df7565b336001600160a01b0382161480610eb15750610eb18133610b8d565b610f235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610df7565b610f2d8383612db9565b505050565b33610f3c84611f4f565b6001600160a01b031614610f925760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610df7565b601c546201000090046001600160a01b0316610fc05760405162461bcd60e51b8152600401610df79061425f565b600082828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050825192935050501580159061100d57506101188151105b6110595760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206465736372697074696f6e206c656e6774680000000000006044820152606401610df7565b6002600c600086815260200190815260200160002060010160405161107e91906140c1565b602060405180830381855afa15801561109b573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906110be9190613e7c565b6002826040516110ce91906140a5565b602060405180830381855afa1580156110eb573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061110e9190613e7c565b14156111735760405162461bcd60e51b815260206004820152602e60248201527f4e6577206465736372697074696f6e2069732073616d6520617320637572726560448201526d373a103232b9b1b934b83a34b7b760911b6064820152608401610df7565b601c54601454604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b1580156111c857600080fd5b505af11580156111dc573d6000803e3d6000fd5b5050601c546022546014546001600160a01b0362010000909304831694506340c10f19935091169061121c90601e90611216906064612e27565b90612e3a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561126257600080fd5b505af1158015611276573d6000803e3d6000fd5b5050506000858152600c60205260409020611296915060010184846139a5565b50837fa5eb4fe2f21ddb28c752c9927387264d67ce06b0ce619ad8b4b06d8dfe94834784846040516112c9929190614173565b60405180910390a250505050565b600b546001600160a01b031633146113015760405162461bcd60e51b8152600401610df79061428e565b60005b8151811015610f2d57600d5461131c906127106143eb565b82828151811061132e5761132e6144d4565b602002602001015110156113aa5760405162461bcd60e51b815260206004820152603f60248201527f41697264726f7020746f6b656e4944206d757374206265207365742066726f6d60448201527f2052657365727665642049447320776869636820617265206c617374657374006064820152608401610df7565b6113cd838383815181106113c0576113c06144d4565b6020026020010151612e46565b6018546113db906001612e60565b601855806113e881614463565b915050611304565b6002600a5414156114135760405162461bcd60e51b8152600401610df790614314565b6002600a55611423335b82612e6c565b61143f5760405162461bcd60e51b8152600401610df7906142c3565b601d546001600160a01b0316156114b857601d5460405163c640752d60e01b81526001600160a01b03858116600483015284811660248301529091169063c640752d90604401600060405180830381600087803b15801561149f57600080fd5b505af11580156114b3573d6000803e3d6000fd5b505050505b6114c3838383612f63565b50506001600a5550565b600b54600160a01b900460ff16156114f75760405162461bcd60e51b8152600401610df790614235565b6002600a54141561151a5760405162461bcd60e51b8152600401610df790614314565b6002600a55601c5460ff1615156001146115685760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610df7565b601554336000908152601e60205260409020546115859083612e60565b11156115d35760405162461bcd60e51b815260206004820152601960248201527f41626f76652053616c65205075726368617365204c696d6974000000000000006044820152606401610df7565b600f546017546115e39083612e60565b11156116415760405162461bcd60e51b815260206004820152602760248201527f507572636861736520776f756c6420657863656564206d617820455448206d696044820152666e74204e46547360c81b6064820152608401610df7565b33600090815260208052604090205460ff16156116aa5760125434906116679083612e3a565b146116a55760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610df7565b6116f7565b60115434906116b99083612e3a565b146116f75760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610df7565b60005b818110156117315761170e33601954612f93565b60195461171c906001612e60565b6019558061172981614463565b9150506116fa565b5060175461173f9082612e60565b601755336000908152601e602052604090205461175c9082612e60565b336000908152601e6020526040902055506001600a55565b600061177f83612054565b82106117e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610df7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146118345760405162461bcd60e51b8152600401610df79061428e565b60005b815181101561189c57600160206000848481518110611858576118586144d4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061189481614463565b915050611837565b5050565b600b546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610df79061428e565b6118d26130e1565b565b600b546001600160a01b031633146118fe5760405162461bcd60e51b8152600401610df79061428e565b601555565b610f2d838383604051806020016040528060008152506124c6565b600b54600160a01b900460ff16156119485760405162461bcd60e51b8152600401610df790614235565b6002600a54141561196b5760405162461bcd60e51b8152600401610df790614314565b6002600a5560005b336000908152601f60205260409020548110156119e457336000818152601f6020526040902080546119c1929190849081106119b1576119b16144d4565b9060005260206000200154612e46565b6018546119cf906001612e60565b601855806119dc81614463565b915050611973565b506001600a55565b600b546001600160a01b03163314611a165760405162461bcd60e51b8152600401610df79061428e565b601391909155601455565b6000611a2c60085490565b8210611a8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610df7565b60088281548110611aa257611aa26144d4565b90600052602060002001549050919050565b600b546001600160a01b03163314611ade5760405162461bcd60e51b8152600401610df79061428e565b601155565b33611aed84611f4f565b6001600160a01b031614611b435760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206d75737420626520746f6b656e206f776e65720000000000006044820152606401610df7565b601c546201000090046001600160a01b0316611b715760405162461bcd60e51b8152600401610df79061425f565b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350505015801590611bbd575060198151105b611bff5760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840dcc2daca40d8cadccee8d606b1b6044820152606401610df7565b6000848152600c6020526040908190209051600291611c1d916140c1565b602060405180830381855afa158015611c3a573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611c5d9190613e7c565b600282604051611c6d91906140a5565b602060405180830381855afa158015611c8a573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611cad9190613e7c565b1415611cfb5760405162461bcd60e51b815260206004820181905260248201527f4e6577206e616d652069732073616d652061732063757272656e74206e616d656044820152606401610df7565b601c54601354604051632770a7eb60e21b81523360048201526024810191909152620100009091046001600160a01b031690639dc29fac90604401600060405180830381600087803b158015611d5057600080fd5b505af1158015611d64573d6000803e3d6000fd5b5050601c546022546013546001600160a01b0362010000909304831694506340c10f199350911690611d9e90601e90611216906064612e27565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611de457600080fd5b505af1158015611df8573d6000803e3d6000fd5b5050506000858152600c60205260409020611e15915084846139a5565b50837fac2072268d18e10aecad35c0c04acd66330b2571a8ff403e3c702d77d3bab13484846040516112c9929190614173565b600b546001600160a01b03163314611e725760405162461bcd60e51b8152600401610df79061428e565b601c805460ff1916911515919091179055565b600b546001600160a01b03163314611eaf5760405162461bcd60e51b8152600401610df79061428e565b600f54601754611ebf9083612e60565b1115611f085760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610df7565b600f54611f15908261317e565b600f55600d54611f259082612e60565b600d5550565b33600090815260208052604081205460ff16611f48575060115490565b5060125490565b6000818152600260205260408120546001600160a01b031680610cb95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610df7565b601a8054611fd39061442e565b80601f0160208091040260200160405190810160405280929190818152602001828054611fff9061442e565b801561204c5780601f106120215761010080835404028352916020019161204c565b820191906000526020600020905b81548152906001019060200180831161202f57829003601f168201915b505050505081565b60006001600160a01b0382166120bf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610df7565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146121055760405162461bcd60e51b8152600401610df79061428e565b6118d2600061318a565b600b546001600160a01b031633146121395760405162461bcd60e51b8152600401610df79061428e565b6118d26131dc565b600b546001600160a01b0316331461216b5760405162461bcd60e51b8152600401610df79061428e565b80518251146121b25760405162461bcd60e51b81526020600482015260136024820152720c2e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b6044820152606401610df7565b60005b8251811015610f2d57600d546121cd906127106143eb565b8282815181106121df576121df6144d4565b6020026020010151101561225d576040805162461bcd60e51b81526020600482015260248101919091527f476976656177617920746f6b656e4944206d757374206265207365742066726f60448201527f6d2052657365727665642049447320776869636820617265206c6173746573746064820152608401610df7565b601f6000848381518110612273576122736144d4565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208282815181106122ad576122ad6144d4565b60209081029190910181015182546001810184556000938452919092200155806122d681614463565b9150506121b5565b600b546001600160a01b031633146123085760405162461bcd60e51b8152600401610df79061428e565b601c80549115156101000261ff0019909216919091179055565b606060018054610cff9061442e565b61189c338383613241565b600b546001600160a01b031633146123665760405162461bcd60e51b8152600401610df79061428e565b601255565b600c602052600090815260409020805481906123869061442e565b80601f01602080910402602001604051908101604052809291908181526020018280546123b29061442e565b80156123ff5780601f106123d4576101008083540402835291602001916123ff565b820191906000526020600020905b8154815290600101906020018083116123e257829003601f168201915b5050505050908060010180546124149061442e565b80601f01602080910402602001604051908101604052809291908181526020018280546124409061442e565b801561248d5780601f106124625761010080835404028352916020019161248d565b820191906000526020600020905b81548152906001019060200180831161247057829003601f168201915b5050505050905082565b600b546001600160a01b031633146124c15760405162461bcd60e51b8152600401610df79061428e565b601055565b6002600a5414156124e95760405162461bcd60e51b8152600401610df790614314565b6002600a556124f9335b83612e6c565b6125155760405162461bcd60e51b8152600401610df7906142c3565b601d546001600160a01b03161561258e57601d5460405163c640752d60e01b81526001600160a01b03868116600483015285811660248301529091169063c640752d90604401600060405180830381600087803b15801561257557600080fd5b505af1158015612589573d6000803e3d6000fd5b505050505b61259a84848484613310565b50506001600a555050565b600b54600160a01b900460ff16156125cf5760405162461bcd60e51b8152600401610df790614235565b6002600a5414156125f25760405162461bcd60e51b8152600401610df790614314565b6002600a55601c546201000090046001600160a01b03166126255760405162461bcd60e51b8152600401610df79061425f565b601c5460ff16151560011461266e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610df7565b600e5460165461267e9083612e60565b11156126dd5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178204c4f4245206d604482015267696e74204e46547360c01b6064820152608401610df7565b601c60029054906101000a90046001600160a01b03166001600160a01b0316639dc29fac3361271760105485612e3a90919063ffffffff16565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561275d57600080fd5b505af1158015612771573d6000803e3d6000fd5b5050601c546022546010546001600160a01b0362010000909304831694506340c10f1993509116906127b890601e90611216906064906127b2908990612e3a565b90612e27565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127fe57600080fd5b505af1158015612812573d6000803e3d6000fd5b5050505060005b818110156128505761282d33601954612f93565b60195461283b906001612e60565b6019558061284881614463565b915050612819565b5060165461285e9082612e60565b601655506001600a55565b6000818152600260205260409020546060906001600160a01b03166128e85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610df7565b601c54610100900460ff1661292957601b61290283613341565b6040516020016129139291906140cd565b6040516020818303038152906040529050919050565b601a61290283613341565b919050565b600b546001600160a01b031633146129635760405162461bcd60e51b8152600401610df79061428e565b601c805462010000600160b01b031916620100006001600160a01b0394851602179055601d80546001600160a01b03191691909216179055565b606060006129aa83612054565b9050806129cb5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156129e6576129e66144ea565b604051908082528060200260200182016040528015612a0f578160200160208202803683370190505b50905060005b828110156129c357612a278582611774565b828281518110612a3957612a396144d4565b602090810291909101015280612a4e81614463565b915050612a15565b50919050565b600b546001600160a01b03163314612a865760405162461bcd60e51b8152600401610df79061428e565b6000805b8251811015612b0a57828181518110612aa557612aa56144d4565b602002602001015162a98ac71415612ac95781612ac181614463565b925050612af8565b612af8848381518110612ade57612ade6144d4565b60200260200101518483815181106113c0576113c06144d4565b80612b0281614463565b915050612a8a565b50505050565b600b546001600160a01b03163314612b3a5760405162461bcd60e51b8152600401610df79061428e565b600e54601654612b4a9083612e60565b1115612b935760405162461bcd60e51b815260206004820152601860248201527720b6b7bab73a1032bc31b2b2b21030bb30b4b630b136329760411b6044820152606401610df7565b600e54612ba0908261317e565b600e55600d54611f259082612e60565b600b546001600160a01b03163314612bda5760405162461bcd60e51b8152600401610df79061428e565b8151612bed90601b906020850190613a29565b508051610f2d90601a906020840190613a29565b601b8054611fd39061442e565b600b546001600160a01b03163314612c385760405162461bcd60e51b8152600401610df79061428e565b6001600160a01b038116612c9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610df7565b612ca68161318a565b50565b600b546001600160a01b03163314612cd35760405162461bcd60e51b8152600401610df79061428e565b4781811015612d335760405162461bcd60e51b815260206004820152602660248201527f42616c616e63652073686f756c642061746c6561737420657175616c20746f20604482015265185b5bdd5b9d60d21b6064820152608401610df7565b6040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015612b0a573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b1480612d9a57506001600160e01b03198216635b5e139f60e01b145b80610cb957506301ffc9a760e01b6001600160e01b0319831614610cb9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612dee82611f4f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e3382846143b8565b9392505050565b6000612e3382846143cc565b61189c82826040518060200160405280600081525061343f565b6000612e3382846143a0565b6000818152600260205260408120546001600160a01b0316612ee55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610df7565b6000612ef083611f4f565b9050806001600160a01b0316846001600160a01b03161480612f2b5750836001600160a01b0316612f2084610d82565b6001600160a01b0316145b80612f5b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b612f6c3361141d565b612f885760405162461bcd60e51b8152600401610df7906142c3565b610f2d838383613472565b6001600160a01b038216612fe95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610df7565b6000818152600260205260409020546001600160a01b03161561304e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610df7565b61305a6000838361361d565b6001600160a01b03821660009081526003602052604081208054600192906130839084906143a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600b54600160a01b900460ff166131315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610df7565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612e3382846143eb565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600160a01b900460ff16156132065760405162461bcd60e51b8152600401610df790614235565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586131613390565b816001600160a01b0316836001600160a01b031614156132a35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610df7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613319336124f3565b6133355760405162461bcd60e51b8152600401610df7906142c3565b612b0a848484846136d5565b6060816133655750506040805180820190915260018152600360fc1b602082015290565b8160005b811561338f578061337981614463565b91506133889050600a836143b8565b9150613369565b60008167ffffffffffffffff8111156133aa576133aa6144ea565b6040519080825280601f01601f1916602001820160405280156133d4576020820181803683370190505b5090505b8415612f5b576133e96001836143eb565b91506133f6600a8661447e565b6134019060306143a0565b60f81b818381518110613416576134166144d4565b60200101906001600160f81b031916908160001a905350613438600a866143b8565b94506133d8565b6134498383612f93565b6134566000848484613708565b610f2d5760405162461bcd60e51b8152600401610df7906141e3565b826001600160a01b031661348582611f4f565b6001600160a01b0316146134ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610df7565b6001600160a01b03821661354f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610df7565b61355a83838361361d565b613565600082612db9565b6001600160a01b038316600090815260036020526040812080546001929061358e9084906143eb565b90915550506001600160a01b03821660009081526003602052604081208054600192906135bc9084906143a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0383166136785761367381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61369b565b816001600160a01b0316836001600160a01b03161461369b5761369b8382613815565b6001600160a01b0382166136b257610f2d816138b2565b826001600160a01b0316826001600160a01b031614610f2d57610f2d8282613961565b6136e0848484613472565b6136ec84848484613708565b612b0a5760405162461bcd60e51b8152600401610df7906141e3565b60006001600160a01b0384163b1561380a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061374c9033908990889088906004016140f2565b602060405180830381600087803b15801561376657600080fd5b505af1925050508015613796575060408051601f3d908101601f1916820190925261379391810190613eb2565b60015b6137f0573d8080156137c4576040519150601f19603f3d011682016040523d82523d6000602084013e6137c9565b606091505b5080516137e85760405162461bcd60e51b8152600401610df7906141e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f5b565b506001949350505050565b6000600161382284612054565b61382c91906143eb565b60008381526007602052604090205490915080821461387f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138c4906001906143eb565b600083815260096020526040812054600880549394509092849081106138ec576138ec6144d4565b90600052602060002001549050806008838154811061390d5761390d6144d4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613945576139456144be565b6001900381819060005260206000200160009055905550505050565b600061396c83612054565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546139b19061442e565b90600052602060002090601f0160209004810192826139d35760008555613a19565b82601f106139ec5782800160ff19823516178555613a19565b82800160010185558215613a19579182015b82811115613a195782358255916020019190600101906139fe565b50613a25929150613a9d565b5090565b828054613a359061442e565b90600052602060002090601f016020900481019282613a575760008555613a19565b82601f10613a7057805160ff1916838001178555613a19565b82800160010185558215613a19579182015b82811115613a19578251825591602001919060010190613a82565b5b80821115613a255760008155600101613a9e565b600067ffffffffffffffff831115613acc57613acc6144ea565b613adf601f8401601f191660200161434b565b9050828152838383011115613af357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461293457600080fd5b600082601f830112613b3257600080fd5b81356020613b47613b428361437c565b61434b565b80838252828201915082860187848660051b8901011115613b6757600080fd5b60005b85811015613b8d57613b7b82613b0a565b84529284019290840190600101613b6a565b5090979650505050505050565b600082601f830112613bab57600080fd5b81356020613bbb613b428361437c565b80838252828201915082860187848660051b8901011115613bdb57600080fd5b60005b85811015613b8d57813584529284019290840190600101613bde565b8035801515811461293457600080fd5b600082601f830112613c1b57600080fd5b612e3383833560208501613ab2565b600060208284031215613c3c57600080fd5b612e3382613b0a565b60008060408385031215613c5857600080fd5b613c6183613b0a565b9150613c6f60208401613b0a565b90509250929050565b600080600060608486031215613c8d57600080fd5b613c9684613b0a565b9250613ca460208501613b0a565b9150604084013590509250925092565b60008060008060808587031215613cca57600080fd5b613cd385613b0a565b9350613ce160208601613b0a565b925060408501359150606085013567ffffffffffffffff811115613d0457600080fd5b8501601f81018713613d1557600080fd5b613d2487823560208401613ab2565b91505092959194509250565b60008060408385031215613d4357600080fd5b613d4c83613b0a565b9150602083013567ffffffffffffffff811115613d6857600080fd5b613d7485828601613b9a565b9150509250929050565b60008060408385031215613d9157600080fd5b613d9a83613b0a565b9150613c6f60208401613bfa565b60008060408385031215613dbb57600080fd5b613dc483613b0a565b946020939093013593505050565b600060208284031215613de457600080fd5b813567ffffffffffffffff811115613dfb57600080fd5b612f5b84828501613b21565b60008060408385031215613e1a57600080fd5b823567ffffffffffffffff80821115613e3257600080fd5b613e3e86838701613b21565b93506020850135915080821115613e5457600080fd5b50613d7485828601613b9a565b600060208284031215613e7357600080fd5b612e3382613bfa565b600060208284031215613e8e57600080fd5b5051919050565b600060208284031215613ea757600080fd5b8135612e3381614500565b600060208284031215613ec457600080fd5b8151612e3381614500565b60008060408385031215613ee257600080fd5b823567ffffffffffffffff80821115613efa57600080fd5b613f0686838701613c0a565b93506020850135915080821115613f1c57600080fd5b50613d7485828601613c0a565b600060208284031215613f3b57600080fd5b5035919050565b600080600060408486031215613f5757600080fd5b83359250602084013567ffffffffffffffff80821115613f7657600080fd5b818601915086601f830112613f8a57600080fd5b813581811115613f9957600080fd5b876020828501011115613fab57600080fd5b6020830194508093505050509250925092565b60008060408385031215613fd157600080fd5b50508035926020909101359150565b60008151808452613ff8816020860160208601614402565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061402657607f831692505b602080841082141561404857634e487b7160e01b600052602260045260246000fd5b81801561405c576001811461406d57614099565b60ff19861689528489019650614099565b876000528160002060005b868110156140915781548b820152908501908301614078565b505084890196505b50505050505092915050565b600082516140b7818460208701614402565b9190910192915050565b6000612e33828461400c565b60006140d9828561400c565b83516140e9818360208801614402565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061412590830184613fe0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156141675783518352928401929184019160010161414b565b50909695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612e336020830184613fe0565b6040815260006141c86040830185613fe0565b82810360208401526141da8185613fe0565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b602080825260159082015274139bc81d1bdad95b8818dbdb9d1c9858dd081cd95d605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715614374576143746144ea565b604052919050565b600067ffffffffffffffff821115614396576143966144ea565b5060051b60200190565b600082198211156143b3576143b3614492565b500190565b6000826143c7576143c76144a8565b500490565b60008160001904831182151516156143e6576143e6614492565b500290565b6000828210156143fd576143fd614492565b500390565b60005b8381101561441d578181015183820152602001614405565b83811115612b0a5750506000910152565b600181811c9082168061444257607f821691505b60208210811415612a5657634e487b7160e01b600052602260045260246000fd5b600060001982141561447757614477614492565b5060010190565b60008261448d5761448d6144a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612ca657600080fdfea26469706673582212203522b66f4e8032772501323c5beca7728567c31e2e81c55d4212583d551bd0cd64736f6c63430008070033

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

000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a90000000000000000000000009765d4aa7d34f2c8ae5a311b83f0ce08373a8ef6000000000000000000000000991f09114a025398b448de8511a7e816320d36b1

-----Decoded View---------------
Arg [0] : _community (address): 0xF57Ce00efFD8eceB57Ce9398edFe4815978709A9
Arg [1] : _liquidity (address): 0x9765d4Aa7D34F2C8ae5A311b83F0CE08373a8EF6
Arg [2] : _LOBE (address): 0x991F09114a025398b448DE8511A7E816320d36B1

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a9
Arg [1] : 0000000000000000000000009765d4aa7d34f2c8ae5a311b83f0ce08373a8ef6
Arg [2] : 000000000000000000000000991f09114a025398b448de8511a7e816320d36b1


Deployed Bytecode Sourcemap

57731:12070:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36617:224;;;;;;;;;;-1:-1:-1;36617:224:0;;;;;:::i;:::-;;:::i;:::-;;;12456:14:1;;12449:22;12431:41;;12419:2;12404:18;36617:224:0;;;;;;;;58958:45;;;;;;;;;;-1:-1:-1;58958:45:0;;;;;:::i;:::-;;:::i;:::-;;;28362:25:1;;;28350:2;28335:18;58958:45:0;28216:177:1;23026:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24585:221::-;;;;;;;;;;-1:-1:-1;24585:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10529:32:1;;;10511:51;;10499:2;10484:18;24585:221:0;10365:203:1;24108:411:0;;;;;;;;;;-1:-1:-1;24108:411:0;;;;;:::i;:::-;;:::i;:::-;;63348:821;;;;;;;;;;-1:-1:-1;63348:821:0;;;;;:::i;:::-;;:::i;58847:41::-;;;;;;;;;;-1:-1:-1;58847:41:0;;;;-1:-1:-1;;;;;58847:41:0;;;37257:113;;;;;;;;;;-1:-1:-1;37345:10:0;:17;37257:113;;59058:38;;;;;;;;;;-1:-1:-1;59058:38:0;;;;-1:-1:-1;;;;;59058:38:0;;;66668:400;;;;;;;;;;-1:-1:-1;66668:400:0;;;;;:::i;:::-;;:::i;58749:30::-;;;;;;;;;;-1:-1:-1;58749:30:0;;;;;;;;68885:440;;;;;;;;;;-1:-1:-1;68885:440:0;;;;;:::i;:::-;;:::i;65348:949::-;;;;;;:::i;:::-;;:::i;58379:45::-;;;;;;;;;;;;;;;;36925:256;;;;;;;;;;-1:-1:-1;36925:256:0;;;;;:::i;:::-;;:::i;61406:191::-;;;;;;;;;;-1:-1:-1;61406:191:0;;;;;:::i;:::-;;:::i;68810:67::-;;;;;;;;;;;;;:::i;60605:106::-;;;;;;;;;;-1:-1:-1;60605:106:0;;;;;:::i;:::-;;:::i;25745:185::-;;;;;;;;;;-1:-1:-1;25745:185:0;;;;;:::i;:::-;;:::i;66340:282::-;;;;;;;;;;;;;:::i;60354:195::-;;;;;;;;;;-1:-1:-1;60354:195:0;;;;;:::i;:::-;;:::i;37447:233::-;;;;;;;;;;-1:-1:-1;37447:233:0;;;;;:::i;:::-;;:::i;60027:96::-;;;;;;;;;;-1:-1:-1;60027:96:0;;;;;:::i;:::-;;:::i;62587:714::-;;;;;;;;;;-1:-1:-1;62587:714:0;;;;;:::i;:::-;;:::i;58111:35::-;;;;;;;;;;;;;;;;59565:112;;;;;;;;;;-1:-1:-1;59565:112:0;;;;;:::i;:::-;;:::i;61090:259::-;;;;;;;;;;-1:-1:-1;61090:259:0;;;;;:::i;:::-;;:::i;58331:41::-;;;;;;;;;;;;;;;;53474:86;;;;;;;;;;-1:-1:-1;53545:7:0;;-1:-1:-1;;;53545:7:0;;;;53474:86;;68548:127;;;;;;;;;;;;;:::i;58608:34::-;;;;;;;;;;;;;;;;22720:239;;;;;;;;;;-1:-1:-1;22720:239:0;;;;;:::i;:::-;;:::i;58535:30::-;;;;;;;;;;;;;;;;58690:21;;;;;;;;;;;;;:::i;58194:39::-;;;;;;;;;;;;58228:5;58194:39;;22450:208;;;;;;;;;;-1:-1:-1;22450:208:0;;;;;:::i;:::-;;:::i;51519:103::-;;;;;;;;;;;;;:::i;58815:25::-;;;;;;;;;;-1:-1:-1;58815:25:0;;;;;;;-1:-1:-1;;;;;58815:25:0;;;68710:63;;;;;;;;;;;;;:::i;61644:429::-;;;;;;;;;;-1:-1:-1;61644:429:0;;;;;:::i;:::-;;:::i;58287:37::-;;;;;;;;;;;;;;;;58030:32;;;;;;;;;;;;;;;;50868:87;;;;;;;;;;-1:-1:-1;50941:6:0;;-1:-1:-1;;;;;50941:6:0;50868:87;;59725:98;;;;;;;;;;-1:-1:-1;59725:98:0;;;;;:::i;:::-;;:::i;23195:104::-;;;;;;;;;;;;;:::i;58431:52::-;;;;;;;;;;;;;;;;24878:155;;;;;;;;;;-1:-1:-1;24878:155:0;;;;;:::i;:::-;;:::i;60181:103::-;;;;;;;;;;-1:-1:-1;60181:103:0;;;;;:::i;:::-;;:::i;57970:51::-;;;;;;;;;;-1:-1:-1;57970:51:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;59876:98::-;;;;;;;;;;-1:-1:-1;59876:98:0;;;;;:::i;:::-;;:::i;69333:465::-;;;;;;;;;;-1:-1:-1;69333:465:0;;;;;:::i;:::-;;:::i;58649:32::-;;;;;;;;;;;;;;;;64544:761;;;;;;;;;;-1:-1:-1;64544:761:0;;;;;:::i;:::-;;:::i;58153:34::-;;;;;;;;;;;;;;;;67597:393;;;;;;;;;;-1:-1:-1;67597:393:0;;;;;:::i;:::-;;:::i;62144:195::-;;;;;;;;;;-1:-1:-1;62144:195:0;;;;;:::i;:::-;;:::i;58572:29::-;;;;;;;;;;;;;;;;68037:464;;;;;;;;;;-1:-1:-1;68037:464:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58897:52::-;;;;;;;;;;-1:-1:-1;58897:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;67123:410;;;;;;;;;;-1:-1:-1;67123:410:0;;;;;:::i;:::-;;:::i;58492:34::-;;;;;;;;;;;;;;;;60770:264;;;;;;;;;;-1:-1:-1;60770:264:0;;;;;:::i;:::-;;:::i;62394:153::-;;;;;;;;;;-1:-1:-1;62394:153:0;;;;;:::i;:::-;;:::i;25104:164::-;;;;;;;;;;-1:-1:-1;25104:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25225:25:0;;;25201:4;25225:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25104:164;58718:22;;;;;;;;;;;;;:::i;58242:38::-;;;;;;;;;;;;;;;;51777:201;;;;;;;;;;-1:-1:-1;51777:201:0;;;;;:::i;:::-;;:::i;64250:246::-;;;;;;;;;;-1:-1:-1;64250:246:0;;;;;:::i;:::-;;:::i;59012:37::-;;;;;;;;;;-1:-1:-1;59012:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59103:34;;;;;;;;;;-1:-1:-1;59103:34:0;;;;-1:-1:-1;;;;;59103:34:0;;;58786:20;;;;;;;;;;-1:-1:-1;58786:20:0;;;;;;;;;;;36617:224;36719:4;-1:-1:-1;;;;;;36743:50:0;;-1:-1:-1;;;36743:50:0;;:90;;;36797:36;36821:11;36797:23;:36::i;:::-;36736:97;36617:224;-1:-1:-1;;36617:224:0:o;58958:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23026:100::-;23080:13;23113:5;23106:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23026:100;:::o;24585:221::-;24661:7;27928:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27928:16:0;24681:73;;;;-1:-1:-1;;;24681:73:0;;22566:2:1;24681:73:0;;;22548:21:1;22605:2;22585:18;;;22578:30;22644:34;22624:18;;;22617:62;-1:-1:-1;;;22695:18:1;;;22688:42;22747:19;;24681:73:0;;;;;;;;;-1:-1:-1;24774:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24774:24:0;;24585:221::o;24108:411::-;24189:13;24205:23;24220:7;24205:14;:23::i;:::-;24189:39;;24253:5;-1:-1:-1;;;;;24247:11:0;:2;-1:-1:-1;;;;;24247:11:0;;;24239:57;;;;-1:-1:-1;;;24239:57:0;;24598:2:1;24239:57:0;;;24580:21:1;24637:2;24617:18;;;24610:30;24676:34;24656:18;;;24649:62;-1:-1:-1;;;24727:18:1;;;24720:31;24768:19;;24239:57:0;24396:397:1;24239:57:0;17382:10;-1:-1:-1;;;;;24331:21:0;;;;:62;;-1:-1:-1;24356:37:0;24373:5;17382:10;25104:164;:::i;24356:37::-;24309:168;;;;-1:-1:-1;;;24309:168:0;;19414:2:1;24309:168:0;;;19396:21:1;19453:2;19433:18;;;19426:30;19492:34;19472:18;;;19465:62;19563:26;19543:18;;;19536:54;19607:19;;24309:168:0;19212:420:1;24309:168:0;24490:21;24499:2;24503:7;24490:8;:21::i;:::-;24178:341;24108:411;;:::o;63348:821::-;63470:10;63450:16;63458:7;63450;:16::i;:::-;-1:-1:-1;;;;;63450:30:0;;63442:69;;;;-1:-1:-1;;;63442:69:0;;16430:2:1;63442:69:0;;;16412:21:1;16469:2;16449:18;;;16442:30;16508:28;16488:18;;;16481:56;16554:18;;63442:69:0;16228:350:1;63442:69:0;63538:12;;;;;-1:-1:-1;;;;;63538:12:0;63522:69;;;;-1:-1:-1;;;63522:69:0;;;;;;;:::i;:::-;63604:14;63627:11;;63604:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63658:8:0;;63604:35;;-1:-1:-1;;;63658:12:0;;;;:30;;;63685:3;63674:1;:8;:14;63658:30;63650:69;;;;-1:-1:-1;;;63650:69:0;;25766:2:1;63650:69:0;;;25748:21:1;25805:2;25785:18;;;25778:30;25844:28;25824:18;;;25817:56;25890:18;;63650:69:0;25564:350:1;63650:69:0;63772:45;63785:9;:18;63795:7;63785:18;;;;;;;;;;;:30;;63772:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63752:16;63765:1;63752:16;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;63730:161;;;;-1:-1:-1;;;63730:161:0;;17128:2:1;63730:161:0;;;17110:21:1;17167:2;17147:18;;;17140:30;17206:34;17186:18;;;17179:62;-1:-1:-1;;;17257:18:1;;;17250:44;17311:19;;63730:161:0;16926:410:1;63730:161:0;63904:12;;63934:24;;63904:55;;-1:-1:-1;;;63904:55:0;;63922:10;63904:55;;;11549:51:1;11616:18;;;11609:34;;;;63904:12:0;;;;-1:-1:-1;;;;;63904:12:0;;:17;;11522:18:1;;63904:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63970:12:0;;63988:19;;64009:24;;-1:-1:-1;;;;;63970:12:0;;;;;;;-1:-1:-1;63970:17:0;;-1:-1:-1;63988:19:0;;;64009:41;;64047:2;;64009:33;;64038:3;64009:28;:33::i;:::-;:37;;:41::i;:::-;63970:81;;-1:-1:-1;;;;;;63970:81:0;;;;;;;-1:-1:-1;;;;;11567:32:1;;;63970:81:0;;;11549:51:1;11616:18;;;11609:34;11522:18;;63970:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64062:18:0;;;;:9;:18;;;;;:44;;-1:-1:-1;64062:30:0;;64095:11;;64062:44;:::i;:::-;;64140:7;64122:39;64149:11;;64122:39;;;;;;;:::i;:::-;;;;;;;;63431:738;63348:821;;;:::o;66668:400::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;66763:9:::1;66759:302;66780:9;:16;66776:1;:20;66759:302;;;66864:11;::::0;66854:21:::1;::::0;58228:5:::1;66854:21;:::i;:::-;66838:9;66848:1;66838:12;;;;;;;;:::i;:::-;;;;;;;:37;;66830:113;;;::::0;-1:-1:-1;;;66830:113:0;;22979:2:1;66830:113:0::1;::::0;::::1;22961:21:1::0;23018:2;22998:18;;;22991:30;23057:34;23037:18;;;23030:62;23128:33;23108:18;;;23101:61;23179:19;;66830:113:0::1;22777:427:1::0;66830:113:0::1;66958:28;66968:3;66973:9;66983:1;66973:12;;;;;;;;:::i;:::-;;;;;;;66958:9;:28::i;:::-;67023:19;::::0;:26:::1;::::0;67047:1:::1;67023:23;:26::i;:::-;67001:19;:48:::0;66798:3;::::1;::::0;::::1;:::i;:::-;;;;66759:302;;68885:440:::0;56480:1;57078:7;;:19;;57070:63;;;;-1:-1:-1;;;57070:63:0;;;;;;;:::i;:::-;56480:1;57211:7;:18;69046:41:::1;17382:10:::0;69065:12:::1;69079:7;69046:18;:41::i;:::-;69038:103;;;;-1:-1:-1::0;;;69038:103:0::1;;;;;;;:::i;:::-;69166:20;::::0;-1:-1:-1;;;;;69166:20:0::1;69158:43:::0;69154:113:::1;;69218:20;::::0;:37:::1;::::0;-1:-1:-1;;;69218:37:0;;-1:-1:-1;;;;;10803:15:1;;;69218:37:0::1;::::0;::::1;10785:34:1::0;10855:15;;;10835:18;;;10828:43;69218:20:0;;::::1;::::0;:27:::1;::::0;10720:18:1;;69218:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;69154:113;69279:38;69299:4;69305:2;69309:7;69279:19;:38::i;:::-;-1:-1:-1::0;;56436:1:0;57390:7;:22;-1:-1:-1;68885:440:0:o;65348:949::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;56480:1:::1;57078:7;;:19;;57070:63;;;;-1:-1:-1::0;;;57070:63:0::1;;;;;;;:::i;:::-;56480:1;57211:7;:18:::0;65452::::2;::::0;::::2;;:24;;:18:::0;:24:::2;65444:52;;;::::0;-1:-1:-1;;;65444:52:0;;15729:2:1;65444:52:0::2;::::0;::::2;15711:21:1::0;15768:2;15748:18;;;15741:30;-1:-1:-1;;;15787:18:1;;;15780:45;15842:18;;65444:52:0::2;15527:339:1::0;65444:52:0::2;65566:14;::::0;65533:10:::2;65515:29;::::0;;;:17:::2;:29;::::0;;;;;:47:::2;::::0;65549:12;65515:33:::2;:47::i;:::-;:65;;65507:117;;;::::0;-1:-1:-1;;;65507:117:0;;18715:2:1;65507:117:0::2;::::0;::::2;18697:21:1::0;18754:2;18734:18;;;18727:30;18793:27;18773:18;;;18766:55;18838:18;;65507:117:0::2;18513:349:1::0;65507:117:0::2;65679:12;::::0;65643:14:::2;::::0;:32:::2;::::0;65662:12;65643:18:::2;:32::i;:::-;:48;;65635:100;;;::::0;-1:-1:-1;;;65635:100:0;;26882:2:1;65635:100:0::2;::::0;::::2;26864:21:1::0;26921:2;26901:18;;;26894:30;26960:34;26940:18;;;26933:62;-1:-1:-1;;;27011:18:1;;;27004:37;27058:19;;65635:100:0::2;26680:403:1::0;65635:100:0::2;65756:10;65750:17;::::0;;;:5:::2;:17:::0;;;;;;::::2;;65746:220;;;65791:13;::::0;65826:9:::2;::::0;65791:31:::2;::::0;65809:12;65791:17:::2;:31::i;:::-;:44;65783:71;;;::::0;-1:-1:-1;;;65783:71:0;;16785:2:1;65783:71:0::2;::::0;::::2;16767:21:1::0;16824:2;16804:18;;;16797:30;-1:-1:-1;;;16843:18:1;;;16836:44;16897:18;;65783:71:0::2;16583:338:1::0;65783:71:0::2;65746:220;;;65895:9;::::0;65926::::2;::::0;65895:27:::2;::::0;65909:12;65895:13:::2;:27::i;:::-;:40;65887:67;;;::::0;-1:-1:-1;;;65887:67:0;;16785:2:1;65887:67:0::2;::::0;::::2;16767:21:1::0;16824:2;16804:18;;;16797:30;-1:-1:-1;;;16843:18:1;;;16836:44;16897:18;;65887:67:0::2;16583:338:1::0;65887:67:0::2;65980:9;65976:164;65999:12;65995:1;:16;65976:164;;;66033:36;66039:10;66051:17;;66033:5;:36::i;:::-;66104:17;::::0;:24:::2;::::0;66126:1:::2;66104:21;:24::i;:::-;66084:17;:44:::0;66013:3;::::2;::::0;::::2;:::i;:::-;;;;65976:164;;;-1:-1:-1::0;66167:14:0::2;::::0;:32:::2;::::0;66186:12;66167:18:::2;:32::i;:::-;66150:14;:49:::0;66260:10:::2;66242:29;::::0;;;:17:::2;:29;::::0;;;;;:47:::2;::::0;66276:12;66242:33:::2;:47::i;:::-;66228:10;66210:29;::::0;;;:17:::2;:29;::::0;;;;:79;-1:-1:-1;56436:1:0::1;57390:7;:22:::0;65348:949::o;36925:256::-;37022:7;37058:23;37075:5;37058:16;:23::i;:::-;37050:5;:31;37042:87;;;;-1:-1:-1;;;37042:87:0;;14491:2:1;37042:87:0;;;14473:21:1;14530:2;14510:18;;;14503:30;14569:34;14549:18;;;14542:62;-1:-1:-1;;;14620:18:1;;;14613:41;14671:19;;37042:87:0;14289:407:1;37042:87:0;-1:-1:-1;;;;;;37147:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36925:256::o;61406:191::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;61493:9:::1;61488:102;61512:10;:17;61508:1;:21;61488:102;;;61574:4;61551:5;:20;61557:10;61568:1;61557:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;61551:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;61551:20:0;:27;;-1:-1:-1;;61551:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61531:3;::::1;::::0;::::1;:::i;:::-;;;;61488:102;;;;61406:191:::0;:::o;68810:67::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;68859:10:::1;:8;:10::i;:::-;68810:67::o:0;60605:106::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60680:14:::1;:23:::0;60605:106::o;25745:185::-;25883:39;25900:4;25906:2;25910:7;25883:39;;;;;;;;;;;;:16;:39::i;66340:282::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;56480:1:::1;57078:7;;:19;;57070:63;;;;-1:-1:-1::0;;;57070:63:0::1;;;;;;;:::i;:::-;56480:1;57211:7;:18:::0;66416:9:::2;66412:203;66442:10;66433:20;::::0;;;:8:::2;:20;::::0;;;;:27;66429:31;::::2;66412:203;;;66504:10;66516:20;::::0;;;:8:::2;:20;::::0;;;;:23;;66494:46:::2;::::0;66504:10;66516:20;66537:1;;66516:23;::::2;;;;;:::i;:::-;;;;;;;;;66494:9;:46::i;:::-;66577:19;::::0;:26:::2;::::0;66601:1:::2;66577:23;:26::i;:::-;66555:19;:48:::0;66462:3;::::2;::::0;::::2;:::i;:::-;;;;66412:203;;;-1:-1:-1::0;56436:1:0::1;57390:7;:22:::0;66340:282::o;60354:195::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60466:17:::1;:25:::0;;;;60502:24:::1;:39:::0;60354:195::o;37447:233::-;37522:7;37558:30;37345:10;:17;;37257:113;37558:30;37550:5;:38;37542:95;;;;-1:-1:-1;;;37542:95:0;;26121:2:1;37542:95:0;;;26103:21:1;26160:2;26140:18;;;26133:30;26199:34;26179:18;;;26172:62;-1:-1:-1;;;26250:18:1;;;26243:42;26302:19;;37542:95:0;25919:408:1;37542:95:0;37655:10;37666:5;37655:17;;;;;;;;:::i;:::-;;;;;;;;;37648:24;;37447:233;;;:::o;60027:96::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60097:9:::1;:18:::0;60027:96::o;62587:714::-;62695:10;62675:16;62683:7;62675;:16::i;:::-;-1:-1:-1;;;;;62675:30:0;;62667:69;;;;-1:-1:-1;;;62667:69:0;;16430:2:1;62667:69:0;;;16412:21:1;16469:2;16449:18;;;16442:30;16508:28;16488:18;;;16481:56;16554:18;;62667:69:0;16228:350:1;62667:69:0;62763:12;;;;;-1:-1:-1;;;;;62763:12:0;62747:69;;;;-1:-1:-1;;;62747:69:0;;;;;;;:::i;:::-;62829:14;62852:4;;62829:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62876:8:0;;62829:28;;-1:-1:-1;;;62876:12:0;;;;:29;;;62903:2;62892:1;:8;:13;62876:29;62868:61;;;;-1:-1:-1;;;62868:61:0;;25000:2:1;62868:61:0;;;24982:21:1;25039:2;25019:18;;;25012:30;-1:-1:-1;;;25058:18:1;;;25051:49;25117:18;;62868:61:0;24798:343:1;62868:61:0;62984:18;;;;:9;:18;;;;;;;62971:38;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62958:9;62965:1;62958:9;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;62940:125;;;;-1:-1:-1;;;62940:125:0;;28057:2:1;62940:125:0;;;28039:21:1;;;28076:18;;;28069:30;28135:34;28115:18;;;28108:62;28187:18;;62940:125:0;27855:356:1;62940:125:0;63078:12;;63108:17;;63078:48;;-1:-1:-1;;;63078:48:0;;63096:10;63078:48;;;11549:51:1;11616:18;;;11609:34;;;;63078:12:0;;;;-1:-1:-1;;;;;63078:12:0;;:17;;11522:18:1;;63078:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63137:12:0;;63155:19;;63176:17;;-1:-1:-1;;;;;63137:12:0;;;;;;;-1:-1:-1;63137:17:0;;-1:-1:-1;63155:19:0;;;63176:34;;63207:2;;63176:26;;63198:3;63176:21;:26::i;:34::-;63137:74;;-1:-1:-1;;;;;;63137:74:0;;;;;;;-1:-1:-1;;;;;11567:32:1;;;63137:74:0;;;11549:51:1;11616:18;;;11609:34;11522:18;;63137:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;63222:18:0;;;;:9;:18;;;;;:30;;-1:-1:-1;63248:4:0;;63222:30;:::i;:::-;;63279:7;63268:25;63288:4;;63268:25;;;;;;;:::i;59565:112::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;59641:18:::1;:28:::0;;-1:-1:-1;;59641:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59565:112::o;61090:259::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;61202:12:::1;::::0;61172:14:::1;::::0;:26:::1;::::0;61191:6;61172:18:::1;:26::i;:::-;:42;;61164:79;;;::::0;-1:-1:-1;;;61164:79:0;;21069:2:1;61164:79:0::1;::::0;::::1;21051:21:1::0;21108:2;21088:18;;;21081:30;-1:-1:-1;;;21127:18:1;;;21120:54;21191:18;;61164:79:0::1;20867:348:1::0;61164:79:0::1;61269:12;::::0;:24:::1;::::0;61286:6;61269:16:::1;:24::i;:::-;61254:12;:39:::0;61318:11:::1;::::0;:23:::1;::::0;61334:6;61318:15:::1;:23::i;:::-;61304:11;:37:::0;-1:-1:-1;61090:259:0:o;68548:127::-;68628:10;68595:7;68622:17;;;:5;:17;;;;;;;;:45;;-1:-1:-1;68658:9:0;;;68548:127::o;68622:45::-;-1:-1:-1;68642:13:0;;;68548:127::o;22720:239::-;22792:7;22828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22828:16:0;22863:19;22855:73;;;;-1:-1:-1;;;22855:73:0;;20250:2:1;22855:73:0;;;20232:21:1;20289:2;20269:18;;;20262:30;20328:34;20308:18;;;20301:62;-1:-1:-1;;;20379:18:1;;;20372:39;20428:19;;22855:73:0;20048:405:1;58690:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22450:208::-;22522:7;-1:-1:-1;;;;;22550:19:0;;22542:74;;;;-1:-1:-1;;;22542:74:0;;19839:2:1;22542:74:0;;;19821:21:1;19878:2;19858:18;;;19851:30;19917:34;19897:18;;;19890:62;-1:-1:-1;;;19968:18:1;;;19961:40;20018:19;;22542:74:0;19637:406:1;22542:74:0;-1:-1:-1;;;;;;22634:16:0;;;;;:9;:16;;;;;;;22450:208::o;51519:103::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;51584:30:::1;51611:1;51584:18;:30::i;68710:63::-:0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;68757:8:::1;:6;:8::i;61644:429::-:0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;61772:9:::1;:16;61758:3;:10;:30;61750:62;;;::::0;-1:-1:-1;;;61750:62:0;;26534:2:1;61750:62:0::1;::::0;::::1;26516:21:1::0;26573:2;26553:18;;;26546:30;-1:-1:-1;;;26592:18:1;;;26585:49;26651:18;;61750:62:0::1;26332:343:1::0;61750:62:0::1;61827:9;61823:243;61846:3;:10;61842:1;:14;61823:243;;;61912:11;::::0;61902:21:::1;::::0;58228:5:::1;61902:21;:::i;:::-;61886:9;61896:1;61886:12;;;;;;;;:::i;:::-;;;;;;;:37;;61878:114;;;::::0;;-1:-1:-1;;;61878:114:0;;22133:2:1;61878:114:0::1;::::0;::::1;22115:21:1::0;22152:18;;;22145:30;;;;22211:34;22191:18;;;22184:62;22282:34;22262:18;;;22255:62;22334:19;;61878:114:0::1;21931:428:1::0;61878:114:0::1;62019:8;:16;62028:3;62032:1;62028:6;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;62019:16:0::1;-1:-1:-1::0;;;;;62019:16:0::1;;;;;;;;;;;;62041:9;62051:1;62041:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62019:35;;::::1;::::0;::::1;::::0;;-1:-1:-1;62019:35:0;;;;;;;::::1;::::0;61858:3;::::1;::::0;::::1;:::i;:::-;;;;61823:243;;59725:98:::0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;59797:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;59797:18:0;;::::1;::::0;;;::::1;::::0;;59725:98::o;23195:104::-;23251:13;23284:7;23277:14;;;;;:::i;24878:155::-;24973:52;17382:10;25006:8;25016;24973:18;:52::i;60181:103::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60254:13:::1;:22:::0;60181:103::o;57970:51::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59876:98::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;59947:10:::1;:19:::0;59876:98::o;69333:465::-;56480:1;57078:7;;:19;;57070:63;;;;-1:-1:-1;;;57070:63:0;;;;;;;:::i;:::-;56480:1;57211:7;:18;69509:41:::1;17382:10:::0;69528:12:::1;69542:7;69509:18;:41::i;:::-;69501:103;;;;-1:-1:-1::0;;;69501:103:0::1;;;;;;;:::i;:::-;69629:20;::::0;-1:-1:-1;;;;;69629:20:0::1;69621:43:::0;69617:113:::1;;69681:20;::::0;:37:::1;::::0;-1:-1:-1;;;69681:37:0;;-1:-1:-1;;;;;10803:15:1;;;69681:37:0::1;::::0;::::1;10785:34:1::0;10855:15;;;10835:18;;;10828:43;69681:20:0;;::::1;::::0;:27:::1;::::0;10720:18:1;;69681:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;69617:113;69742:48;69766:4;69772:2;69776:7;69785:4;69742:23;:48::i;:::-;-1:-1:-1::0;;56436:1:0;57390:7;:22;-1:-1:-1;;69333:465:0:o;64544:761::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;56480:1:::1;57078:7;;:19;;57070:63;;;;-1:-1:-1::0;;;57070:63:0::1;;;;;;;:::i;:::-;56480:1;57211:7;:18:::0;64649:12:::2;::::0;;;::::2;-1:-1:-1::0;;;;;64649:12:0::2;64633:69;;;;-1:-1:-1::0;;;64633:69:0::2;;;;;;;:::i;:::-;64721:18;::::0;::::2;;:24;;:18:::0;:24:::2;64713:52;;;::::0;-1:-1:-1;;;64713:52:0;;15729:2:1;64713:52:0::2;::::0;::::2;15711:21:1::0;15768:2;15748:18;;;15741:30;-1:-1:-1;;;15787:18:1;;;15780:45;15842:18;;64713:52:0::2;15527:339:1::0;64713:52:0::2;64829:13;::::0;64792:15:::2;::::0;:33:::2;::::0;64812:12;64792:19:::2;:33::i;:::-;:50;;64784:103;;;::::0;-1:-1:-1;;;64784:103:0;;20660:2:1;64784:103:0::2;::::0;::::2;20642:21:1::0;20699:2;20679:18;;;20672:30;20738:34;20718:18;;;20711:62;-1:-1:-1;;;20789:18:1;;;20782:38;20837:19;;64784:103:0::2;20458:404:1::0;64784:103:0::2;64898:12;;;;;;;;;-1:-1:-1::0;;;;;64898:12:0::2;-1:-1:-1::0;;;;;64898:17:0::2;;64916:10;64928:28;64945:10;;64928:12;:16;;:28;;;;:::i;:::-;64898:59;::::0;-1:-1:-1;;;;;;64898:59:0::2;::::0;;;;;;-1:-1:-1;;;;;11567:32:1;;;64898:59:0::2;::::0;::::2;11549:51:1::0;11616:18;;;11609:34;11522:18;;64898:59:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;64968:12:0::2;::::0;64986:19:::2;::::0;65024:10:::2;::::0;-1:-1:-1;;;;;64968:12:0;;;::::2;::::0;::::2;::::0;-1:-1:-1;64968:17:0::2;::::0;-1:-1:-1;64986:19:0;::::2;::::0;65007:45:::2;::::0;65049:2:::2;::::0;65007:37:::2;::::0;65040:3:::2;::::0;65007:28:::2;::::0;:12;;:16:::2;:28::i;:::-;:32:::0;::::2;:37::i;:45::-;64968:85;::::0;-1:-1:-1;;;;;;64968:85:0::2;::::0;;;;;;-1:-1:-1;;;;;11567:32:1;;;64968:85:0::2;::::0;::::2;11549:51:1::0;11616:18;;;11609:34;11522:18;;64968:85:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;65068:9;65064:164;65087:12;65083:1;:16;65064:164;;;65121:36;65127:10;65139:17;;65121:5;:36::i;:::-;65192:17;::::0;:24:::2;::::0;65214:1:::2;65192:21;:24::i;:::-;65172:17;:44:::0;65101:3;::::2;::::0;::::2;:::i;:::-;;;;65064:164;;;-1:-1:-1::0;65256:15:0::2;::::0;:33:::2;::::0;65276:12;65256:19:::2;:33::i;:::-;65238:15;:51:::0;-1:-1:-1;56436:1:0::1;57390:7;:22:::0;64544:761::o;67597:393::-;27904:4;27928:16;;;:7;:16;;;;;;67671:13;;-1:-1:-1;;;;;27928:16:0;67697:77;;;;-1:-1:-1;;;67697:77:0;;24182:2:1;67697:77:0;;;24164:21:1;24221:2;24201:18;;;24194:30;24260:34;24240:18;;;24233:62;-1:-1:-1;;;24311:18:1;;;24304:45;24366:19;;67697:77:0;23980:411:1;67697:77:0;67790:8;;;;;;;67785:198;;67846:8;67856:19;:8;:17;:19::i;:::-;67829:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67815:62;;67597:393;;;:::o;67785:198::-;67941:7;67950:19;:8;:17;:19::i;67785:198::-;67597:393;;;:::o;62144:195::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;62242:12:::1;:27:::0;;-1:-1:-1;;;;;;62242:27:0::1;::::0;-1:-1:-1;;;;;62242:27:0;;::::1;;;::::0;;62280:20:::1;:51:::0;;-1:-1:-1;;;;;;62280:51:0::1;::::0;;;::::1;;::::0;;62144:195::o;68037:464::-;68093:16;68122:18;68143:17;68153:6;68143:9;:17::i;:::-;68122:38;-1:-1:-1;68177:15:0;68173:313;;68216:16;;;68230:1;68216:16;;;;;;;;;;;-1:-1:-1;68209:23:0;68037:464;-1:-1:-1;;;68037:464:0:o;68173:313::-;68262:25;68304:10;68290:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68290:25:0;;68262:53;;68334:9;68330:118;68353:10;68349:1;:14;68330:118;;;68402:30;68422:6;68430:1;68402:19;:30::i;:::-;68388:8;68397:1;68388:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;68365:3;;;;:::i;:::-;;;;68330:118;;68173:313;68111:390;68037:464;;;:::o;67123:410::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;67226:19:::1;67264:9:::0;67260:266:::1;67283:9;:16;67279:1;:20;67260:266;;;67331:9;67341:1;67331:12;;;;;;;;:::i;:::-;;;;;;;67347:8;67331:24;67327:176;;;67375:14:::0;::::1;::::0;::::1;:::i;:::-;;;;67327:176;;;67446:41;67456:3;67460:11;67456:16;;;;;;;;:::i;:::-;;;;;;;67474:9;67484:1;67474:12;;;;;;;;:::i;67446:41::-;67301:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67260:266;;;;67215:318;67123:410:::0;;:::o;60770:264::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;60884:13:::1;::::0;60853:15:::1;::::0;:27:::1;::::0;60873:6;60853:19:::1;:27::i;:::-;:44;;60845:81;;;::::0;-1:-1:-1;;;60845:81:0;;21069:2:1;60845:81:0::1;::::0;::::1;21051:21:1::0;21108:2;21088:18;;;21081:30;-1:-1:-1;;;21127:18:1;;;21120:54;21191:18;;60845:81:0::1;20867:348:1::0;60845:81:0::1;60953:13;::::0;:25:::1;::::0;60971:6;60953:17:::1;:25::i;:::-;60937:13;:41:::0;61003:11:::1;::::0;:23:::1;::::0;61019:6;61003:15:::1;:23::i;62394:153::-:0;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;62486:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;62517:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;58718:22::-:0;;;;;;;:::i;51777:201::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51866:22:0;::::1;51858:73;;;::::0;-1:-1:-1;;;51858:73:0;;15322:2:1;51858:73:0::1;::::0;::::1;15304:21:1::0;15361:2;15341:18;;;15334:30;15400:34;15380:18;;;15373:62;-1:-1:-1;;;15451:18:1;;;15444:36;15497:19;;51858:73:0::1;15120:402:1::0;51858:73:0::1;51942:28;51961:8;51942:18;:28::i;:::-;51777:201:::0;:::o;64250:246::-;50941:6;;-1:-1:-1;;;;;50941:6:0;17382:10;51088:23;51080:68;;;;-1:-1:-1;;;51080:68:0;;;;;;;:::i;:::-;64346:21:::1;64386:18:::0;;::::1;;64378:69;;;::::0;-1:-1:-1;;;64378:69:0;;27650:2:1;64378:69:0::1;::::0;::::1;27632:21:1::0;27689:2;27669:18;;;27662:30;27728:34;27708:18;;;27701:62;-1:-1:-1;;;27779:18:1;;;27772:36;27825:19;;64378:69:0::1;27448:402:1::0;64378:69:0::1;64458:30;::::0;-1:-1:-1;;;;;64458:21:0;::::1;::::0;:30;::::1;;;::::0;64480:7;;64458:30:::1;::::0;;;64480:7;64458:21;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;22081:305:::0;22183:4;-1:-1:-1;;;;;;22220:40:0;;-1:-1:-1;;;22220:40:0;;:105;;-1:-1:-1;;;;;;;22277:48:0;;-1:-1:-1;;;22277:48:0;22220:105;:158;;;-1:-1:-1;;;;;;;;;;20628:40:0;;;22342:36;20519:157;31821:174;31896:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31896:29:0;-1:-1:-1;;;;;31896:29:0;;;;;;;;:24;;31950:23;31896:24;31950:14;:23::i;:::-;-1:-1:-1;;;;;31941:46:0;;;;;;;;;;;31821:174;;:::o;46772:98::-;46830:7;46857:5;46861:1;46857;:5;:::i;:::-;46850:12;46772:98;-1:-1:-1;;;46772:98:0:o;46373:::-;46431:7;46458:5;46462:1;46458;:5;:::i;28823:110::-;28899:26;28909:2;28913:7;28899:26;;;;;;;;;;;;:9;:26::i;45635:98::-;45693:7;45720:5;45724:1;45720;:5;:::i;28133:348::-;28226:4;27928:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27928:16:0;28243:73;;;;-1:-1:-1;;;28243:73:0;;18302:2:1;28243:73:0;;;18284:21:1;18341:2;18321:18;;;18314:30;18380:34;18360:18;;;18353:62;-1:-1:-1;;;18431:18:1;;;18424:42;18483:19;;28243:73:0;18100:408:1;28243:73:0;28327:13;28343:23;28358:7;28343:14;:23::i;:::-;28327:39;;28396:5;-1:-1:-1;;;;;28385:16:0;:7;-1:-1:-1;;;;;28385:16:0;;:51;;;;28429:7;-1:-1:-1;;;;;28405:31:0;:20;28417:7;28405:11;:20::i;:::-;-1:-1:-1;;;;;28405:31:0;;28385:51;:87;;;-1:-1:-1;;;;;;25225:25:0;;;25201:4;25225:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28440:32;28377:96;28133:348;-1:-1:-1;;;;28133:348:0:o;25335:339::-;25530:41;17382:10;25549:12;17302:98;25530:41;25522:103;;;;-1:-1:-1;;;25522:103:0;;;;;;;:::i;:::-;25638:28;25648:4;25654:2;25658:7;25638:9;:28::i;29817:382::-;-1:-1:-1;;;;;29897:16:0;;29889:61;;;;-1:-1:-1;;;29889:61:0;;21422:2:1;29889:61:0;;;21404:21:1;;;21441:18;;;21434:30;21500:34;21480:18;;;21473:62;21552:18;;29889:61:0;21220:356:1;29889:61:0;27904:4;27928:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27928:16:0;:30;29961:58;;;;-1:-1:-1;;;29961:58:0;;16073:2:1;29961:58:0;;;16055:21:1;16112:2;16092:18;;;16085:30;16151;16131:18;;;16124:58;16199:18;;29961:58:0;15871:352:1;29961:58:0;30032:45;30061:1;30065:2;30069:7;30032:20;:45::i;:::-;-1:-1:-1;;;;;30090:13:0;;;;;;:9;:13;;;;;:18;;30107:1;;30090:13;:18;;30107:1;;30090:18;:::i;:::-;;;;-1:-1:-1;;30119:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30119:21:0;-1:-1:-1;;;;;30119:21:0;;;;;;;;30158:33;;30119:16;;;30158:33;;30119:16;;30158:33;29817:382;;:::o;54533:120::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;54069:41;;;;-1:-1:-1;;;54069:41:0;;14142:2:1;54069:41:0;;;14124:21:1;14181:2;14161:18;;;14154:30;-1:-1:-1;;;14200:18:1;;;14193:50;14260:18;;54069:41:0;13940:344:1;54069:41:0;54592:7:::1;:15:::0;;-1:-1:-1;;;;54592:15:0::1;::::0;;54623:22:::1;17382:10:::0;54632:12:::1;54623:22;::::0;-1:-1:-1;;;;;10529:32:1;;;10511:51;;10499:2;10484:18;54623:22:0::1;;;;;;;54533:120::o:0;46016:98::-;46074:7;46101:5;46105:1;46101;:5;:::i;52138:191::-;52231:6;;;-1:-1:-1;;;;;52248:17:0;;;-1:-1:-1;;;;;;52248:17:0;;;;;;;52281:40;;52231:6;;;52248:17;52231:6;;52281:40;;52212:16;;52281:40;52201:128;52138:191;:::o;54274:118::-;53545:7;;-1:-1:-1;;;53545:7:0;;;;53799:9;53791:38;;;;-1:-1:-1;;;53791:38:0;;;;;;;:::i;:::-;54334:7:::1;:14:::0;;-1:-1:-1;;;;54334:14:0::1;-1:-1:-1::0;;;54334:14:0::1;::::0;;54364:20:::1;54371:12;17382:10:::0;;17302:98;32137:315;32292:8;-1:-1:-1;;;;;32283:17:0;:5;-1:-1:-1;;;;;32283:17:0;;;32275:55;;;;-1:-1:-1;;;32275:55:0;;17948:2:1;32275:55:0;;;17930:21:1;17987:2;17967:18;;;17960:30;18026:27;18006:18;;;17999:55;18071:18;;32275:55:0;17746:349:1;32275:55:0;-1:-1:-1;;;;;32341:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32341:46:0;;;;;;;;;;32403:41;;12431::1;;;32403::0;;12404:18:1;32403:41:0;;;;;;;32137:315;;;:::o;26001:328::-;26176:41;17382:10;26195:12;17302:98;26176:41;26168:103;;;;-1:-1:-1;;;26168:103:0;;;;;;;:::i;:::-;26282:39;26296:4;26302:2;26306:7;26315:5;26282:13;:39::i;17889:723::-;17945:13;18166:10;18162:53;;-1:-1:-1;;18193:10:0;;;;;;;;;;;;-1:-1:-1;;;18193:10:0;;;;;17889:723::o;18162:53::-;18240:5;18225:12;18281:78;18288:9;;18281:78;;18314:8;;;;:::i;:::-;;-1:-1:-1;18337:10:0;;-1:-1:-1;18345:2:0;18337:10;;:::i;:::-;;;18281:78;;;18369:19;18401:6;18391:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18391:17:0;;18369:39;;18419:154;18426:10;;18419:154;;18453:11;18463:1;18453:11;;:::i;:::-;;-1:-1:-1;18522:10:0;18530:2;18522:5;:10;:::i;:::-;18509:24;;:2;:24;:::i;:::-;18496:39;;18479:6;18486;18479:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18479:56:0;;;;;;;;-1:-1:-1;18550:11:0;18559:2;18550:11;;:::i;:::-;;;18419:154;;29160:321;29290:18;29296:2;29300:7;29290:5;:18::i;:::-;29341:54;29372:1;29376:2;29380:7;29389:5;29341:22;:54::i;:::-;29319:154;;;;-1:-1:-1;;;29319:154:0;;;;;;;:::i;31125:578::-;31284:4;-1:-1:-1;;;;;31257:31:0;:23;31272:7;31257:14;:23::i;:::-;-1:-1:-1;;;;;31257:31:0;;31249:85;;;;-1:-1:-1;;;31249:85:0;;23772:2:1;31249:85:0;;;23754:21:1;23811:2;23791:18;;;23784:30;23850:34;23830:18;;;23823:62;-1:-1:-1;;;23901:18:1;;;23894:39;23950:19;;31249:85:0;23570:405:1;31249:85:0;-1:-1:-1;;;;;31353:16:0;;31345:65;;;;-1:-1:-1;;;31345:65:0;;17543:2:1;31345:65:0;;;17525:21:1;17582:2;17562:18;;;17555:30;17621:34;17601:18;;;17594:62;-1:-1:-1;;;17672:18:1;;;17665:34;17716:19;;31345:65:0;17341:400:1;31345:65:0;31423:39;31444:4;31450:2;31454:7;31423:20;:39::i;:::-;31527:29;31544:1;31548:7;31527:8;:29::i;:::-;-1:-1:-1;;;;;31569:15:0;;;;;;:9;:15;;;;;:20;;31588:1;;31569:15;:20;;31588:1;;31569:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31600:13:0;;;;;;:9;:13;;;;;:18;;31617:1;;31600:13;:18;;31617:1;;31600:18;:::i;:::-;;;;-1:-1:-1;;31629:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31629:21:0;-1:-1:-1;;;;;31629:21:0;;;;;;;;;31668:27;;31629:16;;31668:27;;;;;;;31125:578;;;:::o;38293:589::-;-1:-1:-1;;;;;38499:18:0;;38495:187;;38534:40;38566:7;39709:10;:17;;39682:24;;;;:15;:24;;;;;:44;;;39737:24;;;;;;;;;;;;39605:164;38534:40;38495:187;;;38604:2;-1:-1:-1;;;;;38596:10:0;:4;-1:-1:-1;;;;;38596:10:0;;38592:90;;38623:47;38656:4;38662:7;38623:32;:47::i;:::-;-1:-1:-1;;;;;38696:16:0;;38692:183;;38729:45;38766:7;38729:36;:45::i;38692:183::-;38802:4;-1:-1:-1;;;;;38796:10:0;:2;-1:-1:-1;;;;;38796:10:0;;38792:83;;38823:40;38851:2;38855:7;38823:27;:40::i;27211:315::-;27368:28;27378:4;27384:2;27388:7;27368:9;:28::i;:::-;27415:48;27438:4;27444:2;27448:7;27457:5;27415:22;:48::i;:::-;27407:111;;;;-1:-1:-1;;;27407:111:0;;;;;;;:::i;33017:799::-;33172:4;-1:-1:-1;;;;;33193:13:0;;9607:20;9655:8;33189:620;;33229:72;;-1:-1:-1;;;33229:72:0;;-1:-1:-1;;;;;33229:36:0;;;;;:72;;17382:10;;33280:4;;33286:7;;33295:5;;33229:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33229:72:0;;;;;;;;-1:-1:-1;;33229:72:0;;;;;;;;;;;;:::i;:::-;;;33225:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33471:13:0;;33467:272;;33514:60;;-1:-1:-1;;;33514:60:0;;;;;;;:::i;33467:272::-;33689:6;33683:13;33674:6;33670:2;33666:15;33659:38;33225:529;-1:-1:-1;;;;;;33352:51:0;-1:-1:-1;;;33352:51:0;;-1:-1:-1;33345:58:0;;33189:620;-1:-1:-1;33793:4:0;33017:799;;;;;;:::o;40396:988::-;40662:22;40712:1;40687:22;40704:4;40687:16;:22::i;:::-;:26;;;;:::i;:::-;40724:18;40745:26;;;:17;:26;;;;;;40662:51;;-1:-1:-1;40878:28:0;;;40874:328;;-1:-1:-1;;;;;40945:18:0;;40923:19;40945:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40996:30;;;;;;:44;;;41113:30;;:17;:30;;;;;:43;;;40874:328;-1:-1:-1;41298:26:0;;;;:17;:26;;;;;;;;41291:33;;;-1:-1:-1;;;;;41342:18:0;;;;;:12;:18;;;;;:34;;;;;;;41335:41;40396:988::o;41679:1079::-;41957:10;:17;41932:22;;41957:21;;41977:1;;41957:21;:::i;:::-;41989:18;42010:24;;;:15;:24;;;;;;42383:10;:26;;41932:46;;-1:-1:-1;42010:24:0;;41932:46;;42383:26;;;;;;:::i;:::-;;;;;;;;;42361:48;;42447:11;42422:10;42433;42422:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42527:28;;;:15;:28;;;;;;;:41;;;42699:24;;;;;42692:31;42734:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41750:1008;;;41679:1079;:::o;39183:221::-;39268:14;39285:20;39302:2;39285:16;:20::i;:::-;-1:-1:-1;;;;;39316:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39361:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39183:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:679;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:673::-;1341:5;1394:3;1387:4;1379:6;1375:17;1371:27;1361:55;;1412:1;1409;1402:12;1361:55;1448:6;1435:20;1474:4;1498:60;1514:43;1554:2;1514:43;:::i;1498:60::-;1580:3;1604:2;1599:3;1592:15;1632:2;1627:3;1623:12;1616:19;;1667:2;1659:6;1655:15;1719:3;1714:2;1708;1705:1;1701:10;1693:6;1689:23;1685:32;1682:41;1679:61;;;1736:1;1733;1726:12;1679:61;1758:1;1768:163;1782:2;1779:1;1776:9;1768:163;;;1839:17;;1827:30;;1877:12;;;;1909;;;;1800:1;1793:9;1768:163;;1965:160;2030:20;;2086:13;;2079:21;2069:32;;2059:60;;2115:1;2112;2105:12;2130:221;2173:5;2226:3;2219:4;2211:6;2207:17;2203:27;2193:55;;2244:1;2241;2234:12;2193:55;2266:79;2341:3;2332:6;2319:20;2312:4;2304:6;2300:17;2266:79;:::i;2356:186::-;2415:6;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2507:29;2526:9;2507:29;:::i;2547:260::-;2615:6;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;:::-;2705:39;;2763:38;2797:2;2786:9;2782:18;2763:38;:::i;:::-;2753:48;;2547:260;;;;;:::o;2812:328::-;2889:6;2897;2905;2958:2;2946:9;2937:7;2933:23;2929:32;2926:52;;;2974:1;2971;2964:12;2926:52;2997:29;3016:9;2997:29;:::i;:::-;2987:39;;3045:38;3079:2;3068:9;3064:18;3045:38;:::i;:::-;3035:48;;3130:2;3119:9;3115:18;3102:32;3092:42;;2812:328;;;;;:::o;3145:666::-;3240:6;3248;3256;3264;3317:3;3305:9;3296:7;3292:23;3288:33;3285:53;;;3334:1;3331;3324:12;3285:53;3357:29;3376:9;3357:29;:::i;:::-;3347:39;;3405:38;3439:2;3428:9;3424:18;3405:38;:::i;:::-;3395:48;;3490:2;3479:9;3475:18;3462:32;3452:42;;3545:2;3534:9;3530:18;3517:32;3572:18;3564:6;3561:30;3558:50;;;3604:1;3601;3594:12;3558:50;3627:22;;3680:4;3672:13;;3668:27;-1:-1:-1;3658:55:1;;3709:1;3706;3699:12;3658:55;3732:73;3797:7;3792:2;3779:16;3774:2;3770;3766:11;3732:73;:::i;:::-;3722:83;;;3145:666;;;;;;;:::o;3816:422::-;3909:6;3917;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;4009:29;4028:9;4009:29;:::i;:::-;3999:39;;4089:2;4078:9;4074:18;4061:32;4116:18;4108:6;4105:30;4102:50;;;4148:1;4145;4138:12;4102:50;4171:61;4224:7;4215:6;4204:9;4200:22;4171:61;:::i;:::-;4161:71;;;3816:422;;;;;:::o;4243:254::-;4308:6;4316;4369:2;4357:9;4348:7;4344:23;4340:32;4337:52;;;4385:1;4382;4375:12;4337:52;4408:29;4427:9;4408:29;:::i;:::-;4398:39;;4456:35;4487:2;4476:9;4472:18;4456:35;:::i;4502:254::-;4570:6;4578;4631:2;4619:9;4610:7;4606:23;4602:32;4599:52;;;4647:1;4644;4637:12;4599:52;4670:29;4689:9;4670:29;:::i;:::-;4660:39;4746:2;4731:18;;;;4718:32;;-1:-1:-1;;;4502:254:1:o;4761:348::-;4845:6;4898:2;4886:9;4877:7;4873:23;4869:32;4866:52;;;4914:1;4911;4904:12;4866:52;4954:9;4941:23;4987:18;4979:6;4976:30;4973:50;;;5019:1;5016;5009:12;4973:50;5042:61;5095:7;5086:6;5075:9;5071:22;5042:61;:::i;5114:595::-;5232:6;5240;5293:2;5281:9;5272:7;5268:23;5264:32;5261:52;;;5309:1;5306;5299:12;5261:52;5349:9;5336:23;5378:18;5419:2;5411:6;5408:14;5405:34;;;5435:1;5432;5425:12;5405:34;5458:61;5511:7;5502:6;5491:9;5487:22;5458:61;:::i;:::-;5448:71;;5572:2;5561:9;5557:18;5544:32;5528:48;;5601:2;5591:8;5588:16;5585:36;;;5617:1;5614;5607:12;5585:36;;5640:63;5695:7;5684:8;5673:9;5669:24;5640:63;:::i;5714:180::-;5770:6;5823:2;5811:9;5802:7;5798:23;5794:32;5791:52;;;5839:1;5836;5829:12;5791:52;5862:26;5878:9;5862:26;:::i;5899:184::-;5969:6;6022:2;6010:9;6001:7;5997:23;5993:32;5990:52;;;6038:1;6035;6028:12;5990:52;-1:-1:-1;6061:16:1;;5899:184;-1:-1:-1;5899:184:1:o;6088:245::-;6146:6;6199:2;6187:9;6178:7;6174:23;6170:32;6167:52;;;6215:1;6212;6205:12;6167:52;6254:9;6241:23;6273:30;6297:5;6273:30;:::i;6338:249::-;6407:6;6460:2;6448:9;6439:7;6435:23;6431:32;6428:52;;;6476:1;6473;6466:12;6428:52;6508:9;6502:16;6527:30;6551:5;6527:30;:::i;6592:543::-;6680:6;6688;6741:2;6729:9;6720:7;6716:23;6712:32;6709:52;;;6757:1;6754;6747:12;6709:52;6797:9;6784:23;6826:18;6867:2;6859:6;6856:14;6853:34;;;6883:1;6880;6873:12;6853:34;6906:50;6948:7;6939:6;6928:9;6924:22;6906:50;:::i;:::-;6896:60;;7009:2;6998:9;6994:18;6981:32;6965:48;;7038:2;7028:8;7025:16;7022:36;;;7054:1;7051;7044:12;7022:36;;7077:52;7121:7;7110:8;7099:9;7095:24;7077:52;:::i;7140:180::-;7199:6;7252:2;7240:9;7231:7;7227:23;7223:32;7220:52;;;7268:1;7265;7258:12;7220:52;-1:-1:-1;7291:23:1;;7140:180;-1:-1:-1;7140:180:1:o;7325:660::-;7405:6;7413;7421;7474:2;7462:9;7453:7;7449:23;7445:32;7442:52;;;7490:1;7487;7480:12;7442:52;7526:9;7513:23;7503:33;;7587:2;7576:9;7572:18;7559:32;7610:18;7651:2;7643:6;7640:14;7637:34;;;7667:1;7664;7657:12;7637:34;7705:6;7694:9;7690:22;7680:32;;7750:7;7743:4;7739:2;7735:13;7731:27;7721:55;;7772:1;7769;7762:12;7721:55;7812:2;7799:16;7838:2;7830:6;7827:14;7824:34;;;7854:1;7851;7844:12;7824:34;7899:7;7894:2;7885:6;7881:2;7877:15;7873:24;7870:37;7867:57;;;7920:1;7917;7910:12;7867:57;7951:2;7947;7943:11;7933:21;;7973:6;7963:16;;;;;7325:660;;;;;:::o;7990:248::-;8058:6;8066;8119:2;8107:9;8098:7;8094:23;8090:32;8087:52;;;8135:1;8132;8125:12;8087:52;-1:-1:-1;;8158:23:1;;;8228:2;8213:18;;;8200:32;;-1:-1:-1;7990:248:1:o;8243:257::-;8284:3;8322:5;8316:12;8349:6;8344:3;8337:19;8365:63;8421:6;8414:4;8409:3;8405:14;8398:4;8391:5;8387:16;8365:63;:::i;:::-;8482:2;8461:15;-1:-1:-1;;8457:29:1;8448:39;;;;8489:4;8444:50;;8243:257;-1:-1:-1;;8243:257:1:o;8505:985::-;8593:12;;8558:3;;8648:1;8668:18;;;;8721;;;;8748:61;;8802:4;8794:6;8790:17;8780:27;;8748:61;8828:2;8876;8868:6;8865:14;8845:18;8842:38;8839:161;;;8922:10;8917:3;8913:20;8910:1;8903:31;8957:4;8954:1;8947:15;8985:4;8982:1;8975:15;8839:161;9016:18;9043:104;;;;9161:1;9156:328;;;;9009:475;;9043:104;-1:-1:-1;;9076:24:1;;9064:37;;9121:16;;;;-1:-1:-1;9043:104:1;;9156:328;9187:5;9184:1;9177:16;9234:2;9231:1;9221:16;9259:1;9273:165;9287:6;9284:1;9281:13;9273:165;;;9365:14;;9352:11;;;9345:35;9408:16;;;;9302:10;;9273:165;;;9277:3;;9467:6;9462:3;9458:16;9451:23;;9009:475;;;;;;;8505:985;;;;:::o;9495:274::-;9624:3;9662:6;9656:13;9678:53;9724:6;9719:3;9712:4;9704:6;9700:17;9678:53;:::i;:::-;9747:16;;;;;9495:274;-1:-1:-1;;9495:274:1:o;9774:202::-;9904:3;9929:41;9966:3;9958:6;9929:41;:::i;9981:379::-;10157:3;10185:41;10222:3;10214:6;10185:41;:::i;:::-;10255:6;10249:13;10271:52;10316:6;10312:2;10305:4;10297:6;10293:17;10271:52;:::i;:::-;10339:15;;9981:379;-1:-1:-1;;;;9981:379:1:o;10882:488::-;-1:-1:-1;;;;;11151:15:1;;;11133:34;;11203:15;;11198:2;11183:18;;11176:43;11250:2;11235:18;;11228:34;;;11298:3;11293:2;11278:18;;11271:31;;;11076:4;;11319:45;;11344:19;;11336:6;11319:45;:::i;:::-;11311:53;10882:488;-1:-1:-1;;;;;;10882:488:1:o;11654:632::-;11825:2;11877:21;;;11947:13;;11850:18;;;11969:22;;;11796:4;;11825:2;12048:15;;;;12022:2;12007:18;;;11796:4;12091:169;12105:6;12102:1;12099:13;12091:169;;;12166:13;;12154:26;;12235:15;;;;12200:12;;;;12127:1;12120:9;12091:169;;;-1:-1:-1;12277:3:1;;11654:632;-1:-1:-1;;;;;;11654:632:1:o;12935:390::-;13094:2;13083:9;13076:21;13133:6;13128:2;13117:9;13113:18;13106:34;13190:6;13182;13177:2;13166:9;13162:18;13149:48;13246:1;13217:22;;;13241:2;13213:31;;;13206:42;;;;13309:2;13288:15;;;-1:-1:-1;;13284:29:1;13269:45;13265:54;;12935:390;-1:-1:-1;12935:390:1:o;13330:219::-;13479:2;13468:9;13461:21;13442:4;13499:44;13539:2;13528:9;13524:18;13516:6;13499:44;:::i;13554:381::-;13751:2;13740:9;13733:21;13714:4;13777:44;13817:2;13806:9;13802:18;13794:6;13777:44;:::i;:::-;13869:9;13861:6;13857:22;13852:2;13841:9;13837:18;13830:50;13897:32;13922:6;13914;13897:32;:::i;:::-;13889:40;13554:381;-1:-1:-1;;;;;13554:381:1:o;14701:414::-;14903:2;14885:21;;;14942:2;14922:18;;;14915:30;14981:34;14976:2;14961:18;;14954:62;-1:-1:-1;;;15047:2:1;15032:18;;15025:48;15105:3;15090:19;;14701:414::o;18867:340::-;19069:2;19051:21;;;19108:2;19088:18;;;19081:30;-1:-1:-1;;;19142:2:1;19127:18;;19120:46;19198:2;19183:18;;18867:340::o;21581:345::-;21783:2;21765:21;;;21822:2;21802:18;;;21795:30;-1:-1:-1;;;21856:2:1;21841:18;;21834:51;21917:2;21902:18;;21581:345::o;23209:356::-;23411:2;23393:21;;;23430:18;;;23423:30;23489:34;23484:2;23469:18;;23462:62;23556:2;23541:18;;23209:356::o;25146:413::-;25348:2;25330:21;;;25387:2;25367:18;;;25360:30;25426:34;25421:2;25406:18;;25399:62;-1:-1:-1;;;25492:2:1;25477:18;;25470:47;25549:3;25534:19;;25146:413::o;27088:355::-;27290:2;27272:21;;;27329:2;27309:18;;;27302:30;27368:33;27363:2;27348:18;;27341:61;27434:2;27419:18;;27088:355::o;28398:275::-;28469:2;28463:9;28534:2;28515:13;;-1:-1:-1;;28511:27:1;28499:40;;28569:18;28554:34;;28590:22;;;28551:62;28548:88;;;28616:18;;:::i;:::-;28652:2;28645:22;28398:275;;-1:-1:-1;28398:275:1:o;28678:183::-;28738:4;28771:18;28763:6;28760:30;28757:56;;;28793:18;;:::i;:::-;-1:-1:-1;28838:1:1;28834:14;28850:4;28830:25;;28678:183::o;28866:128::-;28906:3;28937:1;28933:6;28930:1;28927:13;28924:39;;;28943:18;;:::i;:::-;-1:-1:-1;28979:9:1;;28866:128::o;28999:120::-;29039:1;29065;29055:35;;29070:18;;:::i;:::-;-1:-1:-1;29104:9:1;;28999:120::o;29124:168::-;29164:7;29230:1;29226;29222:6;29218:14;29215:1;29212:21;29207:1;29200:9;29193:17;29189:45;29186:71;;;29237:18;;:::i;:::-;-1:-1:-1;29277:9:1;;29124:168::o;29297:125::-;29337:4;29365:1;29362;29359:8;29356:34;;;29370:18;;:::i;:::-;-1:-1:-1;29407:9:1;;29297:125::o;29427:258::-;29499:1;29509:113;29523:6;29520:1;29517:13;29509:113;;;29599:11;;;29593:18;29580:11;;;29573:39;29545:2;29538:10;29509:113;;;29640:6;29637:1;29634:13;29631:48;;;-1:-1:-1;;29675:1:1;29657:16;;29650:27;29427:258::o;29690:380::-;29769:1;29765:12;;;;29812;;;29833:61;;29887:4;29879:6;29875:17;29865:27;;29833:61;29940:2;29932:6;29929:14;29909:18;29906:38;29903:161;;;29986:10;29981:3;29977:20;29974:1;29967:31;30021:4;30018:1;30011:15;30049:4;30046:1;30039:15;30075:135;30114:3;-1:-1:-1;;30135:17:1;;30132:43;;;30155:18;;:::i;:::-;-1:-1:-1;30202:1:1;30191:13;;30075:135::o;30215:112::-;30247:1;30273;30263:35;;30278:18;;:::i;:::-;-1:-1:-1;30312:9:1;;30215:112::o;30332:127::-;30393:10;30388:3;30384:20;30381:1;30374:31;30424:4;30421:1;30414:15;30448:4;30445:1;30438:15;30464:127;30525:10;30520:3;30516:20;30513:1;30506:31;30556:4;30553:1;30546:15;30580:4;30577:1;30570:15;30596:127;30657:10;30652:3;30648:20;30645:1;30638:31;30688:4;30685:1;30678:15;30712:4;30709:1;30702:15;30728:127;30789:10;30784:3;30780:20;30777:1;30770:31;30820:4;30817:1;30810:15;30844:4;30841:1;30834:15;30860:127;30921:10;30916:3;30912:20;30909:1;30902:31;30952:4;30949:1;30942:15;30976:4;30973:1;30966:15;30992:131;-1:-1:-1;;;;;;31066:32:1;;31056:43;;31046:71;;31113:1;31110;31103:12

Swarm Source

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