ETH Price: $3,482.09 (+3.28%)
Gas: 4 Gwei

Token

Blockchain Frenz (BCF)
 

Overview

Max Total Supply

5,554 BCF

Holders

1,971

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Fake_Phishing308852
Balance
1 BCF
0xeef114d114f1947ba4a2979159818e4171e91d14
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:
BlockchainFrenz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-17
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/blockchainfrenz.sol



/*
-------------------------------------------------------------------------------------------------

 :::====  :::      :::====  :::===== :::  === :::===== :::  === :::====  ::: :::= ===      :::===== :::====  :::===== :::= === :::=====
 :::  === :::      :::  === :::      ::: ===  :::      :::  === :::  === ::: :::=====      :::      :::  === :::      :::=====      ===
 =======  ===      ===  === ===      ======   ===      ======== ======== === ========      ======   =======  ======   ========    ===  
 ===  === ===      ===  === ===      === ===  ===      ===  === ===  === === === ====      ===      === ===  ===      === ====  ===    
 =======  ========  ======   ======= ===  ===  ======= ===  === ===  === === ===  ===      ===      ===  === ======== ===  === ========
                                                                                                                                                                                                                                                                                                  
-------------------------------------------------------------------------------------------------

    About The Project -->

    Project Name    -> Blockchain Frenz
    Total Supply    -> 5,555 Pieces > ?
    Contract Author -> BAD SAPIENS 

    The Blockchain Frenz is a NFT collection consisting of 5,555 pieces and over 99 traits, 
    set out to bring street culture and language to the world of Web3.

-------------------------------------------------------------------------------------------------
*/

pragma solidity >=0.7.0 <0.9.0;

// Minting Roadmap --> Presale Start -> Free Minting for 2000 pieces -> Presale Continues -> Presale End -> Public Sale Start -> Public Sale Ends -> Reveal ->





