ETH Price: $3,094.70 (+1.11%)
Gas: 5 Gwei

Token

CRAZY BONGS (CB)
 

Overview

Max Total Supply

421 CB

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nigotiya.eth
Balance
1 CB
0x4a0962949beac41d4f7f81f96d510e0e1465b5fa
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CRAZYBONGS

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-23
*/

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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



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 no longer needed starting with Solidity 0.8. 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/utils/introspection/[email protected]



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]



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]



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]



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]



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]



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]



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]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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



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/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


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



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]



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/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return super.supportsInterface(interfaceId) || _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


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



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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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


// File contracts/CRAZYBONGS.sol



// CRAZY BONGS
// CREATED BY @WARLOSWORLD

pragma solidity ^0.8.5;
pragma experimental ABIEncoderV2;












contract CRAZYBONGS is Ownable, ERC721Enumerable, ReentrancyGuard {
    using SafeMath for uint256;

    string public BONG_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN BONGS ARE ALL SOLD OUT

    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS

    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant bongPrice = 42000000000000000; // 0.0420 ETH

    uint256 public constant maxBongPurchase = 10;

    uint256 public constant MAX_BONG = 4200;

    bool public saleIsActive = false;

    mapping(uint256 => string) public bongNames;

    // the baseURI for token metadata
    string public baseURI = "";

    // Reserve 5 Bongs for team - Giveaways/Prizes etc
    uint256 public bongReserve = 5;

    event licenseisLocked(string _licenseText);

    constructor() ERC721("CRAZY BONGS", "CB") {}

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        address payable to = payable(msg.sender);
        (bool success, ) = to.call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function reserveBong(address _to, uint256 _reserveAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= bongReserve,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        bongReserve = bongReserve.sub(_reserveAmount);
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        BONG_PROVENANCE = provenanceHash;
    }

    /**
     * @dev baseURI for computing {tokenURI}. Empty by default, can be overwritten
     * in child contracts.
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

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

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    // Returns the license for tokens
    function tokenLicense(uint256 _id) public view returns (string memory) {
        require(_id < totalSupply(), "CHOOSE A BONG WITHIN RANGE");
        return LICENSE_TEXT;
    }

    // Locks the license to prevent further changes
    function lockLicense() public onlyOwner {
        licenseLocked = true;
        emit licenseisLocked(LICENSE_TEXT);
    }

    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }

    function mintCrazyBongs(uint256 numberOfTokens)
        public
        payable
        nonReentrant
    {
        require(saleIsActive, "Sale must be active to mint Crazy Bongs");
        require(
            numberOfTokens > 0 && numberOfTokens <= maxBongPurchase,
            "Can only mint 10 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_BONG,
            "Purchase would exceed max supply of Bongs"
        );
        require(
            msg.value >= bongPrice.mul(numberOfTokens),
            "Ether value sent is not correct"
        );
        require(
            msg.value / numberOfTokens == bongPrice,
            "Mint value is not good"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_BONG) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    // GET ALL BONG OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function bongNamesOfOwner(address _owner)
        external
        view
        returns (string[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = bongNames[tokenOfOwnerByIndex(_owner, index)];
            }
            return result;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"BONG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BONG","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bongNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"bongNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bongPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bongReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBongPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCrazyBongs","outputs":[],"stateMutability":"payable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveBong","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c9162000162565b506040805160208101918290526000908190526200003c91600d9162000162565b50600e805461ffff19169055604080516020810191829052600090819052620000689160109162000162565b5060056011553480156200007b57600080fd5b506040518060400160405280600b81526020016a4352415a5920424f4e475360a81b8152506040518060400160405280600281526020016121a160f11b815250620000d5620000cf6200010e60201b60201c565b62000112565b8151620000ea90600190602085019062000162565b5080516200010090600290602084019062000162565b50506001600b555062000245565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001709062000208565b90600052602060002090601f016020900481019282620001945760008555620001df565b82601f10620001af57805160ff1916838001178555620001df565b82800160010185558215620001df579182015b82811115620001df578251825591602001919060010190620001c2565b50620001ed929150620001f1565b5090565b5b80821115620001ed5760008155600101620001f2565b600181811c908216806200021d57607f821691505b602082108114156200023f57634e487b7160e01b600052602260045260246000fd5b50919050565b612a2280620002556000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063d9b137b21161006f578063d9b137b214610634578063e8b4867014610654578063e985e9c514610674578063eb8d2444146106bd578063f2fde38b146106dc57600080fd5b8063b88d4fde1461059f578063bf21149d146105bf578063bf4702fc146105ec578063c87b56dd14610601578063cdbc0e9f1461062157600080fd5b80638da5cb5b116100f25780638da5cb5b1461051757806395d89b41146105355780639c3e72bd1461054a578063a22cb4651461055f578063b09904b51461057f57600080fd5b806370a0823114610485578063715018a6146104a557806383632f46146104ba5780638462151c146104d5578063874bc1a01461050257600080fd5b80632fa6f995116101bc57806355f804b31161018057806355f804b3146103fa5780635be9b9be1461041a5780635bf63e20146104305780636352211e146104505780636c0360eb1461047057600080fd5b80632fa6f9951461037b57806334918dfd146103905780633ccfd60b146103a557806342842e0e146103ba5780634f6ccce7146103da57600080fd5b8063109695231161020357806310969523146102e657806318160ddd146103065780631bb352541461032557806323b872dd1461033b5780632f745c591461035b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612509565b6106fc565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610727565b60405161026191906126e3565b34801561029857600080fd5b506102ac6102a736600461258c565b6107b9565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046124df565b610853565b005b3480156102f257600080fd5b506102e4610301366004612543565b610969565b34801561031257600080fd5b506009545b604051908152602001610261565b34801561033157600080fd5b5061031760115481565b34801561034757600080fd5b506102e46103563660046123eb565b6109aa565b34801561036757600080fd5b506103176103763660046124df565b6109db565b34801561038757600080fd5b50610317600a81565b34801561039c57600080fd5b506102e4610a71565b3480156103b157600080fd5b506102e4610ab8565b3480156103c657600080fd5b506102e46103d53660046123eb565b610b71565b3480156103e657600080fd5b506103176103f536600461258c565b610b8c565b34801561040657600080fd5b506102e4610415366004612543565b610c1f565b34801561042657600080fd5b5061031761106881565b34801561043c57600080fd5b5061027f61044b36600461258c565b610c5c565b34801561045c57600080fd5b506102ac61046b36600461258c565b610cf6565b34801561047c57600080fd5b5061027f610d6d565b34801561049157600080fd5b506103176104a036600461239d565b610d7a565b3480156104b157600080fd5b506102e4610e01565b3480156104c657600080fd5b50610317669536c70891000081565b3480156104e157600080fd5b506104f56104f036600461239d565b610e37565b604051610261919061269f565b34801561050e57600080fd5b5061027f610ef6565b34801561052357600080fd5b506000546001600160a01b03166102ac565b34801561054157600080fd5b5061027f610f03565b34801561055657600080fd5b5061027f610f12565b34801561056b57600080fd5b506102e461057a3660046124a3565b610f1f565b34801561058b57600080fd5b506102e461059a366004612543565b610fe4565b3480156105ab57600080fd5b506102e46105ba366004612427565b61106d565b3480156105cb57600080fd5b506105df6105da36600461239d565b6110a5565b604051610261919061263d565b3480156105f857600080fd5b506102e461121c565b34801561060d57600080fd5b5061027f61061c36600461258c565b61128e565b6102e461062f36600461258c565b611369565b34801561064057600080fd5b5061027f61064f36600461258c565b61160d565b34801561066057600080fd5b506102e461066f3660046124df565b6116f8565b34801561068057600080fd5b5061025561068f3660046123b8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b50600e5461025590610100900460ff1681565b3480156106e857600080fd5b506102e46106f736600461239d565b6117d3565b60006001600160e01b0319821663780e9d6360e01b148061072157506107218261186e565b92915050565b60606001805461073690612904565b80601f016020809104026020016040519081016040528092919081815260200182805461076290612904565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085e82610cf6565b9050806001600160a01b0316836001600160a01b031614156108cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082e565b336001600160a01b03821614806108e857506108e8813361068f565b61095a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b61096483836118be565b505050565b6000546001600160a01b031633146109935760405162461bcd60e51b815260040161082e906127f0565b80516109a690600c906020840190612272565b5050565b6109b4338261192c565b6109d05760405162461bcd60e51b815260040161082e90612825565b610964838383611a23565b60006109e683610d7a565b8210610a485760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161082e565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610a9b5760405162461bcd60e51b815260040161082e906127f0565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610ae25760405162461bcd60e51b815260040161082e906127f0565b60405147903390600090829084908381818185875af1925050503d8060008114610b28576040519150601f19603f3d011682016040523d82523d6000602084013e610b2d565b606091505b50509050806109645760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161082e565b6109648383836040518060200160405280600081525061106d565b6000610b9760095490565b8210610bfa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161082e565b60098281548110610c0d57610c0d6129aa565b90600052602060002001549050919050565b6000546001600160a01b03163314610c495760405162461bcd60e51b815260040161082e906127f0565b80516109a6906010906020840190612272565b600f6020526000908152604090208054610c7590612904565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca190612904565b8015610cee5780601f10610cc357610100808354040283529160200191610cee565b820191906000526020600020905b815481529060010190602001808311610cd157829003601f168201915b505050505081565b6000818152600360205260408120546001600160a01b0316806107215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082e565b60108054610c7590612904565b60006001600160a01b038216610de55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161082e906127f0565b610e356000611bce565b565b60606000610e4483610d7a565b905080610e655760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610e8057610e806129c0565b604051908082528060200260200182016040528015610ea9578160200160208202803683370190505b50905060005b82811015610e5d57610ec185826109db565b828281518110610ed357610ed36129aa565b602090810291909101015280610ee881612939565b915050610eaf565b50919050565b600c8054610c7590612904565b60606002805461073690612904565b600d8054610c7590612904565b6001600160a01b038216331415610f785760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461100e5760405162461bcd60e51b815260040161082e906127f0565b600e5460ff161561105a5760405162461bcd60e51b8152602060048201526016602482015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604482015260640161082e565b80516109a690600d906020840190612272565b611077338361192c565b6110935760405162461bcd60e51b815260040161082e90612825565b61109f84848484611c1e565b50505050565b606060006110b283610d7a565b9050806110eb576040805160008082526020820190925290610e5d565b60608152602001906001900390816110cf579050509392505050565b60008167ffffffffffffffff811115611106576111066129c0565b60405190808252806020026020018201604052801561113957816020015b60608152602001906001900390816111245790505b50905060005b82811015610e5d57600f600061115587846109db565b8152602001908152602001600020805461116e90612904565b80601f016020809104026020016040519081016040528092919081815260200182805461119a90612904565b80156111e75780601f106111bc576101008083540402835291602001916111e7565b820191906000526020600020905b8154815290600101906020018083116111ca57829003601f168201915b50505050508282815181106111fe576111fe6129aa565b6020026020010181905250808061121490612939565b91505061113f565b6000546001600160a01b031633146112465760405162461bcd60e51b815260040161082e906127f0565b600e805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b09061128490600d906126f6565b60405180910390a1565b6000818152600360205260409020546060906001600160a01b031661130d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082e565b6000611317611c51565b905060008151116113375760405180602001604052806000815250611362565b8061134184611c60565b6040516020016113529291906125d1565b6040516020818303038152906040525b9392505050565b6002600b5414156113bc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161082e565b6002600b55600e54610100900460ff166114285760405162461bcd60e51b815260206004820152602760248201527f53616c65206d7573742062652061637469766520746f206d696e74204372617a6044820152667920426f6e677360c81b606482015260840161082e565b6000811180156114395750600a8111155b61148f5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d6044820152606560f81b606482015260840161082e565b6110686114a58261149f60095490565b90611d5e565b11156115055760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f6620426f6e677360b81b606482015260840161082e565b611516669536c70891000082611d6a565b3410156115655760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161082e565b669536c708910000611577823461288e565b146115bd5760405162461bcd60e51b8152602060048201526016602482015275135a5b9d081d985b1d59481a5cc81b9bdd0819dbdbd960521b604482015260640161082e565b60005b818110156116045760006115d360095490565b90506110686115e160095490565b10156115f1576115f13382611d76565b50806115fc81612939565b9150506115c0565b50506001600b55565b606061161860095490565b82106116665760405162461bcd60e51b815260206004820152601a60248201527f43484f4f5345204120424f4e472057495448494e2052414e4745000000000000604482015260640161082e565b600d805461167390612904565b80601f016020809104026020016040519081016040528092919081815260200182805461169f90612904565b80156116ec5780601f106116c1576101008083540402835291602001916116ec565b820191906000526020600020905b8154815290600101906020018083116116cf57829003601f168201915b50505050509050919050565b6000546001600160a01b031633146117225760405162461bcd60e51b815260040161082e906127f0565b600061172d60095490565b905060008211801561174157506011548211155b61178d5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082e565b60005b828110156117bd576117ab846117a68385612876565b611d76565b806117b581612939565b915050611790565b506011546117cb9083611d90565b601155505050565b6000546001600160a01b031633146117fd5760405162461bcd60e51b815260040161082e906127f0565b6001600160a01b0381166118625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b61186b81611bce565b50565b60006001600160e01b031982166380ac58cd60e01b148061189f57506001600160e01b03198216635b5e139f60e01b145b8061072157506301ffc9a760e01b6001600160e01b0319831614610721565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f382610cf6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166119a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b60006119b083610cf6565b9050806001600160a01b0316846001600160a01b031614806119eb5750836001600160a01b03166119e0846107b9565b6001600160a01b0316145b80611a1b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3682610cf6565b6001600160a01b031614611a9e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082e565b6001600160a01b038216611b005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082e565b611b0b838383611d9c565b611b166000826118be565b6001600160a01b0383166000908152600460205260408120805460019290611b3f9084906128c1565b90915550506001600160a01b0382166000908152600460205260408120805460019290611b6d908490612876565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611c29848484611a23565b611c3584848484611e54565b61109f5760405162461bcd60e51b815260040161082e9061279e565b60606010805461073690612904565b606081611c845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cae5780611c9881612939565b9150611ca79050600a8361288e565b9150611c88565b60008167ffffffffffffffff811115611cc957611cc96129c0565b6040519080825280601f01601f191660200182016040528015611cf3576020820181803683370190505b5090505b8415611a1b57611d086001836128c1565b9150611d15600a86612954565b611d20906030612876565b60f81b818381518110611d3557611d356129aa565b60200101906001600160f81b031916908160001a905350611d57600a8661288e565b9450611cf7565b60006113628284612876565b600061136282846128a2565b6109a6828260405180602001604052806000815250611f61565b600061136282846128c1565b6001600160a01b038316611df757611df281600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611e1a565b816001600160a01b0316836001600160a01b031614611e1a57611e1a8382611f94565b6001600160a01b038216611e315761096481612031565b826001600160a01b0316826001600160a01b0316146109645761096482826120e0565b60006001600160a01b0384163b15611f5657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e98903390899088908890600401612600565b602060405180830381600087803b158015611eb257600080fd5b505af1925050508015611ee2575060408051601f3d908101601f19168201909252611edf91810190612526565b60015b611f3c573d808015611f10576040519150601f19603f3d011682016040523d82523d6000602084013e611f15565b606091505b508051611f345760405162461bcd60e51b815260040161082e9061279e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a1b565b506001949350505050565b611f6b8383612124565b611f786000848484611e54565b6109645760405162461bcd60e51b815260040161082e9061279e565b60006001611fa184610d7a565b611fab91906128c1565b600083815260086020526040902054909150808214611ffe576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612043906001906128c1565b6000838152600a60205260408120546009805493945090928490811061206b5761206b6129aa565b90600052602060002001549050806009838154811061208c5761208c6129aa565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120c4576120c4612994565b6001900381819060005260206000200160009055905550505050565b60006120eb83610d7a565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b03821661217a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600360205260409020546001600160a01b0316156121df5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6121eb60008383611d9c565b6001600160a01b0382166000908152600460205260408120805460019290612214908490612876565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461227e90612904565b90600052602060002090601f0160209004810192826122a057600085556122e6565b82601f106122b957805160ff19168380011785556122e6565b828001600101855582156122e6579182015b828111156122e65782518255916020019190600101906122cb565b506122f29291506122f6565b5090565b5b808211156122f257600081556001016122f7565b600067ffffffffffffffff80841115612326576123266129c0565b604051601f8501601f19908116603f0116810190828211818310171561234e5761234e6129c0565b8160405280935085815286868601111561236757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461239857600080fd5b919050565b6000602082840312156123af57600080fd5b61136282612381565b600080604083850312156123cb57600080fd5b6123d483612381565b91506123e260208401612381565b90509250929050565b60008060006060848603121561240057600080fd5b61240984612381565b925061241760208501612381565b9150604084013590509250925092565b6000806000806080858703121561243d57600080fd5b61244685612381565b935061245460208601612381565b925060408501359150606085013567ffffffffffffffff81111561247757600080fd5b8501601f8101871361248857600080fd5b6124978782356020840161230b565b91505092959194509250565b600080604083850312156124b657600080fd5b6124bf83612381565b9150602083013580151581146124d457600080fd5b809150509250929050565b600080604083850312156124f257600080fd5b6124fb83612381565b946020939093013593505050565b60006020828403121561251b57600080fd5b8135611362816129d6565b60006020828403121561253857600080fd5b8151611362816129d6565b60006020828403121561255557600080fd5b813567ffffffffffffffff81111561256c57600080fd5b8201601f8101841361257d57600080fd5b611a1b8482356020840161230b565b60006020828403121561259e57600080fd5b5035919050565b600081518084526125bd8160208601602086016128d8565b601f01601f19169290920160200192915050565b600083516125e38184602088016128d8565b8351908301906125f78183602088016128d8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612633908301846125a5565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561269257603f198886030184526126808583516125a5565b94509285019290850190600101612664565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126d7578351835292840192918401916001016126bb565b50909695505050505050565b60208152600061136260208301846125a5565b600060208083526000845481600182811c91508083168061271857607f831692505b85831081141561273657634e487b7160e01b85526022600452602485fd5b87860183815260200181801561275357600181146127645761278f565b60ff1986168252878201965061278f565b60008b81526020902060005b8681101561278957815484820152908501908901612770565b83019750505b50949998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561288957612889612968565b500190565b60008261289d5761289d61297e565b500490565b60008160001904831182151516156128bc576128bc612968565b500290565b6000828210156128d3576128d3612968565b500390565b60005b838110156128f35781810151838201526020016128db565b8381111561109f5750506000910152565b600181811c9082168061291857607f821691505b60208210811415610ef057634e487b7160e01b600052602260045260246000fd5b600060001982141561294d5761294d612968565b5060010190565b6000826129635761296361297e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461186b57600080fdfea2646970667358221220aad0608fda1b25eb8dda335a64ded16ec640f6307f9a3db964b2d6a59374815664736f6c63430008050033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063d9b137b21161006f578063d9b137b214610634578063e8b4867014610654578063e985e9c514610674578063eb8d2444146106bd578063f2fde38b146106dc57600080fd5b8063b88d4fde1461059f578063bf21149d146105bf578063bf4702fc146105ec578063c87b56dd14610601578063cdbc0e9f1461062157600080fd5b80638da5cb5b116100f25780638da5cb5b1461051757806395d89b41146105355780639c3e72bd1461054a578063a22cb4651461055f578063b09904b51461057f57600080fd5b806370a0823114610485578063715018a6146104a557806383632f46146104ba5780638462151c146104d5578063874bc1a01461050257600080fd5b80632fa6f995116101bc57806355f804b31161018057806355f804b3146103fa5780635be9b9be1461041a5780635bf63e20146104305780636352211e146104505780636c0360eb1461047057600080fd5b80632fa6f9951461037b57806334918dfd146103905780633ccfd60b146103a557806342842e0e146103ba5780634f6ccce7146103da57600080fd5b8063109695231161020357806310969523146102e657806318160ddd146103065780631bb352541461032557806323b872dd1461033b5780632f745c591461035b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612509565b6106fc565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610727565b60405161026191906126e3565b34801561029857600080fd5b506102ac6102a736600461258c565b6107b9565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046124df565b610853565b005b3480156102f257600080fd5b506102e4610301366004612543565b610969565b34801561031257600080fd5b506009545b604051908152602001610261565b34801561033157600080fd5b5061031760115481565b34801561034757600080fd5b506102e46103563660046123eb565b6109aa565b34801561036757600080fd5b506103176103763660046124df565b6109db565b34801561038757600080fd5b50610317600a81565b34801561039c57600080fd5b506102e4610a71565b3480156103b157600080fd5b506102e4610ab8565b3480156103c657600080fd5b506102e46103d53660046123eb565b610b71565b3480156103e657600080fd5b506103176103f536600461258c565b610b8c565b34801561040657600080fd5b506102e4610415366004612543565b610c1f565b34801561042657600080fd5b5061031761106881565b34801561043c57600080fd5b5061027f61044b36600461258c565b610c5c565b34801561045c57600080fd5b506102ac61046b36600461258c565b610cf6565b34801561047c57600080fd5b5061027f610d6d565b34801561049157600080fd5b506103176104a036600461239d565b610d7a565b3480156104b157600080fd5b506102e4610e01565b3480156104c657600080fd5b50610317669536c70891000081565b3480156104e157600080fd5b506104f56104f036600461239d565b610e37565b604051610261919061269f565b34801561050e57600080fd5b5061027f610ef6565b34801561052357600080fd5b506000546001600160a01b03166102ac565b34801561054157600080fd5b5061027f610f03565b34801561055657600080fd5b5061027f610f12565b34801561056b57600080fd5b506102e461057a3660046124a3565b610f1f565b34801561058b57600080fd5b506102e461059a366004612543565b610fe4565b3480156105ab57600080fd5b506102e46105ba366004612427565b61106d565b3480156105cb57600080fd5b506105df6105da36600461239d565b6110a5565b604051610261919061263d565b3480156105f857600080fd5b506102e461121c565b34801561060d57600080fd5b5061027f61061c36600461258c565b61128e565b6102e461062f36600461258c565b611369565b34801561064057600080fd5b5061027f61064f36600461258c565b61160d565b34801561066057600080fd5b506102e461066f3660046124df565b6116f8565b34801561068057600080fd5b5061025561068f3660046123b8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b50600e5461025590610100900460ff1681565b3480156106e857600080fd5b506102e46106f736600461239d565b6117d3565b60006001600160e01b0319821663780e9d6360e01b148061072157506107218261186e565b92915050565b60606001805461073690612904565b80601f016020809104026020016040519081016040528092919081815260200182805461076290612904565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085e82610cf6565b9050806001600160a01b0316836001600160a01b031614156108cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082e565b336001600160a01b03821614806108e857506108e8813361068f565b61095a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b61096483836118be565b505050565b6000546001600160a01b031633146109935760405162461bcd60e51b815260040161082e906127f0565b80516109a690600c906020840190612272565b5050565b6109b4338261192c565b6109d05760405162461bcd60e51b815260040161082e90612825565b610964838383611a23565b60006109e683610d7a565b8210610a485760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161082e565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610a9b5760405162461bcd60e51b815260040161082e906127f0565b600e805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610ae25760405162461bcd60e51b815260040161082e906127f0565b60405147903390600090829084908381818185875af1925050503d8060008114610b28576040519150601f19603f3d011682016040523d82523d6000602084013e610b2d565b606091505b50509050806109645760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161082e565b6109648383836040518060200160405280600081525061106d565b6000610b9760095490565b8210610bfa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161082e565b60098281548110610c0d57610c0d6129aa565b90600052602060002001549050919050565b6000546001600160a01b03163314610c495760405162461bcd60e51b815260040161082e906127f0565b80516109a6906010906020840190612272565b600f6020526000908152604090208054610c7590612904565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca190612904565b8015610cee5780601f10610cc357610100808354040283529160200191610cee565b820191906000526020600020905b815481529060010190602001808311610cd157829003601f168201915b505050505081565b6000818152600360205260408120546001600160a01b0316806107215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082e565b60108054610c7590612904565b60006001600160a01b038216610de55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161082e906127f0565b610e356000611bce565b565b60606000610e4483610d7a565b905080610e655760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610e8057610e806129c0565b604051908082528060200260200182016040528015610ea9578160200160208202803683370190505b50905060005b82811015610e5d57610ec185826109db565b828281518110610ed357610ed36129aa565b602090810291909101015280610ee881612939565b915050610eaf565b50919050565b600c8054610c7590612904565b60606002805461073690612904565b600d8054610c7590612904565b6001600160a01b038216331415610f785760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461100e5760405162461bcd60e51b815260040161082e906127f0565b600e5460ff161561105a5760405162461bcd60e51b8152602060048201526016602482015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604482015260640161082e565b80516109a690600d906020840190612272565b611077338361192c565b6110935760405162461bcd60e51b815260040161082e90612825565b61109f84848484611c1e565b50505050565b606060006110b283610d7a565b9050806110eb576040805160008082526020820190925290610e5d565b60608152602001906001900390816110cf579050509392505050565b60008167ffffffffffffffff811115611106576111066129c0565b60405190808252806020026020018201604052801561113957816020015b60608152602001906001900390816111245790505b50905060005b82811015610e5d57600f600061115587846109db565b8152602001908152602001600020805461116e90612904565b80601f016020809104026020016040519081016040528092919081815260200182805461119a90612904565b80156111e75780601f106111bc576101008083540402835291602001916111e7565b820191906000526020600020905b8154815290600101906020018083116111ca57829003601f168201915b50505050508282815181106111fe576111fe6129aa565b6020026020010181905250808061121490612939565b91505061113f565b6000546001600160a01b031633146112465760405162461bcd60e51b815260040161082e906127f0565b600e805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b09061128490600d906126f6565b60405180910390a1565b6000818152600360205260409020546060906001600160a01b031661130d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082e565b6000611317611c51565b905060008151116113375760405180602001604052806000815250611362565b8061134184611c60565b6040516020016113529291906125d1565b6040516020818303038152906040525b9392505050565b6002600b5414156113bc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161082e565b6002600b55600e54610100900460ff166114285760405162461bcd60e51b815260206004820152602760248201527f53616c65206d7573742062652061637469766520746f206d696e74204372617a6044820152667920426f6e677360c81b606482015260840161082e565b6000811180156114395750600a8111155b61148f5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d6044820152606560f81b606482015260840161082e565b6110686114a58261149f60095490565b90611d5e565b11156115055760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f6620426f6e677360b81b606482015260840161082e565b611516669536c70891000082611d6a565b3410156115655760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161082e565b669536c708910000611577823461288e565b146115bd5760405162461bcd60e51b8152602060048201526016602482015275135a5b9d081d985b1d59481a5cc81b9bdd0819dbdbd960521b604482015260640161082e565b60005b818110156116045760006115d360095490565b90506110686115e160095490565b10156115f1576115f13382611d76565b50806115fc81612939565b9150506115c0565b50506001600b55565b606061161860095490565b82106116665760405162461bcd60e51b815260206004820152601a60248201527f43484f4f5345204120424f4e472057495448494e2052414e4745000000000000604482015260640161082e565b600d805461167390612904565b80601f016020809104026020016040519081016040528092919081815260200182805461169f90612904565b80156116ec5780601f106116c1576101008083540402835291602001916116ec565b820191906000526020600020905b8154815290600101906020018083116116cf57829003601f168201915b50505050509050919050565b6000546001600160a01b031633146117225760405162461bcd60e51b815260040161082e906127f0565b600061172d60095490565b905060008211801561174157506011548211155b61178d5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082e565b60005b828110156117bd576117ab846117a68385612876565b611d76565b806117b581612939565b915050611790565b506011546117cb9083611d90565b601155505050565b6000546001600160a01b031633146117fd5760405162461bcd60e51b815260040161082e906127f0565b6001600160a01b0381166118625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b61186b81611bce565b50565b60006001600160e01b031982166380ac58cd60e01b148061189f57506001600160e01b03198216635b5e139f60e01b145b8061072157506301ffc9a760e01b6001600160e01b0319831614610721565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f382610cf6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166119a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b60006119b083610cf6565b9050806001600160a01b0316846001600160a01b031614806119eb5750836001600160a01b03166119e0846107b9565b6001600160a01b0316145b80611a1b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3682610cf6565b6001600160a01b031614611a9e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082e565b6001600160a01b038216611b005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082e565b611b0b838383611d9c565b611b166000826118be565b6001600160a01b0383166000908152600460205260408120805460019290611b3f9084906128c1565b90915550506001600160a01b0382166000908152600460205260408120805460019290611b6d908490612876565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611c29848484611a23565b611c3584848484611e54565b61109f5760405162461bcd60e51b815260040161082e9061279e565b60606010805461073690612904565b606081611c845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cae5780611c9881612939565b9150611ca79050600a8361288e565b9150611c88565b60008167ffffffffffffffff811115611cc957611cc96129c0565b6040519080825280601f01601f191660200182016040528015611cf3576020820181803683370190505b5090505b8415611a1b57611d086001836128c1565b9150611d15600a86612954565b611d20906030612876565b60f81b818381518110611d3557611d356129aa565b60200101906001600160f81b031916908160001a905350611d57600a8661288e565b9450611cf7565b60006113628284612876565b600061136282846128a2565b6109a6828260405180602001604052806000815250611f61565b600061136282846128c1565b6001600160a01b038316611df757611df281600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611e1a565b816001600160a01b0316836001600160a01b031614611e1a57611e1a8382611f94565b6001600160a01b038216611e315761096481612031565b826001600160a01b0316826001600160a01b0316146109645761096482826120e0565b60006001600160a01b0384163b15611f5657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e98903390899088908890600401612600565b602060405180830381600087803b158015611eb257600080fd5b505af1925050508015611ee2575060408051601f3d908101601f19168201909252611edf91810190612526565b60015b611f3c573d808015611f10576040519150601f19603f3d011682016040523d82523d6000602084013e611f15565b606091505b508051611f345760405162461bcd60e51b815260040161082e9061279e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a1b565b506001949350505050565b611f6b8383612124565b611f786000848484611e54565b6109645760405162461bcd60e51b815260040161082e9061279e565b60006001611fa184610d7a565b611fab91906128c1565b600083815260086020526040902054909150808214611ffe576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612043906001906128c1565b6000838152600a60205260408120546009805493945090928490811061206b5761206b6129aa565b90600052602060002001549050806009838154811061208c5761208c6129aa565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120c4576120c4612994565b6001900381819060005260206000200160009055905550505050565b60006120eb83610d7a565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b03821661217a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600360205260409020546001600160a01b0316156121df5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6121eb60008383611d9c565b6001600160a01b0382166000908152600460205260408120805460019290612214908490612876565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461227e90612904565b90600052602060002090601f0160209004810192826122a057600085556122e6565b82601f106122b957805160ff19168380011785556122e6565b828001600101855582156122e6579182015b828111156122e65782518255916020019190600101906122cb565b506122f29291506122f6565b5090565b5b808211156122f257600081556001016122f7565b600067ffffffffffffffff80841115612326576123266129c0565b604051601f8501601f19908116603f0116810190828211818310171561234e5761234e6129c0565b8160405280935085815286868601111561236757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461239857600080fd5b919050565b6000602082840312156123af57600080fd5b61136282612381565b600080604083850312156123cb57600080fd5b6123d483612381565b91506123e260208401612381565b90509250929050565b60008060006060848603121561240057600080fd5b61240984612381565b925061241760208501612381565b9150604084013590509250925092565b6000806000806080858703121561243d57600080fd5b61244685612381565b935061245460208601612381565b925060408501359150606085013567ffffffffffffffff81111561247757600080fd5b8501601f8101871361248857600080fd5b6124978782356020840161230b565b91505092959194509250565b600080604083850312156124b657600080fd5b6124bf83612381565b9150602083013580151581146124d457600080fd5b809150509250929050565b600080604083850312156124f257600080fd5b6124fb83612381565b946020939093013593505050565b60006020828403121561251b57600080fd5b8135611362816129d6565b60006020828403121561253857600080fd5b8151611362816129d6565b60006020828403121561255557600080fd5b813567ffffffffffffffff81111561256c57600080fd5b8201601f8101841361257d57600080fd5b611a1b8482356020840161230b565b60006020828403121561259e57600080fd5b5035919050565b600081518084526125bd8160208601602086016128d8565b601f01601f19169290920160200192915050565b600083516125e38184602088016128d8565b8351908301906125f78183602088016128d8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612633908301846125a5565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561269257603f198886030184526126808583516125a5565b94509285019290850190600101612664565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126d7578351835292840192918401916001016126bb565b50909695505050505050565b60208152600061136260208301846125a5565b600060208083526000845481600182811c91508083168061271857607f831692505b85831081141561273657634e487b7160e01b85526022600452602485fd5b87860183815260200181801561275357600181146127645761278f565b60ff1986168252878201965061278f565b60008b81526020902060005b8681101561278957815484820152908501908901612770565b83019750505b50949998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561288957612889612968565b500190565b60008261289d5761289d61297e565b500490565b60008160001904831182151516156128bc576128bc612968565b500290565b6000828210156128d3576128d3612968565b500390565b60005b838110156128f35781810151838201526020016128db565b8381111561109f5750506000910152565b600181811c9082168061291857607f821691505b60208210811415610ef057634e487b7160e01b600052602260045260246000fd5b600060001982141561294d5761294d612968565b5060010190565b6000826129635761296361297e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461186b57600080fdfea2646970667358221220aad0608fda1b25eb8dda335a64ded16ec640f6307f9a3db964b2d6a59374815664736f6c63430008050033

Deployed Bytecode Sourcemap

57654:5053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47260:224;;;;;;;;;;-1:-1:-1;47260:224:0;;;;;:::i;:::-;;:::i;:::-;;;7300:14:1;;7293:22;7275:41;;7263:2;7248:18;47260:224:0;;;;;;;;30996:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32555:221::-;;;;;;;;;;-1:-1:-1;32555:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;32555:221:0;5091:102:1;32078:411:0;;;;;;;;;;-1:-1:-1;32078:411:0;;;;;:::i;:::-;;:::i;:::-;;59248:125;;;;;;;;;;-1:-1:-1;59248:125:0;;;;;:::i;:::-;;:::i;47900:113::-;;;;;;;;;;-1:-1:-1;47988:10:0;:17;47900:113;;;19808:25:1;;;19796:2;19781:18;47900:113:0;19763:76:1;58408:30:0;;;;;;;;;;;;;;;;33445:339;;;;;;;;;;-1:-1:-1;33445:339:0;;;;;:::i;:::-;;:::i;47568:256::-;;;;;;;;;;-1:-1:-1;47568:256:0;;;;;:::i;:::-;;:::i;58084:44::-;;;;;;;;;;;;58126:2;58084:44;;59725:89;;;;;;;;;;;;;:::i;58550:250::-;;;;;;;;;;;;;:::i;33855:185::-;;;;;;;;;;-1:-1:-1;33855:185:0;;;;;:::i;:::-;;:::i;48090:233::-;;;;;;;;;;-1:-1:-1;48090:233:0;;;;;:::i;:::-;;:::i;59619:98::-;;;;;;;;;;-1:-1:-1;59619:98:0;;;;;:::i;:::-;;:::i;58137:39::-;;;;;;;;;;;;58172:4;58137:39;;58226:43;;;;;;;;;;-1:-1:-1;58226:43:0;;;;;:::i;:::-;;:::i;30690:239::-;;;;;;;;;;-1:-1:-1;30690:239:0;;;;;:::i;:::-;;:::i;58317:26::-;;;;;;;;;;;;;:::i;30420:208::-;;;;;;;;;;-1:-1:-1;30420:208:0;;;;;:::i;:::-;;:::i;2595:94::-;;;;;;;;;;;;;:::i;58008:53::-;;;;;;;;;;;;58044:17;58008:53;;59822:572;;;;;;;;;;-1:-1:-1;59822:572:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57762:34::-;;;;;;;;;;;;;:::i;1944:87::-;;;;;;;;;;-1:-1:-1;1990:7:0;2017:6;-1:-1:-1;;;;;2017:6:0;1944:87;;31165:104;;;;;;;;;;;;;:::i;57859:31::-;;;;;;;;;;;;;:::i;32848:295::-;;;;;;;;;;-1:-1:-1;32848:295:0;;;;;:::i;:::-;;:::i;60839:174::-;;;;;;;;;;-1:-1:-1;60839:174:0;;;;;:::i;:::-;;:::i;34111:328::-;;;;;;;;;;-1:-1:-1;34111:328:0;;;;;:::i;:::-;;:::i;62122:582::-;;;;;;;;;;-1:-1:-1;62122:582:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;60680:124::-;;;;;;;;;;;;;:::i;31340:334::-;;;;;;;;;;-1:-1:-1;31340:334:0;;;;;:::i;:::-;;:::i;61021:971::-;;;;;;:::i;:::-;;:::i;60441:178::-;;;;;;;;;;-1:-1:-1;60441:178:0;;;;;:::i;:::-;;:::i;58808:432::-;;;;;;;;;;-1:-1:-1;58808:432:0;;;;;:::i;:::-;;:::i;33214:164::-;;;;;;;;;;-1:-1:-1;33214:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33335:25:0;;;33311:4;33335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33214:164;58185:32;;;;;;;;;;-1:-1:-1;58185:32:0;;;;;;;;;;;2844:192;;;;;;;;;;-1:-1:-1;2844:192:0;;;;;:::i;:::-;;:::i;47260:224::-;47362:4;-1:-1:-1;;;;;;47386:50:0;;-1:-1:-1;;;47386:50:0;;:90;;;47440:36;47464:11;47440:23;:36::i;:::-;47379:97;47260:224;-1:-1:-1;;47260:224:0:o;30996:100::-;31050:13;31083:5;31076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30996:100;:::o;32555:221::-;32631:7;36038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36038:16:0;32651:73;;;;-1:-1:-1;;;32651:73:0;;15573:2:1;32651:73:0;;;15555:21:1;15612:2;15592:18;;;15585:30;15651:34;15631:18;;;15624:62;-1:-1:-1;;;15702:18:1;;;15695:42;15754:19;;32651:73:0;;;;;;;;;-1:-1:-1;32744:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32744:24:0;;32555:221::o;32078:411::-;32159:13;32175:23;32190:7;32175:14;:23::i;:::-;32159:39;;32223:5;-1:-1:-1;;;;;32217:11:0;:2;-1:-1:-1;;;;;32217:11:0;;;32209:57;;;;-1:-1:-1;;;32209:57:0;;17173:2:1;32209:57:0;;;17155:21:1;17212:2;17192:18;;;17185:30;17251:34;17231:18;;;17224:62;-1:-1:-1;;;17302:18:1;;;17295:31;17343:19;;32209:57:0;17145:223:1;32209:57:0;806:10;-1:-1:-1;;;;;32301:21:0;;;;:62;;-1:-1:-1;32326:37:0;32343:5;806:10;33214:164;:::i;32326:37::-;32279:168;;;;-1:-1:-1;;;32279:168:0;;13611:2:1;32279:168:0;;;13593:21:1;13650:2;13630:18;;;13623:30;13689:34;13669:18;;;13662:62;13760:26;13740:18;;;13733:54;13804:19;;32279:168:0;13583:246:1;32279:168:0;32460:21;32469:2;32473:7;32460:8;:21::i;:::-;32148:341;32078:411;;:::o;59248:125::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;59333:32;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59248:125:::0;:::o;33445:339::-;33640:41;806:10;33673:7;33640:18;:41::i;:::-;33632:103;;;;-1:-1:-1;;;33632:103:0;;;;;;;:::i;:::-;33748:28;33758:4;33764:2;33768:7;33748:9;:28::i;47568:256::-;47665:7;47701:23;47718:5;47701:16;:23::i;:::-;47693:5;:31;47685:87;;;;-1:-1:-1;;;47685:87:0;;8954:2:1;47685:87:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;-1:-1:-1;;;9083:18:1;;;9076:41;9134:19;;47685:87:0;8926:233:1;47685:87:0;-1:-1:-1;;;;;;47790:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;47568:256::o;59725:89::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;59794:12:::1;::::0;;-1:-1:-1;;59778:28:0;::::1;59794:12;::::0;;;::::1;;;59793:13;59778:28:::0;;::::1;;::::0;;59725:89::o;58550:250::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;58718:27:::1;::::0;58616:21:::1;::::0;58677:10:::1;::::0;58598:15:::1;::::0;58677:10;;58616:21;;58598:15;58718:27;58598:15;58718:27;58616:21;58677:10;58718:27:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58699:46;;;58764:7;58756:36;;;::::0;-1:-1:-1;;;58756:36:0;;17926:2:1;58756:36:0::1;::::0;::::1;17908:21:1::0;17965:2;17945:18;;;17938:30;-1:-1:-1;;;17984:18:1;;;17977:46;18040:18;;58756:36:0::1;17898:166:1::0;33855:185:0;33993:39;34010:4;34016:2;34020:7;33993:39;;;;;;;;;;;;:16;:39::i;48090:233::-;48165:7;48201:30;47988:10;:17;;47900:113;48201:30;48193:5;:38;48185:95;;;;-1:-1:-1;;;48185:95:0;;18689:2:1;48185:95:0;;;18671:21:1;18728:2;18708:18;;;18701:30;18767:34;18747:18;;;18740:62;-1:-1:-1;;;18818:18:1;;;18811:42;18870:19;;48185:95:0;18661:234:1;48185:95:0;48298:10;48309:5;48298:17;;;;;;;;:::i;:::-;;;;;;;;;48291:24;;48090:233;;;:::o;59619:98::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;59691:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;58226:43::-:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30690:239::-;30762:7;30798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30798:16:0;30833:19;30825:73;;;;-1:-1:-1;;;30825:73:0;;14447:2:1;30825:73:0;;;14429:21:1;14486:2;14466:18;;;14459:30;14525:34;14505:18;;;14498:62;-1:-1:-1;;;14576:18:1;;;14569:39;14625:19;;30825:73:0;14419:231:1;58317:26:0;;;;;;;:::i;30420:208::-;30492:7;-1:-1:-1;;;;;30520:19:0;;30512:74;;;;-1:-1:-1;;;30512:74:0;;14036:2:1;30512:74:0;;;14018:21:1;14075:2;14055:18;;;14048:30;14114:34;14094:18;;;14087:62;-1:-1:-1;;;14165:18:1;;;14158:40;14215:19;;30512:74:0;14008:232:1;30512:74:0;-1:-1:-1;;;;;;30604:16:0;;;;;:9;:16;;;;;;;30420:208::o;2595:94::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;2660:21:::1;2678:1;2660:9;:21::i;:::-;2595:94::o:0;59822:572::-;59911:16;59945:18;59966:17;59976:6;59966:9;:17::i;:::-;59945:38;-1:-1:-1;59998:15:0;59994:393;;60075:16;;;60089:1;60075:16;;;;;;;;;;;-1:-1:-1;60068:23:0;59822:572;-1:-1:-1;;;59822:572:0:o;59994:393::-;60124:23;60164:10;60150:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60150:25:0;;60124:51;;60190:13;60218:130;60242:10;60234:5;:18;60218:130;;;60298:34;60318:6;60326:5;60298:19;:34::i;:::-;60282:6;60289:5;60282:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;60254:7;;;;:::i;:::-;;;;60218:130;;59994:393;59934:460;59822:572;;;:::o;57762:34::-;;;;;;;:::i;31165:104::-;31221:13;31254:7;31247:14;;;;;:::i;57859:31::-;;;;;;;:::i;32848:295::-;-1:-1:-1;;;;;32951:24:0;;806:10;32951:24;;32943:62;;;;-1:-1:-1;;;32943:62:0;;12133:2:1;32943:62:0;;;12115:21:1;12172:2;12152:18;;;12145:30;12211:27;12191:18;;;12184:55;12256:18;;32943:62:0;12105:175:1;32943:62:0;806:10;33018:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33018:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33018:53:0;;;;;;;;;;33087:48;;7275:41:1;;;33018:42:0;;806:10;33087:48;;7248:18:1;33087:48:0;;;;;;;32848:295;;:::o;60839:174::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;60922:13:::1;::::0;::::1;;:22;60914:57;;;::::0;-1:-1:-1;;;60914:57:0;;17575:2:1;60914:57:0::1;::::0;::::1;17557:21:1::0;17614:2;17594:18;;;17587:30;-1:-1:-1;;;17633:18:1;;;17626:52;17695:18;;60914:57:0::1;17547:172:1::0;60914:57:0::1;60982:23:::0;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;34111:328::-:0;34286:41;806:10;34319:7;34286:18;:41::i;:::-;34278:103;;;;-1:-1:-1;;;34278:103:0;;;;;;;:::i;:::-;34392:39;34406:4;34412:2;34416:7;34425:5;34392:13;:39::i;:::-;34111:328;;;;:::o;62122:582::-;62214:15;62247:18;62268:17;62278:6;62268:9;:17::i;:::-;62247:38;-1:-1:-1;62300:15:0;62296:401;;62377:15;;;62390:1;62377:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62370:22:0;62122:582;-1:-1:-1;;;62122:582:0:o;62296:401::-;62425:22;62463:10;62450:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62425:49;;62489:13;62517:141;62541:10;62533:5;:18;62517:141;;;62597:9;:45;62607:34;62627:6;62635:5;62607:19;:34::i;:::-;62597:45;;;;;;;;;;;62581:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;62588:5;62581:13;;;;;;;;:::i;:::-;;;;;;:61;;;;62553:7;;;;;:::i;:::-;;;;62517:141;;60680:124;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;60731:13:::1;:20:::0;;-1:-1:-1;;60731:20:0::1;60747:4;60731:20;::::0;;60767:29:::1;::::0;::::1;::::0;::::1;::::0;60783:12:::1;::::0;60767:29:::1;:::i;:::-;;;;;;;;60680:124::o:0;31340:334::-;36014:4;36038:16;;;:7;:16;;;;;;31413:13;;-1:-1:-1;;;;;36038:16:0;31439:76;;;;-1:-1:-1;;;31439:76:0;;16757:2:1;31439:76:0;;;16739:21:1;16796:2;16776:18;;;16769:30;16835:34;16815:18;;;16808:62;-1:-1:-1;;;16886:18:1;;;16879:45;16941:19;;31439:76:0;16729:237:1;31439:76:0;31528:21;31552:10;:8;:10::i;:::-;31528:34;;31604:1;31586:7;31580:21;:25;:86;;;;;;;;;;;;;;;;;31632:7;31641:18;:7;:16;:18::i;:::-;31615:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31580:86;31573:93;31340:334;-1:-1:-1;;;31340:334:0:o;61021:971::-;56537:1;57133:7;;:19;;57125:63;;;;-1:-1:-1;;;57125:63:0;;19102:2:1;57125:63:0;;;19084:21:1;19141:2;19121:18;;;19114:30;19180:33;19160:18;;;19153:61;19231:18;;57125:63:0;19074:181:1;57125:63:0;56537:1;57266:7;:18;61148:12:::1;::::0;::::1;::::0;::::1;;;61140:64;;;::::0;-1:-1:-1;;;61140:64:0;;10959:2:1;61140:64:0::1;::::0;::::1;10941:21:1::0;10998:2;10978:18;;;10971:30;11037:34;11017:18;;;11010:62;-1:-1:-1;;;11088:18:1;;;11081:37;11135:19;;61140:64:0::1;10931:229:1::0;61140:64:0::1;61254:1;61237:14;:18;:55;;;;;58126:2;61259:14;:33;;61237:55;61215:138;;;::::0;-1:-1:-1;;;61215:138:0;;19462:2:1;61215:138:0::1;::::0;::::1;19444:21:1::0;19501:2;19481:18;;;19474:30;19540:34;19520:18;;;19513:62;-1:-1:-1;;;19591:18:1;;;19584:31;19632:19;;61215:138:0::1;19434:223:1::0;61215:138:0::1;58172:4;61386:33;61404:14;61386:13;47988:10:::0;:17;;47900:113;61386:13:::1;:17:::0;::::1;:33::i;:::-;:45;;61364:136;;;::::0;-1:-1:-1;;;61364:136:0;;10549:2:1;61364:136:0::1;::::0;::::1;10531:21:1::0;10588:2;10568:18;;;10561:30;10627:34;10607:18;;;10600:62;-1:-1:-1;;;10678:18:1;;;10671:39;10727:19;;61364:136:0::1;10521:231:1::0;61364:136:0::1;61546:29;58044:17;61560:14:::0;61546:13:::1;:29::i;:::-;61533:9;:42;;61511:123;;;::::0;-1:-1:-1;;;61511:123:0;;12838:2:1;61511:123:0::1;::::0;::::1;12820:21:1::0;12877:2;12857:18;;;12850:30;12916:33;12896:18;;;12889:61;12967:18;;61511:123:0::1;12810:181:1::0;61511:123:0::1;58044:17;61667:26;61679:14:::0;61667:9:::1;:26;:::i;:::-;:39;61645:111;;;::::0;-1:-1:-1;;;61645:111:0;;12487:2:1;61645:111:0::1;::::0;::::1;12469:21:1::0;12526:2;12506:18;;;12499:30;-1:-1:-1;;;12545:18:1;;;12538:52;12607:18;;61645:111:0::1;12459:172:1::0;61645:111:0::1;61774:9;61769:216;61793:14;61789:1;:18;61769:216;;;61829:17;61849:13;47988:10:::0;:17;;47900:113;61849:13:::1;61829:33;;58172:4;61881:13;47988:10:::0;:17;;47900:113;61881:13:::1;:24;61877:97;;;61926:32;61936:10;61948:9;61926;:32::i;:::-;-1:-1:-1::0;61809:3:0;::::1;::::0;::::1;:::i;:::-;;;;61769:216;;;-1:-1:-1::0;;56493:1:0;57445:7;:22;61021:971::o;60441:178::-;60497:13;60537;47988:10;:17;;47900:113;60537:13;60531:3;:19;60523:58;;;;-1:-1:-1;;;60523:58:0;;15218:2:1;60523:58:0;;;15200:21:1;15257:2;15237:18;;;15230:30;15296:28;15276:18;;;15269:56;15342:18;;60523:58:0;15190:176:1;60523:58:0;60599:12;60592:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60441:178;;;:::o;58808:432::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;58894:14:::1;58911:13;47988:10:::0;:17;;47900:113;58911:13:::1;58894:30;;58974:1;58957:14;:18;:51;;;;;58997:11;;58979:14;:29;;58957:51;58935:133;;;::::0;-1:-1:-1;;;58935:133:0;;11367:2:1;58935:133:0::1;::::0;::::1;11349:21:1::0;;;11386:18;;;11379:30;11445:34;11425:18;;;11418:62;11497:18;;58935:133:0::1;11339:182:1::0;58935:133:0::1;59084:9;59079:98;59103:14;59099:1;:18;59079:98;;;59139:26;59149:3:::0;59154:10:::1;59163:1:::0;59154:6;:10:::1;:::i;:::-;59139:9;:26::i;:::-;59119:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59079:98;;;-1:-1:-1::0;59201:11:0::1;::::0;:31:::1;::::0;59217:14;59201:15:::1;:31::i;:::-;59187:11;:45:::0;-1:-1:-1;;;58808:432:0:o;2844:192::-;1990:7;2017:6;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2933:22:0;::::1;2925:73;;;::::0;-1:-1:-1;;;2925:73:0;;9785:2:1;2925:73:0::1;::::0;::::1;9767:21:1::0;9824:2;9804:18;;;9797:30;9863:34;9843:18;;;9836:62;-1:-1:-1;;;9914:18:1;;;9907:36;9960:19;;2925:73:0::1;9757:228:1::0;2925:73:0::1;3009:19;3019:8;3009:9;:19::i;:::-;2844:192:::0;:::o;30051:305::-;30153:4;-1:-1:-1;;;;;;30190:40:0;;-1:-1:-1;;;30190:40:0;;:105;;-1:-1:-1;;;;;;;30247:48:0;;-1:-1:-1;;;30247:48:0;30190:105;:158;;;-1:-1:-1;;;;;;;;;;28658:40:0;;;30312:36;28549:157;39931:174;40006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40006:29:0;-1:-1:-1;;;;;40006:29:0;;;;;;;;:24;;40060:23;40006:24;40060:14;:23::i;:::-;-1:-1:-1;;;;;40051:46:0;;;;;;;;;;;39931:174;;:::o;36243:348::-;36336:4;36038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36038:16:0;36353:73;;;;-1:-1:-1;;;36353:73:0;;13198:2:1;36353:73:0;;;13180:21:1;13237:2;13217:18;;;13210:30;13276:34;13256:18;;;13249:62;-1:-1:-1;;;13327:18:1;;;13320:42;13379:19;;36353:73:0;13170:234:1;36353:73:0;36437:13;36453:23;36468:7;36453:14;:23::i;:::-;36437:39;;36506:5;-1:-1:-1;;;;;36495:16:0;:7;-1:-1:-1;;;;;36495:16:0;;:51;;;;36539:7;-1:-1:-1;;;;;36515:31:0;:20;36527:7;36515:11;:20::i;:::-;-1:-1:-1;;;;;36515:31:0;;36495:51;:87;;;-1:-1:-1;;;;;;33335:25:0;;;33311:4;33335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36550:32;36487:96;36243:348;-1:-1:-1;;;;36243:348:0:o;39235:578::-;39394:4;-1:-1:-1;;;;;39367:31:0;:23;39382:7;39367:14;:23::i;:::-;-1:-1:-1;;;;;39367:31:0;;39359:85;;;;-1:-1:-1;;;39359:85:0;;16347:2:1;39359:85:0;;;16329:21:1;16386:2;16366:18;;;16359:30;16425:34;16405:18;;;16398:62;-1:-1:-1;;;16476:18:1;;;16469:39;16525:19;;39359:85:0;16319:231:1;39359:85:0;-1:-1:-1;;;;;39463:16:0;;39455:65;;;;-1:-1:-1;;;39455:65:0;;11728:2:1;39455:65:0;;;11710:21:1;11767:2;11747:18;;;11740:30;11806:34;11786:18;;;11779:62;-1:-1:-1;;;11857:18:1;;;11850:34;11901:19;;39455:65:0;11700:226:1;39455:65:0;39533:39;39554:4;39560:2;39564:7;39533:20;:39::i;:::-;39637:29;39654:1;39658:7;39637:8;:29::i;:::-;-1:-1:-1;;;;;39679:15:0;;;;;;:9;:15;;;;;:20;;39698:1;;39679:15;:20;;39698:1;;39679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39710:13:0;;;;;;:9;:13;;;;;:18;;39727:1;;39710:13;:18;;39727:1;;39710:18;:::i;:::-;;;;-1:-1:-1;;39739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39739:21:0;-1:-1:-1;;;;;39739:21:0;;;;;;;;;39778:27;;39739:16;;39778:27;;;;;;;39235:578;;;:::o;3044:173::-;3100:16;3119:6;;-1:-1:-1;;;;;3136:17:0;;;-1:-1:-1;;;;;;3136:17:0;;;;;;3169:40;;3119:6;;;;;;;3169:40;;3100:16;3169:40;3089:128;3044:173;:::o;35321:315::-;35478:28;35488:4;35494:2;35498:7;35478:9;:28::i;:::-;35525:48;35548:4;35554:2;35558:7;35567:5;35525:22;:48::i;:::-;35517:111;;;;-1:-1:-1;;;35517:111:0;;;;;;;:::i;59511:100::-;59563:13;59596:7;59589:14;;;;;:::i;25986:723::-;26042:13;26263:10;26259:53;;-1:-1:-1;;26290:10:0;;;;;;;;;;;;-1:-1:-1;;;26290:10:0;;;;;25986:723::o;26259:53::-;26337:5;26322:12;26378:78;26385:9;;26378:78;;26411:8;;;;:::i;:::-;;-1:-1:-1;26434:10:0;;-1:-1:-1;26442:2:0;26434:10;;:::i;:::-;;;26378:78;;;26466:19;26498:6;26488:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26488:17:0;;26466:39;;26516:154;26523:10;;26516:154;;26550:11;26560:1;26550:11;;:::i;:::-;;-1:-1:-1;26619:10:0;26627:2;26619:5;:10;:::i;:::-;26606:24;;:2;:24;:::i;:::-;26593:39;;26576:6;26583;26576:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26576:56:0;;;;;;;;-1:-1:-1;26647:11:0;26656:2;26647:11;;:::i;:::-;;;26516:154;;6024:98;6082:7;6109:5;6113:1;6109;:5;:::i;6762:98::-;6820:7;6847:5;6851:1;6847;:5;:::i;36933:110::-;37009:26;37019:2;37023:7;37009:26;;;;;;;;;;;;:9;:26::i;6405:98::-;6463:7;6490:5;6494:1;6490;:5;:::i;48936:589::-;-1:-1:-1;;;;;49142:18:0;;49138:187;;49177:40;49209:7;50352:10;:17;;50325:24;;;;:15;:24;;;;;:44;;;50380:24;;;;;;;;;;;;50248:164;49177:40;49138:187;;;49247:2;-1:-1:-1;;;;;49239:10:0;:4;-1:-1:-1;;;;;49239:10:0;;49235:90;;49266:47;49299:4;49305:7;49266:32;:47::i;:::-;-1:-1:-1;;;;;49339:16:0;;49335:183;;49372:45;49409:7;49372:36;:45::i;49335:183::-;49445:4;-1:-1:-1;;;;;49439:10:0;:2;-1:-1:-1;;;;;49439:10:0;;49435:83;;49466:40;49494:2;49498:7;49466:27;:40::i;40670:799::-;40825:4;-1:-1:-1;;;;;40846:13:0;;18659:20;18707:8;40842:620;;40882:72;;-1:-1:-1;;;40882:72:0;;-1:-1:-1;;;;;40882:36:0;;;;;:72;;806:10;;40933:4;;40939:7;;40948:5;;40882:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40882:72:0;;;;;;;;-1:-1:-1;;40882:72:0;;;;;;;;;;;;:::i;:::-;;;40878:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41124:13:0;;41120:272;;41167:60;;-1:-1:-1;;;41167:60:0;;;;;;;:::i;41120:272::-;41342:6;41336:13;41327:6;41323:2;41319:15;41312:38;40878:529;-1:-1:-1;;;;;;41005:51:0;-1:-1:-1;;;41005:51:0;;-1:-1:-1;40998:58:0;;40842:620;-1:-1:-1;41446:4:0;40670:799;;;;;;:::o;37270:321::-;37400:18;37406:2;37410:7;37400:5;:18::i;:::-;37451:54;37482:1;37486:2;37490:7;37499:5;37451:22;:54::i;:::-;37429:154;;;;-1:-1:-1;;;37429:154:0;;;;;;;:::i;51039:988::-;51305:22;51355:1;51330:22;51347:4;51330:16;:22::i;:::-;:26;;;;:::i;:::-;51367:18;51388:26;;;:17;:26;;;;;;51305:51;;-1:-1:-1;51521:28:0;;;51517:328;;-1:-1:-1;;;;;51588:18:0;;51566:19;51588:18;;;:12;:18;;;;;;;;:34;;;;;;;;;51639:30;;;;;;:44;;;51756:30;;:17;:30;;;;;:43;;;51517:328;-1:-1:-1;51941:26:0;;;;:17;:26;;;;;;;;51934:33;;;-1:-1:-1;;;;;51985:18:0;;;;;:12;:18;;;;;:34;;;;;;;51978:41;51039:988::o;52322:1079::-;52600:10;:17;52575:22;;52600:21;;52620:1;;52600:21;:::i;:::-;52632:18;52653:24;;;:15;:24;;;;;;53026:10;:26;;52575:46;;-1:-1:-1;52653:24:0;;52575:46;;53026:26;;;;;;:::i;:::-;;;;;;;;;53004:48;;53090:11;53065:10;53076;53065:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53170:28;;;:15;:28;;;;;;;:41;;;53342:24;;;;;53335:31;53377:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52393:1008;;;52322:1079;:::o;49826:221::-;49911:14;49928:20;49945:2;49928:16;:20::i;:::-;-1:-1:-1;;;;;49959:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50004:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;49826:221:0:o;37927:382::-;-1:-1:-1;;;;;38007:16:0;;37999:61;;;;-1:-1:-1;;;37999:61:0;;14857:2:1;37999:61:0;;;14839:21:1;;;14876:18;;;14869:30;14935:34;14915:18;;;14908:62;14987:18;;37999:61:0;14829:182:1;37999:61:0;36014:4;36038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36038:16:0;:30;38071:58;;;;-1:-1:-1;;;38071:58:0;;10192:2:1;38071:58:0;;;10174:21:1;10231:2;10211:18;;;10204:30;10270;10250:18;;;10243:58;10318:18;;38071:58:0;10164:178:1;38071:58:0;38142:45;38171:1;38175:2;38179:7;38142:20;:45::i;:::-;-1:-1:-1;;;;;38200:13:0;;;;;;:9;:13;;;;;:18;;38217:1;;38200:13;:18;;38217:1;;38200:18;:::i;:::-;;;;-1:-1:-1;;38229:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38229:21:0;-1:-1:-1;;;;;38229:21:0;;;;;;;;38268:33;;38229:16;;;38268:33;;38229:16;;38268:33;37927:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4092:208;-1:-1:-1;;4092:208:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4492:283;-1:-1:-1;;;;4492:283:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5401:285;-1:-1:-1;;;;;;5401:285:1:o;5691:802::-;5853:4;5882:2;5922;5911:9;5907:18;5952:2;5941:9;5934:21;5975:6;6010;6004:13;6041:6;6033;6026:22;6079:2;6068:9;6064:18;6057:25;;6141:2;6131:6;6128:1;6124:14;6113:9;6109:30;6105:39;6091:53;;6179:2;6171:6;6167:15;6200:1;6210:254;6224:6;6221:1;6218:13;6210:254;;;6317:2;6313:7;6301:9;6293:6;6289:22;6285:36;6280:3;6273:49;6345:39;6377:6;6368;6362:13;6345:39;:::i;:::-;6335:49;-1:-1:-1;6442:12:1;;;;6407:15;;;;6246:1;6239:9;6210:254;;;-1:-1:-1;6481:6:1;;5862:631;-1:-1:-1;;;;;;;5862:631:1:o;6498:632::-;6669:2;6721:21;;;6791:13;;6694:18;;;6813:22;;;6640:4;;6669:2;6892:15;;;;6866:2;6851:18;;;6640:4;6935:169;6949:6;6946:1;6943:13;6935:169;;;7010:13;;6998:26;;7079:15;;;;7044:12;;;;6971:1;6964:9;6935:169;;;-1:-1:-1;7121:3:1;;6649:481;-1:-1:-1;;;;;;6649:481:1:o;7327:219::-;7476:2;7465:9;7458:21;7439:4;7496:44;7536:2;7525:9;7521:18;7513:6;7496:44;:::i;7551:1196::-;7660:4;7689:2;7718;7707:9;7700:21;7741:1;7774:6;7768:13;7804:3;7826:1;7854:9;7850:2;7846:18;7836:28;;7914:2;7903:9;7899:18;7936;7926:2;;7980:4;7972:6;7968:17;7958:27;;7926:2;8033;8025:6;8022:14;8002:18;7999:38;7996:2;;;-1:-1:-1;;;8060:33:1;;8116:4;8113:1;8106:15;8146:4;8067:3;8134:17;7996:2;8227:18;;;20067:19;;;20119:4;20110:14;8270:18;8297:100;;;;8411:1;8406:315;;;;8263:458;;8297:100;-1:-1:-1;;8330:24:1;;8318:37;;8375:12;;;;-1:-1:-1;8297:100:1;;8406:315;19917:1;19910:14;;;19954:4;19941:18;;8501:1;8515:165;8529:6;8526:1;8523:13;8515:165;;;8607:14;;8594:11;;;8587:35;8650:16;;;;8544:10;;8515:165;;;8700:11;;;-1:-1:-1;;8263:458:1;-1:-1:-1;8738:3:1;;7669:1078;-1:-1:-1;;;;;;;;;7669:1078:1:o;9164:414::-;9366:2;9348:21;;;9405:2;9385:18;;;9378:30;9444:34;9439:2;9424:18;;9417:62;-1:-1:-1;;;9510:2:1;9495:18;;9488:48;9568:3;9553:19;;9338:240::o;15784:356::-;15986:2;15968:21;;;16005:18;;;15998:30;16064:34;16059:2;16044:18;;16037:62;16131:2;16116:18;;15958:182::o;18069:413::-;18271:2;18253:21;;;18310:2;18290:18;;;18283:30;18349:34;18344:2;18329:18;;18322:62;-1:-1:-1;;;18415:2:1;18400:18;;18393:47;18472:3;18457:19;;18243:239::o;20135:128::-;20175:3;20206:1;20202:6;20199:1;20196:13;20193:2;;;20212:18;;:::i;:::-;-1:-1:-1;20248:9:1;;20183:80::o;20268:120::-;20308:1;20334;20324:2;;20339:18;;:::i;:::-;-1:-1:-1;20373:9:1;;20314:74::o;20393:168::-;20433:7;20499:1;20495;20491:6;20487:14;20484:1;20481:21;20476:1;20469:9;20462:17;20458:45;20455:2;;;20506:18;;:::i;:::-;-1:-1:-1;20546:9:1;;20445:116::o;20566:125::-;20606:4;20634:1;20631;20628:8;20625:2;;;20639:18;;:::i;:::-;-1:-1:-1;20676:9:1;;20615:76::o;20696:258::-;20768:1;20778:113;20792:6;20789:1;20786:13;20778:113;;;20868:11;;;20862:18;20849:11;;;20842:39;20814:2;20807:10;20778:113;;;20909:6;20906:1;20903:13;20900:2;;;-1:-1:-1;;20944:1:1;20926:16;;20919:27;20749:205::o;20959:380::-;21038:1;21034:12;;;;21081;;;21102:2;;21156:4;21148:6;21144:17;21134:27;;21102:2;21209;21201:6;21198:14;21178:18;21175:38;21172:2;;;21255:10;21250:3;21246:20;21243:1;21236:31;21290:4;21287:1;21280:15;21318:4;21315:1;21308:15;21344:135;21383:3;-1:-1:-1;;21404:17:1;;21401:2;;;21424:18;;:::i;:::-;-1:-1:-1;21471:1:1;21460:13;;21391:88::o;21484:112::-;21516:1;21542;21532:2;;21547:18;;:::i;:::-;-1:-1:-1;21581:9:1;;21522:74::o;21601:127::-;21662:10;21657:3;21653:20;21650:1;21643:31;21693:4;21690:1;21683:15;21717:4;21714:1;21707:15;21733:127;21794:10;21789:3;21785:20;21782:1;21775:31;21825:4;21822:1;21815:15;21849:4;21846:1;21839:15;21865:127;21926:10;21921:3;21917:20;21914:1;21907:31;21957:4;21954:1;21947:15;21981:4;21978:1;21971:15;21997:127;22058:10;22053:3;22049:20;22046:1;22039:31;22089:4;22086:1;22079:15;22113:4;22110:1;22103:15;22129:127;22190:10;22185:3;22181:20;22178:1;22171:31;22221:4;22218:1;22211:15;22245:4;22242:1;22235:15;22261:131;-1:-1:-1;;;;;;22335:32:1;;22325:43;;22315:2;;22382:1;22379;22372:12

Swarm Source

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