ETH Price: $2,439.15 (+4.67%)

GM Frens Cobbee Club (GMNFT)
 

Overview

TokenID

58

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
NFTmint

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-02
*/

/**
 *Submitted for verification at Etherscan.io
*/

/// SPDX-License-Identifier: MIT

pragma solidity 0.8.14;

/**
 * @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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 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);
    }
}

/**
 * @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());
    }
}

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

/**
 * @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);
    }
}

/**
 * @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);
}

/**
 * @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);
}

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

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

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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(to).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 {}
}

/**
 * @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();
    }
}

/**
 * @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, Ownable, 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);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IBEP20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeBEP20 {
    using Address for address;

    function safeTransfer(
        IBEP20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IBEP20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IBEP20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}


/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981PerTokenRoyalties is ERC165, IERC2981Royalties {
    struct Royalty {
        address recipient;
        uint256 value;
    }

    mapping(uint256 => Royalty) internal _royalties;

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /// @dev Sets token royalties
    /// @param id the token id fir which we register the royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setTokenRoyalty(
        uint256 id,
        address recipient,
        uint256 value
    ) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");

        _royalties[id] = Royalty(recipient, value);
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        Royalty memory royalty = _royalties[tokenId];
        return (royalty.recipient, (value * royalty.value) / 10000);
    }
}

contract NFTmint is ERC721, ERC721Enumerable, Ownable, ERC2981PerTokenRoyalties, ERC721Pausable {
    using Counters for Counters.Counter;
    using SafeBEP20 for IBEP20;  
    using Strings for uint256;

    Counters.Counter private _tokenIdTracker;

    uint256 public MAX_NFT = 200;
    uint256 public MAX_BY_MINT = 200;
	uint256 public PRICE = 500 * 10**14;
    uint256 private contractRoyalties = 500;
    string constant ContractCreator = "@cryptoReapR";
    bool public revealed = false;
    string public notRevealedUri;
    string public baseExtension = ".json";

    event NonFungibleTokenRecovery(address indexed token, uint256 tokenId);
    event TokenRecovery(address indexed token, uint256 amount);
	
    string public baseTokenURI;

    address private withdrawAddress;
	
    event CreateNFT(uint256 indexed id);

    //whitelist
    bool public whitelistStatus;
    mapping (address => bool) public isWhitelisted;
	
    constructor() ERC721("GM Frens Cobbee Club", "GMNFT") {
        whitelistStatus = true;
        withdrawAddress =  0xBe5bb1f59dE624D84C59c781A82c7386EAB1771d;
    }
	
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
	
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
	
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mint(uint256 _count, address from) public payable saleIsOpen {
        require(!whitelistStatus || (isWhitelisted[from]), "Not whitelisted");
        uint256 total = _totalSupply();
        require(total + _count <= MAX_NFT, "Max limit");
        require(total <= MAX_NFT, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
        }
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        _setTokenRoyalty(id, owner(), contractRoyalties);
        emit CreateNFT(id);
    }

    function Mintforholders(address _to, uint256 _count) external onlyOwner saleIsOpen{
       for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }

    /**
     * @notice Allows the owner to recover non-fungible tokens sent to the contract by mistake
     * @param _token: NFT token address
     * @param _tokenId: tokenId
     * @dev Callable by owner
     */
    function recoverNonFungibleToken(address _token, uint256 _tokenId) external onlyOwner {
        IERC721(_token).transferFrom(address(this), address(msg.sender), _tokenId);

        emit NonFungibleTokenRecovery(_token, _tokenId);
    }

    /**
     * @notice Allows the owner to recover tokens sent to the contract by mistake
     * @param _token: token address
     * @dev Callable by owner
     */
    function recoverToken(address _token) external onlyOwner {
        uint256 balance = IBEP20(_token).balanceOf(address(this));
        require(balance != 0, "Operations: Cannot recover zero balance");

        IBEP20(_token).safeTransfer(address(msg.sender), balance);

        emit TokenRecovery(_token, balance);
    }
	
    function price(uint256 _count) public view returns (uint256) {
        return PRICE * (_count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

     // set if whitelist function is enabled or disabled
    function setWhitelistStatus(bool newValue) external onlyOwner() {
        require(whitelistStatus != newValue, "Whitelist mode is already enabled");

        whitelistStatus = newValue;
    }
    
    // set wallet as Whitelisted
    function setWhitelisted(address account, bool newValue) external onlyOwner() {
        require(newValue != isWhitelisted[account], "Wallet is whitelisted already");
        isWhitelisted[account] = newValue;
    }

    // set multiple wallets as whitelisted
    function massSetWhitelisted(address[] memory accounts, bool newValue) external onlyOwner() {
        for(uint256 i; i < accounts.length; i++) {
            require(newValue != isWhitelisted[accounts[i]], "Some of the values are already set as Blacklisted");

            isWhitelisted[accounts[i]] = newValue;
        }
    }

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setRoyalties(uint256  _royalties) public onlyOwner {
        contractRoyalties = _royalties;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
	
    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }
	

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        uint256 amountToSend = balance * 95 / 100;
        uint256 fee = balance - amountToSend;
        _widthdraw(owner(), amountToSend);
        _widthdraw(withdrawAddress, fee);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, ERC2981PerTokenRoyalties) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function updatePrice(uint256 newPrice) external onlyOwner {
        PRICE = newPrice*10**14;
    }
	
	function updateMintLimit(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT = newLimit;
    }
	
	function updateMaxSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= _totalSupply(), "Incorrect value");
        MAX_NFT = newSupply;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

    //only owner
    function reveal() public onlyOwner {
      revealed = true;
    }
}

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":"uint256","name":"id","type":"uint256"}],"name":"CreateNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NonFungibleTokenRecovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenRecovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"Mintforholders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PRICE","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"newValue","type":"bool"}],"name":"massSetWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"from","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"recoverNonFungibleToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royalties","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newValue","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newValue","type":"bool"}],"name":"setWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","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":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c8600e819055600f5566b1a2bc2ec500006010556101f46011556012805460ff1916905560c06040526005608081905264173539b7b760d91b60a09081526200004d91601491906200017e565b503480156200005b57600080fd5b50604080518082018252601481527f474d204672656e7320436f6262656520436c756200000000000000000000000060208083019182528351808501909452600584526411d353919560da1b908401528151919291620000be916000916200017e565b508051620000d49060019060208401906200017e565b505050620000f1620000eb6200012860201b60201c565b6200012c565b600c805460ff19169055601680546001600160a81b0319167401be5bb1f59de624d84c59c781a82c7386eab1771d17905562000260565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200018c9062000224565b90600052602060002090601f016020900481019282620001b05760008555620001fb565b82601f10620001cb57805160ff1916838001178555620001fb565b82800160010185558215620001fb579182015b82811115620001fb578251825591602001919060010190620001de565b50620002099291506200020d565b5090565b5b808211156200020957600081556001016200020e565b600181811c908216806200023957607f821691505b6020821081036200025a57634e487b7160e01b600052602260045260246000fd5b50919050565b61361880620002706000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063a22cb465116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c51461082d578063f103b43314610876578063f2c4ce1e14610896578063f2fde38b146108b657600080fd5b8063c87b56dd146107d8578063d547cfb7146107f8578063e01d55c51461080d57600080fd5b8063a22cb4651461072e578063a475b5dd1461074e578063b88d4fde14610763578063bb0fd14714610783578063c3425987146107a3578063c6682862146107c357600080fd5b80639281aa0b1161012e5780639281aa0b1461068557806394bf804d146106a557806395d89b41146106b85780639be65a60146106cd5780639ddf7ad3146106ed578063a1e30bd81461070e57600080fd5b8063715018a6146105f1578063853828b6146106065780638ad5de281461061b5780638d6cc56d146106315780638d859f3e146106515780638da5cb5b1461066757600080fd5b80633af32abf1161021957806355f804b3116101d257806355f804b31461054e57806359a7715a1461056e5780635c975abb146105835780636352211e1461059b5780636fdaddf1146105bb57806370a08231146105d157600080fd5b80633af32abf1461047757806342842e0e146104a7578063438b6300146104c75780634a999118146104f45780634f6ccce714610514578063518302271461053457600080fd5b806318160ddd1161026b57806318160ddd1461039957806323b872dd146103b857806326a49e37146103d85780632a55205a146103f85780632b80183f146104375780632f745c591461045757600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612da4565b6108d6565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612ddf565b6108e7565b005b34801561031657600080fd5b5061031f610937565b6040516102df9190612e54565b34801561033857600080fd5b5061034c610347366004612e67565b6109c9565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a5e565b34801561038557600080fd5b50610308610394366004612e97565b610aec565b3480156103a557600080fd5b506008545b6040519081526020016102df565b3480156103c457600080fd5b506103086103d3366004612ec1565b610c01565b3480156103e457600080fd5b506103aa6103f3366004612e67565b610c32565b34801561040457600080fd5b50610418610413366004612efd565b610c42565b604080516001600160a01b0390931683526020830191909152016102df565b34801561044357600080fd5b50610308610452366004612e67565b610c9b565b34801561046357600080fd5b506103aa610472366004612e97565b610cca565b34801561048357600080fd5b506102d3610492366004612f1f565b60176020526000908152604090205460ff1681565b3480156104b357600080fd5b506103086104c2366004612ec1565b610d60565b3480156104d357600080fd5b506104e76104e2366004612f1f565b610d7b565b6040516102df9190612f3a565b34801561050057600080fd5b5061030861050f366004612ddf565b610e1d565b34801561052057600080fd5b506103aa61052f366004612e67565b610ed1565b34801561054057600080fd5b506012546102d39060ff1681565b34801561055a57600080fd5b5061030861056936600461301d565b610f64565b34801561057a57600080fd5b506103aa610fa5565b34801561058f57600080fd5b50600c5460ff166102d3565b3480156105a757600080fd5b5061034c6105b6366004612e67565b610fb4565b3480156105c757600080fd5b506103aa600e5481565b3480156105dd57600080fd5b506103aa6105ec366004612f1f565b61102b565b3480156105fd57600080fd5b506103086110b2565b34801561061257600080fd5b506103086110e8565b34801561062757600080fd5b506103aa600f5481565b34801561063d57600080fd5b5061030861064c366004612e67565b611177565b34801561065d57600080fd5b506103aa60105481565b34801561067357600080fd5b50600a546001600160a01b031661034c565b34801561069157600080fd5b506103086106a0366004613066565b6111b7565b6103086106b336600461309d565b61127a565b3480156106c457600080fd5b5061031f611478565b3480156106d957600080fd5b506103086106e8366004612f1f565b611487565b3480156106f957600080fd5b506016546102d390600160a01b900460ff1681565b34801561071a57600080fd5b50610308610729366004612e97565b6115d9565b34801561073a57600080fd5b50610308610749366004613066565b611687565b34801561075a57600080fd5b5061030861174b565b34801561076f57600080fd5b5061030861077e3660046130c9565b611784565b34801561078f57600080fd5b5061030861079e366004612e97565b6117b6565b3480156107af57600080fd5b506103086107be366004613145565b611881565b3480156107cf57600080fd5b5061031f6119bb565b3480156107e457600080fd5b5061031f6107f3366004612e67565b6119c8565b34801561080457600080fd5b5061031f611b47565b34801561081957600080fd5b50610308610828366004612e67565b611b54565b34801561083957600080fd5b506102d3610848366004613204565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088257600080fd5b50610308610891366004612e67565b611bc7565b3480156108a257600080fd5b506103086108b136600461301d565b611c3f565b3480156108c257600080fd5b506103086108d1366004612f1f565b611c7c565b60006108e182611d14565b92915050565b600a546001600160a01b0316331461091a5760405162461bcd60e51b81526004016109119061322e565b60405180910390fd5b80151560010361092f5761092c611d39565b50565b61092c611dae565b60606000805461094690613263565b80601f016020809104026020016040519081016040528092919081815260200182805461097290613263565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610911565b506000908152600460205260409020546001600160a01b031690565b60138054610a6b90613263565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9790613263565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b505050505081565b6000610af782610fb4565b9050806001600160a01b0316836001600160a01b031603610b645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610911565b336001600160a01b0382161480610b805750610b808133610848565b610bf25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610911565b610bfc8383611e28565b505050565b610c0b3382611e96565b610c275760405162461bcd60e51b81526004016109119061329d565b610bfc838383611f8d565b6000816010546108e19190613304565b6000828152600b60209081526040808320815180830190925280546001600160a01b0316808352600190910154928201839052839261271090610c859087613304565b610c8f9190613339565b92509250509250929050565b600a546001600160a01b03163314610cc55760405162461bcd60e51b81526004016109119061322e565b601155565b6000610cd58361102b565b8210610d375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610911565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bfc83838360405180602001604052806000815250611784565b60606000610d888361102b565b905060008167ffffffffffffffff811115610da557610da5612f7e565b604051908082528060200260200182016040528015610dce578160200160208202803683370190505b50905060005b82811015610e1557610de68582610cca565b828281518110610df857610df861334d565b602090810291909101015280610e0d81613363565b915050610dd4565b509392505050565b600a546001600160a01b03163314610e475760405162461bcd60e51b81526004016109119061322e565b801515601660149054906101000a900460ff16151503610eb35760405162461bcd60e51b815260206004820152602160248201527f57686974656c697374206d6f646520697320616c726561647920656e61626c656044820152601960fa1b6064820152608401610911565b60168054911515600160a01b0260ff60a01b19909216919091179055565b6000610edc60085490565b8210610f3f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610911565b60088281548110610f5257610f5261334d565b90600052602060002001549050919050565b600a546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016109119061322e565b8051610fa1906015906020840190612cf5565b5050565b6000610faf612138565b905090565b6000818152600260205260408120546001600160a01b0316806108e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610911565b60006001600160a01b0382166110965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610911565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110dc5760405162461bcd60e51b81526004016109119061322e565b6110e66000612143565b565b600a546001600160a01b031633146111125760405162461bcd60e51b81526004016109119061322e565b478061111d57600080fd5b6000606461112c83605f613304565b6111369190613339565b90506000611144828461337c565b905061116161115b600a546001600160a01b031690565b83612195565b601654610bfc906001600160a01b031682612195565b600a546001600160a01b031633146111a15760405162461bcd60e51b81526004016109119061322e565b6111b181655af3107a4000613304565b60105550565b600a546001600160a01b031633146111e15760405162461bcd60e51b81526004016109119061322e565b6001600160a01b03821660009081526017602052604090205460ff1615158115150361124f5760405162461bcd60e51b815260206004820152601d60248201527f57616c6c65742069732077686974656c697374656420616c72656164790000006044820152606401610911565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b600e54611285612138565b11156112a35760405162461bcd60e51b815260040161091190613393565b600a546001600160a01b031633146112d857600c5460ff16156112d85760405162461bcd60e51b8152600401610911906133b5565b601654600160a01b900460ff16158061130957506001600160a01b03811660009081526017602052604090205460ff165b6113475760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610911565b6000611351612138565b600e5490915061136184836133df565b111561139b5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610911565b600e548111156113bd5760405162461bcd60e51b815260040161091190613393565b600f548311156114005760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b6044820152606401610911565b61140983610c32565b34101561144c5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610911565b60005b83811015611472576114603361222b565b8061146a81613363565b91505061144f565b50505050565b60606001805461094690613263565b600a546001600160a01b031633146114b15760405162461bcd60e51b81526004016109119061322e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151c91906133f7565b90508060000361157e5760405162461bcd60e51b815260206004820152602760248201527f4f7065726174696f6e733a2043616e6e6f74207265636f766572207a65726f2060448201526662616c616e636560c81b6064820152608401610911565b6115926001600160a01b038316338361229c565b816001600160a01b03167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e98826040516115cd91815260200190565b60405180910390a25050565b600a546001600160a01b031633146116035760405162461bcd60e51b81526004016109119061322e565b600e5461160e612138565b111561162c5760405162461bcd60e51b815260040161091190613393565b600a546001600160a01b0316331461166157600c5460ff16156116615760405162461bcd60e51b8152600401610911906133b5565b60005b81811015610bfc576116758361222b565b8061167f81613363565b915050611664565b336001600160a01b038316036116df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610911565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117755760405162461bcd60e51b81526004016109119061322e565b6012805460ff19166001179055565b61178e3383611e96565b6117aa5760405162461bcd60e51b81526004016109119061329d565b611472848484846122ee565b600a546001600160a01b031633146117e05760405162461bcd60e51b81526004016109119061322e565b6040516323b872dd60e01b8152306004820152336024820152604481018290526001600160a01b038316906323b872dd90606401600060405180830381600087803b15801561182e57600080fd5b505af1158015611842573d6000803e3d6000fd5b50505050816001600160a01b03167f861c3ea25dbda3af0bf5d258ba8582c0276c9446b1479e817be3f1b4a89acf91826040516115cd91815260200190565b600a546001600160a01b031633146118ab5760405162461bcd60e51b81526004016109119061322e565b60005b8251811015610bfc57601760008483815181106118cd576118cd61334d565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff161515821515036119605760405162461bcd60e51b815260206004820152603160248201527f536f6d65206f66207468652076616c7565732061726520616c72656164792073604482015270195d08185cc8109b1858dadb1a5cdd1959607a1b6064820152608401610911565b81601760008584815181106119775761197761334d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806119b381613363565b9150506118ae565b60148054610a6b90613263565b6000818152600260205260409020546060906001600160a01b0316611a475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610911565b60125460ff161515600003611ae85760138054611a6390613263565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8f90613263565b8015611adc5780601f10611ab157610100808354040283529160200191611adc565b820191906000526020600020905b815481529060010190602001808311611abf57829003601f168201915b50505050509050919050565b6000611af2612321565b90506000815111611b125760405180602001604052806000815250611b40565b80611b1c84612330565b6014604051602001611b3093929190613410565b6040516020818303038152906040525b9392505050565b60158054610a6b90613263565b600a546001600160a01b03163314611b7e5760405162461bcd60e51b81526004016109119061322e565b80600e541015611bc25760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742076616c756560881b6044820152606401610911565b600f55565b600a546001600160a01b03163314611bf15760405162461bcd60e51b81526004016109119061322e565b611bf9612138565b811015611c3a5760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742076616c756560881b6044820152606401610911565b600e55565b600a546001600160a01b03163314611c695760405162461bcd60e51b81526004016109119061322e565b8051610fa1906013906020840190612cf5565b600a546001600160a01b03163314611ca65760405162461bcd60e51b81526004016109119061322e565b6001600160a01b038116611d0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b61092c81612143565b60006001600160e01b0319821663152a902d60e11b14806108e157506108e182612431565b600c5460ff1615611d5c5760405162461bcd60e51b8152600401610911906133b5565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d913390565b6040516001600160a01b03909116815260200160405180910390a1565b600c5460ff16611df75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610911565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611d91565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e5d82610fb4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f0f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610911565b6000611f1a83610fb4565b9050806001600160a01b0316846001600160a01b03161480611f555750836001600160a01b0316611f4a846109c9565b6001600160a01b0316145b80611f8557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fa082610fb4565b6001600160a01b0316146120085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610911565b6001600160a01b03821661206a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610911565b612075838383612456565b612080600082611e28565b6001600160a01b03831660009081526003602052604081208054600192906120a990849061337c565b90915550506001600160a01b03821660009081526003602052604081208054600192906120d79084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610faf600d5490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121e2576040519150601f19603f3d011682016040523d82523d6000602084013e6121e7565b606091505b5050905080610bfc5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610911565b6000612235612138565b9050612245600d80546001019055565b61224f8282612461565b61226d81612265600a546001600160a01b031690565b60115461247b565b60405181907ffc8f2896a026fe67cf7750939518a86f80d8740522b220a53c353e741f706fd590600090a25050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610bfc908490612515565b6122f9848484611f8d565b612305848484846125e7565b6114725760405162461bcd60e51b8152600401610911906134d3565b60606015805461094690613263565b6060816000036123575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612381578061236b81613363565b915061237a9050600a83613339565b915061235b565b60008167ffffffffffffffff81111561239c5761239c612f7e565b6040519080825280601f01601f1916602001820160405280156123c6576020820181803683370190505b5090505b8415611f85576123db60018361337c565b91506123e8600a86613525565b6123f39060306133df565b60f81b8183815181106124085761240861334d565b60200101906001600160f81b031916908160001a90535061242a600a86613339565b94506123ca565b60006001600160e01b0319821663780e9d6360e01b14806108e157506108e1826126e8565b610bfc838383612738565b610fa18282604051806020016040528060008152506127bc565b6127108111156124cd5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610911565b6040805180820182526001600160a01b03938416815260208082019384526000958652600b90529320925183546001600160a01b031916921691909117825551600190910155565b600061256a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127ef9092919063ffffffff16565b805190915015610bfc57808060200190518101906125889190613539565b610bfc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610911565b60006001600160a01b0384163b156126dd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061262b903390899088908890600401613556565b6020604051808303816000875af1925050508015612666575060408051601f3d908101601f1916820190925261266391810190613593565b60015b6126c3573d808015612694576040519150601f19603f3d011682016040523d82523d6000602084013e612699565b606091505b5080516000036126bb5760405162461bcd60e51b8152600401610911906134d3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f85565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061271957506001600160e01b03198216635b5e139f60e01b145b806108e157506301ffc9a760e01b6001600160e01b03198316146108e1565b6127438383836127fe565b600a546001600160a01b03163314610bfc57600c5460ff1615610bfc5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610911565b6127c683836128b6565b6127d360008484846125e7565b610bfc5760405162461bcd60e51b8152600401610911906134d3565b6060611f858484600085612a04565b6001600160a01b0383166128595761285481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61287c565b816001600160a01b0316836001600160a01b03161461287c5761287c8382612b2c565b6001600160a01b03821661289357610bfc81612bc9565b826001600160a01b0316826001600160a01b031614610bfc57610bfc8282612c78565b6001600160a01b03821661290c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610911565b6000818152600260205260409020546001600160a01b0316156129715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610911565b61297d60008383612456565b6001600160a01b03821660009081526003602052604081208054600192906129a69084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612a655760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610911565b843b612ab35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610911565b600080866001600160a01b03168587604051612acf91906135b0565b60006040518083038185875af1925050503d8060008114612b0c576040519150601f19603f3d011682016040523d82523d6000602084013e612b11565b606091505b5091509150612b21828286612cbc565b979650505050505050565b60006001612b398461102b565b612b43919061337c565b600083815260076020526040902054909150808214612b96576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612bdb9060019061337c565b60008381526009602052604081205460088054939450909284908110612c0357612c0361334d565b906000526020600020015490508060088381548110612c2457612c2461334d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c5c57612c5c6135cc565b6001900381819060005260206000200160009055905550505050565b6000612c838361102b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60608315612ccb575081611b40565b825115612cdb5782518084602001fd5b8160405162461bcd60e51b81526004016109119190612e54565b828054612d0190613263565b90600052602060002090601f016020900481019282612d235760008555612d69565b82601f10612d3c57805160ff1916838001178555612d69565b82800160010185558215612d69579182015b82811115612d69578251825591602001919060010190612d4e565b50612d75929150612d79565b5090565b5b80821115612d755760008155600101612d7a565b6001600160e01b03198116811461092c57600080fd5b600060208284031215612db657600080fd5b8135611b4081612d8e565b801515811461092c57600080fd5b8035612dda81612dc1565b919050565b600060208284031215612df157600080fd5b8135611b4081612dc1565b60005b83811015612e17578181015183820152602001612dff565b838111156114725750506000910152565b60008151808452612e40816020860160208601612dfc565b601f01601f19169290920160200192915050565b602081526000611b406020830184612e28565b600060208284031215612e7957600080fd5b5035919050565b80356001600160a01b0381168114612dda57600080fd5b60008060408385031215612eaa57600080fd5b612eb383612e80565b946020939093013593505050565b600080600060608486031215612ed657600080fd5b612edf84612e80565b9250612eed60208501612e80565b9150604084013590509250925092565b60008060408385031215612f1057600080fd5b50508035926020909101359150565b600060208284031215612f3157600080fd5b611b4082612e80565b6020808252825182820181905260009190848201906040850190845b81811015612f7257835183529284019291840191600101612f56565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612fbd57612fbd612f7e565b604052919050565b600067ffffffffffffffff831115612fdf57612fdf612f7e565b612ff2601f8401601f1916602001612f94565b905082815283838301111561300657600080fd5b828260208301376000602084830101529392505050565b60006020828403121561302f57600080fd5b813567ffffffffffffffff81111561304657600080fd5b8201601f8101841361305757600080fd5b611f8584823560208401612fc5565b6000806040838503121561307957600080fd5b61308283612e80565b9150602083013561309281612dc1565b809150509250929050565b600080604083850312156130b057600080fd5b823591506130c060208401612e80565b90509250929050565b600080600080608085870312156130df57600080fd5b6130e885612e80565b93506130f660208601612e80565b925060408501359150606085013567ffffffffffffffff81111561311957600080fd5b8501601f8101871361312a57600080fd5b61313987823560208401612fc5565b91505092959194509250565b6000806040838503121561315857600080fd5b823567ffffffffffffffff8082111561317057600080fd5b818501915085601f83011261318457600080fd5b813560208282111561319857613198612f7e565b8160051b92506131a9818401612f94565b82815292840181019281810190898511156131c357600080fd5b948201945b848610156131e8576131d986612e80565b825294820194908201906131c8565b96506131f79050878201612dcf565b9450505050509250929050565b6000806040838503121561321757600080fd5b61322083612e80565b91506130c060208401612e80565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061327757607f821691505b60208210810361329757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561331e5761331e6132ee565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261334857613348613323565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201613375576133756132ee565b5060010190565b60008282101561338e5761338e6132ee565b500390565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600082198211156133f2576133f26132ee565b500190565b60006020828403121561340957600080fd5b5051919050565b6000845160206134238285838a01612dfc565b8551918401916134368184848a01612dfc565b8554920191600090600181811c908083168061345357607f831692505b858310810361347057634e487b7160e01b85526022600452602485fd5b8080156134845760018114613495576134c2565b60ff198516885283880195506134c2565b60008b81526020902060005b858110156134ba5781548a8201529084019088016134a1565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261353457613534613323565b500690565b60006020828403121561354b57600080fd5b8151611b4081612dc1565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061358990830184612e28565b9695505050505050565b6000602082840312156135a557600080fd5b8151611b4081612d8e565b600082516135c2818460208701612dfc565b9190910192915050565b634e487b7160e01b600052603160045260246000fdfea264697066735822122002acc1d5b4ceaaceef29da5791df0c4e7ee9acd2b2e439c72f48847e51f8905b64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c8063715018a611610175578063a22cb465116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c51461082d578063f103b43314610876578063f2c4ce1e14610896578063f2fde38b146108b657600080fd5b8063c87b56dd146107d8578063d547cfb7146107f8578063e01d55c51461080d57600080fd5b8063a22cb4651461072e578063a475b5dd1461074e578063b88d4fde14610763578063bb0fd14714610783578063c3425987146107a3578063c6682862146107c357600080fd5b80639281aa0b1161012e5780639281aa0b1461068557806394bf804d146106a557806395d89b41146106b85780639be65a60146106cd5780639ddf7ad3146106ed578063a1e30bd81461070e57600080fd5b8063715018a6146105f1578063853828b6146106065780638ad5de281461061b5780638d6cc56d146106315780638d859f3e146106515780638da5cb5b1461066757600080fd5b80633af32abf1161021957806355f804b3116101d257806355f804b31461054e57806359a7715a1461056e5780635c975abb146105835780636352211e1461059b5780636fdaddf1146105bb57806370a08231146105d157600080fd5b80633af32abf1461047757806342842e0e146104a7578063438b6300146104c75780634a999118146104f45780634f6ccce714610514578063518302271461053457600080fd5b806318160ddd1161026b57806318160ddd1461039957806323b872dd146103b857806326a49e37146103d85780632a55205a146103f85780632b80183f146104375780632f745c591461045757600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612da4565b6108d6565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612ddf565b6108e7565b005b34801561031657600080fd5b5061031f610937565b6040516102df9190612e54565b34801561033857600080fd5b5061034c610347366004612e67565b6109c9565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a5e565b34801561038557600080fd5b50610308610394366004612e97565b610aec565b3480156103a557600080fd5b506008545b6040519081526020016102df565b3480156103c457600080fd5b506103086103d3366004612ec1565b610c01565b3480156103e457600080fd5b506103aa6103f3366004612e67565b610c32565b34801561040457600080fd5b50610418610413366004612efd565b610c42565b604080516001600160a01b0390931683526020830191909152016102df565b34801561044357600080fd5b50610308610452366004612e67565b610c9b565b34801561046357600080fd5b506103aa610472366004612e97565b610cca565b34801561048357600080fd5b506102d3610492366004612f1f565b60176020526000908152604090205460ff1681565b3480156104b357600080fd5b506103086104c2366004612ec1565b610d60565b3480156104d357600080fd5b506104e76104e2366004612f1f565b610d7b565b6040516102df9190612f3a565b34801561050057600080fd5b5061030861050f366004612ddf565b610e1d565b34801561052057600080fd5b506103aa61052f366004612e67565b610ed1565b34801561054057600080fd5b506012546102d39060ff1681565b34801561055a57600080fd5b5061030861056936600461301d565b610f64565b34801561057a57600080fd5b506103aa610fa5565b34801561058f57600080fd5b50600c5460ff166102d3565b3480156105a757600080fd5b5061034c6105b6366004612e67565b610fb4565b3480156105c757600080fd5b506103aa600e5481565b3480156105dd57600080fd5b506103aa6105ec366004612f1f565b61102b565b3480156105fd57600080fd5b506103086110b2565b34801561061257600080fd5b506103086110e8565b34801561062757600080fd5b506103aa600f5481565b34801561063d57600080fd5b5061030861064c366004612e67565b611177565b34801561065d57600080fd5b506103aa60105481565b34801561067357600080fd5b50600a546001600160a01b031661034c565b34801561069157600080fd5b506103086106a0366004613066565b6111b7565b6103086106b336600461309d565b61127a565b3480156106c457600080fd5b5061031f611478565b3480156106d957600080fd5b506103086106e8366004612f1f565b611487565b3480156106f957600080fd5b506016546102d390600160a01b900460ff1681565b34801561071a57600080fd5b50610308610729366004612e97565b6115d9565b34801561073a57600080fd5b50610308610749366004613066565b611687565b34801561075a57600080fd5b5061030861174b565b34801561076f57600080fd5b5061030861077e3660046130c9565b611784565b34801561078f57600080fd5b5061030861079e366004612e97565b6117b6565b3480156107af57600080fd5b506103086107be366004613145565b611881565b3480156107cf57600080fd5b5061031f6119bb565b3480156107e457600080fd5b5061031f6107f3366004612e67565b6119c8565b34801561080457600080fd5b5061031f611b47565b34801561081957600080fd5b50610308610828366004612e67565b611b54565b34801561083957600080fd5b506102d3610848366004613204565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088257600080fd5b50610308610891366004612e67565b611bc7565b3480156108a257600080fd5b506103086108b136600461301d565b611c3f565b3480156108c257600080fd5b506103086108d1366004612f1f565b611c7c565b60006108e182611d14565b92915050565b600a546001600160a01b0316331461091a5760405162461bcd60e51b81526004016109119061322e565b60405180910390fd5b80151560010361092f5761092c611d39565b50565b61092c611dae565b60606000805461094690613263565b80601f016020809104026020016040519081016040528092919081815260200182805461097290613263565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610911565b506000908152600460205260409020546001600160a01b031690565b60138054610a6b90613263565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9790613263565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b505050505081565b6000610af782610fb4565b9050806001600160a01b0316836001600160a01b031603610b645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610911565b336001600160a01b0382161480610b805750610b808133610848565b610bf25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610911565b610bfc8383611e28565b505050565b610c0b3382611e96565b610c275760405162461bcd60e51b81526004016109119061329d565b610bfc838383611f8d565b6000816010546108e19190613304565b6000828152600b60209081526040808320815180830190925280546001600160a01b0316808352600190910154928201839052839261271090610c859087613304565b610c8f9190613339565b92509250509250929050565b600a546001600160a01b03163314610cc55760405162461bcd60e51b81526004016109119061322e565b601155565b6000610cd58361102b565b8210610d375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610911565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bfc83838360405180602001604052806000815250611784565b60606000610d888361102b565b905060008167ffffffffffffffff811115610da557610da5612f7e565b604051908082528060200260200182016040528015610dce578160200160208202803683370190505b50905060005b82811015610e1557610de68582610cca565b828281518110610df857610df861334d565b602090810291909101015280610e0d81613363565b915050610dd4565b509392505050565b600a546001600160a01b03163314610e475760405162461bcd60e51b81526004016109119061322e565b801515601660149054906101000a900460ff16151503610eb35760405162461bcd60e51b815260206004820152602160248201527f57686974656c697374206d6f646520697320616c726561647920656e61626c656044820152601960fa1b6064820152608401610911565b60168054911515600160a01b0260ff60a01b19909216919091179055565b6000610edc60085490565b8210610f3f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610911565b60088281548110610f5257610f5261334d565b90600052602060002001549050919050565b600a546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016109119061322e565b8051610fa1906015906020840190612cf5565b5050565b6000610faf612138565b905090565b6000818152600260205260408120546001600160a01b0316806108e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610911565b60006001600160a01b0382166110965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610911565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110dc5760405162461bcd60e51b81526004016109119061322e565b6110e66000612143565b565b600a546001600160a01b031633146111125760405162461bcd60e51b81526004016109119061322e565b478061111d57600080fd5b6000606461112c83605f613304565b6111369190613339565b90506000611144828461337c565b905061116161115b600a546001600160a01b031690565b83612195565b601654610bfc906001600160a01b031682612195565b600a546001600160a01b031633146111a15760405162461bcd60e51b81526004016109119061322e565b6111b181655af3107a4000613304565b60105550565b600a546001600160a01b031633146111e15760405162461bcd60e51b81526004016109119061322e565b6001600160a01b03821660009081526017602052604090205460ff1615158115150361124f5760405162461bcd60e51b815260206004820152601d60248201527f57616c6c65742069732077686974656c697374656420616c72656164790000006044820152606401610911565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b600e54611285612138565b11156112a35760405162461bcd60e51b815260040161091190613393565b600a546001600160a01b031633146112d857600c5460ff16156112d85760405162461bcd60e51b8152600401610911906133b5565b601654600160a01b900460ff16158061130957506001600160a01b03811660009081526017602052604090205460ff165b6113475760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610911565b6000611351612138565b600e5490915061136184836133df565b111561139b5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610911565b600e548111156113bd5760405162461bcd60e51b815260040161091190613393565b600f548311156114005760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b6044820152606401610911565b61140983610c32565b34101561144c5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610911565b60005b83811015611472576114603361222b565b8061146a81613363565b91505061144f565b50505050565b60606001805461094690613263565b600a546001600160a01b031633146114b15760405162461bcd60e51b81526004016109119061322e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151c91906133f7565b90508060000361157e5760405162461bcd60e51b815260206004820152602760248201527f4f7065726174696f6e733a2043616e6e6f74207265636f766572207a65726f2060448201526662616c616e636560c81b6064820152608401610911565b6115926001600160a01b038316338361229c565b816001600160a01b03167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e98826040516115cd91815260200190565b60405180910390a25050565b600a546001600160a01b031633146116035760405162461bcd60e51b81526004016109119061322e565b600e5461160e612138565b111561162c5760405162461bcd60e51b815260040161091190613393565b600a546001600160a01b0316331461166157600c5460ff16156116615760405162461bcd60e51b8152600401610911906133b5565b60005b81811015610bfc576116758361222b565b8061167f81613363565b915050611664565b336001600160a01b038316036116df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610911565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117755760405162461bcd60e51b81526004016109119061322e565b6012805460ff19166001179055565b61178e3383611e96565b6117aa5760405162461bcd60e51b81526004016109119061329d565b611472848484846122ee565b600a546001600160a01b031633146117e05760405162461bcd60e51b81526004016109119061322e565b6040516323b872dd60e01b8152306004820152336024820152604481018290526001600160a01b038316906323b872dd90606401600060405180830381600087803b15801561182e57600080fd5b505af1158015611842573d6000803e3d6000fd5b50505050816001600160a01b03167f861c3ea25dbda3af0bf5d258ba8582c0276c9446b1479e817be3f1b4a89acf91826040516115cd91815260200190565b600a546001600160a01b031633146118ab5760405162461bcd60e51b81526004016109119061322e565b60005b8251811015610bfc57601760008483815181106118cd576118cd61334d565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff161515821515036119605760405162461bcd60e51b815260206004820152603160248201527f536f6d65206f66207468652076616c7565732061726520616c72656164792073604482015270195d08185cc8109b1858dadb1a5cdd1959607a1b6064820152608401610911565b81601760008584815181106119775761197761334d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806119b381613363565b9150506118ae565b60148054610a6b90613263565b6000818152600260205260409020546060906001600160a01b0316611a475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610911565b60125460ff161515600003611ae85760138054611a6390613263565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8f90613263565b8015611adc5780601f10611ab157610100808354040283529160200191611adc565b820191906000526020600020905b815481529060010190602001808311611abf57829003601f168201915b50505050509050919050565b6000611af2612321565b90506000815111611b125760405180602001604052806000815250611b40565b80611b1c84612330565b6014604051602001611b3093929190613410565b6040516020818303038152906040525b9392505050565b60158054610a6b90613263565b600a546001600160a01b03163314611b7e5760405162461bcd60e51b81526004016109119061322e565b80600e541015611bc25760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742076616c756560881b6044820152606401610911565b600f55565b600a546001600160a01b03163314611bf15760405162461bcd60e51b81526004016109119061322e565b611bf9612138565b811015611c3a5760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742076616c756560881b6044820152606401610911565b600e55565b600a546001600160a01b03163314611c695760405162461bcd60e51b81526004016109119061322e565b8051610fa1906013906020840190612cf5565b600a546001600160a01b03163314611ca65760405162461bcd60e51b81526004016109119061322e565b6001600160a01b038116611d0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b61092c81612143565b60006001600160e01b0319821663152a902d60e11b14806108e157506108e182612431565b600c5460ff1615611d5c5760405162461bcd60e51b8152600401610911906133b5565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d913390565b6040516001600160a01b03909116815260200160405180910390a1565b600c5460ff16611df75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610911565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611d91565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e5d82610fb4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f0f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610911565b6000611f1a83610fb4565b9050806001600160a01b0316846001600160a01b03161480611f555750836001600160a01b0316611f4a846109c9565b6001600160a01b0316145b80611f8557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fa082610fb4565b6001600160a01b0316146120085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610911565b6001600160a01b03821661206a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610911565b612075838383612456565b612080600082611e28565b6001600160a01b03831660009081526003602052604081208054600192906120a990849061337c565b90915550506001600160a01b03821660009081526003602052604081208054600192906120d79084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610faf600d5490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121e2576040519150601f19603f3d011682016040523d82523d6000602084013e6121e7565b606091505b5050905080610bfc5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610911565b6000612235612138565b9050612245600d80546001019055565b61224f8282612461565b61226d81612265600a546001600160a01b031690565b60115461247b565b60405181907ffc8f2896a026fe67cf7750939518a86f80d8740522b220a53c353e741f706fd590600090a25050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610bfc908490612515565b6122f9848484611f8d565b612305848484846125e7565b6114725760405162461bcd60e51b8152600401610911906134d3565b60606015805461094690613263565b6060816000036123575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612381578061236b81613363565b915061237a9050600a83613339565b915061235b565b60008167ffffffffffffffff81111561239c5761239c612f7e565b6040519080825280601f01601f1916602001820160405280156123c6576020820181803683370190505b5090505b8415611f85576123db60018361337c565b91506123e8600a86613525565b6123f39060306133df565b60f81b8183815181106124085761240861334d565b60200101906001600160f81b031916908160001a90535061242a600a86613339565b94506123ca565b60006001600160e01b0319821663780e9d6360e01b14806108e157506108e1826126e8565b610bfc838383612738565b610fa18282604051806020016040528060008152506127bc565b6127108111156124cd5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610911565b6040805180820182526001600160a01b03938416815260208082019384526000958652600b90529320925183546001600160a01b031916921691909117825551600190910155565b600061256a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127ef9092919063ffffffff16565b805190915015610bfc57808060200190518101906125889190613539565b610bfc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610911565b60006001600160a01b0384163b156126dd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061262b903390899088908890600401613556565b6020604051808303816000875af1925050508015612666575060408051601f3d908101601f1916820190925261266391810190613593565b60015b6126c3573d808015612694576040519150601f19603f3d011682016040523d82523d6000602084013e612699565b606091505b5080516000036126bb5760405162461bcd60e51b8152600401610911906134d3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f85565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061271957506001600160e01b03198216635b5e139f60e01b145b806108e157506301ffc9a760e01b6001600160e01b03198316146108e1565b6127438383836127fe565b600a546001600160a01b03163314610bfc57600c5460ff1615610bfc5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610911565b6127c683836128b6565b6127d360008484846125e7565b610bfc5760405162461bcd60e51b8152600401610911906134d3565b6060611f858484600085612a04565b6001600160a01b0383166128595761285481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61287c565b816001600160a01b0316836001600160a01b03161461287c5761287c8382612b2c565b6001600160a01b03821661289357610bfc81612bc9565b826001600160a01b0316826001600160a01b031614610bfc57610bfc8282612c78565b6001600160a01b03821661290c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610911565b6000818152600260205260409020546001600160a01b0316156129715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610911565b61297d60008383612456565b6001600160a01b03821660009081526003602052604081208054600192906129a69084906133df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612a655760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610911565b843b612ab35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610911565b600080866001600160a01b03168587604051612acf91906135b0565b60006040518083038185875af1925050503d8060008114612b0c576040519150601f19603f3d011682016040523d82523d6000602084013e612b11565b606091505b5091509150612b21828286612cbc565b979650505050505050565b60006001612b398461102b565b612b43919061337c565b600083815260076020526040902054909150808214612b96576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612bdb9060019061337c565b60008381526009602052604081205460088054939450909284908110612c0357612c0361334d565b906000526020600020015490508060088381548110612c2457612c2461334d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c5c57612c5c6135cc565b6001900381819060005260206000200160009055905550505050565b6000612c838361102b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60608315612ccb575081611b40565b825115612cdb5782518084602001fd5b8160405162461bcd60e51b81526004016109119190612e54565b828054612d0190613263565b90600052602060002090601f016020900481019282612d235760008555612d69565b82601f10612d3c57805160ff1916838001178555612d69565b82800160010185558215612d69579182015b82811115612d69578251825591602001919060010190612d4e565b50612d75929150612d79565b5090565b5b80821115612d755760008155600101612d7a565b6001600160e01b03198116811461092c57600080fd5b600060208284031215612db657600080fd5b8135611b4081612d8e565b801515811461092c57600080fd5b8035612dda81612dc1565b919050565b600060208284031215612df157600080fd5b8135611b4081612dc1565b60005b83811015612e17578181015183820152602001612dff565b838111156114725750506000910152565b60008151808452612e40816020860160208601612dfc565b601f01601f19169290920160200192915050565b602081526000611b406020830184612e28565b600060208284031215612e7957600080fd5b5035919050565b80356001600160a01b0381168114612dda57600080fd5b60008060408385031215612eaa57600080fd5b612eb383612e80565b946020939093013593505050565b600080600060608486031215612ed657600080fd5b612edf84612e80565b9250612eed60208501612e80565b9150604084013590509250925092565b60008060408385031215612f1057600080fd5b50508035926020909101359150565b600060208284031215612f3157600080fd5b611b4082612e80565b6020808252825182820181905260009190848201906040850190845b81811015612f7257835183529284019291840191600101612f56565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612fbd57612fbd612f7e565b604052919050565b600067ffffffffffffffff831115612fdf57612fdf612f7e565b612ff2601f8401601f1916602001612f94565b905082815283838301111561300657600080fd5b828260208301376000602084830101529392505050565b60006020828403121561302f57600080fd5b813567ffffffffffffffff81111561304657600080fd5b8201601f8101841361305757600080fd5b611f8584823560208401612fc5565b6000806040838503121561307957600080fd5b61308283612e80565b9150602083013561309281612dc1565b809150509250929050565b600080604083850312156130b057600080fd5b823591506130c060208401612e80565b90509250929050565b600080600080608085870312156130df57600080fd5b6130e885612e80565b93506130f660208601612e80565b925060408501359150606085013567ffffffffffffffff81111561311957600080fd5b8501601f8101871361312a57600080fd5b61313987823560208401612fc5565b91505092959194509250565b6000806040838503121561315857600080fd5b823567ffffffffffffffff8082111561317057600080fd5b818501915085601f83011261318457600080fd5b813560208282111561319857613198612f7e565b8160051b92506131a9818401612f94565b82815292840181019281810190898511156131c357600080fd5b948201945b848610156131e8576131d986612e80565b825294820194908201906131c8565b96506131f79050878201612dcf565b9450505050509250929050565b6000806040838503121561321757600080fd5b61322083612e80565b91506130c060208401612e80565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061327757607f821691505b60208210810361329757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561331e5761331e6132ee565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261334857613348613323565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201613375576133756132ee565b5060010190565b60008282101561338e5761338e6132ee565b500390565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600082198211156133f2576133f26132ee565b500190565b60006020828403121561340957600080fd5b5051919050565b6000845160206134238285838a01612dfc565b8551918401916134368184848a01612dfc565b8554920191600090600181811c908083168061345357607f831692505b858310810361347057634e487b7160e01b85526022600452602485fd5b8080156134845760018114613495576134c2565b60ff198516885283880195506134c2565b60008b81526020902060005b858110156134ba5781548a8201529084019088016134a1565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261353457613534613323565b500690565b60006020828403121561354b57600080fd5b8151611b4081612dc1565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061358990830184612e28565b9695505050505050565b6000602082840312156135a557600080fd5b8151611b4081612d8e565b600082516135c2818460208701612dfc565b9190910192915050565b634e487b7160e01b600052603160045260246000fdfea264697066735822122002acc1d5b4ceaaceef29da5791df0c4e7ee9acd2b2e439c72f48847e51f8905b64736f6c634300080e0033