contract BlockchainFrenz is ERC721, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  // Free at the begining, then 0.009 for public mint. 

  uint256 public cost = 0 ether;
  uint256 public maxSupply = 5555;
  uint256 public maxMintAmountPerTx = 3;

  bool public paused = false;
  bool public revealed = false;

  bool public presale = false;
  mapping(address => bool) public whitelisted;
  uint256 public maxPresaleMintAmount = 3;

  constructor() ERC721("Blockchain Frenz", "BCF") {
    setHiddenMetadataUri("ipfs://bafybeiglw4va3xoj3cgz4gaur3n2dzcqql5iyun6olbhf2cfi3izhl45fa/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount < maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount < maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    
    // This will pay Can's 5% of the initial sale.
    // =============================================================================

    (bool hs, ) = payable(0x1B6c8a28005425b09387F3527D4847D1791696C3).call{value: address(this).balance * 5 / 100}("");
    require(hs);

    // =============================================================================

      // - This will transfer the remaining contract balance to the owner.
      // - Do not remove this otherwise you will not be able to withdraw the funds.

    // =============================================================================

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);

    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

  //Murf Whitelist Functions
  function setPresale(bool _state) public onlyOwner {
      presale = _state;
  }

  function setMaxPresaleMintAmount(uint256 _max) public onlyOwner {
      maxPresaleMintAmount = _max;
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b9291906200039b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000799291906200039b565b506000600c556115b3600d556003600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506003601155348015620000ed57600080fd5b506040518060400160405280601081526020017f426c6f636b636861696e204672656e7a000000000000000000000000000000008152506040518060400160405280600381526020017f42434600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001729291906200039b565b5080600190805190602001906200018b9291906200039b565b505050620001ae620001a2620001e660201b60201c565b620001ee60201b60201c565b6001600781905550620001e06040518060800160405280604e81526020016200437c604e9139620002b460201b60201c565b62000533565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c4620002e060201b60201c565b80600b9080519060200190620002dc9291906200039b565b5050565b620002f0620001e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003166200037160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003669062000472565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a990620004a5565b90600052602060002090601f016020900481019282620003cd576000855562000419565b82601f10620003e857805160ff191683800117855562000419565b8280016001018555821562000419579182015b8281111562000418578251825591602001919060010190620003fb565b5b5090506200042891906200042c565b5090565b5b80821115620004475760008160009055506001016200042d565b5090565b60006200045a60208362000494565b915062000467826200050a565b602082019050919050565b600060208201905081810360008301526200048d816200044b565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004be57607f821691505b60208210811415620004d557620004d4620004db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613e3980620005436000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063d936547e1161007a578063d936547e14610847578063e0a8085314610884578063e985e9c5146108ad578063efbd73f4146108ea578063f2fde38b14610913578063fdea8e0b1461093c57610246565b8063b88d4fde14610764578063c54e73e31461078d578063c87b56dd146107b6578063d5abeb01146107f3578063d76fd2201461081e57610246565b806395d89b41116100fd57806395d89b41146106a0578063a0712d68146106cb578063a22cb465146106e7578063a45ba8e714610710578063b071401b1461073b57610246565b8063715018a6146105df5780637ec4a659146105f6578063854807561461061f5780638da5cb5b1461064a57806394354fd01461067557610246565b806342842e0e116101c75780635503a0e81161018b5780635503a0e8146104e45780635c975abb1461050f57806362b99ad41461053a5780636352211e1461056557806370a08231146105a257610246565b806342842e0e14610401578063438b63001461042a57806344a0d68a146104675780634fdd43cb1461049057806351830227146104b957610246565b806316ba10e01161020e57806316ba10e01461034457806316c38b3c1461036d57806318160ddd1461039657806323b872dd146103c15780633ccfd60b146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede614610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612b41565b610967565b60405161027f91906131b0565b60405180910390f35b34801561029457600080fd5b5061029d610a49565b6040516102aa91906131cb565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612be4565b610adb565b6040516102e79190613127565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612ad4565b610b21565b005b34801561032557600080fd5b5061032e610c39565b60405161033b919061344d565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612b9b565b610c3f565b005b34801561037957600080fd5b50610394600480360381019061038f9190612b14565b610c61565b005b3480156103a257600080fd5b506103ab610c86565b6040516103b8919061344d565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e391906129be565b610c97565b005b3480156103f657600080fd5b506103ff610cf7565b005b34801561040d57600080fd5b50610428600480360381019061042391906129be565b610e78565b005b34801561043657600080fd5b50610451600480360381019061044c9190612951565b610e98565b60405161045e919061318e565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612be4565b610fa3565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612b9b565b610fb5565b005b3480156104c557600080fd5b506104ce610fd7565b6040516104db91906131b0565b60405180910390f35b3480156104f057600080fd5b506104f9610fea565b60405161050691906131cb565b60405180910390f35b34801561051b57600080fd5b50610524611078565b60405161053191906131b0565b60405180910390f35b34801561054657600080fd5b5061054f61108b565b60405161055c91906131cb565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612be4565b611119565b6040516105999190613127565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612951565b6111cb565b6040516105d6919061344d565b60405180910390f35b3480156105eb57600080fd5b506105f4611283565b005b34801561060257600080fd5b5061061d60048036038101906106189190612b9b565b611297565b005b34801561062b57600080fd5b506106346112b9565b604051610641919061344d565b60405180910390f35b34801561065657600080fd5b5061065f6112bf565b60405161066c9190613127565b60405180910390f35b34801561068157600080fd5b5061068a6112e9565b604051610697919061344d565b60405180910390f35b3480156106ac57600080fd5b506106b56112ef565b6040516106c291906131cb565b60405180910390f35b6106e560048036038101906106e09190612be4565b611381565b005b3480156106f357600080fd5b5061070e60048036038101906107099190612a94565b6114d8565b005b34801561071c57600080fd5b506107256114ee565b60405161073291906131cb565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612be4565b61157c565b005b34801561077057600080fd5b5061078b60048036038101906107869190612a11565b61158e565b005b34801561079957600080fd5b506107b460048036038101906107af9190612b14565b6115f0565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190612be4565b611615565b6040516107ea91906131cb565b60405180910390f35b3480156107ff57600080fd5b5061080861176e565b604051610815919061344d565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190612be4565b611774565b005b34801561085357600080fd5b5061086e60048036038101906108699190612951565b611786565b60405161087b91906131b0565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190612b14565b6117a6565b005b3480156108b957600080fd5b506108d460048036038101906108cf919061297e565b6117cb565b6040516108e191906131b0565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190612c11565b61185f565b005b34801561091f57600080fd5b5061093a60048036038101906109359190612951565b611875565b005b34801561094857600080fd5b506109516118f9565b60405161095e91906131b0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750610a418261190c565b5b9050919050565b606060008054610a5890613756565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613756565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611976565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2c82611119565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b94906133ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bbc6119c1565b73ffffffffffffffffffffffffffffffffffffffff161480610beb5750610bea81610be56119c1565b6117cb565b5b610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906132ed565b60405180910390fd5b610c3483836119c9565b505050565b600c5481565b610c47611a82565b80600a9080519060200190610c5d929190612765565b5050565b610c69611a82565b80600f60006101000a81548160ff02191690831515021790555050565b6000610c926008611b00565b905090565b610ca8610ca26119c1565b82611b0e565b610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde906133ed565b60405180910390fd5b610cf2838383611ba3565b505050565b610cff611a82565b60026007541415610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061340d565b60405180910390fd5b60026007819055506000731b6c8a28005425b09387f3527d4847d1791696c373ffffffffffffffffffffffffffffffffffffffff166064600547610d899190613612565b610d9391906135e1565b604051610d9f90613112565b60006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610def57600080fd5b6000610df96112bf565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1c90613112565b60006040518083038185875af1925050503d8060008114610e59576040519150601f19603f3d011682016040523d82523d6000602084013e610e5e565b606091505b5050905080610e6c57600080fd5b50506001600781905550565b610e938383836040518060200160405280600081525061158e565b505050565b60606000610ea5836111cb565b905060008167ffffffffffffffff811115610ec357610ec26138ef565b5b604051908082528060200260200182016040528015610ef15781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f0e5750600d548211155b15610f97576000610f1e83611119565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f835782848381518110610f6857610f676138c0565b5b6020026020010181815250508180610f7f906137b9565b9250505b8280610f8e906137b9565b93505050610efd565b82945050505050919050565b610fab611a82565b80600c8190555050565b610fbd611a82565b80600b9080519060200190610fd3929190612765565b5050565b600f60019054906101000a900460ff1681565b600a8054610ff790613756565b80601f016020809104026020016040519081016040528092919081815260200182805461102390613756565b80156110705780601f1061104557610100808354040283529160200191611070565b820191906000526020600020905b81548152906001019060200180831161105357829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6009805461109890613756565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490613756565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b99061338d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906132cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128b611a82565b6112956000611e0a565b565b61129f611a82565b80600990805190602001906112b5929190612765565b5050565b60115481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600180546112fe90613756565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90613756565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b806000811180156113935750600e5481105b6113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c99061326d565b60405180910390fd5b600d54816113e06008611b00565b6113ea919061358b565b1061142a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611421906133cd565b60405180910390fd5b600f60009054906101000a900460ff161561147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061334d565b60405180910390fd5b81600c546114889190613612565b3410156114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c19061342d565b60405180910390fd5b6114d43383611ed0565b5050565b6114ea6114e36119c1565b8383611f10565b5050565b600b80546114fb90613756565b80601f016020809104026020016040519081016040528092919081815260200182805461152790613756565b80156115745780601f1061154957610100808354040283529160200191611574565b820191906000526020600020905b81548152906001019060200180831161155757829003601f168201915b505050505081565b611584611a82565b80600e8190555050565b61159f6115996119c1565b83611b0e565b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906133ed565b60405180910390fd5b6115ea8484848461207d565b50505050565b6115f8611a82565b80600f60026101000a81548160ff02191690831515021790555050565b6060611620826120d9565b61165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061336d565b60405180910390fd5b60001515600f60019054906101000a900460ff161515141561170d57600b805461168890613756565b80601f01602080910402602001604051908101604052809291908181526020018280546116b490613756565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b50505050509050611769565b6000611717612145565b905060008151116117375760405180602001604052806000815250611765565b80611741846121d7565b600a604051602001611755939291906130e1565b6040516020818303038152906040525b9150505b919050565b600d5481565b61177c611a82565b8060118190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6117ae611a82565b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611867611a82565b6118718183611ed0565b5050565b61187d611a82565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061320d565b60405180910390fd5b6118f681611e0a565b50565b600f60029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61197f816120d9565b6119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061338d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3c83611119565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a8a6119c1565b73ffffffffffffffffffffffffffffffffffffffff16611aa86112bf565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061332d565b60405180910390fd5b565b600081600001549050919050565b600080611b1a83611119565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5c5750611b5b81856117cb565b5b80611b9a57508373ffffffffffffffffffffffffffffffffffffffff16611b8284610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc382611119565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c109061322d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061328d565b60405180910390fd5b611c94838383612338565b611c9f6000826119c9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cef919061366c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d46919061358b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0583838361233d565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f0b57611ee56008612342565b611ef883611ef36008611b00565b612358565b8080611f03906137b9565b915050611ed3565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f76906132ad565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161207091906131b0565b60405180910390a3505050565b612088848484611ba3565b61209484848484612376565b6120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca906131ed565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606009805461215490613756565b80601f016020809104026020016040519081016040528092919081815260200182805461218090613756565b80156121cd5780601f106121a2576101008083540402835291602001916121cd565b820191906000526020600020905b8154815290600101906020018083116121b057829003601f168201915b5050505050905090565b6060600082141561221f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612333565b600082905060005b6000821461225157808061223a906137b9565b915050600a8261224a91906135e1565b9150612227565b60008167ffffffffffffffff81111561226d5761226c6138ef565b5b6040519080825280601f01601f19166020018201604052801561229f5781602001600182028036833780820191505090505b5090505b6000851461232c576001826122b8919061366c565b9150600a856122c79190613802565b60306122d3919061358b565b60f81b8183815181106122e9576122e86138c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561232591906135e1565b94506122a3565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61237282826040518060200160405280600081525061250d565b5050565b60006123978473ffffffffffffffffffffffffffffffffffffffff16612568565b15612500578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123c06119c1565b8786866040518563ffffffff1660e01b81526004016123e29493929190613142565b602060405180830381600087803b1580156123fc57600080fd5b505af192505050801561242d57506040513d601f19601f8201168201806040525081019061242a9190612b6e565b60015b6124b0573d806000811461245d576040519150601f19603f3d011682016040523d82523d6000602084013e612462565b606091505b506000815114156124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f906131ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612505565b600190505b949350505050565b612517838361258b565b6125246000848484612376565b612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a906131ed565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f29061330d565b60405180910390fd5b612604816120d9565b15612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b9061324d565b60405180910390fd5b61265060008383612338565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a0919061358b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127616000838361233d565b5050565b82805461277190613756565b90600052602060002090601f01602090048101928261279357600085556127da565b82601f106127ac57805160ff19168380011785556127da565b828001600101855582156127da579182015b828111156127d95782518255916020019190600101906127be565b5b5090506127e791906127eb565b5090565b5b808211156128045760008160009055506001016127ec565b5090565b600061281b6128168461348d565b613468565b90508281526020810184848401111561283757612836613923565b5b612842848285613714565b509392505050565b600061285d612858846134be565b613468565b90508281526020810184848401111561287957612878613923565b5b612884848285613714565b509392505050565b60008135905061289b81613da7565b92915050565b6000813590506128b081613dbe565b92915050565b6000813590506128c581613dd5565b92915050565b6000815190506128da81613dd5565b92915050565b600082601f8301126128f5576128f461391e565b5b8135612905848260208601612808565b91505092915050565b600082601f8301126129235761292261391e565b5b813561293384826020860161284a565b91505092915050565b60008135905061294b81613dec565b92915050565b6000602082840312156129675761296661392d565b5b60006129758482850161288c565b91505092915050565b600080604083850312156129955761299461392d565b5b60006129a38582860161288c565b92505060206129b48582860161288c565b9150509250929050565b6000806000606084860312156129d7576129d661392d565b5b60006129e58682870161288c565b93505060206129f68682870161288c565b9250506040612a078682870161293c565b9150509250925092565b60008060008060808587031215612a2b57612a2a61392d565b5b6000612a398782880161288c565b9450506020612a4a8782880161288c565b9350506040612a5b8782880161293c565b925050606085013567ffffffffffffffff811115612a7c57612a7b613928565b5b612a88878288016128e0565b91505092959194509250565b60008060408385031215612aab57612aaa61392d565b5b6000612ab98582860161288c565b9250506020612aca858286016128a1565b9150509250929050565b60008060408385031215612aeb57612aea61392d565b5b6000612af98582860161288c565b9250506020612b0a8582860161293c565b9150509250929050565b600060208284031215612b2a57612b2961392d565b5b6000612b38848285016128a1565b91505092915050565b600060208284031215612b5757612b5661392d565b5b6000612b65848285016128b6565b91505092915050565b600060208284031215612b8457612b8361392d565b5b6000612b92848285016128cb565b91505092915050565b600060208284031215612bb157612bb061392d565b5b600082013567ffffffffffffffff811115612bcf57612bce613928565b5b612bdb8482850161290e565b91505092915050565b600060208284031215612bfa57612bf961392d565b5b6000612c088482850161293c565b91505092915050565b60008060408385031215612c2857612c2761392d565b5b6000612c368582860161293c565b9250506020612c478582860161288c565b9150509250929050565b6000612c5d83836130c3565b60208301905092915050565b612c72816136a0565b82525050565b6000612c8382613514565b612c8d8185613542565b9350612c98836134ef565b8060005b83811015612cc9578151612cb08882612c51565b9750612cbb83613535565b925050600181019050612c9c565b5085935050505092915050565b612cdf816136b2565b82525050565b6000612cf08261351f565b612cfa8185613553565b9350612d0a818560208601613723565b612d1381613932565b840191505092915050565b6000612d298261352a565b612d33818561356f565b9350612d43818560208601613723565b612d4c81613932565b840191505092915050565b6000612d628261352a565b612d6c8185613580565b9350612d7c818560208601613723565b80840191505092915050565b60008154612d9581613756565b612d9f8186613580565b94506001821660008114612dba5760018114612dcb57612dfe565b60ff19831686528186019350612dfe565b612dd4856134ff565b60005b83811015612df657815481890152600182019150602081019050612dd7565b838801955050505b50505092915050565b6000612e1460328361356f565b9150612e1f82613943565b604082019050919050565b6000612e3760268361356f565b9150612e4282613992565b604082019050919050565b6000612e5a60258361356f565b9150612e65826139e1565b604082019050919050565b6000612e7d601c8361356f565b9150612e8882613a30565b602082019050919050565b6000612ea060148361356f565b9150612eab82613a59565b602082019050919050565b6000612ec360248361356f565b9150612ece82613a82565b604082019050919050565b6000612ee660198361356f565b9150612ef182613ad1565b602082019050919050565b6000612f0960298361356f565b9150612f1482613afa565b604082019050919050565b6000612f2c603e8361356f565b9150612f3782613b49565b604082019050919050565b6000612f4f60208361356f565b9150612f5a82613b98565b602082019050919050565b6000612f7260208361356f565b9150612f7d82613bc1565b602082019050919050565b6000612f9560178361356f565b9150612fa082613bea565b602082019050919050565b6000612fb8602f8361356f565b9150612fc382613c13565b604082019050919050565b6000612fdb60188361356f565b9150612fe682613c62565b602082019050919050565b6000612ffe60218361356f565b915061300982613c8b565b604082019050919050565b6000613021600083613564565b915061302c82613cda565b600082019050919050565b600061304460148361356f565b915061304f82613cdd565b602082019050919050565b6000613067602e8361356f565b915061307282613d06565b604082019050919050565b600061308a601f8361356f565b915061309582613d55565b602082019050919050565b60006130ad60138361356f565b91506130b882613d7e565b602082019050919050565b6130cc8161370a565b82525050565b6130db8161370a565b82525050565b60006130ed8286612d57565b91506130f98285612d57565b91506131058284612d88565b9150819050949350505050565b600061311d82613014565b9150819050919050565b600060208201905061313c6000830184612c69565b92915050565b60006080820190506131576000830187612c69565b6131646020830186612c69565b61317160408301856130d2565b81810360608301526131838184612ce5565b905095945050505050565b600060208201905081810360008301526131a88184612c78565b905092915050565b60006020820190506131c56000830184612cd6565b92915050565b600060208201905081810360008301526131e58184612d1e565b905092915050565b6000602082019050818103600083015261320681612e07565b9050919050565b6000602082019050818103600083015261322681612e2a565b9050919050565b6000602082019050818103600083015261324681612e4d565b9050919050565b6000602082019050818103600083015261326681612e70565b9050919050565b6000602082019050818103600083015261328681612e93565b9050919050565b600060208201905081810360008301526132a681612eb6565b9050919050565b600060208201905081810360008301526132c681612ed9565b9050919050565b600060208201905081810360008301526132e681612efc565b9050919050565b6000602082019050818103600083015261330681612f1f565b9050919050565b6000602082019050818103600083015261332681612f42565b9050919050565b6000602082019050818103600083015261334681612f65565b9050919050565b6000602082019050818103600083015261336681612f88565b9050919050565b6000602082019050818103600083015261338681612fab565b9050919050565b600060208201905081810360008301526133a681612fce565b9050919050565b600060208201905081810360008301526133c681612ff1565b9050919050565b600060208201905081810360008301526133e681613037565b9050919050565b600060208201905081810360008301526134068161305a565b9050919050565b600060208201905081810360008301526134268161307d565b9050919050565b60006020820190508181036000830152613446816130a0565b9050919050565b600060208201905061346260008301846130d2565b92915050565b6000613472613483565b905061347e8282613788565b919050565b6000604051905090565b600067ffffffffffffffff8211156134a8576134a76138ef565b5b6134b182613932565b9050602081019050919050565b600067ffffffffffffffff8211156134d9576134d86138ef565b5b6134e282613932565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135968261370a565b91506135a18361370a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135d6576135d5613833565b5b828201905092915050565b60006135ec8261370a565b91506135f78361370a565b92508261360757613606613862565b5b828204905092915050565b600061361d8261370a565b91506136288361370a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366157613660613833565b5b828202905092915050565b60006136778261370a565b91506136828361370a565b92508282101561369557613694613833565b5b828203905092915050565b60006136ab826136ea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613741578082015181840152602081019050613726565b83811115613750576000848401525b50505050565b6000600282049050600182168061376e57607f821691505b6020821081141561378257613781613891565b5b50919050565b61379182613932565b810181811067ffffffffffffffff821117156137b0576137af6138ef565b5b80604052505050565b60006137c48261370a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137f7576137f6613833565b5b600182019050919050565b600061380d8261370a565b91506138188361370a565b92508261382857613827613862565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613db0816136a0565b8114613dbb57600080fd5b50565b613dc7816136b2565b8114613dd257600080fd5b50565b613dde816136be565b8114613de957600080fd5b50565b613df58161370a565b8114613e0057600080fd5b5056fea2646970667358221220e1f83abbc741115e02377911aa00146af311c9c789c9ec6fdb0752abb04b159c64736f6c63430008070033697066733a2f2f62616679626569676c7734766133786f6a3363677a3467617572336e32647a6371716c356979756e366f6c6268663263666933697a686c343566612f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063d936547e1161007a578063d936547e14610847578063e0a8085314610884578063e985e9c5146108ad578063efbd73f4146108ea578063f2fde38b14610913578063fdea8e0b1461093c57610246565b8063b88d4fde14610764578063c54e73e31461078d578063c87b56dd146107b6578063d5abeb01146107f3578063d76fd2201461081e57610246565b806395d89b41116100fd57806395d89b41146106a0578063a0712d68146106cb578063a22cb465146106e7578063a45ba8e714610710578063b071401b1461073b57610246565b8063715018a6146105df5780637ec4a659146105f6578063854807561461061f5780638da5cb5b1461064a57806394354fd01461067557610246565b806342842e0e116101c75780635503a0e81161018b5780635503a0e8146104e45780635c975abb1461050f57806362b99ad41461053a5780636352211e1461056557806370a08231146105a257610246565b806342842e0e14610401578063438b63001461042a57806344a0d68a146104675780634fdd43cb1461049057806351830227146104b957610246565b806316ba10e01161020e57806316ba10e01461034457806316c38b3c1461036d57806318160ddd1461039657806323b872dd146103c15780633ccfd60b146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede614610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612b41565b610967565b60405161027f91906131b0565b60405180910390f35b34801561029457600080fd5b5061029d610a49565b6040516102aa91906131cb565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612be4565b610adb565b6040516102e79190613127565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612ad4565b610b21565b005b34801561032557600080fd5b5061032e610c39565b60405161033b919061344d565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612b9b565b610c3f565b005b34801561037957600080fd5b50610394600480360381019061038f9190612b14565b610c61565b005b3480156103a257600080fd5b506103ab610c86565b6040516103b8919061344d565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e391906129be565b610c97565b005b3480156103f657600080fd5b506103ff610cf7565b005b34801561040d57600080fd5b50610428600480360381019061042391906129be565b610e78565b005b34801561043657600080fd5b50610451600480360381019061044c9190612951565b610e98565b60405161045e919061318e565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612be4565b610fa3565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612b9b565b610fb5565b005b3480156104c557600080fd5b506104ce610fd7565b6040516104db91906131b0565b60405180910390f35b3480156104f057600080fd5b506104f9610fea565b60405161050691906131cb565b60405180910390f35b34801561051b57600080fd5b50610524611078565b60405161053191906131b0565b60405180910390f35b34801561054657600080fd5b5061054f61108b565b60405161055c91906131cb565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612be4565b611119565b6040516105999190613127565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612951565b6111cb565b6040516105d6919061344d565b60405180910390f35b3480156105eb57600080fd5b506105f4611283565b005b34801561060257600080fd5b5061061d60048036038101906106189190612b9b565b611297565b005b34801561062b57600080fd5b506106346112b9565b604051610641919061344d565b60405180910390f35b34801561065657600080fd5b5061065f6112bf565b60405161066c9190613127565b60405180910390f35b34801561068157600080fd5b5061068a6112e9565b604051610697919061344d565b60405180910390f35b3480156106ac57600080fd5b506106b56112ef565b6040516106c291906131cb565b60405180910390f35b6106e560048036038101906106e09190612be4565b611381565b005b3480156106f357600080fd5b5061070e60048036038101906107099190612a94565b6114d8565b005b34801561071c57600080fd5b506107256114ee565b60405161073291906131cb565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612be4565b61157c565b005b34801561077057600080fd5b5061078b60048036038101906107869190612a11565b61158e565b005b34801561079957600080fd5b506107b460048036038101906107af9190612b14565b6115f0565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190612be4565b611615565b6040516107ea91906131cb565b60405180910390f35b3480156107ff57600080fd5b5061080861176e565b604051610815919061344d565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190612be4565b611774565b005b34801561085357600080fd5b5061086e60048036038101906108699190612951565b611786565b60405161087b91906131b0565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190612b14565b6117a6565b005b3480156108b957600080fd5b506108d460048036038101906108cf919061297e565b6117cb565b6040516108e191906131b0565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190612c11565b61185f565b005b34801561091f57600080fd5b5061093a60048036038101906109359190612951565b611875565b005b34801561094857600080fd5b506109516118f9565b60405161095e91906131b0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750610a418261190c565b5b9050919050565b606060008054610a5890613756565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613756565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611976565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2c82611119565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b94906133ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bbc6119c1565b73ffffffffffffffffffffffffffffffffffffffff161480610beb5750610bea81610be56119c1565b6117cb565b5b610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906132ed565b60405180910390fd5b610c3483836119c9565b505050565b600c5481565b610c47611a82565b80600a9080519060200190610c5d929190612765565b5050565b610c69611a82565b80600f60006101000a81548160ff02191690831515021790555050565b6000610c926008611b00565b905090565b610ca8610ca26119c1565b82611b0e565b610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde906133ed565b60405180910390fd5b610cf2838383611ba3565b505050565b610cff611a82565b60026007541415610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061340d565b60405180910390fd5b60026007819055506000731b6c8a28005425b09387f3527d4847d1791696c373ffffffffffffffffffffffffffffffffffffffff166064600547610d899190613612565b610d9391906135e1565b604051610d9f90613112565b60006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610def57600080fd5b6000610df96112bf565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1c90613112565b60006040518083038185875af1925050503d8060008114610e59576040519150601f19603f3d011682016040523d82523d6000602084013e610e5e565b606091505b5050905080610e6c57600080fd5b50506001600781905550565b610e938383836040518060200160405280600081525061158e565b505050565b60606000610ea5836111cb565b905060008167ffffffffffffffff811115610ec357610ec26138ef565b5b604051908082528060200260200182016040528015610ef15781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f0e5750600d548211155b15610f97576000610f1e83611119565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f835782848381518110610f6857610f676138c0565b5b6020026020010181815250508180610f7f906137b9565b9250505b8280610f8e906137b9565b93505050610efd565b82945050505050919050565b610fab611a82565b80600c8190555050565b610fbd611a82565b80600b9080519060200190610fd3929190612765565b5050565b600f60019054906101000a900460ff1681565b600a8054610ff790613756565b80601f016020809104026020016040519081016040528092919081815260200182805461102390613756565b80156110705780601f1061104557610100808354040283529160200191611070565b820191906000526020600020905b81548152906001019060200180831161105357829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6009805461109890613756565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490613756565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b99061338d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906132cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128b611a82565b6112956000611e0a565b565b61129f611a82565b80600990805190602001906112b5929190612765565b5050565b60115481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600180546112fe90613756565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90613756565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b806000811180156113935750600e5481105b6113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c99061326d565b60405180910390fd5b600d54816113e06008611b00565b6113ea919061358b565b1061142a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611421906133cd565b60405180910390fd5b600f60009054906101000a900460ff161561147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061334d565b60405180910390fd5b81600c546114889190613612565b3410156114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c19061342d565b60405180910390fd5b6114d43383611ed0565b5050565b6114ea6114e36119c1565b8383611f10565b5050565b600b80546114fb90613756565b80601f016020809104026020016040519081016040528092919081815260200182805461152790613756565b80156115745780601f1061154957610100808354040283529160200191611574565b820191906000526020600020905b81548152906001019060200180831161155757829003601f168201915b505050505081565b611584611a82565b80600e8190555050565b61159f6115996119c1565b83611b0e565b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906133ed565b60405180910390fd5b6115ea8484848461207d565b50505050565b6115f8611a82565b80600f60026101000a81548160ff02191690831515021790555050565b6060611620826120d9565b61165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061336d565b60405180910390fd5b60001515600f60019054906101000a900460ff161515141561170d57600b805461168890613756565b80601f01602080910402602001604051908101604052809291908181526020018280546116b490613756565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b50505050509050611769565b6000611717612145565b905060008151116117375760405180602001604052806000815250611765565b80611741846121d7565b600a604051602001611755939291906130e1565b6040516020818303038152906040525b9150505b919050565b600d5481565b61177c611a82565b8060118190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6117ae611a82565b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611867611a82565b6118718183611ed0565b5050565b61187d611a82565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061320d565b60405180910390fd5b6118f681611e0a565b50565b600f60029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61197f816120d9565b6119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061338d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3c83611119565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a8a6119c1565b73ffffffffffffffffffffffffffffffffffffffff16611aa86112bf565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061332d565b60405180910390fd5b565b600081600001549050919050565b600080611b1a83611119565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5c5750611b5b81856117cb565b5b80611b9a57508373ffffffffffffffffffffffffffffffffffffffff16611b8284610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc382611119565b73ffffffffffffffffffffffffffffffffffffffff1614611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c109061322d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061328d565b60405180910390fd5b611c94838383612338565b611c9f6000826119c9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cef919061366c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d46919061358b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0583838361233d565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f0b57611ee56008612342565b611ef883611ef36008611b00565b612358565b8080611f03906137b9565b915050611ed3565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f76906132ad565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161207091906131b0565b60405180910390a3505050565b612088848484611ba3565b61209484848484612376565b6120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca906131ed565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606009805461215490613756565b80601f016020809104026020016040519081016040528092919081815260200182805461218090613756565b80156121cd5780601f106121a2576101008083540402835291602001916121cd565b820191906000526020600020905b8154815290600101906020018083116121b057829003601f168201915b5050505050905090565b6060600082141561221f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612333565b600082905060005b6000821461225157808061223a906137b9565b915050600a8261224a91906135e1565b9150612227565b60008167ffffffffffffffff81111561226d5761226c6138ef565b5b6040519080825280601f01601f19166020018201604052801561229f5781602001600182028036833780820191505090505b5090505b6000851461232c576001826122b8919061366c565b9150600a856122c79190613802565b60306122d3919061358b565b60f81b8183815181106122e9576122e86138c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561232591906135e1565b94506122a3565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61237282826040518060200160405280600081525061250d565b5050565b60006123978473ffffffffffffffffffffffffffffffffffffffff16612568565b15612500578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123c06119c1565b8786866040518563ffffffff1660e01b81526004016123e29493929190613142565b602060405180830381600087803b1580156123fc57600080fd5b505af192505050801561242d57506040513d601f19601f8201168201806040525081019061242a9190612b6e565b60015b6124b0573d806000811461245d576040519150601f19603f3d011682016040523d82523d6000602084013e612462565b606091505b506000815114156124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f906131ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612505565b600190505b949350505050565b612517838361258b565b6125246000848484612376565b612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a906131ed565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f29061330d565b60405180910390fd5b612604816120d9565b15612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b9061324d565b60405180910390fd5b61265060008383612338565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a0919061358b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127616000838361233d565b5050565b82805461277190613756565b90600052602060002090601f01602090048101928261279357600085556127da565b82601f106127ac57805160ff19168380011785556127da565b828001600101855582156127da579182015b828111156127d95782518255916020019190600101906127be565b5b5090506127e791906127eb565b5090565b5b808211156128045760008160009055506001016127ec565b5090565b600061281b6128168461348d565b613468565b90508281526020810184848401111561283757612836613923565b5b612842848285613714565b509392505050565b600061285d612858846134be565b613468565b90508281526020810184848401111561287957612878613923565b5b612884848285613714565b509392505050565b60008135905061289b81613da7565b92915050565b6000813590506128b081613dbe565b92915050565b6000813590506128c581613dd5565b92915050565b6000815190506128da81613dd5565b92915050565b600082601f8301126128f5576128f461391e565b5b8135612905848260208601612808565b91505092915050565b600082601f8301126129235761292261391e565b5b813561293384826020860161284a565b91505092915050565b60008135905061294b81613dec565b92915050565b6000602082840312156129675761296661392d565b5b60006129758482850161288c565b91505092915050565b600080604083850312156129955761299461392d565b5b60006129a38582860161288c565b92505060206129b48582860161288c565b9150509250929050565b6000806000606084860312156129d7576129d661392d565b5b60006129e58682870161288c565b93505060206129f68682870161288c565b9250506040612a078682870161293c565b9150509250925092565b60008060008060808587031215612a2b57612a2a61392d565b5b6000612a398782880161288c565b9450506020612a4a8782880161288c565b9350506040612a5b8782880161293c565b925050606085013567ffffffffffffffff811115612a7c57612a7b613928565b5b612a88878288016128e0565b91505092959194509250565b60008060408385031215612aab57612aaa61392d565b5b6000612ab98582860161288c565b9250506020612aca858286016128a1565b9150509250929050565b60008060408385031215612aeb57612aea61392d565b5b6000612af98582860161288c565b9250506020612b0a8582860161293c565b9150509250929050565b600060208284031215612b2a57612b2961392d565b5b6000612b38848285016128a1565b91505092915050565b600060208284031215612b5757612b5661392d565b5b6000612b65848285016128b6565b91505092915050565b600060208284031215612b8457612b8361392d565b5b6000612b92848285016128cb565b91505092915050565b600060208284031215612bb157612bb061392d565b5b600082013567ffffffffffffffff811115612bcf57612bce613928565b5b612bdb8482850161290e565b91505092915050565b600060208284031215612bfa57612bf961392d565b5b6000612c088482850161293c565b91505092915050565b60008060408385031215612c2857612c2761392d565b5b6000612c368582860161293c565b9250506020612c478582860161288c565b9150509250929050565b6000612c5d83836130c3565b60208301905092915050565b612c72816136a0565b82525050565b6000612c8382613514565b612c8d8185613542565b9350612c98836134ef565b8060005b83811015612cc9578151612cb08882612c51565b9750612cbb83613535565b925050600181019050612c9c565b5085935050505092915050565b612cdf816136b2565b82525050565b6000612cf08261351f565b612cfa8185613553565b9350612d0a818560208601613723565b612d1381613932565b840191505092915050565b6000612d298261352a565b612d33818561356f565b9350612d43818560208601613723565b612d4c81613932565b840191505092915050565b6000612d628261352a565b612d6c8185613580565b9350612d7c818560208601613723565b80840191505092915050565b60008154612d9581613756565b612d9f8186613580565b94506001821660008114612dba5760018114612dcb57612dfe565b60ff19831686528186019350612dfe565b612dd4856134ff565b60005b83811015612df657815481890152600182019150602081019050612dd7565b838801955050505b50505092915050565b6000612e1460328361356f565b9150612e1f82613943565b604082019050919050565b6000612e3760268361356f565b9150612e4282613992565b604082019050919050565b6000612e5a60258361356f565b9150612e65826139e1565b604082019050919050565b6000612e7d601c8361356f565b9150612e8882613a30565b602082019050919050565b6000612ea060148361356f565b9150612eab82613a59565b602082019050919050565b6000612ec360248361356f565b9150612ece82613a82565b604082019050919050565b6000612ee660198361356f565b9150612ef182613ad1565b602082019050919050565b6000612f0960298361356f565b9150612f1482613afa565b604082019050919050565b6000612f2c603e8361356f565b9150612f3782613b49565b604082019050919050565b6000612f4f60208361356f565b9150612f5a82613b98565b602082019050919050565b6000612f7260208361356f565b9150612f7d82613bc1565b602082019050919050565b6000612f9560178361356f565b9150612fa082613bea565b602082019050919050565b6000612fb8602f8361356f565b9150612fc382613c13565b604082019050919050565b6000612fdb60188361356f565b9150612fe682613c62565b602082019050919050565b6000612ffe60218361356f565b915061300982613c8b565b604082019050919050565b6000613021600083613564565b915061302c82613cda565b600082019050919050565b600061304460148361356f565b915061304f82613cdd565b602082019050919050565b6000613067602e8361356f565b915061307282613d06565b604082019050919050565b600061308a601f8361356f565b915061309582613d55565b602082019050919050565b60006130ad60138361356f565b91506130b882613d7e565b602082019050919050565b6130cc8161370a565b82525050565b6130db8161370a565b82525050565b60006130ed8286612d57565b91506130f98285612d57565b91506131058284612d88565b9150819050949350505050565b600061311d82613014565b9150819050919050565b600060208201905061313c6000830184612c69565b92915050565b60006080820190506131576000830187612c69565b6131646020830186612c69565b61317160408301856130d2565b81810360608301526131838184612ce5565b905095945050505050565b600060208201905081810360008301526131a88184612c78565b905092915050565b60006020820190506131c56000830184612cd6565b92915050565b600060208201905081810360008301526131e58184612d1e565b905092915050565b6000602082019050818103600083015261320681612e07565b9050919050565b6000602082019050818103600083015261322681612e2a565b9050919050565b6000602082019050818103600083015261324681612e4d565b9050919050565b6000602082019050818103600083015261326681612e70565b9050919050565b6000602082019050818103600083015261328681612e93565b9050919050565b600060208201905081810360008301526132a681612eb6565b9050919050565b600060208201905081810360008301526132c681612ed9565b9050919050565b600060208201905081810360008301526132e681612efc565b9050919050565b6000602082019050818103600083015261330681612f1f565b9050919050565b6000602082019050818103600083015261332681612f42565b9050919050565b6000602082019050818103600083015261334681612f65565b9050919050565b6000602082019050818103600083015261336681612f88565b9050919050565b6000602082019050818103600083015261338681612fab565b9050919050565b600060208201905081810360008301526133a681612fce565b9050919050565b600060208201905081810360008301526133c681612ff1565b9050919050565b600060208201905081810360008301526133e681613037565b9050919050565b600060208201905081810360008301526134068161305a565b9050919050565b600060208201905081810360008301526134268161307d565b9050919050565b60006020820190508181036000830152613446816130a0565b9050919050565b600060208201905061346260008301846130d2565b92915050565b6000613472613483565b905061347e8282613788565b919050565b6000604051905090565b600067ffffffffffffffff8211156134a8576134a76138ef565b5b6134b182613932565b9050602081019050919050565b600067ffffffffffffffff8211156134d9576134d86138ef565b5b6134e282613932565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135968261370a565b91506135a18361370a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135d6576135d5613833565b5b828201905092915050565b60006135ec8261370a565b91506135f78361370a565b92508261360757613606613862565b5b828204905092915050565b600061361d8261370a565b91506136288361370a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366157613660613833565b5b828202905092915050565b60006136778261370a565b91506136828361370a565b92508282101561369557613694613833565b5b828203905092915050565b60006136ab826136ea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613741578082015181840152602081019050613726565b83811115613750576000848401525b50505050565b6000600282049050600182168061376e57607f821691505b6020821081141561378257613781613891565b5b50919050565b61379182613932565b810181811067ffffffffffffffff821117156137b0576137af6138ef565b5b80604052505050565b60006137c48261370a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137f7576137f6613833565b5b600182019050919050565b600061380d8261370a565b91506138188361370a565b92508261382857613827613862565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613db0816136a0565b8114613dbb57600080fd5b50565b613dc7816136b2565b8114613dd257600080fd5b50565b613dde816136be565b8114613de957600080fd5b50565b613df58161370a565b8114613e0057600080fd5b5056fea2646970667358221220e1f83abbc741115e02377911aa00146af311c9c789c9ec6fdb0752abb04b159c64736f6c63430008070033

Deployed Bytecode Sourcemap

44033:4841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28994:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29921:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31434:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30951:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44379:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47265:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47371:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45092:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32134:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47454:864;;;;;;;;;;;;;:::i;:::-;;32541:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45577:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46805:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47021:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44524:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44242:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44493:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44209:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29632:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29363:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9530:103;;;;;;;;;;;;;:::i;:::-;;47159:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44639:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8882:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44449:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30090:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45187:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31677:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44280:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46885:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32797:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48674:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46218:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44413:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48761:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44591:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46718:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31903:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45442:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9788:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44559:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28994:305;29096:4;29148:25;29133:40;;;:11;:40;;;;:105;;;;29205:33;29190:48;;;:11;:48;;;;29133:105;:158;;;;29255:36;29279:11;29255:23;:36::i;:::-;29133:158;29113:178;;28994:305;;;:::o;29921:100::-;29975:13;30008:5;30001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29921:100;:::o;31434:171::-;31510:7;31530:23;31545:7;31530:14;:23::i;:::-;31573:15;:24;31589:7;31573:24;;;;;;;;;;;;;;;;;;;;;31566:31;;31434:171;;;:::o;30951:417::-;31032:13;31048:23;31063:7;31048:14;:23::i;:::-;31032:39;;31096:5;31090:11;;:2;:11;;;;31082:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31190:5;31174:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31199:37;31216:5;31223:12;:10;:12::i;:::-;31199:16;:37::i;:::-;31174:62;31152:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;31339:21;31348:2;31352:7;31339:8;:21::i;:::-;31021:347;30951:417;;:::o;44379:29::-;;;;:::o;47265:100::-;8768:13;:11;:13::i;:::-;47349:10:::1;47337:9;:22;;;;;;;;;;;;:::i;:::-;;47265:100:::0;:::o;47371:77::-;8768:13;:11;:13::i;:::-;47436:6:::1;47427;;:15;;;;;;;;;;;;;;;;;;47371:77:::0;:::o;45092:89::-;45136:7;45159:16;:6;:14;:16::i;:::-;45152:23;;45092:89;:::o;32134:336::-;32329:41;32348:12;:10;:12::i;:::-;32362:7;32329:18;:41::i;:::-;32321:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;32434:28;32444:4;32450:2;32454:7;32434:9;:28::i;:::-;32134:336;;;:::o;47454:864::-;8768:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;47658:7:::2;47679:42;47671:56;;47763:3;47759:1;47735:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;47671:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47657:114;;;47786:2;47778:11;;;::::0;::::2;;48138:7;48159;:5;:7::i;:::-;48151:21;;48180;48151:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48137:69;;;48221:2;48213:11;;;::::0;::::2;;47504:814;;1801:1:::1;2755:7;:22;;;;47454:864::o:0;32541:185::-;32679:39;32696:4;32702:2;32706:7;32679:39;;;;;;;;;;;;:16;:39::i;:::-;32541:185;;;:::o;45577:635::-;45652:16;45680:23;45706:17;45716:6;45706:9;:17::i;:::-;45680:43;;45730:30;45777:15;45763:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45730:63;;45800:22;45825:1;45800:26;;45833:23;45869:309;45894:15;45876;:33;:64;;;;;45931:9;;45913:14;:27;;45876:64;45869:309;;;45951:25;45979:23;45987:14;45979:7;:23::i;:::-;45951:51;;46038:6;46017:27;;:17;:27;;;46013:131;;;46090:14;46057:13;46071:15;46057:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;46117:17;;;;;:::i;:::-;;;;46013:131;46154:16;;;;;:::i;:::-;;;;45942:236;45869:309;;;46193:13;46186:20;;;;;;45577:635;;;:::o;46805:74::-;8768:13;:11;:13::i;:::-;46868:5:::1;46861:4;:12;;;;46805:74:::0;:::o;47021:132::-;8768:13;:11;:13::i;:::-;47129:18:::1;47109:17;:38;;;;;;;;;;;;:::i;:::-;;47021:132:::0;:::o;44524:28::-;;;;;;;;;;;;;:::o;44242:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44493:26::-;;;;;;;;;;;;;:::o;44209:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29632:222::-;29704:7;29724:13;29740:7;:16;29748:7;29740:16;;;;;;;;;;;;;;;;;;;;;29724:32;;29792:1;29775:19;;:5;:19;;;;29767:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29841:5;29834:12;;;29632:222;;;:::o;29363:207::-;29435:7;29480:1;29463:19;;:5;:19;;;;29455:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29546:9;:16;29556:5;29546:16;;;;;;;;;;;;;;;;29539:23;;29363:207;;;:::o;9530:103::-;8768:13;:11;:13::i;:::-;9595:30:::1;9622:1;9595:18;:30::i;:::-;9530:103::o:0;47159:100::-;8768:13;:11;:13::i;:::-;47243:10:::1;47231:9;:22;;;;;;;;;;;;:::i;:::-;;47159:100:::0;:::o;44639:39::-;;;;:::o;8882:87::-;8928:7;8955:6;;;;;;;;;;;8948:13;;8882:87;:::o;44449:37::-;;;;:::o;30090:104::-;30146:13;30179:7;30172:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30090:104;:::o;45187:247::-;45252:11;44928:1;44914:11;:15;:51;;;;;44947:18;;44933:11;:32;44914:51;44906:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;45038:9;;45024:11;45005:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:42;44997:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;45281:6:::1;;;;;;;;;;;45280:7;45272:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45350:11;45343:4;;:18;;;;:::i;:::-;45330:9;:31;;45322:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45394:34;45404:10;45416:11;45394:9;:34::i;:::-;45187:247:::0;;:::o;31677:155::-;31772:52;31791:12;:10;:12::i;:::-;31805:8;31815;31772:18;:52::i;:::-;31677:155;;:::o;44280:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46885:130::-;8768:13;:11;:13::i;:::-;46990:19:::1;46969:18;:40;;;;46885:130:::0;:::o;32797:323::-;32971:41;32990:12;:10;:12::i;:::-;33004:7;32971:18;:41::i;:::-;32963:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;33074:38;33088:4;33094:2;33098:7;33107:4;33074:13;:38::i;:::-;32797:323;;;;:::o;48674:81::-;8768:13;:11;:13::i;:::-;48743:6:::1;48733:7;;:16;;;;;;;;;;;;;;;;;;48674:81:::0;:::o;46218:494::-;46317:13;46358:17;46366:8;46358:7;:17::i;:::-;46342:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;46465:5;46453:17;;:8;;;;;;;;;;;:17;;;46449:64;;;46488:17;46481:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46449:64;46521:28;46552:10;:8;:10::i;:::-;46521:41;;46607:1;46582:14;46576:28;:32;:130;;;;;;;;;;;;;;;;;46644:14;46660:19;:8;:17;:19::i;:::-;46681:9;46627:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46576:130;46569:137;;;46218:494;;;;:::o;44413:31::-;;;;:::o;48761:106::-;8768:13;:11;:13::i;:::-;48857:4:::1;48834:20;:27;;;;48761:106:::0;:::o;44591:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;46718:81::-;8768:13;:11;:13::i;:::-;46787:6:::1;46776:8;;:17;;;;;;;;;;;;;;;;;;46718:81:::0;:::o;31903:164::-;32000:4;32024:18;:25;32043:5;32024:25;;;;;;;;;;;;;;;:35;32050:8;32024:35;;;;;;;;;;;;;;;;;;;;;;;;;32017:42;;31903:164;;;;:::o;45442:129::-;8768:13;:11;:13::i;:::-;45532:33:::1;45542:9;45553:11;45532:9;:33::i;:::-;45442:129:::0;;:::o;9788:201::-;8768:13;:11;:13::i;:::-;9897:1:::1;9877:22;;:8;:22;;;;9869:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9953:28;9972:8;9953:18;:28::i;:::-;9788:201:::0;:::o;44559:27::-;;;;;;;;;;;;;:::o;21736:157::-;21821:4;21860:25;21845:40;;;:11;:40;;;;21838:47;;21736:157;;;:::o;39409:135::-;39491:16;39499:7;39491;:16::i;:::-;39483:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;39409:135;:::o;7433:98::-;7486:7;7513:10;7506:17;;7433:98;:::o;38688:174::-;38790:2;38763:15;:24;38779:7;38763:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38846:7;38842:2;38808:46;;38817:23;38832:7;38817:14;:23::i;:::-;38808:46;;;;;;;;;;;;38688:174;;:::o;9047:132::-;9122:12;:10;:12::i;:::-;9111:23;;:7;:5;:7::i;:::-;:23;;;9103:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9047:132::o;3664:114::-;3729:7;3756;:14;;;3749:21;;3664:114;;;:::o;34921:264::-;35014:4;35031:13;35047:23;35062:7;35047:14;:23::i;:::-;35031:39;;35100:5;35089:16;;:7;:16;;;:52;;;;35109:32;35126:5;35133:7;35109:16;:32::i;:::-;35089:52;:87;;;;35169:7;35145:31;;:20;35157:7;35145:11;:20::i;:::-;:31;;;35089:87;35081:96;;;34921:264;;;;:::o;37944:625::-;38103:4;38076:31;;:23;38091:7;38076:14;:23::i;:::-;:31;;;38068:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38182:1;38168:16;;:2;:16;;;;38160:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38238:39;38259:4;38265:2;38269:7;38238:20;:39::i;:::-;38342:29;38359:1;38363:7;38342:8;:29::i;:::-;38403:1;38384:9;:15;38394:4;38384:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38432:1;38415:9;:13;38425:2;38415:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38463:2;38444:7;:16;38452:7;38444:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38502:7;38498:2;38483:27;;38492:4;38483:27;;;;;;;;;;;;38523:38;38543:4;38549:2;38553:7;38523:19;:38::i;:::-;37944:625;;;:::o;10149:191::-;10223:16;10242:6;;;;;;;;;;;10223:25;;10268:8;10259:6;;:17;;;;;;;;;;;;;;;;;;10323:8;10292:40;;10313:8;10292:40;;;;;;;;;;;;10212:128;10149:191;:::o;48324:204::-;48404:9;48399:124;48423:11;48419:1;:15;48399:124;;;48450:18;:6;:16;:18::i;:::-;48477:38;48487:9;48498:16;:6;:14;:16::i;:::-;48477:9;:38::i;:::-;48436:3;;;;;:::i;:::-;;;;48399:124;;;;48324:204;;:::o;39005:315::-;39160:8;39151:17;;:5;:17;;;;39143:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39247:8;39209:18;:25;39228:5;39209:25;;;;;;;;;;;;;;;:35;39235:8;39209:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39293:8;39271:41;;39286:5;39271:41;;;39303:8;39271:41;;;;;;:::i;:::-;;;;;;;;39005:315;;;:::o;34001:313::-;34157:28;34167:4;34173:2;34177:7;34157:9;:28::i;:::-;34204:47;34227:4;34233:2;34237:7;34246:4;34204:22;:47::i;:::-;34196:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34001:313;;;;:::o;34627:127::-;34692:4;34744:1;34716:30;;:7;:16;34724:7;34716:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34709:37;;34627:127;;;:::o;48534:104::-;48594:13;48623:9;48616:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48534:104;:::o;4687:723::-;4743:13;4973:1;4964:5;:10;4960:53;;;4991:10;;;;;;;;;;;;;;;;;;;;;4960:53;5023:12;5038:5;5023:20;;5054:14;5079:78;5094:1;5086:4;:9;5079:78;;5112:8;;;;;:::i;:::-;;;;5143:2;5135:10;;;;;:::i;:::-;;;5079:78;;;5167:19;5199:6;5189:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5167:39;;5217:154;5233:1;5224:5;:10;5217:154;;5261:1;5251:11;;;;;:::i;:::-;;;5328:2;5320:5;:10;;;;:::i;:::-;5307:2;:24;;;;:::i;:::-;5294:39;;5277:6;5284;5277:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5357:2;5348:11;;;;;:::i;:::-;;;5217:154;;;5395:6;5381:21;;;;;4687:723;;;;:::o;41533:126::-;;;;:::o;42044:125::-;;;;:::o;3786:127::-;3893:1;3875:7;:14;;;:19;;;;;;;;;;;3786:127;:::o;35527:110::-;35603:26;35613:2;35617:7;35603:26;;;;;;;;;;;;:9;:26::i;:::-;35527:110;;:::o;40108:853::-;40262:4;40283:15;:2;:13;;;:15::i;:::-;40279:675;;;40335:2;40319:36;;;40356:12;:10;:12::i;:::-;40370:4;40376:7;40385:4;40319:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40315:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40577:1;40560:6;:13;:18;40556:328;;;40603:60;;;;;;;;;;:::i;:::-;;;;;;;;40556:328;40834:6;40828:13;40819:6;40815:2;40811:15;40804:38;40315:584;40451:41;;;40441:51;;;:6;:51;;;;40434:58;;;;;40279:675;40938:4;40931:11;;40108:853;;;;;;;:::o;35864:319::-;35993:18;35999:2;36003:7;35993:5;:18::i;:::-;36044:53;36075:1;36079:2;36083:7;36092:4;36044:22;:53::i;:::-;36022:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;35864:319;;;:::o;11580:326::-;11640:4;11897:1;11875:7;:19;;;:23;11868:30;;11580:326;;;:::o;36519:439::-;36613:1;36599:16;;:2;:16;;;;36591:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36672:16;36680:7;36672;:16::i;:::-;36671:17;36663:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36734:45;36763:1;36767:2;36771:7;36734:20;:45::i;:::-;36809:1;36792:9;:13;36802:2;36792:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36840:2;36821:7;:16;36829:7;36821:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36885:7;36881:2;36860:33;;36877:1;36860:33;;;;;;;;;;;;36906:44;36934:1;36938:2;36942:7;36906:19;:44::i;:::-;36519:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:398::-;16892:3;16913:83;16994:1;16989:3;16913:83;:::i;:::-;16906:90;;17005:93;17094:3;17005:93;:::i;:::-;17123:1;17118:3;17114:11;17107:18;;16733:398;;;:::o;17137:366::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:108::-;18702:24;18720:5;18702:24;:::i;:::-;18697:3;18690:37;18625:108;;:::o;18739:118::-;18826:24;18844:5;18826:24;:::i;:::-;18821:3;18814:37;18739:118;;:::o;18863:589::-;19088:3;19110:95;19201:3;19192:6;19110:95;:::i;:::-;19103:102;;19222:95;19313:3;19304:6;19222:95;:::i;:::-;19215:102;;19334:92;19422:3;19413:6;19334:92;:::i;:::-;19327:99;;19443:3;19436:10;;18863:589;;;;;;:::o;19458:379::-;19642:3;19664:147;19807:3;19664:147;:::i;:::-;19657:154;;19828:3;19821:10;;19458:379;;;:::o;19843:222::-;19936:4;19974:2;19963:9;19959:18;19951:26;;19987:71;20055:1;20044:9;20040:17;20031:6;19987:71;:::i;:::-;19843:222;;;;:::o;20071:640::-;20266:4;20304:3;20293:9;20289:19;20281:27;;20318:71;20386:1;20375:9;20371:17;20362:6;20318:71;:::i;:::-;20399:72;20467:2;20456:9;20452:18;20443:6;20399:72;:::i;:::-;20481;20549:2;20538:9;20534:18;20525:6;20481:72;:::i;:::-;20600:9;20594:4;20590:20;20585:2;20574:9;20570:18;20563:48;20628:76;20699:4;20690:6;20628:76;:::i;:::-;20620:84;;20071:640;;;;;;;:::o;20717:373::-;20860:4;20898:2;20887:9;20883:18;20875:26;;20947:9;20941:4;20937:20;20933:1;20922:9;20918:17;20911:47;20975:108;21078:4;21069:6;20975:108;:::i;:::-;20967:116;;20717:373;;;;:::o;21096:210::-;21183:4;21221:2;21210:9;21206:18;21198:26;;21234:65;21296:1;21285:9;21281:17;21272:6;21234:65;:::i;:::-;21096:210;;;;:::o;21312:313::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:78;21613:4;21604:6;21540:78;:::i;:::-;21532:86;;21312:313;;;;:::o;21631:419::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:::-;23922:4;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23756:419;;;:::o;24181:::-;24347:4;24385:2;24374:9;24370:18;24362:26;;24434:9;24428:4;24424:20;24420:1;24409:9;24405:17;24398:47;24462:131;24588:4;24462:131;:::i;:::-;24454:139;;24181:419;;;:::o;24606:::-;24772:4;24810:2;24799:9;24795:18;24787:26;;24859:9;24853:4;24849:20;24845:1;24834:9;24830:17;24823:47;24887:131;25013:4;24887:131;:::i;:::-;24879:139;;24606:419;;;:::o;25031:::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25284:9;25278:4;25274:20;25270:1;25259:9;25255:17;25248:47;25312:131;25438:4;25312:131;:::i;:::-;25304:139;;25031:419;;;:::o;25456:::-;25622:4;25660:2;25649:9;25645:18;25637:26;;25709:9;25703:4;25699:20;25695:1;25684:9;25680:17;25673:47;25737:131;25863:4;25737:131;:::i;:::-;25729:139;;25456:419;;;:::o;25881:::-;26047:4;26085:2;26074:9;26070:18;26062:26;;26134:9;26128:4;26124:20;26120:1;26109:9;26105:17;26098:47;26162:131;26288:4;26162:131;:::i;:::-;26154:139;;25881:419;;;:::o;26306:::-;26472:4;26510:2;26499:9;26495:18;26487:26;;26559:9;26553:4;26549:20;26545:1;26534:9;26530:17;26523:47;26587:131;26713:4;26587:131;:::i;:::-;26579:139;;26306:419;;;:::o;26731:::-;26897:4;26935:2;26924:9;26920:18;26912:26;;26984:9;26978:4;26974:20;26970:1;26959:9;26955:17;26948:47;27012:131;27138:4;27012:131;:::i;:::-;27004:139;;26731:419;;;:::o;27156:::-;27322:4;27360:2;27349:9;27345:18;27337:26;;27409:9;27403:4;27399:20;27395:1;27384:9;27380:17;27373:47;27437:131;27563:4;27437:131;:::i;:::-;27429:139;;27156:419;;;:::o;27581:::-;27747:4;27785:2;27774:9;27770:18;27762:26;;27834:9;27828:4;27824:20;27820:1;27809:9;27805:17;27798:47;27862:131;27988:4;27862:131;:::i;:::-;27854:139;;27581:419;;;:::o;28006:::-;28172:4;28210:2;28199:9;28195:18;28187:26;;28259:9;28253:4;28249:20;28245:1;28234:9;28230:17;28223:47;28287:131;28413:4;28287:131;:::i;:::-;28279:139;;28006:419;;;:::o;28431:::-;28597:4;28635:2;28624:9;28620:18;28612:26;;28684:9;28678:4;28674:20;28670:1;28659:9;28655:17;28648:47;28712:131;28838:4;28712:131;:::i;:::-;28704:139;;28431:419;;;:::o;28856:::-;29022:4;29060:2;29049:9;29045:18;29037:26;;29109:9;29103:4;29099:20;29095:1;29084:9;29080:17;29073:47;29137:131;29263:4;29137:131;:::i;:::-;29129:139;;28856:419;;;:::o;29281:::-;29447:4;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29281:419;;;:::o;29706:222::-;29799:4;29837:2;29826:9;29822:18;29814:26;;29850:71;29918:1;29907:9;29903:17;29894:6;29850:71;:::i;:::-;29706:222;;;;:::o;29934:129::-;29968:6;29995:20;;:::i;:::-;29985:30;;30024:33;30052:4;30044:6;30024:33;:::i;:::-;29934:129;;;:::o;30069:75::-;30102:6;30135:2;30129:9;30119:19;;30069:75;:::o;30150:307::-;30211:4;30301:18;30293:6;30290:30;30287:56;;;30323:18;;:::i;:::-;30287:56;30361:29;30383:6;30361:29;:::i;:::-;30353:37;;30445:4;30439;30435:15;30427:23;;30150:307;;;:::o;30463:308::-;30525:4;30615:18;30607:6;30604:30;30601:56;;;30637:18;;:::i;:::-;30601:56;30675:29;30697:6;30675:29;:::i;:::-;30667:37;;30759:4;30753;30749:15;30741:23;;30463:308;;;:::o;30777:132::-;30844:4;30867:3;30859:11;;30897:4;30892:3;30888:14;30880:22;;30777:132;;;:::o;30915:141::-;30964:4;30987:3;30979:11;;31010:3;31007:1;31000:14;31044:4;31041:1;31031:18;31023:26;;30915:141;;;:::o;31062:114::-;31129:6;31163:5;31157:12;31147:22;;31062:114;;;:::o;31182:98::-;31233:6;31267:5;31261:12;31251:22;;31182:98;;;:::o;31286:99::-;31338:6;31372:5;31366:12;31356:22;;31286:99;;;:::o;31391:113::-;31461:4;31493;31488:3;31484:14;31476:22;;31391:113;;;:::o;31510:184::-;31609:11;31643:6;31638:3;31631:19;31683:4;31678:3;31674:14;31659:29;;31510:184;;;;:::o;31700:168::-;31783:11;31817:6;31812:3;31805:19;31857:4;31852:3;31848:14;31833:29;;31700:168;;;;:::o;31874:147::-;31975:11;32012:3;31997:18;;31874:147;;;;:::o;32027:169::-;32111:11;32145:6;32140:3;32133:19;32185:4;32180:3;32176:14;32161:29;;32027:169;;;;:::o;32202:148::-;32304:11;32341:3;32326:18;;32202:148;;;;:::o;32356:305::-;32396:3;32415:20;32433:1;32415:20;:::i;:::-;32410:25;;32449:20;32467:1;32449:20;:::i;:::-;32444:25;;32603:1;32535:66;32531:74;32528:1;32525:81;32522:107;;;32609:18;;:::i;:::-;32522:107;32653:1;32650;32646:9;32639:16;;32356:305;;;;:::o;32667:185::-;32707:1;32724:20;32742:1;32724:20;:::i;:::-;32719:25;;32758:20;32776:1;32758:20;:::i;:::-;32753:25;;32797:1;32787:35;;32802:18;;:::i;:::-;32787:35;32844:1;32841;32837:9;32832:14;;32667:185;;;;:::o;32858:348::-;32898:7;32921:20;32939:1;32921:20;:::i;:::-;32916:25;;32955:20;32973:1;32955:20;:::i;:::-;32950:25;;33143:1;33075:66;33071:74;33068:1;33065:81;33060:1;33053:9;33046:17;33042:105;33039:131;;;33150:18;;:::i;:::-;33039:131;33198:1;33195;33191:9;33180:20;;32858:348;;;;:::o;33212:191::-;33252:4;33272:20;33290:1;33272:20;:::i;:::-;33267:25;;33306:20;33324:1;33306:20;:::i;:::-;33301:25;;33345:1;33342;33339:8;33336:34;;;33350:18;;:::i;:::-;33336:34;33395:1;33392;33388:9;33380:17;;33212:191;;;;:::o;33409:96::-;33446:7;33475:24;33493:5;33475:24;:::i;:::-;33464:35;;33409:96;;;:::o;33511:90::-;33545:7;33588:5;33581:13;33574:21;33563:32;;33511:90;;;:::o;33607:149::-;33643:7;33683:66;33676:5;33672:78;33661:89;;33607:149;;;:::o;33762:126::-;33799:7;33839:42;33832:5;33828:54;33817:65;;33762:126;;;:::o;33894:77::-;33931:7;33960:5;33949:16;;33894:77;;;:::o;33977:154::-;34061:6;34056:3;34051;34038:30;34123:1;34114:6;34109:3;34105:16;34098:27;33977:154;;;:::o;34137:307::-;34205:1;34215:113;34229:6;34226:1;34223:13;34215:113;;;34314:1;34309:3;34305:11;34299:18;34295:1;34290:3;34286:11;34279:39;34251:2;34248:1;34244:10;34239:15;;34215:113;;;34346:6;34343:1;34340:13;34337:101;;;34426:1;34417:6;34412:3;34408:16;34401:27;34337:101;34186:258;34137:307;;;:::o;34450:320::-;34494:6;34531:1;34525:4;34521:12;34511:22;;34578:1;34572:4;34568:12;34599:18;34589:81;;34655:4;34647:6;34643:17;34633:27;;34589:81;34717:2;34709:6;34706:14;34686:18;34683:38;34680:84;;;34736:18;;:::i;:::-;34680:84;34501:269;34450:320;;;:::o;34776:281::-;34859:27;34881:4;34859:27;:::i;:::-;34851:6;34847:40;34989:6;34977:10;34974:22;34953:18;34941:10;34938:34;34935:62;34932:88;;;35000:18;;:::i;:::-;34932:88;35040:10;35036:2;35029:22;34819:238;34776:281;;:::o;35063:233::-;35102:3;35125:24;35143:5;35125:24;:::i;:::-;35116:33;;35171:66;35164:5;35161:77;35158:103;;;35241:18;;:::i;:::-;35158:103;35288:1;35281:5;35277:13;35270:20;;35063:233;;;:::o;35302:176::-;35334:1;35351:20;35369:1;35351:20;:::i;:::-;35346:25;;35385:20;35403:1;35385:20;:::i;:::-;35380:25;;35424:1;35414:35;;35429:18;;:::i;:::-;35414:35;35470:1;35467;35463:9;35458:14;;35302:176;;;;:::o;35484:180::-;35532:77;35529:1;35522:88;35629:4;35626:1;35619:15;35653:4;35650:1;35643:15;35670:180;35718:77;35715:1;35708:88;35815:4;35812:1;35805:15;35839:4;35836:1;35829:15;35856:180;35904:77;35901:1;35894:88;36001:4;35998:1;35991:15;36025:4;36022:1;36015:15;36042:180;36090:77;36087:1;36080:88;36187:4;36184:1;36177:15;36211:4;36208:1;36201:15;36228:180;36276:77;36273:1;36266:88;36373:4;36370:1;36363:15;36397:4;36394:1;36387:15;36414:117;36523:1;36520;36513:12;36537:117;36646:1;36643;36636:12;36660:117;36769:1;36766;36759:12;36783:117;36892:1;36889;36882:12;36906:102;36947:6;36998:2;36994:7;36989:2;36982:5;36978:14;36974:28;36964:38;;36906:102;;;:::o;37014:237::-;37154:34;37150:1;37142:6;37138:14;37131:58;37223:20;37218:2;37210:6;37206:15;37199:45;37014:237;:::o;37257:225::-;37397:34;37393:1;37385:6;37381:14;37374:58;37466:8;37461:2;37453:6;37449:15;37442:33;37257:225;:::o;37488:224::-;37628:34;37624:1;37616:6;37612:14;37605:58;37697:7;37692:2;37684:6;37680:15;37673:32;37488:224;:::o;37718:178::-;37858:30;37854:1;37846:6;37842:14;37835:54;37718:178;:::o;37902:170::-;38042:22;38038:1;38030:6;38026:14;38019:46;37902:170;:::o;38078:223::-;38218:34;38214:1;38206:6;38202:14;38195:58;38287:6;38282:2;38274:6;38270:15;38263:31;38078:223;:::o;38307:175::-;38447:27;38443:1;38435:6;38431:14;38424:51;38307:175;:::o;38488:228::-;38628:34;38624:1;38616:6;38612:14;38605:58;38697:11;38692:2;38684:6;38680:15;38673:36;38488:228;:::o;38722:249::-;38862:34;38858:1;38850:6;38846:14;38839:58;38931:32;38926:2;38918:6;38914:15;38907:57;38722:249;:::o;38977:182::-;39117:34;39113:1;39105:6;39101:14;39094:58;38977:182;:::o;39165:::-;39305:34;39301:1;39293:6;39289:14;39282:58;39165:182;:::o;39353:173::-;39493:25;39489:1;39481:6;39477:14;39470:49;39353:173;:::o;39532:234::-;39672:34;39668:1;39660:6;39656:14;39649:58;39741:17;39736:2;39728:6;39724:15;39717:42;39532:234;:::o;39772:174::-;39912:26;39908:1;39900:6;39896:14;39889:50;39772:174;:::o;39952:220::-;40092:34;40088:1;40080:6;40076:14;40069:58;40161:3;40156:2;40148:6;40144:15;40137:28;39952:220;:::o;40178:114::-;;:::o;40298:170::-;40438:22;40434:1;40426:6;40422:14;40415:46;40298:170;:::o;40474:233::-;40614:34;40610:1;40602:6;40598:14;40591:58;40683:16;40678:2;40670:6;40666:15;40659:41;40474:233;:::o;40713:181::-;40853:33;40849:1;40841:6;40837:14;40830:57;40713:181;:::o;40900:169::-;41040:21;41036:1;41028:6;41024:14;41017:45;40900:169;:::o;41075:122::-;41148:24;41166:5;41148:24;:::i;:::-;41141:5;41138:35;41128:63;;41187:1;41184;41177:12;41128:63;41075:122;:::o;41203:116::-;41273:21;41288:5;41273:21;:::i;:::-;41266:5;41263:32;41253:60;;41309:1;41306;41299:12;41253:60;41203:116;:::o;41325:120::-;41397:23;41414:5;41397:23;:::i;:::-;41390:5;41387:34;41377:62;;41435:1;41432;41425:12;41377:62;41325:120;:::o;41451:122::-;41524:24;41542:5;41524:24;:::i;:::-;41517:5;41514:35;41504:63;;41563:1;41560;41553:12;41504:63;41451:122;:::o

Swarm Source

ipfs://e1f83abbc741115e02377911aa00146af311c9c789c9ec6fdb0752abb04b159c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.