ETH Price: $3,275.29 (+0.74%)
Gas: 1 Gwei

Token

No Brainers (NBRN)
 

Overview

Max Total Supply

2,500 NBRN

Holders

1,150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kevinsu.eth
Balance
1 NBRN
0x9DA11D66665e0970c03F171231fC57FF9A6E4816
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Lobely Labs is inviting Ethereum believers to the next great leap in human evolution. They developed a cutting edge brain augmentation procedure that will only be available to 2,500 individuals. [Discord](https://discord.gg/nobrainers) | [Twitter](https://twitter.com/NoBraine...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NoBrainers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.4 https://hardhat.org

// 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;
    }
}


// File contracts/NoBrainers.sol



pragma solidity ^0.8.4;






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

    uint256 public constant RESERVE_NFT = 200;
    uint256 public constant PUBLIC_NFT = 4900;
    uint256 public constant MAX_NFT = RESERVE_NFT + PUBLIC_NFT;
    uint256 public constant NFT_PRICE = 0.08 ether;

    uint256 public constant PRESALE_PURCHASE_LIMIT = 4;
    uint256 public constant MAINSALE_PURCHASE_LIMIT = 7;

    uint256 public publicTotalSupply;

    string public baseURI;
    string public blindURI;
    string public reserveURI;

    bool donate=true;
    bool checkWhitelist;
    bool public reveal;
    bool public isPreSaleActive;
    bool public isMainSaleActive;

    address public communityTreasury;
    address public charity;

    mapping(address => bool) presaleAccess;

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

    constructor(address _communityTreasury, address _charity) ERC721("No Brainers", "NBRN") {
        communityTreasury = _communityTreasury;
        charity = _charity;
    }

    // Function to start presale
    function changePreSaleStatus(bool _status) external onlyOwner {
        isPreSaleActive = _status;
    }

    // Function to start main sale
    function changeMainSaleStatus(bool _status) external onlyOwner {
        isMainSaleActive = _status;
    }
    
    // Function to reveal all NFTs
    function changeRevealStatus(bool _status) external onlyOwner {
        reveal = _status;
    }

    // Function to control whitelist flag
    function changeWhitelistFlag(bool _status) external onlyOwner {
        checkWhitelist = _status;
    }

    // Function to control donate flag
    function changeDonateFlag(bool _status) external onlyOwner {
        donate = _status;
    }
    
    // Function givePresaleAccess to give presale access to addresses
    function givePresaleAccess(address[] memory _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            presaleAccess[_addresses[i]] = true;
        }
    }

    // Function to set giveaway users (tokenIds should be below 200)
    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++) {
            giveaway[_to[i]].push(_tokenIds[i]);
        }
    }
    
    // Function to set Base and Blind URI
    function setURIs(string memory _blindURI, string memory _URI, string memory _reserveURI) external onlyOwner {
        blindURI = _blindURI;
        baseURI = _URI;
        reserveURI = _reserveURI;
    }

    //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 new NFTs during the presale
    function mintDuringPresale(uint256 _numOfTokens) public payable whenNotPaused nonReentrant {
        require(isPreSaleActive==true, "Presale Not Active");
        if(checkWhitelist==true) {
            require(presaleAccess[msg.sender] == true, "Presale Access Denied");
        }
        require(presaleClaimed[msg.sender].add(_numOfTokens) <= PRESALE_PURCHASE_LIMIT, 
            "Above Presale Purchase Limit");
        require(publicTotalSupply.add(_numOfTokens) <= PUBLIC_NFT, 'Purchase would exceed max NFTs');
        require(NFT_PRICE.mul(_numOfTokens) == msg.value, "Invalid Amount");

        if(donate==true) {
            checkDistribution(_numOfTokens);
        }

        for (uint256 i = 0; i < _numOfTokens; i++) {
            _safeMint(msg.sender, RESERVE_NFT.add(publicTotalSupply));
            publicTotalSupply = publicTotalSupply.add(1);
        }
        presaleClaimed[msg.sender] = presaleClaimed[msg.sender].add(_numOfTokens);
    }

    // Function to mint new NFTs during the public sale
    function mint(uint256 _numOfTokens) public payable whenNotPaused nonReentrant {
        require(isMainSaleActive==true, "Sale Not Active");
        require(mainSaleClaimed[msg.sender].add(_numOfTokens) <= MAINSALE_PURCHASE_LIMIT, 
            "Above Main Sale Purchase Limit");
        require(publicTotalSupply.add(_numOfTokens) <= PUBLIC_NFT, "Purchase would exceed max NFTs");
        require(NFT_PRICE.mul(_numOfTokens) == msg.value, "Invalid Amount");
        
        if(donate==true) {
            checkDistribution(_numOfTokens);
        }

        for(uint256 i = 0; i < _numOfTokens; i++) {
            _mint(msg.sender, RESERVE_NFT.add(publicTotalSupply));
            publicTotalSupply = publicTotalSupply.add(1);
        }

        mainSaleClaimed[msg.sender] = mainSaleClaimed[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]);
        }
    }

    // Function to mint unclaimed
    function mintUnclaimed(address _to, uint256[] memory _tokenIds) external onlyOwner {
        for(uint256 i=0; i < _tokenIds.length; i++) {
            _safeMint(_to, _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 (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            if (_tokenId < RESERVE_NFT) {
                return string(abi.encodePacked(reserveURI, _tokenId.toString()));
            } else {
                return string(abi.encodePacked(baseURI, _tokenId.toString()));
            }
        }
    }

    // Function to check charity and treasury distribution
    function checkDistribution(uint256 _numOfTokens) internal {
        if (publicTotalSupply < PUBLIC_NFT &&  publicTotalSupply.add(_numOfTokens) >= PUBLIC_NFT) {
            payable(communityTreasury).transfer(15 ether);
            payable(charity).transfer(12 ether);
        } else if (publicTotalSupply < 3675 && publicTotalSupply.add(_numOfTokens) >= 3675) {
            payable(communityTreasury).transfer(12 ether);
            payable(charity).transfer(8 ether);
        } else if (publicTotalSupply < 2450 &&  publicTotalSupply.add(_numOfTokens) >= 2450) {
            payable(communityTreasury).transfer(8 ether);
            payable(charity).transfer(6 ether);
        } else if (publicTotalSupply < 1225 && publicTotalSupply.add(_numOfTokens) >= 1225) {
            payable(communityTreasury).transfer(5 ether);
            payable(charity).transfer(4 ether);
        }
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_communityTreasury","type":"address"},{"internalType":"address","name":"_charity","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"},{"inputs":[],"name":"MAINSALE_PURCHASE_LIMIT","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":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_NFT","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":[{"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":"bool","name":"_status","type":"bool"}],"name":"changeDonateFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeMainSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changePreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeWhitelistFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityTreasury","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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"givePresaleAccess","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":"isMainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mainSaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mintUnclaimed","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":"presaleClaimed","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":[],"name":"reserveURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"internalType":"string","name":"_reserveURI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","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"}]

60806040526010805460ff191660011790553480156200001e57600080fd5b50604051620037393803806200373983398101604081905262000041916200021d565b604080518082018252600b81526a4e6f20427261696e65727360a81b6020808301918252835180850190945260048452632721292760e11b90840152815191929162000090916000916200015a565b508051620000a69060019060208401906200015a565b50506001600a5550620000b93362000108565b600b805460ff60a01b1916905560108054600160281b600160c81b031916650100000000006001600160a01b0394851602179055601180546001600160a01b0319169190921617905562000291565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001689062000254565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b80516001600160a01b03811681146200021857600080fd5b919050565b6000806040838503121562000230578182fd5b6200023b8362000200565b91506200024b6020840162000200565b90509250929050565b600181811c908216806200026957607f821691505b602082108114156200028b57634e487b7160e01b600052602260045260246000fd5b50919050565b61349880620002a16000396000f3fe6080604052600436106103195760003560e01c8063715018a6116101ab578063b2dbf058116100f7578063dd5c077c11610095578063eff955371161006f578063eff9553714610908578063f2fde38b1461091d578063f3fef3a31461093d578063f9765bc11461095d57600080fd5b8063dd5c077c1461088c578063e985e9c5146108ac578063e9e20616146108f557600080fd5b8063b88d4fde116100d1578063b88d4fde14610816578063b985add814610836578063c87b56dd1461084c578063d6021dd31461086c57600080fd5b8063b2dbf058146107b4578063b3026d0f146107d4578063b3b2cb7a146107f457600080fd5b8063934aa023116101645780639d044ed31161013e5780639d044ed314610740578063a0712d6814610761578063a22cb46514610774578063a475b5dd1461079457600080fd5b8063934aa023146106eb578063949028a71461070b57806395d89b411461072b57600080fd5b8063715018a61461064e5780638456cb5914610663578063881b884a146106785780638d007f69146106985780638da5cb5b146106ad578063926541aa146106cb57600080fd5b806340a4dddd1161026a5780635c975abb11610223578063676dd563116101fd578063676dd563146105e85780636c0360eb146106045780636fdaddf11461061957806370a082311461062e57600080fd5b80635c975abb1461059457806362d0f657146105b35780636352211e146105c857600080fd5b806340a4dddd146104d857806342842e0e146104f857806344910cf9146105185780634af9bc10146105385780634f6ccce71461054d57806358c12dbe1461056d57600080fd5b806318160ddd116102d757806323b872dd116102b157806323b872dd146104565780632f745c591461047657806333e275fb146104965780633f4ba83a146104c357600080fd5b806318160ddd1461041657806320000a2e1461042b5780632169fe2b1461044057600080fd5b80624cc2141461031e57806301ffc9a714610349578063050225ea1461037957806306fdde03146103a7578063081812fc146103bc578063095ea7b3146103f4575b600080fd5b34801561032a57600080fd5b5061033361098a565b6040516103409190613171565b60405180910390f35b34801561035557600080fd5b50610369610364366004612f6b565b610a18565b6040519015158152602001610340565b34801561038557600080fd5b50610399610394366004612e9e565b610a43565b604051908152602001610340565b3480156103b357600080fd5b50610333610a74565b3480156103c857600080fd5b506103dc6103d7366004613027565b610b06565b6040516001600160a01b039091168152602001610340565b34801561040057600080fd5b5061041461040f366004612e9e565b610ba0565b005b34801561042257600080fd5b50600854610399565b34801561043757600080fd5b50610399600781565b34801561044c57600080fd5b5061039961132481565b34801561046257600080fd5b50610414610471366004612d75565b610cb6565b34801561048257600080fd5b50610399610491366004612e9e565b610ce7565b3480156104a257600080fd5b506103996104b1366004612d29565b60146020526000908152604090205481565b3480156104cf57600080fd5b50610414610d7d565b3480156104e457600080fd5b506104146104f3366004612fa3565b610db1565b34801561050457600080fd5b50610414610513366004612d75565b610e1c565b34801561052457600080fd5b50610414610533366004612f51565b610e37565b34801561054457600080fd5b50610414610e81565b34801561055957600080fd5b50610399610568366004613027565b610f4c565b34801561057957600080fd5b506010546103dc90600160281b90046001600160a01b031681565b3480156105a057600080fd5b50600b54600160a01b900460ff16610369565b3480156105bf57600080fd5b50610399600481565b3480156105d457600080fd5b506103dc6105e3366004613027565b610fed565b3480156105f457600080fd5b5061039967011c37937e08000081565b34801561061057600080fd5b50610333611064565b34801561062557600080fd5b50610399611071565b34801561063a57600080fd5b50610399610649366004612d29565b611081565b34801561065a57600080fd5b50610414611108565b34801561066f57600080fd5b5061041461113c565b34801561068457600080fd5b50610414610693366004612efa565b61116e565b3480156106a457600080fd5b5061039960c881565b3480156106b957600080fd5b50600b546001600160a01b03166103dc565b3480156106d757600080fd5b506104146106e6366004612f51565b611288565b3480156106f757600080fd5b506011546103dc906001600160a01b031681565b34801561071757600080fd5b50610414610726366004612f51565b6112d0565b34801561073757600080fd5b50610333611316565b34801561074c57600080fd5b50601054610369906301000000900460ff1681565b61041461076f366004613027565b611325565b34801561078057600080fd5b5061041461078f366004612e75565b61157c565b3480156107a057600080fd5b506010546103699062010000900460ff1681565b3480156107c057600080fd5b506104146107cf366004612e29565b61158b565b3480156107e057600080fd5b506104146107ef366004612f51565b611604565b34801561080057600080fd5b5060105461036990640100000000900460ff1681565b34801561082257600080fd5b50610414610831366004612db0565b611648565b34801561084257600080fd5b50610399600c5481565b34801561085857600080fd5b50610333610867366004613027565b61167a565b34801561087857600080fd5b50610414610887366004612ec7565b611766565b34801561089857600080fd5b506104146108a7366004612f51565b611806565b3480156108b857600080fd5b506103696108c7366004612d43565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610414610903366004613027565b611843565b34801561091457600080fd5b50610333611b0e565b34801561092957600080fd5b50610414610938366004612d29565b611b1b565b34801561094957600080fd5b50610414610958366004612e9e565b611bb6565b34801561096957600080fd5b50610399610978366004612d29565b60136020526000908152604090205481565b600f8054610997906133a0565b80601f01602080910402602001604051908101604052809291908181526020018280546109c3906133a0565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b505050505081565b60006001600160e01b0319821663780e9d6360e01b1480610a3d5750610a3d82611c76565b92915050565b60156020528160005260406000208181548110610a5f57600080fd5b90600052602060002001600091509150505481565b606060008054610a83906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf906133a0565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bab82610fed565b9050806001600160a01b0316836001600160a01b03161415610c195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b7b565b336001600160a01b0382161480610c355750610c3581336108c7565b610ca75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b7b565b610cb18383611cc6565b505050565b610cc03382611d34565b610cdc5760405162461bcd60e51b8152600401610b7b90613235565b610cb1838383611e2b565b6000610cf283611081565b8210610d545760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b7b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610da75760405162461bcd60e51b8152600401610b7b90613200565b610daf611fd6565b565b600b546001600160a01b03163314610ddb5760405162461bcd60e51b8152600401610b7b90613200565b8251610dee90600e906020860190612b1f565b508151610e0290600d906020850190612b1f565b508051610e1690600f906020840190612b1f565b50505050565b610cb183838360405180602001604052806000815250611648565b600b546001600160a01b03163314610e615760405162461bcd60e51b8152600401610b7b90613200565b601080549115156401000000000264ff0000000019909216919091179055565b600b54600160a01b900460ff1615610eab5760405162461bcd60e51b8152600401610b7b906131d6565b6002600a541415610ece5760405162461bcd60e51b8152600401610b7b90613286565b6002600a5560005b33600090815260156020526040902054811015610f44573360008181526015602052604090208054610f3292919084908110610f2257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154612073565b80610f3c816133db565b915050610ed6565b506001600a55565b6000610f5760085490565b8210610fba5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b7b565b60088281548110610fdb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b7b565b600d8054610997906133a0565b61107e61132460c8613312565b81565b60006001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b7b565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146111325760405162461bcd60e51b8152600401610b7b90613200565b610daf600061208d565b600b546001600160a01b031633146111665760405162461bcd60e51b8152600401610b7b90613200565b610daf6120df565b600b546001600160a01b031633146111985760405162461bcd60e51b8152600401610b7b90613200565b80518251146111df5760405162461bcd60e51b81526020600482015260136024820152720c2e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b6044820152606401610b7b565b60005b8251811015610cb1576015600084838151811061120f57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002082828151811061125757634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518254600181018455600093845291909220015580611280816133db565b9150506111e2565b600b546001600160a01b031633146112b25760405162461bcd60e51b8152600401610b7b90613200565b6010805491151563010000000263ff00000019909216919091179055565b600b546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610b7b90613200565b60108054911515620100000262ff000019909216919091179055565b606060018054610a83906133a0565b600b54600160a01b900460ff161561134f5760405162461bcd60e51b8152600401610b7b906131d6565b6002600a5414156113725760405162461bcd60e51b8152600401610b7b90613286565b6002600a55601054640100000000900460ff1615156001146113c85760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610b7b565b336000908152601460205260409020546007906113e59083612144565b11156114335760405162461bcd60e51b815260206004820152601e60248201527f41626f7665204d61696e2053616c65205075726368617365204c696d697400006044820152606401610b7b565b600c54611324906114449083612144565b11156114925760405162461bcd60e51b815260206004820152601e60248201527f507572636861736520776f756c6420657863656564206d6178204e46547300006044820152606401610b7b565b346114a567011c37937e08000083612157565b146114e35760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610b7b565b60105460ff161515600114156114fc576114fc81612163565b60005b818110156115495761152633611521600c5460c861214490919063ffffffff16565b612403565b600c54611534906001612144565b600c5580611541816133db565b9150506114ff565b50336000908152601460205260409020546115649082612144565b33600090815260146020526040902055506001600a55565b611587338383612551565b5050565b600b546001600160a01b031633146115b55760405162461bcd60e51b8152600401610b7b90613200565b60005b8151811015610cb1576115f2838383815181106115e557634e487b7160e01b600052603260045260246000fd5b6020026020010151612073565b806115fc816133db565b9150506115b8565b600b546001600160a01b0316331461162e5760405162461bcd60e51b8152600401610b7b90613200565b601080549115156101000261ff0019909216919091179055565b6116523383611d34565b61166e5760405162461bcd60e51b8152600401610b7b90613235565b610e1684848484612620565b6000818152600260205260409020546060906001600160a01b03166116f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7b565b60105462010000900460ff1661173157600e60405160200161171b9190613103565b6040516020818303038152906040529050919050565b60c882101561175657600f61174583612653565b60405160200161171b92919061310f565b600d61174583612653565b919050565b600b546001600160a01b031633146117905760405162461bcd60e51b8152600401610b7b90613200565b60005b8151811015611587576001601260008484815181106117c257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117fe816133db565b915050611793565b600b546001600160a01b031633146118305760405162461bcd60e51b8152600401610b7b90613200565b6010805460ff1916911515919091179055565b600b54600160a01b900460ff161561186d5760405162461bcd60e51b8152600401610b7b906131d6565b6002600a5414156118905760405162461bcd60e51b8152600401610b7b90613286565b6002600a556010546301000000900460ff1615156001146118e85760405162461bcd60e51b815260206004820152601260248201527150726573616c65204e6f742041637469766560701b6044820152606401610b7b565b60105460ff6101009091041615156001141561195a573360009081526012602052604090205460ff16151560011461195a5760405162461bcd60e51b8152602060048201526015602482015274141c995cd85b19481058d8d95cdcc811195b9a5959605a1b6044820152606401610b7b565b336000908152601360205260409020546004906119779083612144565b11156119c55760405162461bcd60e51b815260206004820152601c60248201527f41626f76652050726573616c65205075726368617365204c696d6974000000006044820152606401610b7b565b600c54611324906119d69083612144565b1115611a245760405162461bcd60e51b815260206004820152601e60248201527f507572636861736520776f756c6420657863656564206d6178204e46547300006044820152606401610b7b565b34611a3767011c37937e08000083612157565b14611a755760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610b7b565b60105460ff16151560011415611a8e57611a8e81612163565b60005b81811015611adb57611ab833611ab3600c5460c861214490919063ffffffff16565b612073565b600c54611ac6906001612144565b600c5580611ad3816133db565b915050611a91565b5033600090815260136020526040902054611af69082612144565b33600090815260136020526040902055506001600a55565b600e8054610997906133a0565b600b546001600160a01b03163314611b455760405162461bcd60e51b8152600401610b7b90613200565b6001600160a01b038116611baa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7b565b611bb38161208d565b50565b600b546001600160a01b03163314611be05760405162461bcd60e51b8152600401610b7b90613200565b4781811015611c405760405162461bcd60e51b815260206004820152602660248201527f42616c616e63652073686f756c642061746c6561737420657175616c20746f20604482015265185b5bdd5b9d60d21b6064820152608401610b7b565b6040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015610e16573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b1480611ca757506001600160e01b03198216635b5e139f60e01b145b80610a3d57506301ffc9a760e01b6001600160e01b0319831614610a3d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cfb82610fed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611dad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b7b565b6000611db883610fed565b9050806001600160a01b0316846001600160a01b03161480611df35750836001600160a01b0316611de884610b06565b6001600160a01b0316145b80611e2357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e3e82610fed565b6001600160a01b031614611ea65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b7b565b6001600160a01b038216611f085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b7b565b611f1383838361276d565b611f1e600082611cc6565b6001600160a01b0383166000908152600360205260408120805460019290611f4790849061335d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f75908490613312565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b54600160a01b900460ff166120265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b7b565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611587828260405180602001604052806000815250612825565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600160a01b900460ff16156121095760405162461bcd60e51b8152600401610b7b906131d6565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120563390565b60006121508284613312565b9392505050565b6000612150828461333e565b611324600c541080156121855750600c54611324906121829083612144565b10155b1561220b57601054604051600160281b9091046001600160a01b03169060009067d02ab486cedc00009082818181858883f193505050501580156121cd573d6000803e3d6000fd5b506011546040516001600160a01b039091169060009067a688906bd8b000009082818181858883f19350505050158015611587573d6000803e3d6000fd5b610e5b600c5410801561222d5750600c54610e5b9061222a9083612144565b10155b156122b357601054604051600160281b9091046001600160a01b03169060009067a688906bd8b000009082818181858883f19350505050158015612275573d6000803e3d6000fd5b506011546040516001600160a01b0390911690600090676f05b59d3b2000009082818181858883f19350505050158015611587573d6000803e3d6000fd5b610992600c541080156122d55750600c54610992906122d29083612144565b10155b1561235b57601054604051600160281b9091046001600160a01b031690600090676f05b59d3b2000009082818181858883f1935050505015801561231d573d6000803e3d6000fd5b506011546040516001600160a01b03909116906000906753444835ec5800009082818181858883f19350505050158015611587573d6000803e3d6000fd5b6104c9600c5410801561237d5750600c546104c99061237a9083612144565b10155b15611bb357601054604051600160281b9091046001600160a01b031690600090674563918244f400009082818181858883f193505050501580156123c5573d6000803e3d6000fd5b506011546040516001600160a01b0390911690600090673782dace9d9000009082818181858883f19350505050158015611587573d6000803e3d6000fd5b6001600160a01b0382166124595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b7b565b6000818152600260205260409020546001600160a01b0316156124be5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b7b565b6124ca6000838361276d565b6001600160a01b03821660009081526003602052604081208054600192906124f3908490613312565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156125b35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b7b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61262b848484611e2b565b61263784848484612858565b610e165760405162461bcd60e51b8152600401610b7b90613184565b6060816126775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126a1578061268b816133db565b915061269a9050600a8361332a565b915061267b565b60008167ffffffffffffffff8111156126ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126f4576020820181803683370190505b5090505b8415611e235761270960018361335d565b9150612716600a866133f6565b612721906030613312565b60f81b81838151811061274457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612766600a8661332a565b94506126f8565b6001600160a01b0383166127c8576127c381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127eb565b816001600160a01b0316836001600160a01b0316146127eb576127eb8382612965565b6001600160a01b03821661280257610cb181612a02565b826001600160a01b0316826001600160a01b031614610cb157610cb18282612adb565b61282f8383612403565b61283c6000848484612858565b610cb15760405162461bcd60e51b8152600401610b7b90613184565b60006001600160a01b0384163b1561295a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061289c903390899088908890600401613134565b602060405180830381600087803b1580156128b657600080fd5b505af19250505080156128e6575060408051601f3d908101601f191682019092526128e391810190612f87565b60015b612940573d808015612914576040519150601f19603f3d011682016040523d82523d6000602084013e612919565b606091505b5080516129385760405162461bcd60e51b8152600401610b7b90613184565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e23565b506001949350505050565b6000600161297284611081565b61297c919061335d565b6000838152600760205260409020549091508082146129cf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a149060019061335d565b60008381526009602052604081205460088054939450909284908110612a4a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612a7957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612abf57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ae683611081565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b2b906133a0565b90600052602060002090601f016020900481019282612b4d5760008555612b93565b82601f10612b6657805160ff1916838001178555612b93565b82800160010185558215612b93579182015b82811115612b93578251825591602001919060010190612b78565b50612b9f929150612ba3565b5090565b5b80821115612b9f5760008155600101612ba4565b600067ffffffffffffffff831115612bd257612bd2613436565b612be5601f8401601f19166020016132bd565b9050828152838383011115612bf957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461176157600080fd5b600082601f830112612c37578081fd5b81356020612c4c612c47836132ee565b6132bd565b80838252828201915082860187848660051b8901011115612c6b578586fd5b855b85811015612c9057612c7e82612c10565b84529284019290840190600101612c6d565b5090979650505050505050565b600082601f830112612cad578081fd5b81356020612cbd612c47836132ee565b80838252828201915082860187848660051b8901011115612cdc578586fd5b855b85811015612c9057813584529284019290840190600101612cde565b8035801515811461176157600080fd5b600082601f830112612d1a578081fd5b61215083833560208501612bb8565b600060208284031215612d3a578081fd5b61215082612c10565b60008060408385031215612d55578081fd5b612d5e83612c10565b9150612d6c60208401612c10565b90509250929050565b600080600060608486031215612d89578081fd5b612d9284612c10565b9250612da060208501612c10565b9150604084013590509250925092565b60008060008060808587031215612dc5578081fd5b612dce85612c10565b9350612ddc60208601612c10565b925060408501359150606085013567ffffffffffffffff811115612dfe578182fd5b8501601f81018713612e0e578182fd5b612e1d87823560208401612bb8565b91505092959194509250565b60008060408385031215612e3b578182fd5b612e4483612c10565b9150602083013567ffffffffffffffff811115612e5f578182fd5b612e6b85828601612c9d565b9150509250929050565b60008060408385031215612e87578182fd5b612e9083612c10565b9150612d6c60208401612cfa565b60008060408385031215612eb0578182fd5b612eb983612c10565b946020939093013593505050565b600060208284031215612ed8578081fd5b813567ffffffffffffffff811115612eee578182fd5b611e2384828501612c27565b60008060408385031215612f0c578182fd5b823567ffffffffffffffff80821115612f23578384fd5b612f2f86838701612c27565b93506020850135915080821115612f44578283fd5b50612e6b85828601612c9d565b600060208284031215612f62578081fd5b61215082612cfa565b600060208284031215612f7c578081fd5b81356121508161344c565b600060208284031215612f98578081fd5b81516121508161344c565b600080600060608486031215612fb7578081fd5b833567ffffffffffffffff80821115612fce578283fd5b612fda87838801612d0a565b94506020860135915080821115612fef578283fd5b612ffb87838801612d0a565b93506040860135915080821115613010578283fd5b5061301d86828701612d0a565b9150509250925092565b600060208284031215613038578081fd5b5035919050565b60008151808452613057816020860160208601613374565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061308557607f831692505b60208084108214156130a557634e487b7160e01b86526022600452602486fd5b8180156130b957600181146130ca576130f7565b60ff198616895284890196506130f7565b60008881526020902060005b868110156130ef5781548b8201529085019083016130d6565b505084890196505b50505050505092915050565b6000612150828461306b565b600061311b828561306b565b835161312b818360208801613374565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131679083018461303f565b9695505050505050565b602081526000612150602083018461303f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156132e6576132e6613436565b604052919050565b600067ffffffffffffffff82111561330857613308613436565b5060051b60200190565b600082198211156133255761332561340a565b500190565b60008261333957613339613420565b500490565b60008160001904831182151516156133585761335861340a565b500290565b60008282101561336f5761336f61340a565b500390565b60005b8381101561338f578181015183820152602001613377565b83811115610e165750506000910152565b600181811c908216806133b457607f821691505b602082108114156133d557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133ef576133ef61340a565b5060010190565b60008261340557613405613420565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bb357600080fdfea26469706673582212205046ec4dc66364c3c75badb160d4dac3069ab202a5529e1a882b80bbc8c887f764736f6c63430008040033000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a900000000000000000000000057b792da7bbb991252bc21f0f2233efb4ef1ac19

Deployed Bytecode

0x6080604052600436106103195760003560e01c8063715018a6116101ab578063b2dbf058116100f7578063dd5c077c11610095578063eff955371161006f578063eff9553714610908578063f2fde38b1461091d578063f3fef3a31461093d578063f9765bc11461095d57600080fd5b8063dd5c077c1461088c578063e985e9c5146108ac578063e9e20616146108f557600080fd5b8063b88d4fde116100d1578063b88d4fde14610816578063b985add814610836578063c87b56dd1461084c578063d6021dd31461086c57600080fd5b8063b2dbf058146107b4578063b3026d0f146107d4578063b3b2cb7a146107f457600080fd5b8063934aa023116101645780639d044ed31161013e5780639d044ed314610740578063a0712d6814610761578063a22cb46514610774578063a475b5dd1461079457600080fd5b8063934aa023146106eb578063949028a71461070b57806395d89b411461072b57600080fd5b8063715018a61461064e5780638456cb5914610663578063881b884a146106785780638d007f69146106985780638da5cb5b146106ad578063926541aa146106cb57600080fd5b806340a4dddd1161026a5780635c975abb11610223578063676dd563116101fd578063676dd563146105e85780636c0360eb146106045780636fdaddf11461061957806370a082311461062e57600080fd5b80635c975abb1461059457806362d0f657146105b35780636352211e146105c857600080fd5b806340a4dddd146104d857806342842e0e146104f857806344910cf9146105185780634af9bc10146105385780634f6ccce71461054d57806358c12dbe1461056d57600080fd5b806318160ddd116102d757806323b872dd116102b157806323b872dd146104565780632f745c591461047657806333e275fb146104965780633f4ba83a146104c357600080fd5b806318160ddd1461041657806320000a2e1461042b5780632169fe2b1461044057600080fd5b80624cc2141461031e57806301ffc9a714610349578063050225ea1461037957806306fdde03146103a7578063081812fc146103bc578063095ea7b3146103f4575b600080fd5b34801561032a57600080fd5b5061033361098a565b6040516103409190613171565b60405180910390f35b34801561035557600080fd5b50610369610364366004612f6b565b610a18565b6040519015158152602001610340565b34801561038557600080fd5b50610399610394366004612e9e565b610a43565b604051908152602001610340565b3480156103b357600080fd5b50610333610a74565b3480156103c857600080fd5b506103dc6103d7366004613027565b610b06565b6040516001600160a01b039091168152602001610340565b34801561040057600080fd5b5061041461040f366004612e9e565b610ba0565b005b34801561042257600080fd5b50600854610399565b34801561043757600080fd5b50610399600781565b34801561044c57600080fd5b5061039961132481565b34801561046257600080fd5b50610414610471366004612d75565b610cb6565b34801561048257600080fd5b50610399610491366004612e9e565b610ce7565b3480156104a257600080fd5b506103996104b1366004612d29565b60146020526000908152604090205481565b3480156104cf57600080fd5b50610414610d7d565b3480156104e457600080fd5b506104146104f3366004612fa3565b610db1565b34801561050457600080fd5b50610414610513366004612d75565b610e1c565b34801561052457600080fd5b50610414610533366004612f51565b610e37565b34801561054457600080fd5b50610414610e81565b34801561055957600080fd5b50610399610568366004613027565b610f4c565b34801561057957600080fd5b506010546103dc90600160281b90046001600160a01b031681565b3480156105a057600080fd5b50600b54600160a01b900460ff16610369565b3480156105bf57600080fd5b50610399600481565b3480156105d457600080fd5b506103dc6105e3366004613027565b610fed565b3480156105f457600080fd5b5061039967011c37937e08000081565b34801561061057600080fd5b50610333611064565b34801561062557600080fd5b50610399611071565b34801561063a57600080fd5b50610399610649366004612d29565b611081565b34801561065a57600080fd5b50610414611108565b34801561066f57600080fd5b5061041461113c565b34801561068457600080fd5b50610414610693366004612efa565b61116e565b3480156106a457600080fd5b5061039960c881565b3480156106b957600080fd5b50600b546001600160a01b03166103dc565b3480156106d757600080fd5b506104146106e6366004612f51565b611288565b3480156106f757600080fd5b506011546103dc906001600160a01b031681565b34801561071757600080fd5b50610414610726366004612f51565b6112d0565b34801561073757600080fd5b50610333611316565b34801561074c57600080fd5b50601054610369906301000000900460ff1681565b61041461076f366004613027565b611325565b34801561078057600080fd5b5061041461078f366004612e75565b61157c565b3480156107a057600080fd5b506010546103699062010000900460ff1681565b3480156107c057600080fd5b506104146107cf366004612e29565b61158b565b3480156107e057600080fd5b506104146107ef366004612f51565b611604565b34801561080057600080fd5b5060105461036990640100000000900460ff1681565b34801561082257600080fd5b50610414610831366004612db0565b611648565b34801561084257600080fd5b50610399600c5481565b34801561085857600080fd5b50610333610867366004613027565b61167a565b34801561087857600080fd5b50610414610887366004612ec7565b611766565b34801561089857600080fd5b506104146108a7366004612f51565b611806565b3480156108b857600080fd5b506103696108c7366004612d43565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610414610903366004613027565b611843565b34801561091457600080fd5b50610333611b0e565b34801561092957600080fd5b50610414610938366004612d29565b611b1b565b34801561094957600080fd5b50610414610958366004612e9e565b611bb6565b34801561096957600080fd5b50610399610978366004612d29565b60136020526000908152604090205481565b600f8054610997906133a0565b80601f01602080910402602001604051908101604052809291908181526020018280546109c3906133a0565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b505050505081565b60006001600160e01b0319821663780e9d6360e01b1480610a3d5750610a3d82611c76565b92915050565b60156020528160005260406000208181548110610a5f57600080fd5b90600052602060002001600091509150505481565b606060008054610a83906133a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf906133a0565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bab82610fed565b9050806001600160a01b0316836001600160a01b03161415610c195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b7b565b336001600160a01b0382161480610c355750610c3581336108c7565b610ca75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b7b565b610cb18383611cc6565b505050565b610cc03382611d34565b610cdc5760405162461bcd60e51b8152600401610b7b90613235565b610cb1838383611e2b565b6000610cf283611081565b8210610d545760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b7b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610da75760405162461bcd60e51b8152600401610b7b90613200565b610daf611fd6565b565b600b546001600160a01b03163314610ddb5760405162461bcd60e51b8152600401610b7b90613200565b8251610dee90600e906020860190612b1f565b508151610e0290600d906020850190612b1f565b508051610e1690600f906020840190612b1f565b50505050565b610cb183838360405180602001604052806000815250611648565b600b546001600160a01b03163314610e615760405162461bcd60e51b8152600401610b7b90613200565b601080549115156401000000000264ff0000000019909216919091179055565b600b54600160a01b900460ff1615610eab5760405162461bcd60e51b8152600401610b7b906131d6565b6002600a541415610ece5760405162461bcd60e51b8152600401610b7b90613286565b6002600a5560005b33600090815260156020526040902054811015610f44573360008181526015602052604090208054610f3292919084908110610f2257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154612073565b80610f3c816133db565b915050610ed6565b506001600a55565b6000610f5760085490565b8210610fba5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b7b565b60088281548110610fdb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b7b565b600d8054610997906133a0565b61107e61132460c8613312565b81565b60006001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b7b565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146111325760405162461bcd60e51b8152600401610b7b90613200565b610daf600061208d565b600b546001600160a01b031633146111665760405162461bcd60e51b8152600401610b7b90613200565b610daf6120df565b600b546001600160a01b031633146111985760405162461bcd60e51b8152600401610b7b90613200565b80518251146111df5760405162461bcd60e51b81526020600482015260136024820152720c2e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b6044820152606401610b7b565b60005b8251811015610cb1576015600084838151811061120f57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002082828151811061125757634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518254600181018455600093845291909220015580611280816133db565b9150506111e2565b600b546001600160a01b031633146112b25760405162461bcd60e51b8152600401610b7b90613200565b6010805491151563010000000263ff00000019909216919091179055565b600b546001600160a01b031633146112fa5760405162461bcd60e51b8152600401610b7b90613200565b60108054911515620100000262ff000019909216919091179055565b606060018054610a83906133a0565b600b54600160a01b900460ff161561134f5760405162461bcd60e51b8152600401610b7b906131d6565b6002600a5414156113725760405162461bcd60e51b8152600401610b7b90613286565b6002600a55601054640100000000900460ff1615156001146113c85760405162461bcd60e51b815260206004820152600f60248201526e53616c65204e6f742041637469766560881b6044820152606401610b7b565b336000908152601460205260409020546007906113e59083612144565b11156114335760405162461bcd60e51b815260206004820152601e60248201527f41626f7665204d61696e2053616c65205075726368617365204c696d697400006044820152606401610b7b565b600c54611324906114449083612144565b11156114925760405162461bcd60e51b815260206004820152601e60248201527f507572636861736520776f756c6420657863656564206d6178204e46547300006044820152606401610b7b565b346114a567011c37937e08000083612157565b146114e35760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610b7b565b60105460ff161515600114156114fc576114fc81612163565b60005b818110156115495761152633611521600c5460c861214490919063ffffffff16565b612403565b600c54611534906001612144565b600c5580611541816133db565b9150506114ff565b50336000908152601460205260409020546115649082612144565b33600090815260146020526040902055506001600a55565b611587338383612551565b5050565b600b546001600160a01b031633146115b55760405162461bcd60e51b8152600401610b7b90613200565b60005b8151811015610cb1576115f2838383815181106115e557634e487b7160e01b600052603260045260246000fd5b6020026020010151612073565b806115fc816133db565b9150506115b8565b600b546001600160a01b0316331461162e5760405162461bcd60e51b8152600401610b7b90613200565b601080549115156101000261ff0019909216919091179055565b6116523383611d34565b61166e5760405162461bcd60e51b8152600401610b7b90613235565b610e1684848484612620565b6000818152600260205260409020546060906001600160a01b03166116f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7b565b60105462010000900460ff1661173157600e60405160200161171b9190613103565b6040516020818303038152906040529050919050565b60c882101561175657600f61174583612653565b60405160200161171b92919061310f565b600d61174583612653565b919050565b600b546001600160a01b031633146117905760405162461bcd60e51b8152600401610b7b90613200565b60005b8151811015611587576001601260008484815181106117c257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117fe816133db565b915050611793565b600b546001600160a01b031633146118305760405162461bcd60e51b8152600401610b7b90613200565b6010805460ff1916911515919091179055565b600b54600160a01b900460ff161561186d5760405162461bcd60e51b8152600401610b7b906131d6565b6002600a5414156118905760405162461bcd60e51b8152600401610b7b90613286565b6002600a556010546301000000900460ff1615156001146118e85760405162461bcd60e51b815260206004820152601260248201527150726573616c65204e6f742041637469766560701b6044820152606401610b7b565b60105460ff6101009091041615156001141561195a573360009081526012602052604090205460ff16151560011461195a5760405162461bcd60e51b8152602060048201526015602482015274141c995cd85b19481058d8d95cdcc811195b9a5959605a1b6044820152606401610b7b565b336000908152601360205260409020546004906119779083612144565b11156119c55760405162461bcd60e51b815260206004820152601c60248201527f41626f76652050726573616c65205075726368617365204c696d6974000000006044820152606401610b7b565b600c54611324906119d69083612144565b1115611a245760405162461bcd60e51b815260206004820152601e60248201527f507572636861736520776f756c6420657863656564206d6178204e46547300006044820152606401610b7b565b34611a3767011c37937e08000083612157565b14611a755760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610b7b565b60105460ff16151560011415611a8e57611a8e81612163565b60005b81811015611adb57611ab833611ab3600c5460c861214490919063ffffffff16565b612073565b600c54611ac6906001612144565b600c5580611ad3816133db565b915050611a91565b5033600090815260136020526040902054611af69082612144565b33600090815260136020526040902055506001600a55565b600e8054610997906133a0565b600b546001600160a01b03163314611b455760405162461bcd60e51b8152600401610b7b90613200565b6001600160a01b038116611baa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7b565b611bb38161208d565b50565b600b546001600160a01b03163314611be05760405162461bcd60e51b8152600401610b7b90613200565b4781811015611c405760405162461bcd60e51b815260206004820152602660248201527f42616c616e63652073686f756c642061746c6561737420657175616c20746f20604482015265185b5bdd5b9d60d21b6064820152608401610b7b565b6040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015610e16573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b1480611ca757506001600160e01b03198216635b5e139f60e01b145b80610a3d57506301ffc9a760e01b6001600160e01b0319831614610a3d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cfb82610fed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611dad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b7b565b6000611db883610fed565b9050806001600160a01b0316846001600160a01b03161480611df35750836001600160a01b0316611de884610b06565b6001600160a01b0316145b80611e2357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e3e82610fed565b6001600160a01b031614611ea65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b7b565b6001600160a01b038216611f085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b7b565b611f1383838361276d565b611f1e600082611cc6565b6001600160a01b0383166000908152600360205260408120805460019290611f4790849061335d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f75908490613312565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b54600160a01b900460ff166120265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b7b565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611587828260405180602001604052806000815250612825565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600160a01b900460ff16156121095760405162461bcd60e51b8152600401610b7b906131d6565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120563390565b60006121508284613312565b9392505050565b6000612150828461333e565b611324600c541080156121855750600c54611324906121829083612144565b10155b1561220b57601054604051600160281b9091046001600160a01b03169060009067d02ab486cedc00009082818181858883f193505050501580156121cd573d6000803e3d6000fd5b506011546040516001600160a01b039091169060009067a688906bd8b000009082818181858883f19350505050158015611587573d6000803e3d6000fd5b610e5b600c5410801561222d5750600c54610e5b9061222a9083612144565b10155b156122b357601054604051600160281b9091046001600160a01b03169060009067a688906bd8b000009082818181858883f19350505050158015612275573d6000803e3d6000fd5b506011546040516001600160a01b0390911690600090676f05b59d3b2000009082818181858883f19350505050158015611587573d6000803e3d6000fd5b610992600c541080156122d55750600c54610992906122d29083612144565b10155b1561235b57601054604051600160281b9091046001600160a01b031690600090676f05b59d3b2000009082818181858883f1935050505015801561231d573d6000803e3d6000fd5b506011546040516001600160a01b03909116906000906753444835ec5800009082818181858883f19350505050158015611587573d6000803e3d6000fd5b6104c9600c5410801561237d5750600c546104c99061237a9083612144565b10155b15611bb357601054604051600160281b9091046001600160a01b031690600090674563918244f400009082818181858883f193505050501580156123c5573d6000803e3d6000fd5b506011546040516001600160a01b0390911690600090673782dace9d9000009082818181858883f19350505050158015611587573d6000803e3d6000fd5b6001600160a01b0382166124595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b7b565b6000818152600260205260409020546001600160a01b0316156124be5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b7b565b6124ca6000838361276d565b6001600160a01b03821660009081526003602052604081208054600192906124f3908490613312565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156125b35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b7b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61262b848484611e2b565b61263784848484612858565b610e165760405162461bcd60e51b8152600401610b7b90613184565b6060816126775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126a1578061268b816133db565b915061269a9050600a8361332a565b915061267b565b60008167ffffffffffffffff8111156126ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126f4576020820181803683370190505b5090505b8415611e235761270960018361335d565b9150612716600a866133f6565b612721906030613312565b60f81b81838151811061274457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612766600a8661332a565b94506126f8565b6001600160a01b0383166127c8576127c381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127eb565b816001600160a01b0316836001600160a01b0316146127eb576127eb8382612965565b6001600160a01b03821661280257610cb181612a02565b826001600160a01b0316826001600160a01b031614610cb157610cb18282612adb565b61282f8383612403565b61283c6000848484612858565b610cb15760405162461bcd60e51b8152600401610b7b90613184565b60006001600160a01b0384163b1561295a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061289c903390899088908890600401613134565b602060405180830381600087803b1580156128b657600080fd5b505af19250505080156128e6575060408051601f3d908101601f191682019092526128e391810190612f87565b60015b612940573d808015612914576040519150601f19603f3d011682016040523d82523d6000602084013e612919565b606091505b5080516129385760405162461bcd60e51b8152600401610b7b90613184565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e23565b506001949350505050565b6000600161297284611081565b61297c919061335d565b6000838152600760205260409020549091508082146129cf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a149060019061335d565b60008381526009602052604081205460088054939450909284908110612a4a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612a7957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612abf57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ae683611081565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b2b906133a0565b90600052602060002090601f016020900481019282612b4d5760008555612b93565b82601f10612b6657805160ff1916838001178555612b93565b82800160010185558215612b93579182015b82811115612b93578251825591602001919060010190612b78565b50612b9f929150612ba3565b5090565b5b80821115612b9f5760008155600101612ba4565b600067ffffffffffffffff831115612bd257612bd2613436565b612be5601f8401601f19166020016132bd565b9050828152838383011115612bf957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461176157600080fd5b600082601f830112612c37578081fd5b81356020612c4c612c47836132ee565b6132bd565b80838252828201915082860187848660051b8901011115612c6b578586fd5b855b85811015612c9057612c7e82612c10565b84529284019290840190600101612c6d565b5090979650505050505050565b600082601f830112612cad578081fd5b81356020612cbd612c47836132ee565b80838252828201915082860187848660051b8901011115612cdc578586fd5b855b85811015612c9057813584529284019290840190600101612cde565b8035801515811461176157600080fd5b600082601f830112612d1a578081fd5b61215083833560208501612bb8565b600060208284031215612d3a578081fd5b61215082612c10565b60008060408385031215612d55578081fd5b612d5e83612c10565b9150612d6c60208401612c10565b90509250929050565b600080600060608486031215612d89578081fd5b612d9284612c10565b9250612da060208501612c10565b9150604084013590509250925092565b60008060008060808587031215612dc5578081fd5b612dce85612c10565b9350612ddc60208601612c10565b925060408501359150606085013567ffffffffffffffff811115612dfe578182fd5b8501601f81018713612e0e578182fd5b612e1d87823560208401612bb8565b91505092959194509250565b60008060408385031215612e3b578182fd5b612e4483612c10565b9150602083013567ffffffffffffffff811115612e5f578182fd5b612e6b85828601612c9d565b9150509250929050565b60008060408385031215612e87578182fd5b612e9083612c10565b9150612d6c60208401612cfa565b60008060408385031215612eb0578182fd5b612eb983612c10565b946020939093013593505050565b600060208284031215612ed8578081fd5b813567ffffffffffffffff811115612eee578182fd5b611e2384828501612c27565b60008060408385031215612f0c578182fd5b823567ffffffffffffffff80821115612f23578384fd5b612f2f86838701612c27565b93506020850135915080821115612f44578283fd5b50612e6b85828601612c9d565b600060208284031215612f62578081fd5b61215082612cfa565b600060208284031215612f7c578081fd5b81356121508161344c565b600060208284031215612f98578081fd5b81516121508161344c565b600080600060608486031215612fb7578081fd5b833567ffffffffffffffff80821115612fce578283fd5b612fda87838801612d0a565b94506020860135915080821115612fef578283fd5b612ffb87838801612d0a565b93506040860135915080821115613010578283fd5b5061301d86828701612d0a565b9150509250925092565b600060208284031215613038578081fd5b5035919050565b60008151808452613057816020860160208601613374565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061308557607f831692505b60208084108214156130a557634e487b7160e01b86526022600452602486fd5b8180156130b957600181146130ca576130f7565b60ff198616895284890196506130f7565b60008881526020902060005b868110156130ef5781548b8201529085019083016130d6565b505084890196505b50505050505092915050565b6000612150828461306b565b600061311b828561306b565b835161312b818360208801613374565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131679083018461303f565b9695505050505050565b602081526000612150602083018461303f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156132e6576132e6613436565b604052919050565b600067ffffffffffffffff82111561330857613308613436565b5060051b60200190565b600082198211156133255761332561340a565b500190565b60008261333957613339613420565b500490565b60008160001904831182151516156133585761335861340a565b500290565b60008282101561336f5761336f61340a565b500390565b60005b8381101561338f578181015183820152602001613377565b83811115610e165750506000910152565b600181811c908216806133b457607f821691505b602082108114156133d557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133ef576133ef61340a565b5060010190565b60008261340557613405613420565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bb357600080fdfea26469706673582212205046ec4dc66364c3c75badb160d4dac3069ab202a5529e1a882b80bbc8c887f764736f6c63430008040033

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

000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a900000000000000000000000057b792da7bbb991252bc21f0f2233efb4ef1ac19

-----Decoded View---------------
Arg [0] : _communityTreasury (address): 0xF57Ce00efFD8eceB57Ce9398edFe4815978709A9
Arg [1] : _charity (address): 0x57b792da7bbb991252Bc21f0f2233EFB4EF1AC19

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f57ce00effd8eceb57ce9398edfe4815978709a9
Arg [1] : 00000000000000000000000057b792da7bbb991252bc21f0f2233efb4ef1ac19


Deployed Bytecode Sourcemap

56794:7413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57375:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35905:224;;;;;;;;;;-1:-1:-1;35905:224:0;;;;;:::i;:::-;;:::i;:::-;;;10309:14:1;;10302:22;10284:41;;10272:2;10257:18;35905:224:0;10239:92:1;57783:45:0;;;;;;;;;;-1:-1:-1;57783:45:0;;;;;:::i;:::-;;:::i;:::-;;;22181:25:1;;;22169:2;22154:18;57783:45:0;22136:76:1;22314:100:0;;;;;;;;;;;;;:::i;23873:221::-;;;;;;;;;;-1:-1:-1;23873:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9607:32:1;;;9589:51;;9577:2;9562:18;23873:221:0;9544:102:1;23396:411:0;;;;;;;;;;-1:-1:-1;23396:411:0;;;;;:::i;:::-;;:::i;:::-;;36545:113;;;;;;;;;;-1:-1:-1;36633:10:0;:17;36545:113;;57217:51;;;;;;;;;;;;57267:1;57217:51;;56992:41;;;;;;;;;;;;57029:4;56992:41;;24623:339;;;;;;;;;;-1:-1:-1;24623:339:0;;;;;:::i;:::-;;:::i;36213:256::-;;;;;;;;;;-1:-1:-1;36213:256:0;;;;;:::i;:::-;;:::i;57726:50::-;;;;;;;;;;-1:-1:-1;57726:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;64137:67;;;;;;;;;;;;;:::i;59460:207::-;;;;;;;;;;-1:-1:-1;59460:207:0;;;;;:::i;:::-;;:::i;25033:185::-;;;;;;;;;;-1:-1:-1;25033:185:0;;;;;:::i;:::-;;:::i;58203:108::-;;;;;;;;;;-1:-1:-1;58203:108:0;;;;;:::i;:::-;;:::i;61984:207::-;;;;;;;;;;;;;:::i;36735:233::-;;;;;;;;;;-1:-1:-1;36735:233:0;;;;;:::i;:::-;;:::i;57553:32::-;;;;;;;;;;-1:-1:-1;57553:32:0;;;;-1:-1:-1;;;57553:32:0;;-1:-1:-1;;;;;57553:32:0;;;52762:86;;;;;;;;;;-1:-1:-1;52833:7:0;;-1:-1:-1;;;52833:7:0;;;;52762:86;;57160:50;;;;;;;;;;;;57209:1;57160:50;;22008:239;;;;;;;;;;-1:-1:-1;22008:239:0;;;;;:::i;:::-;;:::i;57105:46::-;;;;;;;;;;;;57141:10;57105:46;;57318:21;;;;;;;;;;;;;:::i;57040:58::-;;;;;;;;;;;;;:::i;21738:208::-;;;;;;;;;;-1:-1:-1;21738:208:0;;;;;:::i;:::-;;:::i;50807:103::-;;;;;;;;;;;;;:::i;64037:63::-;;;;;;;;;;;;;:::i;59117:288::-;;;;;;;;;;-1:-1:-1;59117:288:0;;;;;:::i;:::-;;:::i;56944:41::-;;;;;;;;;;;;56982:3;56944:41;;50156:87;;;;;;;;;;-1:-1:-1;50229:6:0;;-1:-1:-1;;;;;50229:6:0;50156:87;;58053:106;;;;;;;;;;-1:-1:-1;58053:106:0;;;;;:::i;:::-;;:::i;57592:22::-;;;;;;;;;;-1:-1:-1;57592:22:0;;;;-1:-1:-1;;;;;57592:22:0;;;58359:96;;;;;;;;;;-1:-1:-1;58359:96:0;;;;;:::i;:::-;;:::i;22483:104::-;;;;;;;;;;;;;:::i;57482:27::-;;;;;;;;;;-1:-1:-1;57482:27:0;;;;;;;;;;;61097:844;;;;;;:::i;:::-;;:::i;24166:155::-;;;;;;;;;;-1:-1:-1;24166:155:0;;;;;:::i;:::-;;:::i;57457:18::-;;;;;;;;;;-1:-1:-1;57457:18:0;;;;;;;;;;;62234:200;;;;;;;;;;-1:-1:-1;62234:200:0;;;;;:::i;:::-;;:::i;58506:105::-;;;;;;;;;;-1:-1:-1;58506:105:0;;;;;:::i;:::-;;:::i;57516:28::-;;;;;;;;;;-1:-1:-1;57516:28:0;;;;;;;;;;;25289:328;;;;;;;;;;-1:-1:-1;25289:328:0;;;;;:::i;:::-;;:::i;57277:32::-;;;;;;;;;;;;;;;;62498:537;;;;;;;;;;-1:-1:-1;62498:537:0;;;;;:::i;:::-;;:::i;58836:203::-;;;;;;;;;;-1:-1:-1;58836:203:0;;;;;:::i;:::-;;:::i;58659:94::-;;;;;;;;;;-1:-1:-1;58659:94:0;;;;;:::i;:::-;;:::i;24392:164::-;;;;;;;;;;-1:-1:-1;24392:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24513:25:0;;;24489:4;24513:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24392:164;60055:977;;;;;;:::i;:::-;;:::i;57346:22::-;;;;;;;;;;;;;:::i;51065:201::-;;;;;;;;;;-1:-1:-1;51065:201:0;;;;;:::i;:::-;;:::i;59748:246::-;;;;;;;;;;-1:-1:-1;59748:246:0;;;;;:::i;:::-;;:::i;57670:49::-;;;;;;;;;;-1:-1:-1;57670:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;57375:24;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35905:224::-;36007:4;-1:-1:-1;;;;;;36031:50:0;;-1:-1:-1;;;36031:50:0;;:90;;;36085:36;36109:11;36085:23;:36::i;:::-;36024:97;35905:224;-1:-1:-1;;35905:224:0:o;57783:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22314:100::-;22368:13;22401:5;22394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22314:100;:::o;23873:221::-;23949:7;27216:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27216:16:0;23969:73;;;;-1:-1:-1;;;23969:73:0;;17932:2:1;23969:73:0;;;17914:21:1;17971:2;17951:18;;;17944:30;18010:34;17990:18;;;17983:62;-1:-1:-1;;;18061:18:1;;;18054:42;18113:19;;23969:73:0;;;;;;;;;-1:-1:-1;24062:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24062:24:0;;23873:221::o;23396:411::-;23477:13;23493:23;23508:7;23493:14;:23::i;:::-;23477:39;;23541:5;-1:-1:-1;;;;;23535:11:0;:2;-1:-1:-1;;;;;23535:11:0;;;23527:57;;;;-1:-1:-1;;;23527:57:0;;19889:2:1;23527:57:0;;;19871:21:1;19928:2;19908:18;;;19901:30;19967:34;19947:18;;;19940:62;-1:-1:-1;;;20018:18:1;;;20011:31;20059:19;;23527:57:0;19861:223:1;23527:57:0;16670:10;-1:-1:-1;;;;;23619:21:0;;;;:62;;-1:-1:-1;23644:37:0;23661:5;16670:10;24392:164;:::i;23644:37::-;23597:168;;;;-1:-1:-1;;;23597:168:0;;15975:2:1;23597:168:0;;;15957:21:1;16014:2;15994:18;;;15987:30;16053:34;16033:18;;;16026:62;16124:26;16104:18;;;16097:54;16168:19;;23597:168:0;15947:246:1;23597:168:0;23778:21;23787:2;23791:7;23778:8;:21::i;:::-;23396:411;;;:::o;24623:339::-;24818:41;16670:10;24851:7;24818:18;:41::i;:::-;24810:103;;;;-1:-1:-1;;;24810:103:0;;;;;;;:::i;:::-;24926:28;24936:4;24942:2;24946:7;24926:9;:28::i;36213:256::-;36310:7;36346:23;36363:5;36346:16;:23::i;:::-;36338:5;:31;36330:87;;;;-1:-1:-1;;;36330:87:0;;11111:2:1;36330:87:0;;;11093:21:1;11150:2;11130:18;;;11123:30;11189:34;11169:18;;;11162:62;-1:-1:-1;;;11240:18:1;;;11233:41;11291:19;;36330:87:0;11083:233:1;36330:87:0;-1:-1:-1;;;;;;36435:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36213:256::o;64137:67::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;64186:10:::1;:8;:10::i;:::-;64137:67::o:0;59460:207::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;59579:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;59610:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;59635:24:0;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59460:207:::0;;;:::o;25033:185::-;25171:39;25188:4;25194:2;25198:7;25171:39;;;;;;;;;;;;:16;:39::i;58203:108::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;58277:16:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58277:26:0;;::::1;::::0;;;::::1;::::0;;58203:108::o;61984:207::-;52833:7;;-1:-1:-1;;;52833:7:0;;;;53087:9;53079:38;;;;-1:-1:-1;;;53079:38:0;;;;;;;:::i;:::-;55768:1:::1;56366:7;;:19;;56358:63;;;;-1:-1:-1::0;;;56358:63:0::1;;;;;;;:::i;:::-;55768:1;56499:7;:18:::0;62060:9:::2;62056:128;62086:10;62077:20;::::0;;;:8:::2;:20;::::0;;;;:27;62073:31;::::2;62056:128;;;62136:10;62148:20;::::0;;;:8:::2;:20;::::0;;;;:23;;62126:46:::2;::::0;62136:10;62148:20;62169:1;;62148:23;::::2;;;-1:-1:-1::0;;;62148:23:0::2;;;;;;;;;;;;;;;;;62126:9;:46::i;:::-;62106:3:::0;::::2;::::0;::::2;:::i;:::-;;;;62056:128;;;-1:-1:-1::0;55724:1:0::1;56678:7;:22:::0;61984:207::o;36735:233::-;36810:7;36846:30;36633:10;:17;;36545:113;36846:30;36838:5;:38;36830:95;;;;-1:-1:-1;;;36830:95:0;;20709:2:1;36830:95:0;;;20691:21:1;20748:2;20728:18;;;20721:30;20787:34;20767:18;;;20760:62;-1:-1:-1;;;20838:18:1;;;20831:42;20890:19;;36830:95:0;20681:234:1;36830:95:0;36943:10;36954:5;36943:17;;;;;;-1:-1:-1;;;36943:17:0;;;;;;;;;;;;;;;;;36936:24;;36735:233;;;:::o;22008:239::-;22080:7;22116:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22116:16:0;22151:19;22143:73;;;;-1:-1:-1;;;22143:73:0;;16811:2:1;22143:73:0;;;16793:21:1;16850:2;16830:18;;;16823:30;16889:34;16869:18;;;16862:62;-1:-1:-1;;;16940:18:1;;;16933:39;16989:19;;22143:73:0;16783:231:1;57318:21:0;;;;;;;:::i;57040:58::-;57074:24;57029:4;56982:3;57074:24;:::i;:::-;57040:58;:::o;21738:208::-;21810:7;-1:-1:-1;;;;;21838:19:0;;21830:74;;;;-1:-1:-1;;;21830:74:0;;16400:2:1;21830:74:0;;;16382:21:1;16439:2;16419:18;;;16412:30;16478:34;16458:18;;;16451:62;-1:-1:-1;;;16529:18:1;;;16522:40;16579:19;;21830:74:0;16372:232:1;21830:74:0;-1:-1:-1;;;;;;21922:16:0;;;;;:9;:16;;;;;;;21738:208::o;50807:103::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;50872:30:::1;50899:1;50872:18;:30::i;64037:63::-:0;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;64084:8:::1;:6;:8::i;59117:288::-:0;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;59245:9:::1;:16;59231:3;:10;:30;59223:62;;;::::0;-1:-1:-1;;;59223:62:0;;21122:2:1;59223:62:0::1;::::0;::::1;21104:21:1::0;21161:2;21141:18;;;21134:30;-1:-1:-1;;;21180:18:1;;;21173:49;21239:18;;59223:62:0::1;21094:169:1::0;59223:62:0::1;59300:9;59296:102;59319:3;:10;59315:1;:14;59296:102;;;59351:8;:16;59360:3;59364:1;59360:6;;;;;;-1:-1:-1::0;;;59360:6:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;59351:16:0::1;-1:-1:-1::0;;;;;59351:16:0::1;;;;;;;;;;;;59373:9;59383:1;59373:12;;;;;;-1:-1:-1::0;;;59373:12:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;59351:35;;::::1;::::0;::::1;::::0;;-1:-1:-1;59351:35:0;;;;;;;::::1;::::0;59331:3;::::1;::::0;::::1;:::i;:::-;;;;59296:102;;58053:106:::0;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;58126:15:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58126:25:0;;::::1;::::0;;;::::1;::::0;;58053:106::o;58359:96::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;58431:6:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58431:16:0;;::::1;::::0;;;::::1;::::0;;58359:96::o;22483:104::-;22539:13;22572:7;22565:14;;;;;:::i;61097:844::-;52833:7;;-1:-1:-1;;;52833:7:0;;;;53087:9;53079:38;;;;-1:-1:-1;;;53079:38:0;;;;;;;:::i;:::-;55768:1:::1;56366:7;;:19;;56358:63;;;;-1:-1:-1::0;;;56358:63:0::1;;;;;;;:::i;:::-;55768:1;56499:7;:18:::0;61194:16:::2;::::0;;;::::2;;;:22;;61212:4;61194:22;61186:50;;;::::0;-1:-1:-1;;;61186:50:0;;12349:2:1;61186:50:0::2;::::0;::::2;12331:21:1::0;12388:2;12368:18;;;12361:30;-1:-1:-1;;;12407:18:1;;;12400:45;12462:18;;61186:50:0::2;12321:165:1::0;61186:50:0::2;61271:10;61255:27;::::0;;;:15:::2;:27;::::0;;;;;57267:1:::2;::::0;61255:45:::2;::::0;61287:12;61255:31:::2;:45::i;:::-;:72;;61247:129;;;::::0;-1:-1:-1;;;61247:129:0;;14565:2:1;61247:129:0::2;::::0;::::2;14547:21:1::0;14604:2;14584:18;;;14577:30;14643:32;14623:18;;;14616:60;14693:18;;61247:129:0::2;14537:180:1::0;61247:129:0::2;61395:17;::::0;57029:4:::2;::::0;61395:35:::2;::::0;61417:12;61395:21:::2;:35::i;:::-;:49;;61387:92;;;::::0;-1:-1:-1;;;61387:92:0;;15616:2:1;61387:92:0::2;::::0;::::2;15598:21:1::0;15655:2;15635:18;;;15628:30;15694:32;15674:18;;;15667:60;15744:18;;61387:92:0::2;15588:180:1::0;61387:92:0::2;61529:9;61498:27;57141:10;61512:12:::0;61498:13:::2;:27::i;:::-;:40;61490:67;;;::::0;-1:-1:-1;;;61490:67:0;;13050:2:1;61490:67:0::2;::::0;::::2;13032:21:1::0;13089:2;13069:18;;;13062:30;-1:-1:-1;;;13108:18:1;;;13101:44;13162:18;;61490:67:0::2;13022:164:1::0;61490:67:0::2;61581:6;::::0;::::2;;:12;;:6:::0;:12:::2;61578:75;;;61610:31;61628:12;61610:17;:31::i;:::-;61669:9;61665:181;61688:12;61684:1;:16;61665:181;;;61722:53;61728:10;61740:34;61756:17;;56982:3;61740:15;;:34;;;;:::i;:::-;61722:5;:53::i;:::-;61810:17;::::0;:24:::2;::::0;61832:1:::2;61810:21;:24::i;:::-;61790:17;:44:::0;61702:3;::::2;::::0;::::2;:::i;:::-;;;;61665:181;;;-1:-1:-1::0;61904:10:0::2;61888:27;::::0;;;:15:::2;:27;::::0;;;;;:45:::2;::::0;61920:12;61888:31:::2;:45::i;:::-;61874:10;61858:27;::::0;;;:15:::2;:27;::::0;;;;:75;-1:-1:-1;55724:1:0::1;56678:7;:22:::0;61097:844::o;24166:155::-;24261:52;16670:10;24294:8;24304;24261:18;:52::i;:::-;24166:155;;:::o;62234:200::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;62332:9:::1;62328:99;62349:9;:16;62345:1;:20;62328:99;;;62387:28;62397:3;62402:9;62412:1;62402:12;;;;;;-1:-1:-1::0;;;62402:12:0::1;;;;;;;;;;;;;;;62387:9;:28::i;:::-;62367:3:::0;::::1;::::0;::::1;:::i;:::-;;;;62328:99;;58506:105:::0;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;58579:14:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;58579:24:0;;::::1;::::0;;;::::1;::::0;;58506:105::o;25289:328::-;25464:41;16670:10;25497:7;25464:18;:41::i;:::-;25456:103;;;;-1:-1:-1;;;25456:103:0;;;;;;;:::i;:::-;25570:39;25584:4;25590:2;25594:7;25603:5;25570:13;:39::i;62498:537::-;27192:4;27216:16;;;:7;:16;;;;;;62572:13;;-1:-1:-1;;;;;27216:16:0;62598:77;;;;-1:-1:-1;;;62598:77:0;;19473:2:1;62598:77:0;;;19455:21:1;19512:2;19492:18;;;19485:30;19551:34;19531:18;;;19524:62;-1:-1:-1;;;19602:18:1;;;19595:45;19657:19;;62598:77:0;19445:237:1;62598:77:0;62691:6;;;;;;;62686:342;;62745:8;62728:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;62714:41;;62498:537;;;:::o;62686:342::-;56982:3;62792:8;:22;62788:229;;;62866:10;62878:19;:8;:17;:19::i;:::-;62849:49;;;;;;;;;:::i;62788:229::-;62971:7;62980:19;:8;:17;:19::i;62788:229::-;62498:537;;;:::o;58836:203::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;58927:9:::1;58922:110;58946:10;:17;58942:1;:21;58922:110;;;59016:4;58985:13;:28;58999:10;59010:1;58999:13;;;;;;-1:-1:-1::0;;;58999:13:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;58985:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;58985:28:0;:35;;-1:-1:-1;;58985:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58965:3;::::1;::::0;::::1;:::i;:::-;;;;58922:110;;58659:94:::0;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;58729:6:::1;:16:::0;;-1:-1:-1;;58729:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58659:94::o;60055:977::-;52833:7;;-1:-1:-1;;;52833:7:0;;;;53087:9;53079:38;;;;-1:-1:-1;;;53079:38:0;;;;;;;:::i;:::-;55768:1:::1;56366:7;;:19;;56358:63;;;;-1:-1:-1::0;;;56358:63:0::1;;;;;;;:::i;:::-;55768:1;56499:7;:18:::0;60165:15:::2;::::0;;;::::2;;;:21;;60182:4;60165:21;60157:52;;;::::0;-1:-1:-1;;;60157:52:0;;15269:2:1;60157:52:0::2;::::0;::::2;15251:21:1::0;15308:2;15288:18;;;15281:30;-1:-1:-1;;;15327:18:1;;;15320:48;15385:18;;60157:52:0::2;15241:168:1::0;60157:52:0::2;60223:14;::::0;::::2;;::::0;;::::2;;:20;;:14;:20;60220:119;;;60282:10;60268:25;::::0;;;:13:::2;:25;::::0;;;;;::::2;;:33;;:25:::0;:33:::2;60260:67;;;::::0;-1:-1:-1;;;60260:67:0;;17221:2:1;60260:67:0::2;::::0;::::2;17203:21:1::0;17260:2;17240:18;;;17233:30;-1:-1:-1;;;17279:18:1;;;17272:51;17340:18;;60260:67:0::2;17193:171:1::0;60260:67:0::2;60372:10;60357:26;::::0;;;:14:::2;:26;::::0;;;;;57209:1:::2;::::0;60357:44:::2;::::0;60388:12;60357:30:::2;:44::i;:::-;:70;;60349:125;;;::::0;-1:-1:-1;;;60349:125:0;;18706:2:1;60349:125:0::2;::::0;::::2;18688:21:1::0;18745:2;18725:18;;;18718:30;18784;18764:18;;;18757:58;18832:18;;60349:125:0::2;18678:178:1::0;60349:125:0::2;60493:17;::::0;57029:4:::2;::::0;60493:35:::2;::::0;60515:12;60493:21:::2;:35::i;:::-;:49;;60485:92;;;::::0;-1:-1:-1;;;60485:92:0;;15616:2:1;60485:92:0::2;::::0;::::2;15598:21:1::0;15655:2;15635:18;;;15628:30;15694:32;15674:18;;;15667:60;15744:18;;60485:92:0::2;15588:180:1::0;60485:92:0::2;60627:9;60596:27;57141:10;60610:12:::0;60596:13:::2;:27::i;:::-;:40;60588:67;;;::::0;-1:-1:-1;;;60588:67:0;;13050:2:1;60588:67:0::2;::::0;::::2;13032:21:1::0;13089:2;13069:18;;;13062:30;-1:-1:-1;;;13108:18:1;;;13101:44;13162:18;;60588:67:0::2;13022:164:1::0;60588:67:0::2;60671:6;::::0;::::2;;:12;;:6:::0;:12:::2;60668:75;;;60700:31;60718:12;60700:17;:31::i;:::-;60760:9;60755:186;60779:12;60775:1;:16;60755:186;;;60813:57;60823:10;60835:34;60851:17;;56982:3;60835:15;;:34;;;;:::i;:::-;60813:9;:57::i;:::-;60905:17;::::0;:24:::2;::::0;60927:1:::2;60905:21;:24::i;:::-;60885:17;:44:::0;60793:3;::::2;::::0;::::2;:::i;:::-;;;;60755:186;;;-1:-1:-1::0;60995:10:0::2;60980:26;::::0;;;:14:::2;:26;::::0;;;;;:44:::2;::::0;61011:12;60980:30:::2;:44::i;:::-;60966:10;60951:26;::::0;;;:14:::2;:26;::::0;;;;:73;-1:-1:-1;55724:1:0::1;56678:7;:22:::0;60055:977::o;57346:22::-;;;;;;;:::i;51065:201::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51154:22:0;::::1;51146:73;;;::::0;-1:-1:-1;;;51146:73:0;;11942:2:1;51146:73:0::1;::::0;::::1;11924:21:1::0;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;-1:-1:-1;;;12071:18:1;;;12064:36;12117:19;;51146:73:0::1;11914:228:1::0;51146:73:0::1;51230:28;51249:8;51230:18;:28::i;:::-;51065:201:::0;:::o;59748:246::-;50229:6;;-1:-1:-1;;;;;50229:6:0;16670:10;50376:23;50368:68;;;;-1:-1:-1;;;50368:68:0;;;;;;;:::i;:::-;59844:21:::1;59884:18:::0;;::::1;;59876:69;;;::::0;-1:-1:-1;;;59876:69:0;;21830:2:1;59876:69:0::1;::::0;::::1;21812:21:1::0;21869:2;21849:18;;;21842:30;21908:34;21888:18;;;21881:62;-1:-1:-1;;;21959:18:1;;;21952:36;22005:19;;59876:69:0::1;21802:228:1::0;59876:69:0::1;59956:30;::::0;-1:-1:-1;;;;;59956:21:0;::::1;::::0;:30;::::1;;;::::0;59978:7;;59956:30:::1;::::0;;;59978:7;59956:21;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;21369:305:::0;21471:4;-1:-1:-1;;;;;;21508:40:0;;-1:-1:-1;;;21508:40:0;;:105;;-1:-1:-1;;;;;;;21565:48:0;;-1:-1:-1;;;21565:48:0;21508:105;:158;;;-1:-1:-1;;;;;;;;;;19916:40:0;;;21630:36;19807:157;31109:174;31184:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31184:29:0;-1:-1:-1;;;;;31184:29:0;;;;;;;;:24;;31238:23;31184:24;31238:14;:23::i;:::-;-1:-1:-1;;;;;31229:46:0;;;;;;;;;;;31109:174;;:::o;27421:348::-;27514:4;27216:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27216:16:0;27531:73;;;;-1:-1:-1;;;27531:73:0;;14152:2:1;27531:73:0;;;14134:21:1;14191:2;14171:18;;;14164:30;14230:34;14210:18;;;14203:62;-1:-1:-1;;;14281:18:1;;;14274:42;14333:19;;27531:73:0;14124:234:1;27531:73:0;27615:13;27631:23;27646:7;27631:14;:23::i;:::-;27615:39;;27684:5;-1:-1:-1;;;;;27673:16:0;:7;-1:-1:-1;;;;;27673:16:0;;:51;;;;27717:7;-1:-1:-1;;;;;27693:31:0;:20;27705:7;27693:11;:20::i;:::-;-1:-1:-1;;;;;27693:31:0;;27673:51;:87;;;-1:-1:-1;;;;;;24513:25:0;;;24489:4;24513:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27728:32;27665:96;27421:348;-1:-1:-1;;;;27421:348:0:o;30413:578::-;30572:4;-1:-1:-1;;;;;30545:31:0;:23;30560:7;30545:14;:23::i;:::-;-1:-1:-1;;;;;30545:31:0;;30537:85;;;;-1:-1:-1;;;30537:85:0;;19063:2:1;30537:85:0;;;19045:21:1;19102:2;19082:18;;;19075:30;19141:34;19121:18;;;19114:62;-1:-1:-1;;;19192:18:1;;;19185:39;19241:19;;30537:85:0;19035:231:1;30537:85:0;-1:-1:-1;;;;;30641:16:0;;30633:65;;;;-1:-1:-1;;;30633:65:0;;13393:2:1;30633:65:0;;;13375:21:1;13432:2;13412:18;;;13405:30;13471:34;13451:18;;;13444:62;-1:-1:-1;;;13522:18:1;;;13515:34;13566:19;;30633:65:0;13365:226:1;30633:65:0;30711:39;30732:4;30738:2;30742:7;30711:20;:39::i;:::-;30815:29;30832:1;30836:7;30815:8;:29::i;:::-;-1:-1:-1;;;;;30857:15:0;;;;;;:9;:15;;;;;:20;;30876:1;;30857:15;:20;;30876:1;;30857:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30888:13:0;;;;;;:9;:13;;;;;:18;;30905:1;;30888:13;:18;;30905:1;;30888:18;:::i;:::-;;;;-1:-1:-1;;30917:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30917:21:0;-1:-1:-1;;;;;30917:21:0;;;;;;;;;30956:27;;30917:16;;30956:27;;;;;;;30413:578;;;:::o;53821:120::-;52833:7;;-1:-1:-1;;;52833:7:0;;;;53357:41;;;;-1:-1:-1;;;53357:41:0;;10762:2:1;53357:41:0;;;10744:21:1;10801:2;10781:18;;;10774:30;-1:-1:-1;;;10820:18:1;;;10813:50;10880:18;;53357:41:0;10734:170:1;53357:41:0;53880:7:::1;:15:::0;;-1:-1:-1;;;;53880:15:0::1;::::0;;53911:22:::1;16670:10:::0;53920:12:::1;53911:22;::::0;-1:-1:-1;;;;;9607:32:1;;;9589:51;;9577:2;9562:18;53911:22:0::1;;;;;;;53821:120::o:0;28111:110::-;28187:26;28197:2;28201:7;28187:26;;;;;;;;;;;;:9;:26::i;51426:191::-;51519:6;;;-1:-1:-1;;;;;51536:17:0;;;-1:-1:-1;;;;;;51536:17:0;;;;;;;51569:40;;51519:6;;;51536:17;51519:6;;51569:40;;51500:16;;51569:40;51426:191;;:::o;53562:118::-;52833:7;;-1:-1:-1;;;52833:7:0;;;;53087:9;53079:38;;;;-1:-1:-1;;;53079:38:0;;;;;;;:::i;:::-;53622:7:::1;:14:::0;;-1:-1:-1;;;;53622:14:0::1;-1:-1:-1::0;;;53622:14:0::1;::::0;;53652:20:::1;53659:12;16670:10:::0;;16590:98;44923;44981:7;45008:5;45012:1;45008;:5;:::i;:::-;45001:12;44923:98;-1:-1:-1;;;44923:98:0:o;45661:::-;45719:7;45746:5;45750:1;45746;:5;:::i;63103:899::-;57029:4;63176:17;;:30;:84;;;;-1:-1:-1;63211:17:0;;57029:4;;63211:35;;63233:12;63211:21;:35::i;:::-;:49;;63176:84;63172:823;;;63285:17;;63277:45;;-1:-1:-1;;;63285:17:0;;;-1:-1:-1;;;;;63285:17:0;;63277:45;;63313:8;;63277:45;;;;63313:8;63285:17;63277:45;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63345:7:0;;63337:35;;-1:-1:-1;;;;;63345:7:0;;;;;;63363:8;;63345:7;63337:35;63345:7;63337:35;63363:8;63345:7;;63337:35;;;;;;;;;;;;;;;;;;63172:823;63414:4;63394:17;;:24;:71;;;;-1:-1:-1;63422:17:0;;63461:4;;63422:35;;63444:12;63422:21;:35::i;:::-;:43;;63394:71;63390:605;;;63490:17;;63482:45;;-1:-1:-1;;;63490:17:0;;;-1:-1:-1;;;;;63490:17:0;;63482:45;;63518:8;;63482:45;;;;63518:8;63490:17;63482:45;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63550:7:0;;63542:34;;-1:-1:-1;;;;;63550:7:0;;;;;;63568;;63550;63542:34;63550:7;63542:34;63568:7;63550;;63542:34;;;;;;;;;;;;;;;;;;63390:605;63618:4;63598:17;;:24;:72;;;;-1:-1:-1;63627:17:0;;63666:4;;63627:35;;63649:12;63627:21;:35::i;:::-;:43;;63598:72;63594:401;;;63695:17;;63687:44;;-1:-1:-1;;;63695:17:0;;;-1:-1:-1;;;;;63695:17:0;;63687:44;;63723:7;;63687:44;;;;63723:7;63695:17;63687:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63754:7:0;;63746:34;;-1:-1:-1;;;;;63754:7:0;;;;;;63772;;63754;63746:34;63754:7;63746:34;63772:7;63754;;63746:34;;;;;;;;;;;;;;;;;;63594:401;63822:4;63802:17;;:24;:71;;;;-1:-1:-1;63830:17:0;;63869:4;;63830:35;;63852:12;63830:21;:35::i;:::-;:43;;63802:71;63798:197;;;63898:17;;63890:44;;-1:-1:-1;;;63898:17:0;;;-1:-1:-1;;;;;63898:17:0;;63890:44;;63926:7;;63890:44;;;;63926:7;63898:17;63890:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63957:7:0;;63949:34;;-1:-1:-1;;;;;63957:7:0;;;;;;63975;;63957;63949:34;63957:7;63949:34;63975:7;63957;;63949:34;;;;;;;;;;;;;;;;;;29105:382;-1:-1:-1;;;;;29185:16:0;;29177:61;;;;-1:-1:-1;;;29177:61:0;;17571:2:1;29177:61:0;;;17553:21:1;;;17590:18;;;17583:30;17649:34;17629:18;;;17622:62;17701:18;;29177:61:0;17543:182:1;29177:61:0;27192:4;27216:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27216:16:0;:30;29249:58;;;;-1:-1:-1;;;29249:58:0;;12693:2:1;29249:58:0;;;12675:21:1;12732:2;12712:18;;;12705:30;12771;12751:18;;;12744:58;12819:18;;29249:58:0;12665:178:1;29249:58:0;29320:45;29349:1;29353:2;29357:7;29320:20;:45::i;:::-;-1:-1:-1;;;;;29378:13:0;;;;;;:9;:13;;;;;:18;;29395:1;;29378:13;:18;;29395:1;;29378:18;:::i;:::-;;;;-1:-1:-1;;29407:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29407:21:0;-1:-1:-1;;;;;29407:21:0;;;;;;;;29446:33;;29407:16;;;29446:33;;29407:16;;29446:33;29105:382;;:::o;31425:315::-;31580:8;-1:-1:-1;;;;;31571:17:0;:5;-1:-1:-1;;;;;31571:17:0;;;31563:55;;;;-1:-1:-1;;;31563:55:0;;13798:2:1;31563:55:0;;;13780:21:1;13837:2;13817:18;;;13810:30;13876:27;13856:18;;;13849:55;13921:18;;31563:55:0;13770:175:1;31563:55:0;-1:-1:-1;;;;;31629:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31629:46:0;;;;;;;;;;31691:41;;10284::1;;;31691::0;;10257:18:1;31691:41:0;;;;;;;31425:315;;;:::o;26499:::-;26656:28;26666:4;26672:2;26676:7;26656:9;:28::i;:::-;26703:48;26726:4;26732:2;26736:7;26745:5;26703:22;:48::i;:::-;26695:111;;;;-1:-1:-1;;;26695:111:0;;;;;;;:::i;17177:723::-;17233:13;17454:10;17450:53;;-1:-1:-1;;17481:10:0;;;;;;;;;;;;-1:-1:-1;;;17481:10:0;;;;;17177:723::o;17450:53::-;17528:5;17513:12;17569:78;17576:9;;17569:78;;17602:8;;;;:::i;:::-;;-1:-1:-1;17625:10:0;;-1:-1:-1;17633:2:0;17625:10;;:::i;:::-;;;17569:78;;;17657:19;17689:6;17679:17;;;;;;-1:-1:-1;;;17679:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17679:17:0;;17657:39;;17707:154;17714:10;;17707:154;;17741:11;17751:1;17741:11;;:::i;:::-;;-1:-1:-1;17810:10:0;17818:2;17810:5;:10;:::i;:::-;17797:24;;:2;:24;:::i;:::-;17784:39;;17767:6;17774;17767:14;;;;;;-1:-1:-1;;;17767:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17767:56:0;;;;;;;;-1:-1:-1;17838:11:0;17847:2;17838:11;;:::i;:::-;;;17707:154;;37581:589;-1:-1:-1;;;;;37787:18:0;;37783:187;;37822:40;37854:7;38997:10;:17;;38970:24;;;;:15;:24;;;;;:44;;;39025:24;;;;;;;;;;;;38893:164;37822:40;37783:187;;;37892:2;-1:-1:-1;;;;;37884:10:0;:4;-1:-1:-1;;;;;37884:10:0;;37880:90;;37911:47;37944:4;37950:7;37911:32;:47::i;:::-;-1:-1:-1;;;;;37984:16:0;;37980:183;;38017:45;38054:7;38017:36;:45::i;37980:183::-;38090:4;-1:-1:-1;;;;;38084:10:0;:2;-1:-1:-1;;;;;38084:10:0;;38080:83;;38111:40;38139:2;38143:7;38111:27;:40::i;28448:321::-;28578:18;28584:2;28588:7;28578:5;:18::i;:::-;28629:54;28660:1;28664:2;28668:7;28677:5;28629:22;:54::i;:::-;28607:154;;;;-1:-1:-1;;;28607:154:0;;;;;;;:::i;32305:799::-;32460:4;-1:-1:-1;;;;;32481:13:0;;8895:20;8943:8;32477:620;;32517:72;;-1:-1:-1;;;32517:72:0;;-1:-1:-1;;;;;32517:36:0;;;;;:72;;16670:10;;32568:4;;32574:7;;32583:5;;32517:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32517:72:0;;;;;;;;-1:-1:-1;;32517:72:0;;;;;;;;;;;;:::i;:::-;;;32513:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32759:13:0;;32755:272;;32802:60;;-1:-1:-1;;;32802:60:0;;;;;;;:::i;32755:272::-;32977:6;32971:13;32962:6;32958:2;32954:15;32947:38;32513:529;-1:-1:-1;;;;;;32640:51:0;-1:-1:-1;;;32640:51:0;;-1:-1:-1;32633:58:0;;32477:620;-1:-1:-1;33081:4:0;32305:799;;;;;;:::o;39684:988::-;39950:22;40000:1;39975:22;39992:4;39975:16;:22::i;:::-;:26;;;;:::i;:::-;40012:18;40033:26;;;:17;:26;;;;;;39950:51;;-1:-1:-1;40166:28:0;;;40162:328;;-1:-1:-1;;;;;40233:18:0;;40211:19;40233:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40284:30;;;;;;:44;;;40401:30;;:17;:30;;;;;:43;;;40162:328;-1:-1:-1;40586:26:0;;;;:17;:26;;;;;;;;40579:33;;;-1:-1:-1;;;;;40630:18:0;;;;;:12;:18;;;;;:34;;;;;;;40623:41;39684:988::o;40967:1079::-;41245:10;:17;41220:22;;41245:21;;41265:1;;41245:21;:::i;:::-;41277:18;41298:24;;;:15;:24;;;;;;41671:10;:26;;41220:46;;-1:-1:-1;41298:24:0;;41220:46;;41671:26;;;;-1:-1:-1;;;41671:26:0;;;;;;;;;;;;;;;;;41649:48;;41735:11;41710:10;41721;41710:22;;;;;;-1:-1:-1;;;41710:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41815:28;;;:15;:28;;;;;;;:41;;;41987:24;;;;;41980:31;42022:10;:16;;;;;-1:-1:-1;;;42022:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40967:1079;;;;:::o;38471:221::-;38556:14;38573:20;38590:2;38573:16;:20::i;:::-;-1:-1:-1;;;;;38604:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38649:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38471:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;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:2;;;309:1;306;299:12;268:2;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;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;603:699;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;822:60;838:43;878:2;838:43;:::i;:::-;822:60;:::i;:::-;904:3;928:2;923:3;916:15;956:2;951:3;947:12;940:19;;991:2;983:6;979:15;1043:3;1038:2;1032;1029:1;1025:10;1017:6;1013:23;1009:32;1006:41;1003:2;;;1064:5;1057;1050:20;1003:2;1090:5;1104:169;1118:2;1115:1;1112:9;1104:169;;;1175:23;1194:3;1175:23;:::i;:::-;1163:36;;1219:12;;;;1251;;;;1136:1;1129:9;1104:169;;;-1:-1:-1;1291:5:1;;667:635;-1:-1:-1;;;;;;;667:635:1:o;1307:693::-;1361:5;1414:3;1407:4;1399:6;1395:17;1391:27;1381:2;;1436:5;1429;1422:20;1381:2;1476:6;1463:20;1502:4;1526:60;1542:43;1582:2;1542:43;:::i;1526:60::-;1608:3;1632:2;1627:3;1620:15;1660:2;1655:3;1651:12;1644:19;;1695:2;1687:6;1683:15;1747:3;1742:2;1736;1733:1;1729:10;1721:6;1717:23;1713:32;1710:41;1707:2;;;1768:5;1761;1754:20;1707:2;1794:5;1808:163;1822:2;1819:1;1816:9;1808:163;;;1879:17;;1867:30;;1917:12;;;;1949;;;;1840:1;1833:9;1808:163;;2005:160;2070:20;;2126:13;;2119:21;2109:32;;2099:2;;2155:1;2152;2145:12;2170:229;2213:5;2266:3;2259:4;2251:6;2247:17;2243:27;2233:2;;2288:5;2281;2274:20;2233:2;2314:79;2389:3;2380:6;2367:20;2360:4;2352:6;2348:17;2314:79;:::i;2404:196::-;2463:6;2516:2;2504:9;2495:7;2491:23;2487:32;2484:2;;;2537:6;2529;2522:22;2484:2;2565:29;2584:9;2565:29;:::i;2605:270::-;2673:6;2681;2734:2;2722:9;2713:7;2709:23;2705:32;2702:2;;;2755:6;2747;2740:22;2702:2;2783:29;2802:9;2783:29;:::i;:::-;2773:39;;2831:38;2865:2;2854:9;2850:18;2831:38;:::i;:::-;2821:48;;2692:183;;;;;:::o;2880:338::-;2957:6;2965;2973;3026:2;3014:9;3005:7;3001:23;2997:32;2994:2;;;3047:6;3039;3032:22;2994:2;3075:29;3094:9;3075:29;:::i;:::-;3065:39;;3123:38;3157:2;3146:9;3142:18;3123:38;:::i;:::-;3113:48;;3208:2;3197:9;3193:18;3180:32;3170:42;;2984:234;;;;;:::o;3223:696::-;3318:6;3326;3334;3342;3395:3;3383:9;3374:7;3370:23;3366:33;3363:2;;;3417:6;3409;3402:22;3363:2;3445:29;3464:9;3445:29;:::i;:::-;3435:39;;3493:38;3527:2;3516:9;3512:18;3493:38;:::i;:::-;3483:48;;3578:2;3567:9;3563:18;3550:32;3540:42;;3633:2;3622:9;3618:18;3605:32;3660:18;3652:6;3649:30;3646:2;;;3697:6;3689;3682:22;3646:2;3725:22;;3778:4;3770:13;;3766:27;-1:-1:-1;3756:2:1;;3812:6;3804;3797:22;3756:2;3840:73;3905:7;3900:2;3887:16;3882:2;3878;3874:11;3840:73;:::i;:::-;3830:83;;;3353:566;;;;;;;:::o;3924:442::-;4017:6;4025;4078:2;4066:9;4057:7;4053:23;4049:32;4046:2;;;4099:6;4091;4084:22;4046:2;4127:29;4146:9;4127:29;:::i;:::-;4117:39;;4207:2;4196:9;4192:18;4179:32;4234:18;4226:6;4223:30;4220:2;;;4271:6;4263;4256:22;4220:2;4299:61;4352:7;4343:6;4332:9;4328:22;4299:61;:::i;:::-;4289:71;;;4036:330;;;;;:::o;4371:264::-;4436:6;4444;4497:2;4485:9;4476:7;4472:23;4468:32;4465:2;;;4518:6;4510;4503:22;4465:2;4546:29;4565:9;4546:29;:::i;:::-;4536:39;;4594:35;4625:2;4614:9;4610:18;4594:35;:::i;4640:264::-;4708:6;4716;4769:2;4757:9;4748:7;4744:23;4740:32;4737:2;;;4790:6;4782;4775:22;4737:2;4818:29;4837:9;4818:29;:::i;:::-;4808:39;4894:2;4879:18;;;;4866:32;;-1:-1:-1;;;4727:177:1:o;4909:368::-;4993:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:2;;;5067:6;5059;5052:22;5014:2;5112:9;5099:23;5145:18;5137:6;5134:30;5131:2;;;5182:6;5174;5167:22;5131:2;5210:61;5263:7;5254:6;5243:9;5239:22;5210:61;:::i;5282:625::-;5400:6;5408;5461:2;5449:9;5440:7;5436:23;5432:32;5429:2;;;5482:6;5474;5467:22;5429:2;5527:9;5514:23;5556:18;5597:2;5589:6;5586:14;5583:2;;;5618:6;5610;5603:22;5583:2;5646:61;5699:7;5690:6;5679:9;5675:22;5646:61;:::i;:::-;5636:71;;5760:2;5749:9;5745:18;5732:32;5716:48;;5789:2;5779:8;5776:16;5773:2;;;5810:6;5802;5795:22;5773:2;;5838:63;5893:7;5882:8;5871:9;5867:24;5838:63;:::i;5912:190::-;5968:6;6021:2;6009:9;6000:7;5996:23;5992:32;5989:2;;;6042:6;6034;6027:22;5989:2;6070:26;6086:9;6070:26;:::i;6107:255::-;6165:6;6218:2;6206:9;6197:7;6193:23;6189:32;6186:2;;;6239:6;6231;6224:22;6186:2;6283:9;6270:23;6302:30;6326:5;6302:30;:::i;6367:259::-;6436:6;6489:2;6477:9;6468:7;6464:23;6460:32;6457:2;;;6510:6;6502;6495:22;6457:2;6547:9;6541:16;6566:30;6590:5;6566:30;:::i;6631:783::-;6738:6;6746;6754;6807:2;6795:9;6786:7;6782:23;6778:32;6775:2;;;6828:6;6820;6813:22;6775:2;6873:9;6860:23;6902:18;6943:2;6935:6;6932:14;6929:2;;;6964:6;6956;6949:22;6929:2;6992:50;7034:7;7025:6;7014:9;7010:22;6992:50;:::i;:::-;6982:60;;7095:2;7084:9;7080:18;7067:32;7051:48;;7124:2;7114:8;7111:16;7108:2;;;7145:6;7137;7130:22;7108:2;7173:52;7217:7;7206:8;7195:9;7191:24;7173:52;:::i;:::-;7163:62;;7278:2;7267:9;7263:18;7250:32;7234:48;;7307:2;7297:8;7294:16;7291:2;;;7328:6;7320;7313:22;7291:2;;7356:52;7400:7;7389:8;7378:9;7374:24;7356:52;:::i;:::-;7346:62;;;6765:649;;;;;:::o;7419:190::-;7478:6;7531:2;7519:9;7510:7;7506:23;7502:32;7499:2;;;7552:6;7544;7537:22;7499:2;-1:-1:-1;7580:23:1;;7489:120;-1:-1:-1;7489:120:1:o;7614:257::-;7655:3;7693:5;7687:12;7720:6;7715:3;7708:19;7736:63;7792:6;7785:4;7780:3;7776:14;7769:4;7762:5;7758:16;7736:63;:::i;:::-;7853:2;7832:15;-1:-1:-1;;7828:29:1;7819:39;;;;7860:4;7815:50;;7663:208;-1:-1:-1;;7663:208:1:o;7876:979::-;7961:12;;7926:3;;8018:1;8038:18;;;;8091;;;;8118:2;;8172:4;8164:6;8160:17;8150:27;;8118:2;8198;8246;8238:6;8235:14;8215:18;8212:38;8209:2;;;-1:-1:-1;;;8273:33:1;;8329:4;8326:1;8319:15;8359:4;8280:3;8347:17;8209:2;8390:18;8417:104;;;;8535:1;8530:319;;;;8383:466;;8417:104;-1:-1:-1;;8450:24:1;;8438:37;;8495:16;;;;-1:-1:-1;8417:104:1;;8530:319;22732:4;22751:17;;;22801:4;22785:21;;8624:1;8638:165;8652:6;8649:1;8646:13;8638:165;;;8730:14;;8717:11;;;8710:35;8773:16;;;;8667:10;;8638:165;;;8642:3;;8832:6;8827:3;8823:16;8816:23;;8383:466;;;;;;;7934:921;;;;:::o;8860:197::-;8988:3;9013:38;9047:3;9039:6;9013:38;:::i;9062:376::-;9238:3;9266:38;9300:3;9292:6;9266:38;:::i;:::-;9333:6;9327:13;9349:52;9394:6;9390:2;9383:4;9375:6;9371:17;9349:52;:::i;:::-;9417:15;;9246:192;-1:-1:-1;;;;9246:192:1:o;9651:488::-;-1:-1:-1;;;;;9920:15:1;;;9902:34;;9972:15;;9967:2;9952:18;;9945:43;10019:2;10004:18;;9997:34;;;10067:3;10062:2;10047:18;;10040:31;;;9845:4;;10088:45;;10113:19;;10105:6;10088:45;:::i;:::-;10080:53;9854:285;-1:-1:-1;;;;;;9854:285:1:o;10336:219::-;10485:2;10474:9;10467:21;10448:4;10505:44;10545:2;10534:9;10530:18;10522:6;10505:44;:::i;11321:414::-;11523:2;11505:21;;;11562:2;11542:18;;;11535:30;11601:34;11596:2;11581:18;;11574:62;-1:-1:-1;;;11667:2:1;11652:18;;11645:48;11725:3;11710:19;;11495:240::o;14722:340::-;14924:2;14906:21;;;14963:2;14943:18;;;14936:30;-1:-1:-1;;;14997:2:1;14982:18;;14975:46;15053:2;15038:18;;14896:166::o;18143:356::-;18345:2;18327:21;;;18364:18;;;18357:30;18423:34;18418:2;18403:18;;18396:62;18490:2;18475:18;;18317:182::o;20089:413::-;20291:2;20273:21;;;20330:2;20310:18;;;20303:30;20369:34;20364:2;20349:18;;20342:62;-1:-1:-1;;;20435:2:1;20420:18;;20413:47;20492:3;20477:19;;20263:239::o;21268:355::-;21470:2;21452:21;;;21509:2;21489:18;;;21482:30;21548:33;21543:2;21528:18;;21521:61;21614:2;21599:18;;21442:181::o;22217:275::-;22288:2;22282:9;22353:2;22334:13;;-1:-1:-1;;22330:27:1;22318:40;;22388:18;22373:34;;22409:22;;;22370:62;22367:2;;;22435:18;;:::i;:::-;22471:2;22464:22;22262:230;;-1:-1:-1;22262:230:1:o;22497:183::-;22557:4;22590:18;22582:6;22579:30;22576:2;;;22612:18;;:::i;:::-;-1:-1:-1;22657:1:1;22653:14;22669:4;22649:25;;22566:114::o;22817:128::-;22857:3;22888:1;22884:6;22881:1;22878:13;22875:2;;;22894:18;;:::i;:::-;-1:-1:-1;22930:9:1;;22865:80::o;22950:120::-;22990:1;23016;23006:2;;23021:18;;:::i;:::-;-1:-1:-1;23055:9:1;;22996:74::o;23075:168::-;23115:7;23181:1;23177;23173:6;23169:14;23166:1;23163:21;23158:1;23151:9;23144:17;23140:45;23137:2;;;23188:18;;:::i;:::-;-1:-1:-1;23228:9:1;;23127:116::o;23248:125::-;23288:4;23316:1;23313;23310:8;23307:2;;;23321:18;;:::i;:::-;-1:-1:-1;23358:9:1;;23297:76::o;23378:258::-;23450:1;23460:113;23474:6;23471:1;23468:13;23460:113;;;23550:11;;;23544:18;23531:11;;;23524:39;23496:2;23489:10;23460:113;;;23591:6;23588:1;23585:13;23582:2;;;-1:-1:-1;;23626:1:1;23608:16;;23601:27;23431:205::o;23641:380::-;23720:1;23716:12;;;;23763;;;23784:2;;23838:4;23830:6;23826:17;23816:27;;23784:2;23891;23883:6;23880:14;23860:18;23857:38;23854:2;;;23937:10;23932:3;23928:20;23925:1;23918:31;23972:4;23969:1;23962:15;24000:4;23997:1;23990:15;23854:2;;23696:325;;;:::o;24026:135::-;24065:3;-1:-1:-1;;24086:17:1;;24083:2;;;24106:18;;:::i;:::-;-1:-1:-1;24153:1:1;24142:13;;24073:88::o;24166:112::-;24198:1;24224;24214:2;;24229:18;;:::i;:::-;-1:-1:-1;24263:9:1;;24204:74::o;24283:127::-;24344:10;24339:3;24335:20;24332:1;24325:31;24375:4;24372:1;24365:15;24399:4;24396:1;24389:15;24415:127;24476:10;24471:3;24467:20;24464:1;24457:31;24507:4;24504:1;24497:15;24531:4;24528:1;24521:15;24547:127;24608:10;24603:3;24599:20;24596:1;24589:31;24639:4;24636:1;24629:15;24663:4;24660:1;24653:15;24679:131;-1:-1:-1;;;;;;24753:32:1;;24743:43;;24733:2;;24800:1;24797;24790:12

Swarm Source

ipfs://5046ec4dc66364c3c75badb160d4dac3069ab202a5529e1a882b80bbc8c887f7
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.