Deployed Bytecode Sourcemap

61355:7539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67646:205;;;;;;;;;;-1:-1:-1;67646:205:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;67646:205:0;;;;;;;;66722:154;;;;;;;;;;-1:-1:-1;66722:154:0;;;;;:::i;:::-;;:::i;:::-;;33701:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35260:221::-;;;;;;;;;;-1:-1:-1;35260:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2194:32:1;;;2176:51;;2164:2;2149:18;35260:221:0;2030:203:1;61867:28:0;;;;;;;;;;;;;:::i;34783:411::-;;;;;;;;;;-1:-1:-1;34783:411:0;;;;;:::i;:::-;;:::i;46337:113::-;;;;;;;;;;-1:-1:-1;46425:10:0;:17;46337:113;;;2821:25:1;;;2809:2;2794:18;46337:113:0;2675:177:1;36150:339:0;;;;;;;;;;-1:-1:-1;36150:339:0;;;;;:::i;:::-;;:::i;64869:103::-;;;;;;;;;;-1:-1:-1;64869:103:0;;;;;:::i;:::-;;:::i;61048:300::-;;;;;;;;;;-1:-1:-1;61048:300:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3635:32:1;;;3617:51;;3699:2;3684:18;;3677:34;;;;3590:18;61048:300:0;3443:274:1;66247:109:0;;;;;;;;;;-1:-1:-1;66247:109:0;;;;;:::i;:::-;;:::i;46005:256::-;;;;;;;;;;-1:-1:-1;46005:256:0;;;;;:::i;:::-;;:::i;62264:46::-;;;;;;;;;;-1:-1:-1;62264:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36560:185;;;;;;;;;;-1:-1:-1;36560:185:0;;;;;:::i;:::-;;:::i;66364:349::-;;;;;;;;;;-1:-1:-1;66364:349:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65159:195::-;;;;;;;;;;-1:-1:-1;65159:195:0;;;;;:::i;:::-;;:::i;46527:233::-;;;;;;;;;;-1:-1:-1;46527:233:0;;;;;:::i;:::-;;:::i;61832:28::-;;;;;;;;;;-1:-1:-1;61832:28:0;;;;;;;;66004:101;;;;;;;;;;-1:-1:-1;66004:101:0;;;;;:::i;:::-;;:::i;62819:91::-;;;;;;;;;;;;;:::i;13165:86::-;;;;;;;;;;-1:-1:-1;13236:7:0;;;;13165:86;;33395:239;;;;;;;;;;-1:-1:-1;33395:239:0;;;;;:::i;:::-;;:::i;61618:28::-;;;;;;;;;;;;;;;;33125:208;;;;;;;;;;-1:-1:-1;33125:208:0;;;;;:::i;:::-;;:::i;11553:94::-;;;;;;;;;;;;;:::i;66887:315::-;;;;;;;;;;;;;:::i;61653:32::-;;;;;;;;;;;;;;;;67857:100;;;;;;;;;;-1:-1:-1;67857:100:0;;;;;:::i;:::-;;:::i;61689:35::-;;;;;;;;;;;;;;;;10902:87;;;;;;;;;;-1:-1:-1;10975:6:0;;-1:-1:-1;;;;;10975:6:0;10902:87;;65400:216;;;;;;;;;;-1:-1:-1;65400:216:0;;;;;:::i;:::-;;:::i;62918:531::-;;;;;;:::i;:::-;;:::i;33870:104::-;;;;;;;;;;;;;:::i;64534:326::-;;;;;;;;;;-1:-1:-1;64534:326:0;;;;;:::i;:::-;;:::i;62230:27::-;;;;;;;;;;-1:-1:-1;62230:27:0;;;;-1:-1:-1;;;62230:27:0;;;;;;63709:182;;;;;;;;;;-1:-1:-1;63709:182:0;;;;;:::i;:::-;;:::i;35553:295::-;;;;;;;;;;-1:-1:-1;35553:295:0;;;;;:::i;:::-;;:::i;68824:67::-;;;;;;;;;;;;;:::i;36816:328::-;;;;;;;;;;-1:-1:-1;36816:328:0;;;;;:::i;:::-;;:::i;64118:239::-;;;;;;;;;;-1:-1:-1;64118:239:0;;;;;:::i;:::-;;:::i;65668:331::-;;;;;;;;;;-1:-1:-1;65668:331:0;;;;;:::i;:::-;;:::i;61902:37::-;;;;;;;;;;;;;:::i;68299:499::-;;;;;;;;;;-1:-1:-1;68299:499:0;;;;;:::i;:::-;;:::i;62093:26::-;;;;;;;;;;;;;:::i;67963:158::-;;;;;;;;;;-1:-1:-1;67963:158:0;;;;;:::i;:::-;;:::i;35919:164::-;;;;;;;;;;-1:-1:-1;35919:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36040:25:0;;;36016:4;36040:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35919:164;68127;;;;;;;;;;-1:-1:-1;68127:164:0;;;;;:::i;:::-;;:::i;66113:126::-;;;;;;;;;;-1:-1:-1;66113:126:0;;;;;:::i;:::-;;:::i;11802:192::-;;;;;;;;;;-1:-1:-1;11802:192:0;;;;;:::i;:::-;;:::i;67646:205::-;67783:4;67807:36;67831:11;67807:23;:36::i;:::-;67800:43;67646:205;-1:-1:-1;;67646:205:0:o;66722:154::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;;;;;;;;;66779:11;::::1;;66786:4;66779:11:::0;66775:73:::1;;66807:8;:6;:8::i;:::-;66722:154:::0;:::o;66775:73::-:1;66858:10;:8;:10::i;33701:100::-:0;33755:13;33788:5;33781:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33701:100;:::o;35260:221::-;35336:7;38743:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38743:16:0;35356:73;;;;-1:-1:-1;;;35356:73:0;;9321:2:1;35356:73:0;;;9303:21:1;9360:2;9340:18;;;9333:30;9399:34;9379:18;;;9372:62;-1:-1:-1;;;9450:18:1;;;9443:42;9502:19;;35356:73:0;9119:408:1;35356:73:0;-1:-1:-1;35449:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35449:24:0;;35260:221::o;61867:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34783:411::-;34864:13;34880:23;34895:7;34880:14;:23::i;:::-;34864:39;;34928:5;-1:-1:-1;;;;;34922:11:0;:2;-1:-1:-1;;;;;34922:11:0;;34914:57;;;;-1:-1:-1;;;34914:57:0;;9734:2:1;34914:57:0;;;9716:21:1;9773:2;9753:18;;;9746:30;9812:34;9792:18;;;9785:62;-1:-1:-1;;;9863:18:1;;;9856:31;9904:19;;34914:57:0;9532:397:1;34914:57:0;8534:10;-1:-1:-1;;;;;35006:21:0;;;;:62;;-1:-1:-1;35031:37:0;35048:5;8534:10;35919:164;:::i;35031:37::-;34984:168;;;;-1:-1:-1;;;34984:168:0;;10136:2:1;34984:168:0;;;10118:21:1;10175:2;10155:18;;;10148:30;10214:34;10194:18;;;10187:62;10285:26;10265:18;;;10258:54;10329:19;;34984:168:0;9934:420:1;34984:168:0;35165:21;35174:2;35178:7;35165:8;:21::i;:::-;34853:341;34783:411;;:::o;36150:339::-;36345:41;8534:10;36378:7;36345:18;:41::i;:::-;36337:103;;;;-1:-1:-1;;;36337:103:0;;;;;;;:::i;:::-;36453:28;36463:4;36469:2;36473:7;36453:9;:28::i;64869:103::-;64921:7;64957:6;64948:5;;:16;;;;:::i;61048:300::-;61169:16;61251:19;;;:10;:19;;;;;;;;61226:44;;;;;;;;;;-1:-1:-1;;;;;61226:44:0;;;;;;;;;;;;;;;61169:16;;61334:5;;61309:21;;:5;:21;:::i;:::-;61308:31;;;;:::i;:::-;61281:59;;;;;61048:300;;;;;:::o;66247:109::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;66318:17:::1;:30:::0;66247:109::o;46005:256::-;46102:7;46138:23;46155:5;46138:16;:23::i;:::-;46130:5;:31;46122:87;;;;-1:-1:-1;;;46122:87:0;;11541:2:1;46122:87:0;;;11523:21:1;11580:2;11560:18;;;11553:30;11619:34;11599:18;;;11592:62;-1:-1:-1;;;11670:18:1;;;11663:41;11721:19;;46122:87:0;11339:407:1;46122:87:0;-1:-1:-1;;;;;;46227:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46005:256::o;36560:185::-;36698:39;36715:4;36721:2;36725:7;36698:39;;;;;;;;;;;;:16;:39::i;66364:349::-;66426:16;66455:18;66476:17;66486:6;66476:9;:17::i;:::-;66455:38;;66504:25;66546:10;66532:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66532:25:0;;66504:53;;66573:9;66568:112;66592:10;66588:1;:14;66568:112;;;66638:30;66658:6;66666:1;66638:19;:30::i;:::-;66624:8;66633:1;66624:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;66604:3;;;;:::i;:::-;;;;66568:112;;;-1:-1:-1;66697:8:0;66364:349;-1:-1:-1;;;66364:349:0:o;65159:195::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;65261:8:::1;65242:27;;:15;;;;;;;;;;;:27;;::::0;65234:73:::1;;;::::0;-1:-1:-1;;;65234:73:0;;12225:2:1;65234:73:0::1;::::0;::::1;12207:21:1::0;12264:2;12244:18;;;12237:30;12303:34;12283:18;;;12276:62;-1:-1:-1;;;12354:18:1;;;12347:31;12395:19;;65234:73:0::1;12023:397:1::0;65234:73:0::1;65320:15;:26:::0;;;::::1;;-1:-1:-1::0;;;65320:26:0::1;-1:-1:-1::0;;;;65320:26:0;;::::1;::::0;;;::::1;::::0;;65159:195::o;46527:233::-;46602:7;46638:30;46425:10;:17;;46337:113;46638:30;46630:5;:38;46622:95;;;;-1:-1:-1;;;46622:95:0;;12627:2:1;46622:95:0;;;12609:21:1;12666:2;12646:18;;;12639:30;12705:34;12685:18;;;12678:62;-1:-1:-1;;;12756:18:1;;;12749:42;12808:19;;46622:95:0;12425:408:1;46622:95:0;46735:10;46746:5;46735:17;;;;;;;;:::i;:::-;;;;;;;;;46728:24;;46527:233;;;:::o;66004:101::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;66075:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;66004:101:::0;:::o;62819:91::-;62861:7;62888:14;:12;:14::i;:::-;62881:21;;62819:91;:::o;33395:239::-;33467:7;33503:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33503:16:0;;33530:73;;;;-1:-1:-1;;;33530:73:0;;13040:2:1;33530:73:0;;;13022:21:1;13079:2;13059:18;;;13052:30;13118:34;13098:18;;;13091:62;-1:-1:-1;;;13169:18:1;;;13162:39;13218:19;;33530:73:0;12838:405:1;33125:208:0;33197:7;-1:-1:-1;;;;;33225:19:0;;33217:74;;;;-1:-1:-1;;;33217:74:0;;13450:2:1;33217:74:0;;;13432:21:1;13489:2;13469:18;;;13462:30;13528:34;13508:18;;;13501:62;-1:-1:-1;;;13579:18:1;;;13572:40;13629:19;;33217:74:0;13248:406:1;33217:74:0;-1:-1:-1;;;;;;33309:16:0;;;;;:9;:16;;;;;;;33125:208::o;11553:94::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;11618:21:::1;11636:1;11618:9;:21::i;:::-;11553:94::o:0;66887:315::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;66956:21:::1;66996:11:::0;66988:20:::1;;;::::0;::::1;;67019;67057:3;67042:12;:7:::0;67052:2:::1;67042:12;:::i;:::-;:18;;;;:::i;:::-;67019:41:::0;-1:-1:-1;67071:11:0::1;67085:22;67019:41:::0;67085:7;:22:::1;:::i;:::-;67071:36;;67118:33;67129:7;10975:6:::0;;-1:-1:-1;;;;;10975:6:0;;10902:87;67129:7:::1;67138:12;67118:10;:33::i;:::-;67173:15;::::0;67162:32:::1;::::0;-1:-1:-1;;;;;67173:15:0::1;67190:3:::0;67162:10:::1;:32::i;67857:100::-:0;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;67934:15:::1;:8:::0;67943:6:::1;67934:15;:::i;:::-;67926:5;:23:::0;-1:-1:-1;67857:100:0:o;65400:216::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;65508:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;::::1;;65496:34;;::::0;::::1;;::::0;65488:76:::1;;;::::0;-1:-1:-1;;;65488:76:0;;13991:2:1;65488:76:0::1;::::0;::::1;13973:21:1::0;14030:2;14010:18;;;14003:30;14069:31;14049:18;;;14042:59;14118:18;;65488:76:0::1;13789:353:1::0;65488:76:0::1;-1:-1:-1::0;;;;;65575:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:33;;-1:-1:-1;;65575:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65400:216::o;62918:531::-;62553:7;;62535:14;:12;:14::i;:::-;:25;;62527:46;;;;-1:-1:-1;;;62527:46:0;;;;;;;:::i;:::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;62588:23;62584:94;;13236:7;;;;62636:9;62628:38;;;;-1:-1:-1;;;62628:38:0;;;;;;;:::i;:::-;63008:15:::1;::::0;-1:-1:-1;;;63008:15:0;::::1;;;63007:16;::::0;:41:::1;;-1:-1:-1::0;;;;;;63028:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;::::1;;63007:41;62999:69;;;::::0;-1:-1:-1;;;62999:69:0;;15030:2:1;62999:69:0::1;::::0;::::1;15012:21:1::0;15069:2;15049:18;;;15042:30;-1:-1:-1;;;15088:18:1;;;15081:45;15143:18;;62999:69:0::1;14828:339:1::0;62999:69:0::1;63079:13;63095:14;:12;:14::i;:::-;63146:7;::::0;63079:30;;-1:-1:-1;63128:14:0::1;63136:6:::0;63079:30;63128:14:::1;:::i;:::-;:25;;63120:47;;;::::0;-1:-1:-1;;;63120:47:0;;15507:2:1;63120:47:0::1;::::0;::::1;15489:21:1::0;15546:1;15526:18;;;15519:29;-1:-1:-1;;;15564:18:1;;;15557:39;15613:18;;63120:47:0::1;15305:332:1::0;63120:47:0::1;63195:7;;63186:5;:16;;63178:37;;;;-1:-1:-1::0;;;63178:37:0::1;;;;;;;:::i;:::-;63244:11;;63234:6;:21;;63226:48;;;::::0;-1:-1:-1;;;63226:48:0;;15844:2:1;63226:48:0::1;::::0;::::1;15826:21:1::0;15883:2;15863:18;;;15856:30;-1:-1:-1;;;15902:18:1;;;15895:44;15956:18;;63226:48:0::1;15642:338:1::0;63226:48:0::1;63306:13;63312:6;63306:5;:13::i;:::-;63293:9;:26;;63285:56;;;::::0;-1:-1:-1;;;63285:56:0;;16187:2:1;63285:56:0::1;::::0;::::1;16169:21:1::0;16226:2;16206:18;;;16199:30;-1:-1:-1;;;16245:18:1;;;16238:47;16302:18;;63285:56:0::1;15985:341:1::0;63285:56:0::1;63357:9;63352:90;63376:6;63372:1;:10;63352:90;;;63404:26;63419:10;63404:14;:26::i;:::-;63384:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63352:90;;;;62988:461;62918:531:::0;;:::o;33870:104::-;33926:13;33959:7;33952:14;;;;;:::i;64534:326::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;64620:39:::1;::::0;-1:-1:-1;;;64620:39:0;;64653:4:::1;64620:39;::::0;::::1;2176:51:1::0;64602:15:0::1;::::0;-1:-1:-1;;;;;64620:24:0;::::1;::::0;::::1;::::0;2149:18:1;;64620:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64602:57;;64678:7;64689:1;64678:12:::0;64670:64:::1;;;::::0;-1:-1:-1;;;64670:64:0;;16722:2:1;64670:64:0::1;::::0;::::1;16704:21:1::0;16761:2;16741:18;;;16734:30;16800:34;16780:18;;;16773:62;-1:-1:-1;;;16851:18:1;;;16844:37;16898:19;;64670:64:0::1;16520:403:1::0;64670:64:0::1;64747:57;-1:-1:-1::0;;;;;64747:27:0;::::1;64783:10;64796:7:::0;64747:27:::1;:57::i;:::-;64836:6;-1:-1:-1::0;;;;;64822:30:0::1;;64844:7;64822:30;;;;2821:25:1::0;;2809:2;2794:18;;2675:177;64822:30:0::1;;;;;;;;64591:269;64534:326:::0;:::o;63709:182::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;62553:7:::1;;62535:14;:12;:14::i;:::-;:25;;62527:46;;;;-1:-1:-1::0;;;62527:46:0::1;;;;;;;:::i;:::-;10975:6:::0;;-1:-1:-1;;;;;10975:6:0;8534:10;62588:23:::1;62584:94;;13236:7:::0;;;;62636:9:::1;62628:38;;;;-1:-1:-1::0;;;62628:38:0::1;;;;;;;:::i;:::-;63806:9:::2;63801:83;63825:6;63821:1;:10;63801:83;;;63853:19;63868:3;63853:14;:19::i;:::-;63833:3:::0;::::2;::::0;::::2;:::i;:::-;;;;63801:83;;35553:295:::0;8534:10;-1:-1:-1;;;;;35656:24:0;;;35648:62;;;;-1:-1:-1;;;35648:62:0;;17130:2:1;35648:62:0;;;17112:21:1;17169:2;17149:18;;;17142:30;17208:27;17188:18;;;17181:55;17253:18;;35648:62:0;16928:349:1;35648:62:0;8534:10;35723:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35723:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35723:53:0;;;;;;;;;;35792:48;;540:41:1;;;35723:42:0;;8534:10;35792:48;;513:18:1;35792:48:0;;;;;;;35553:295;;:::o;68824:67::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;68868:8:::1;:15:::0;;-1:-1:-1;;68868:15:0::1;68879:4;68868:15;::::0;;68824:67::o;36816:328::-;36991:41;8534:10;37024:7;36991:18;:41::i;:::-;36983:103;;;;-1:-1:-1;;;36983:103:0;;;;;;;:::i;:::-;37097:39;37111:4;37117:2;37121:7;37130:5;37097:13;:39::i;64118:239::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;64215:74:::1;::::0;-1:-1:-1;;;64215:74:0;;64252:4:::1;64215:74;::::0;::::1;17522:34:1::0;64267:10:0::1;17572:18:1::0;;;17565:43;17624:18;;;17617:34;;;-1:-1:-1;;;;;64215:28:0;::::1;::::0;::::1;::::0;17457:18:1;;64215:74:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;64332:6;-1:-1:-1::0;;;;;64307:42:0::1;;64340:8;64307:42;;;;2821:25:1::0;;2809:2;2794:18;;2675:177;65668:331:0;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;65774:9:::1;65770:222;65789:8;:15;65785:1;:19;65770:222;;;65846:13;:26;65860:8;65869:1;65860:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65846:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65846:26:0;;::::1;;65834:38;;::::0;::::1;;::::0;65826:100:::1;;;::::0;-1:-1:-1;;;65826:100:0;;17864:2:1;65826:100:0::1;::::0;::::1;17846:21:1::0;17903:2;17883:18;;;17876:30;17942:34;17922:18;;;17915:62;-1:-1:-1;;;17993:18:1;;;17986:47;18050:19;;65826:100:0::1;17662:413:1::0;65826:100:0::1;65972:8;65943:13;:26;65957:8;65966:1;65957:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;65943:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;65943:26:0;:37;;-1:-1:-1;;65943:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65806:3;::::1;::::0;::::1;:::i;:::-;;;;65770:222;;61902:37:::0;;;;;;;:::i;68299:499::-;38719:4;38743:16;;;:7;:16;;;;;;68397:13;;-1:-1:-1;;;;;38743:16:0;68422:97;;;;-1:-1:-1;;;68422:97:0;;18282:2:1;68422:97:0;;;18264:21:1;18321:2;18301:18;;;18294:30;18360:34;18340:18;;;18333:62;-1:-1:-1;;;18411:18:1;;;18404:45;18466:19;;68422:97:0;18080:411:1;68422:97:0;68535:8;;;;:17;;:8;:17;68532:62;;68572:14;68565:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68299:499;;;:::o;68532:62::-;68602:28;68633:10;:8;:10::i;:::-;68602:41;;68688:1;68663:14;68657:28;:32;:133;;;;;;;;;;;;;;;;;68725:14;68741:18;:7;:16;:18::i;:::-;68761:13;68708:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68657:133;68650:140;68299:499;-1:-1:-1;;;68299:499:0:o;62093:26::-;;;;;;;:::i;67963:158::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;68052:8:::1;68041:7;;:19;;68033:47;;;::::0;-1:-1:-1;;;68033:47:0;;20356:2:1;68033:47:0::1;::::0;::::1;20338:21:1::0;20395:2;20375:18;;;20368:30;-1:-1:-1;;;20414:18:1;;;20407:45;20469:18;;68033:47:0::1;20154:339:1::0;68033:47:0::1;68091:11;:22:::0;67963:158::o;68127:164::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;68219:14:::1;:12;:14::i;:::-;68206:9;:27;;68198:55;;;::::0;-1:-1:-1;;;68198:55:0;;20356:2:1;68198:55:0::1;::::0;::::1;20338:21:1::0;20395:2;20375:18;;;20368:30;-1:-1:-1;;;20414:18:1;;;20407:45;20469:18;;68198:55:0::1;20154:339:1::0;68198:55:0::1;68264:7;:19:::0;68127:164::o;66113:126::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;66199:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11802:192::-:0;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;11122:23;11114:68;;;;-1:-1:-1;;;11114:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11891:22:0;::::1;11883:73;;;::::0;-1:-1:-1;;;11883:73:0;;20700:2:1;11883:73:0::1;::::0;::::1;20682:21:1::0;20739:2;20719:18;;;20712:30;20778:34;20758:18;;;20751:62;-1:-1:-1;;;20829:18:1;;;20822:36;20875:19;;11883:73:0::1;20498:402:1::0;11883:73:0::1;11967:19;11977:8;11967:9;:19::i;60239:283::-:0;60369:4;-1:-1:-1;;;;;;60411:50:0;;-1:-1:-1;;;60411:50:0;;:103;;;60478:36;60502:11;60478:23;:36::i;13965:118::-;13236:7;;;;13490:9;13482:38;;;;-1:-1:-1;;;13482:38:0;;;;;;;:::i;:::-;14025:7:::1;:14:::0;;-1:-1:-1;;14025:14:0::1;14035:4;14025:14;::::0;;14055:20:::1;14062:12;8534:10:::0;;8454:98;14062:12:::1;14055:20;::::0;-1:-1:-1;;;;;2194:32:1;;;2176:51;;2164:2;2149:18;14055:20:0::1;;;;;;;13965:118::o:0;14224:120::-;13236:7;;;;13760:41;;;;-1:-1:-1;;;13760:41:0;;21107:2:1;13760:41:0;;;21089:21:1;21146:2;21126:18;;;21119:30;-1:-1:-1;;;21165:18:1;;;21158:50;21225:18;;13760:41:0;20905:344:1;13760:41:0;14283:7:::1;:15:::0;;-1:-1:-1;;14283:15:0::1;::::0;;14314:22:::1;8534:10:::0;14323:12:::1;8454:98:::0;42636:174;42711:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42711:29:0;-1:-1:-1;;;;;42711:29:0;;;;;;;;:24;;42765:23;42711:24;42765:14;:23::i;:::-;-1:-1:-1;;;;;42756:46:0;;;;;;;;;;;42636:174;;:::o;38948:348::-;39041:4;38743:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38743:16:0;39058:73;;;;-1:-1:-1;;;39058:73:0;;21456:2:1;39058:73:0;;;21438:21:1;21495:2;21475:18;;;21468:30;21534:34;21514:18;;;21507:62;-1:-1:-1;;;21585:18:1;;;21578:42;21637:19;;39058:73:0;21254:408:1;39058:73:0;39142:13;39158:23;39173:7;39158:14;:23::i;:::-;39142:39;;39211:5;-1:-1:-1;;;;;39200:16:0;:7;-1:-1:-1;;;;;39200:16:0;;:51;;;;39244:7;-1:-1:-1;;;;;39220:31:0;:20;39232:7;39220:11;:20::i;:::-;-1:-1:-1;;;;;39220:31:0;;39200:51;:87;;;-1:-1:-1;;;;;;36040:25:0;;;36016:4;36040:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39255:32;39192:96;38948:348;-1:-1:-1;;;;38948:348:0:o;41940:578::-;42099:4;-1:-1:-1;;;;;42072:31:0;:23;42087:7;42072:14;:23::i;:::-;-1:-1:-1;;;;;42072:31:0;;42064:85;;;;-1:-1:-1;;;42064:85:0;;21869:2:1;42064:85:0;;;21851:21:1;21908:2;21888:18;;;21881:30;21947:34;21927:18;;;21920:62;-1:-1:-1;;;21998:18:1;;;21991:39;22047:19;;42064:85:0;21667:405:1;42064:85:0;-1:-1:-1;;;;;42168:16:0;;42160:65;;;;-1:-1:-1;;;42160:65:0;;22279:2:1;42160:65:0;;;22261:21:1;22318:2;22298:18;;;22291:30;22357:34;22337:18;;;22330:62;-1:-1:-1;;;22408:18:1;;;22401:34;22452:19;;42160:65:0;22077:400:1;42160:65:0;42238:39;42259:4;42265:2;42269:7;42238:20;:39::i;:::-;42342:29;42359:1;42363:7;42342:8;:29::i;:::-;-1:-1:-1;;;;;42384:15:0;;;;;;:9;:15;;;;;:20;;42403:1;;42384:15;:20;;42403:1;;42384:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42415:13:0;;;;;;:9;:13;;;;;:18;;42432:1;;42415:13;:18;;42432:1;;42415:18;:::i;:::-;;;;-1:-1:-1;;42444:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42444:21:0;-1:-1:-1;;;;;42444:21:0;;;;;;;;;42483:27;;42444:16;;42483:27;;;;;;;41940:578;;;:::o;62706:104::-;62753:4;62777:25;:15;9491:14;;9399:114;12002:173;12077:6;;;-1:-1:-1;;;;;12094:17:0;;;-1:-1:-1;;;;;;12094:17:0;;;;;;;12127:40;;12077:6;;;12094:17;12077:6;;12127:40;;12058:16;;12127:40;12047:128;12002:173;:::o;67210:181::-;67285:12;67303:8;-1:-1:-1;;;;;67303:13:0;67324:7;67303:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67284:52;;;67355:7;67347:36;;;;-1:-1:-1;;;67347:36:0;;22894:2:1;67347:36:0;;;22876:21:1;22933:2;22913:18;;;22906:30;-1:-1:-1;;;22952:18:1;;;22945:46;23008:18;;67347:36:0;22692:340:1;63458:243:0;63514:7;63524:14;:12;:14::i;:::-;63514:24;;63549:27;:15;9610:19;;9628:1;9610:19;;;9521:127;63549:27;63587:18;63597:3;63602:2;63587:9;:18::i;:::-;63616:48;63633:2;63637:7;10975:6;;-1:-1:-1;;;;;10975:6:0;;10902:87;63637:7;63646:17;;63616:16;:48::i;:::-;63680:13;;63690:2;;63680:13;;;;;63503:198;63458:243;:::o;55913:211::-;56057:58;;;-1:-1:-1;;;;;3635:32:1;;56057:58:0;;;3617:51:1;3684:18;;;;3677:34;;;56057:58:0;;;;;;;;;;3590:18:1;;;;56057:58:0;;;;;;;;-1:-1:-1;;;;;56057:58:0;-1:-1:-1;;;56057:58:0;;;56030:86;;56050:5;;56030:19;:86::i;38026:315::-;38183:28;38193:4;38199:2;38203:7;38183:9;:28::i;:::-;38230:48;38253:4;38259:2;38263:7;38272:5;38230:22;:48::i;:::-;38222:111;;;;-1:-1:-1;;;38222:111:0;;;;;;;:::i;64980:113::-;65040:13;65073:12;65066:19;;;;;:::i;21093:723::-;21149:13;21370:5;21379:1;21370:10;21366:53;;-1:-1:-1;;21397:10:0;;;;;;;;;;;;-1:-1:-1;;;21397:10:0;;;;;21093:723::o;21366:53::-;21444:5;21429:12;21485:78;21492:9;;21485:78;;21518:8;;;;:::i;:::-;;-1:-1:-1;21541:10:0;;-1:-1:-1;21549:2:0;21541:10;;:::i;:::-;;;21485:78;;;21573:19;21605:6;21595:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21595:17:0;;21573:39;;21623:154;21630:10;;21623:154;;21657:11;21667:1;21657:11;;:::i;:::-;;-1:-1:-1;21726:10:0;21734:2;21726:5;:10;:::i;:::-;21713:24;;:2;:24;:::i;:::-;21700:39;;21683:6;21690;21683:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21683:56:0;;;;;;;;-1:-1:-1;21754:11:0;21763:2;21754:11;;:::i;:::-;;;21623:154;;45697:224;45799:4;-1:-1:-1;;;;;;45823:50:0;;-1:-1:-1;;;45823:50:0;;:90;;;45877:36;45901:11;45877:23;:36::i;67399:239::-;67585:45;67612:4;67618:2;67622:7;67585:26;:45::i;39638:110::-;39714:26;39724:2;39728:7;39714:26;;;;;;;;;;;;:9;:26::i;60759:242::-;60902:5;60893;:14;;60885:53;;;;-1:-1:-1;;;60885:53:0;;23775:2:1;60885:53:0;;;23757:21:1;23814:2;23794:18;;;23787:30;23853:28;23833:18;;;23826:56;23899:18;;60885:53:0;23573:350:1;60885:53:0;60968:25;;;;;;;;-1:-1:-1;;;;;60968:25:0;;;;;;;;;;;;-1:-1:-1;60951:14:0;;;:10;:14;;;;:42;;;;-1:-1:-1;;;;;;60951:42:0;;;;;;;;;;-1:-1:-1;60951:42:0;;;;60759:242::o;58486:716::-;58910:23;58936:69;58964:4;58936:69;;;;;;;;;;;;;;;;;58944:5;-1:-1:-1;;;;;58936:27:0;;;:69;;;;;:::i;:::-;59020:17;;58910:95;;-1:-1:-1;59020:21:0;59016:179;;59117:10;59106:30;;;;;;;;;;;;:::i;:::-;59098:85;;;;-1:-1:-1;;;59098:85:0;;24380:2:1;59098:85:0;;;24362:21:1;24419:2;24399:18;;;24392:30;24458:34;24438:18;;;24431:62;-1:-1:-1;;;24509:18:1;;;24502:40;24559:19;;59098:85:0;24178:406:1;43375:803:0;43530:4;-1:-1:-1;;;;;43551:13:0;;1124:20;1172:8;43547:624;;43587:72;;-1:-1:-1;;;43587:72:0;;-1:-1:-1;;;;;43587:36:0;;;;;:72;;8534:10;;43638:4;;43644:7;;43653:5;;43587:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43587:72:0;;;;;;;;-1:-1:-1;;43587:72:0;;;;;;;;;;;;:::i;:::-;;;43583:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43833:6;:13;43850:1;43833:18;43829:272;;43876:60;;-1:-1:-1;;;43876:60:0;;;;;;;:::i;43829:272::-;44051:6;44045:13;44036:6;44032:2;44028:15;44021:38;43583:533;-1:-1:-1;;;;;;43710:55:0;-1:-1:-1;;;43710:55:0;;-1:-1:-1;43703:62:0;;43547:624;-1:-1:-1;44155:4:0;43375:803;;;;;;:::o;32756:305::-;32858:4;-1:-1:-1;;;;;;32895:40:0;;-1:-1:-1;;;32895:40:0;;:105;;-1:-1:-1;;;;;;;32952:48:0;;-1:-1:-1;;;32952:48:0;32895:105;:158;;;-1:-1:-1;;;;;;;;;;25271:40:0;;;33017:36;25162:157;52339:328;52483:45;52510:4;52516:2;52520:7;52483:26;:45::i;:::-;10975:6;;-1:-1:-1;;;;;10975:6:0;8534:10;52543:23;52539:121;;13236:7;;;;52591:9;52583:65;;;;-1:-1:-1;;;52583:65:0;;25539:2:1;52583:65:0;;;25521:21:1;25578:2;25558:18;;;25551:30;25617:34;25597:18;;;25590:62;-1:-1:-1;;;25668:18:1;;;25661:41;25719:19;;52583:65:0;25337:407:1;39975:321:0;40105:18;40111:2;40115:7;40105:5;:18::i;:::-;40156:54;40187:1;40191:2;40195:7;40204:5;40156:22;:54::i;:::-;40134:154;;;;-1:-1:-1;;;40134:154:0;;;;;;;:::i;3607:229::-;3744:12;3776:52;3798:6;3806:4;3812:1;3815:12;3776:21;:52::i;47373:589::-;-1:-1:-1;;;;;47579:18:0;;47575:187;;47614:40;47646:7;48789:10;:17;;48762:24;;;;:15;:24;;;;;:44;;;48817:24;;;;;;;;;;;;48685:164;47614:40;47575:187;;;47684:2;-1:-1:-1;;;;;47676:10:0;:4;-1:-1:-1;;;;;47676:10:0;;47672:90;;47703:47;47736:4;47742:7;47703:32;:47::i;:::-;-1:-1:-1;;;;;47776:16:0;;47772:183;;47809:45;47846:7;47809:36;:45::i;47772:183::-;47882:4;-1:-1:-1;;;;;47876:10:0;:2;-1:-1:-1;;;;;47876:10:0;;47872:83;;47903:40;47931:2;47935:7;47903:27;:40::i;40632:382::-;-1:-1:-1;;;;;40712:16:0;;40704:61;;;;-1:-1:-1;;;40704:61:0;;25951:2:1;40704:61:0;;;25933:21:1;;;25970:18;;;25963:30;26029:34;26009:18;;;26002:62;26081:18;;40704:61:0;25749:356:1;40704:61:0;38719:4;38743:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38743:16:0;:30;40776:58;;;;-1:-1:-1;;;40776:58:0;;26312:2:1;40776:58:0;;;26294:21:1;26351:2;26331:18;;;26324:30;26390;26370:18;;;26363:58;26438:18;;40776:58:0;26110:352:1;40776:58:0;40847:45;40876:1;40880:2;40884:7;40847:20;:45::i;:::-;-1:-1:-1;;;;;40905:13:0;;;;;;:9;:13;;;;;:18;;40922:1;;40905:13;:18;;40922:1;;40905:18;:::i;:::-;;;;-1:-1:-1;;40934:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40934:21:0;-1:-1:-1;;;;;40934:21:0;;;;;;;;40973:33;;40934:16;;;40973:33;;40934:16;;40973:33;40632:382;;:::o;4727:511::-;4897:12;4955:5;4930:21;:30;;4922:81;;;;-1:-1:-1;;;4922:81:0;;26669:2:1;4922:81:0;;;26651:21:1;26708:2;26688:18;;;26681:30;26747:34;26727:18;;;26720:62;-1:-1:-1;;;26798:18:1;;;26791:36;26844:19;;4922:81:0;26467:402:1;4922:81:0;1124:20;;5014:60;;;;-1:-1:-1;;;5014:60:0;;27076:2:1;5014:60:0;;;27058:21:1;27115:2;27095:18;;;27088:30;27154:31;27134:18;;;27127:59;27203:18;;5014:60:0;26874:353:1;5014:60:0;5088:12;5102:23;5129:6;-1:-1:-1;;;;;5129:11:0;5148:5;5155:4;5129:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5087:73;;;;5178:52;5196:7;5205:10;5217:12;5178:17;:52::i;:::-;5171:59;4727:511;-1:-1:-1;;;;;;;4727:511:0:o;49476:988::-;49742:22;49792:1;49767:22;49784:4;49767:16;:22::i;:::-;:26;;;;:::i;:::-;49804:18;49825:26;;;:17;:26;;;;;;49742:51;;-1:-1:-1;49958:28:0;;;49954:328;;-1:-1:-1;;;;;50025:18:0;;50003:19;50025:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50076:30;;;;;;:44;;;50193:30;;:17;:30;;;;;:43;;;49954:328;-1:-1:-1;50378:26:0;;;;:17;:26;;;;;;;;50371:33;;;-1:-1:-1;;;;;50422:18:0;;;;;:12;:18;;;;;:34;;;;;;;50415:41;49476:988::o;50759:1079::-;51037:10;:17;51012:22;;51037:21;;51057:1;;51037:21;:::i;:::-;51069:18;51090:24;;;:15;:24;;;;;;51463:10;:26;;51012:46;;-1:-1:-1;51090:24:0;;51012:46;;51463:26;;;;;;:::i;:::-;;;;;;;;;51441:48;;51527:11;51502:10;51513;51502:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51607:28;;;:15;:28;;;;;;;:41;;;51779:24;;;;;51772:31;51814:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50830:1008;;;50759:1079;:::o;48263:221::-;48348:14;48365:20;48382:2;48365:16;:20::i;:::-;-1:-1:-1;;;;;48396:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48441:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48263:221:0:o;7196:712::-;7346:12;7375:7;7371:530;;;-1:-1:-1;7406:10:0;7399:17;;7371:530;7520:17;;:21;7516:374;;7718:10;7712:17;7779:15;7766:10;7762:2;7758:19;7751:44;7516:374;7861:12;7854:20;;-1:-1:-1;;;7854:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:128;780:20;;809:28;780:20;809:28;:::i;:::-;715:128;;;:::o;848:241::-;904:6;957:2;945:9;936:7;932:23;928:32;925:52;;;973:1;970;963:12;925:52;1012:9;999:23;1031:28;1053:5;1031:28;:::i;1094:258::-;1166:1;1176:113;1190:6;1187:1;1184:13;1176:113;;;1266:11;;;1260:18;1247:11;;;1240:39;1212:2;1205:10;1176:113;;;1307:6;1304:1;1301:13;1298:48;;;-1:-1:-1;;1342:1:1;1324:16;;1317:27;1094:258::o;1357:::-;1399:3;1437:5;1431:12;1464:6;1459:3;1452:19;1480:63;1536:6;1529:4;1524:3;1520:14;1513:4;1506:5;1502:16;1480:63;:::i;:::-;1597:2;1576:15;-1:-1:-1;;1572:29:1;1563:39;;;;1604:4;1559:50;;1357:258;-1:-1:-1;;1357:258:1:o;1620:220::-;1769:2;1758:9;1751:21;1732:4;1789:45;1830:2;1819:9;1815:18;1807:6;1789:45;:::i;1845:180::-;1904:6;1957:2;1945:9;1936:7;1932:23;1928:32;1925:52;;;1973:1;1970;1963:12;1925:52;-1:-1:-1;1996:23:1;;1845:180;-1:-1:-1;1845:180:1:o;2238:173::-;2306:20;;-1:-1:-1;;;;;2355:31:1;;2345:42;;2335:70;;2401:1;2398;2391:12;2416:254;2484:6;2492;2545:2;2533:9;2524:7;2520:23;2516:32;2513:52;;;2561:1;2558;2551:12;2513:52;2584:29;2603:9;2584:29;:::i;:::-;2574:39;2660:2;2645:18;;;;2632:32;;-1:-1:-1;;;2416:254:1:o;2857:328::-;2934:6;2942;2950;3003:2;2991:9;2982:7;2978:23;2974:32;2971:52;;;3019:1;3016;3009:12;2971:52;3042:29;3061:9;3042:29;:::i;:::-;3032:39;;3090:38;3124:2;3113:9;3109:18;3090:38;:::i;:::-;3080:48;;3175:2;3164:9;3160:18;3147:32;3137:42;;2857:328;;;;;:::o;3190:248::-;3258:6;3266;3319:2;3307:9;3298:7;3294:23;3290:32;3287:52;;;3335:1;3332;3325:12;3287:52;-1:-1:-1;;3358:23:1;;;3428:2;3413:18;;;3400:32;;-1:-1:-1;3190:248:1:o;3722:186::-;3781:6;3834:2;3822:9;3813:7;3809:23;3805:32;3802:52;;;3850:1;3847;3840:12;3802:52;3873:29;3892:9;3873:29;:::i;3913:632::-;4084:2;4136:21;;;4206:13;;4109:18;;;4228:22;;;4055:4;;4084:2;4307:15;;;;4281:2;4266:18;;;4055:4;4350:169;4364:6;4361:1;4358:13;4350:169;;;4425:13;;4413:26;;4494:15;;;;4459:12;;;;4386:1;4379:9;4350:169;;;-1:-1:-1;4536:3:1;;3913:632;-1:-1:-1;;;;;;3913:632:1:o;4550:127::-;4611:10;4606:3;4602:20;4599:1;4592:31;4642:4;4639:1;4632:15;4666:4;4663:1;4656:15;4682:275;4753:2;4747:9;4818:2;4799:13;;-1:-1:-1;;4795:27:1;4783:40;;4853:18;4838:34;;4874:22;;;4835:62;4832:88;;;4900:18;;:::i;:::-;4936:2;4929:22;4682:275;;-1:-1:-1;4682:275:1:o;4962:407::-;5027:5;5061:18;5053:6;5050:30;5047:56;;;5083:18;;:::i;:::-;5121:57;5166:2;5145:15;;-1:-1:-1;;5141:29:1;5172:4;5137:40;5121:57;:::i;:::-;5112:66;;5201:6;5194:5;5187:21;5241:3;5232:6;5227:3;5223:16;5220:25;5217:45;;;5258:1;5255;5248:12;5217:45;5307:6;5302:3;5295:4;5288:5;5284:16;5271:43;5361:1;5354:4;5345:6;5338:5;5334:18;5330:29;5323:40;4962:407;;;;;:::o;5374:451::-;5443:6;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;5552:9;5539:23;5585:18;5577:6;5574:30;5571:50;;;5617:1;5614;5607:12;5571:50;5640:22;;5693:4;5685:13;;5681:27;-1:-1:-1;5671:55:1;;5722:1;5719;5712:12;5671:55;5745:74;5811:7;5806:2;5793:16;5788:2;5784;5780:11;5745:74;:::i;5830:315::-;5895:6;5903;5956:2;5944:9;5935:7;5931:23;5927:32;5924:52;;;5972:1;5969;5962:12;5924:52;5995:29;6014:9;5995:29;:::i;:::-;5985:39;;6074:2;6063:9;6059:18;6046:32;6087:28;6109:5;6087:28;:::i;:::-;6134:5;6124:15;;;5830:315;;;;;:::o;6150:254::-;6218:6;6226;6279:2;6267:9;6258:7;6254:23;6250:32;6247:52;;;6295:1;6292;6285:12;6247:52;6331:9;6318:23;6308:33;;6360:38;6394:2;6383:9;6379:18;6360:38;:::i;:::-;6350:48;;6150:254;;;;;:::o;6409:667::-;6504:6;6512;6520;6528;6581:3;6569:9;6560:7;6556:23;6552:33;6549:53;;;6598:1;6595;6588:12;6549:53;6621:29;6640:9;6621:29;:::i;:::-;6611:39;;6669:38;6703:2;6692:9;6688:18;6669:38;:::i;:::-;6659:48;;6754:2;6743:9;6739:18;6726:32;6716:42;;6809:2;6798:9;6794:18;6781:32;6836:18;6828:6;6825:30;6822:50;;;6868:1;6865;6858:12;6822:50;6891:22;;6944:4;6936:13;;6932:27;-1:-1:-1;6922:55:1;;6973:1;6970;6963:12;6922:55;6996:74;7062:7;7057:2;7044:16;7039:2;7035;7031:11;6996:74;:::i;:::-;6986:84;;;6409:667;;;;;;;:::o;7081:1022::-;7171:6;7179;7232:2;7220:9;7211:7;7207:23;7203:32;7200:52;;;7248:1;7245;7238:12;7200:52;7288:9;7275:23;7317:18;7358:2;7350:6;7347:14;7344:34;;;7374:1;7371;7364:12;7344:34;7412:6;7401:9;7397:22;7387:32;;7457:7;7450:4;7446:2;7442:13;7438:27;7428:55;;7479:1;7476;7469:12;7428:55;7515:2;7502:16;7537:4;7560:2;7556;7553:10;7550:36;;;7566:18;;:::i;:::-;7612:2;7609:1;7605:10;7595:20;;7635:28;7659:2;7655;7651:11;7635:28;:::i;:::-;7697:15;;;7767:11;;;7763:20;;;7728:12;;;;7795:19;;;7792:39;;;7827:1;7824;7817:12;7792:39;7851:11;;;;7871:148;7887:6;7882:3;7879:15;7871:148;;;7953:23;7972:3;7953:23;:::i;:::-;7941:36;;7904:12;;;;7997;;;;7871:148;;;8038:5;-1:-1:-1;8062:35:1;;-1:-1:-1;8078:18:1;;;8062:35;:::i;:::-;8052:45;;;;;;7081:1022;;;;;:::o;8108:260::-;8176:6;8184;8237:2;8225:9;8216:7;8212:23;8208:32;8205:52;;;8253:1;8250;8243:12;8205:52;8276:29;8295:9;8276:29;:::i;:::-;8266:39;;8324:38;8358:2;8347:9;8343:18;8324:38;:::i;8373:356::-;8575:2;8557:21;;;8594:18;;;8587:30;8653:34;8648:2;8633:18;;8626:62;8720:2;8705:18;;8373:356::o;8734:380::-;8813:1;8809:12;;;;8856;;;8877:61;;8931:4;8923:6;8919:17;8909:27;;8877:61;8984:2;8976:6;8973:14;8953:18;8950:38;8947:161;;9030:10;9025:3;9021:20;9018:1;9011:31;9065:4;9062:1;9055:15;9093:4;9090:1;9083:15;8947:161;;8734:380;;;:::o;10359:413::-;10561:2;10543:21;;;10600:2;10580:18;;;10573:30;10639:34;10634:2;10619:18;;10612:62;-1:-1:-1;;;10705:2:1;10690:18;;10683:47;10762:3;10747:19;;10359:413::o;10777:127::-;10838:10;10833:3;10829:20;10826:1;10819:31;10869:4;10866:1;10859:15;10893:4;10890:1;10883:15;10909:168;10949:7;11015:1;11011;11007:6;11003:14;11000:1;10997:21;10992:1;10985:9;10978:17;10974:45;10971:71;;;11022:18;;:::i;:::-;-1:-1:-1;11062:9:1;;10909:168::o;11082:127::-;11143:10;11138:3;11134:20;11131:1;11124:31;11174:4;11171:1;11164:15;11198:4;11195:1;11188:15;11214:120;11254:1;11280;11270:35;;11285:18;;:::i;:::-;-1:-1:-1;11319:9:1;;11214:120::o;11751:127::-;11812:10;11807:3;11803:20;11800:1;11793:31;11843:4;11840:1;11833:15;11867:4;11864:1;11857:15;11883:135;11922:3;11943:17;;;11940:43;;11963:18;;:::i;:::-;-1:-1:-1;12010:1:1;11999:13;;11883:135::o;13659:125::-;13699:4;13727:1;13724;13721:8;13718:34;;;13732:18;;:::i;:::-;-1:-1:-1;13769:9:1;;13659:125::o;14147:331::-;14349:2;14331:21;;;14388:1;14368:18;;;14361:29;-1:-1:-1;;;14421:2:1;14406:18;;14399:38;14469:2;14454:18;;14147:331::o;14483:340::-;14685:2;14667:21;;;14724:2;14704:18;;;14697:30;-1:-1:-1;;;14758:2:1;14743:18;;14736:46;14814:2;14799:18;;14483:340::o;15172:128::-;15212:3;15243:1;15239:6;15236:1;15233:13;15230:39;;;15249:18;;:::i;:::-;-1:-1:-1;15285:9:1;;15172:128::o;16331:184::-;16401:6;16454:2;16442:9;16433:7;16429:23;16425:32;16422:52;;;16470:1;16467;16460:12;16422:52;-1:-1:-1;16493:16:1;;16331:184;-1:-1:-1;16331:184:1:o;18622:1527::-;18846:3;18884:6;18878:13;18910:4;18923:51;18967:6;18962:3;18957:2;18949:6;18945:15;18923:51;:::i;:::-;19037:13;;18996:16;;;;19059:55;19037:13;18996:16;19081:15;;;19059:55;:::i;:::-;19203:13;;19136:20;;;19176:1;;19263;19285:18;;;;19338;;;;19365:93;;19443:4;19433:8;19429:19;19417:31;;19365:93;19506:2;19496:8;19493:16;19473:18;19470:40;19467:167;;-1:-1:-1;;;19533:33:1;;19589:4;19586:1;19579:15;19619:4;19540:3;19607:17;19467:167;19650:18;19677:110;;;;19801:1;19796:328;;;;19643:481;;19677:110;-1:-1:-1;;19712:24:1;;19698:39;;19757:20;;;;-1:-1:-1;19677:110:1;;19796:328;18569:1;18562:14;;;18606:4;18593:18;;19891:1;19905:169;19919:8;19916:1;19913:15;19905:169;;;20001:14;;19986:13;;;19979:37;20044:16;;;;19936:10;;19905:169;;;19909:3;;20105:8;20098:5;20094:20;20087:27;;19643:481;-1:-1:-1;20140:3:1;;18622:1527;-1:-1:-1;;;;;;;;;;;18622:1527:1:o;23037:414::-;23239:2;23221:21;;;23278:2;23258:18;;;23251:30;23317:34;23312:2;23297:18;;23290:62;-1:-1:-1;;;23383:2:1;23368:18;;23361:48;23441:3;23426:19;;23037:414::o;23456:112::-;23488:1;23514;23504:35;;23519:18;;:::i;:::-;-1:-1:-1;23553:9:1;;23456:112::o;23928:245::-;23995:6;24048:2;24036:9;24027:7;24023:23;24019:32;24016:52;;;24064:1;24061;24054:12;24016:52;24096:9;24090:16;24115:28;24137:5;24115:28;:::i;24589:489::-;-1:-1:-1;;;;;24858:15:1;;;24840:34;;24910:15;;24905:2;24890:18;;24883:43;24957:2;24942:18;;24935:34;;;25005:3;25000:2;24985:18;;24978:31;;;24783:4;;25026:46;;25052:19;;25044:6;25026:46;:::i;:::-;25018:54;24589:489;-1:-1:-1;;;;;;24589:489:1:o;25083:249::-;25152:6;25205:2;25193:9;25184:7;25180:23;25176:32;25173:52;;;25221:1;25218;25211:12;25173:52;25253:9;25247:16;25272:30;25296:5;25272:30;:::i;27232:274::-;27361:3;27399:6;27393:13;27415:53;27461:6;27456:3;27449:4;27441:6;27437:17;27415:53;:::i;:::-;27484:16;;;;;27232:274;-1:-1:-1;;27232:274:1:o;27511:127::-;27572:10;27567:3;27563:20;27560:1;27553:31;27603:4;27600:1;27593:15;27627:4;27624:1;27617:15

Swarm Source

ipfs://02acc1d5b4ceaaceef29da5791df0c4e7ee9acd2b2e439c72f48847e51f8905b
Loading...
Loading
Loading...
Loading
[ 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.