ETH Price: $2,980.40 (+4.03%)
Gas: 2 Gwei

Token

Generative Floydies 2 (FLGV2)
 

Overview

Max Total Supply

2,349 FLGV2

Holders

532

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FLGV2
0xaD015f00D380da858c76D736Ff0F266608dB0D98
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:
GenerativeFloydiesV2

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-02-02
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: ERC721A/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

        _ownerships[startTokenId].addr = to;
        _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: FloydiesContract2.sol


pragma solidity ^0.8.0;



contract GenerativeFloydiesV2 is ERC721A, Ownable {
  using SafeMath for uint256;

    uint128 public constant MAX_SUPPLY = 5000;
    uint128 public constant MAX_PURCHASE = 50;
    uint256 public constant TOKEN_PRICE = 0.008 ether;

    bool public saleStatus = true;
    string private _baseTokenURI;

   constructor(string memory baseURI) ERC721A("Generative Floydies 2", "FLGV2") {
    _baseTokenURI = baseURI;
    //Re-mints
    _safeMint(0x507E52947402Ee329C998943134cFb59cecB3AB2, 8); //0-7
    _safeMint(0x3979Bf6F519d4452E83F82B709F1bF1F97ad1a88, 5); //8-12
    _safeMint(0x7C4a7d85623CdF7bBf67ceaf2b862E3028Fe9aCb, 1); //13
    _safeMint(0x02E765dDea5fF25a2dAC1006cf09f0Cc1AfDDA8c, 1); //14
    _safeMint(0x05B9B8D4F708f94176c330501C8E61f3017447b9, 1); //15
    _safeMint(0x704bd11A1fFb457e95186FDFe6B2Ba963aFB4c4d, 1); //16
    _safeMint(0x799A9275EE3904CC9d6a9A8a04a401ef8aaCFedA, 4); //17-20
    _safeMint(0x6390Ec87849F5cd003Fee1Ed9142F23C0c833277, 1); //21
    _safeMint(0x507E52947402Ee329C998943134cFb59cecB3AB2, 1); //22
    _safeMint(0xDa754c0Db6d130bcc196b7FCD013175F5A42FaF3, 3); //22-25
    _safeMint(0xB3b1A4EB7d3Ab8283af4aeDb9952e2F42D1C4A6D, 10); //26-35
    _safeMint(0xB5B4a1378e98f73683884E240734BEE3cF195fFD, 3); //36-38
    _safeMint(0x4E97DfaEc8e11f43eE3fB326148E603F283eb43E, 2); //39-40
    _safeMint(0xe5963480aCE624A003cb1645C75eF468d7d533C5, 5); //41-45
    _safeMint(0xe25c3fc737089ea15d10e8159dF8a8E7923413a0, 1); //46
    _safeMint(0x15B925A76f88b18AE1CF2263E7b4Cd6e9Ebffa2C, 2); //47-48
    _safeMint(0xb425E0716de4c85e973F88f1b68deE82f909ED72, 1); //49
    _safeMint(0xAed4134fb4F2F007ae9Cb0Df7AfcFdE8B770FCDC, 2); //50-51
    _safeMint(0xc6ed19804420c42E5c98d2Dd6c49adDa1deB6a15, 1); //52
    _safeMint(0xd68df74e496d3243bFd27821664998Dabd3dF3fb, 1); //53
    _safeMint(0x4aC88DFA5E0D3488F5537597d64677F460CC5F11, 3); //54-56
    _safeMint(0x507E52947402Ee329C998943134cFb59cecB3AB2, 1); //57
    _safeMint(0x8228C60f778bFEd1c8d31EF779323fa6fEb53eba, 1); //58
    _safeMint(0xBc32959ad4D52B248A8876748414791eA6a8Cc3d, 3); //59-61
    _safeMint(0xC33B76C77a5fe806bECF04742a057Bf25264faBe, 1); //62
    _safeMint(0x8054DA59cCFfAde428Ac2751845aB44969d95d0a, 1); //63
    _safeMint(0x480f0c2958dF72AD9a28073052BD13C6D985Ff8F, 1); //64
    _safeMint(0x75909d460c9dF289Ea15Ed082cD72dd54068E650, 10); //65-74
    _safeMint(0x8bE7fC0d077cEb3366B92D6bf5EAB052821d107b, 1); //75
    _safeMint(0x1A22F009Dd0C2d7127c1816dfC6Fa1E1acC28E34, 2); //76-77
    _safeMint(0xC33B76C77a5fe806bECF04742a057Bf25264faBe, 1); //78
    _safeMint(0x18622da87351Ff40c2bdF43a24Bcc8fb9d022507, 1); //79
    _safeMint(0xe485e0E28F59EB2D7AfCeA159AC130070F6D314a, 1); //80
    _safeMint(0x348C8038fA9B6Ccad7b0c9b28C55315A64fc3343, 3); //81-83
    _safeMint(0x1a4984Be14d3D42f09384503d20F14c04Bb13586, 1); //84
    _safeMint(0x9BFF216e4a01D871bcf4aBfe3a7522E37A730817, 1); //85
    _safeMint(0xFb32f9B707951BAd108Dc29b93FF7B59F232deE0, 3); //86-88
    _safeMint(0x4Ea6bE3239df771aC0B388455850759dEFb82d02, 3); //89-91
    _safeMint(0x71204C4F1ca66ADd0A4ADb061D30CDa922533dE9, 2); //92-93
    _safeMint(0x1a4984Be14d3D42f09384503d20F14c04Bb13586, 1); //94
    _safeMint(0x6462bff7Bc9DebBa43542560FEEb1A1aCfE86bDe, 1); //95
    _safeMint(0xceaF64b3F2B9c7c931151B763E17Dc321574a424, 5); //96-100
    _safeMint(0x1d78A68746B33bccD0bDD542F6eE47175c239587, 2); //101-102
    _safeMint(0x9239e291942AF64988c041967327000832B95580, 1); //103
    _safeMint(0xbBfCD953c886Ec99176cD9A8462e28D79229C0ac, 1); //104
    _safeMint(0x50F34E958cb16f634bc8B7C0eA810248cCF28a6E, 1); //105
    _safeMint(0x5e2d64F5A8Bf3feF89FAD021f86d9597E82d0085, 1); //106
    _safeMint(0x41d91fecD7e7fcd490A438a7F4b7129191e9ad4f, 10); //107-116
    _safeMint(0x1a4984Be14d3D42f09384503d20F14c04Bb13586, 1); //117
    _safeMint(0x9935B60426F2504acEC9D8E71F2bB1692d3868Fd, 1); //118
    _safeMint(0x3aDb733356BBEf0aFAC9BAA66CEbCcDf466Caa45, 1); //119
    _safeMint(0x8C66e109C7361C39Ce250f2eD5dcDbeAC8331c80, 4); //120-123
    _safeMint(0xAD0d4DD3df16374bbb041dd5d7c439FAc28C49FE, 1); //124
    _safeMint(0x0c9EC5f066300bB193100ae8519Cb31392a32480, 1); //125
    _safeMint(0x91f8b8b8641fb8E52b1F51cd3C60817feCC1c6BA, 1); //126
    _safeMint(0x228C728c22D3160c44692da11947E76bE56DCcdA, 1); //127
    _safeMint(0xCAA1c4c4E563493858B3E3254c6b69e626703Ec4, 2); //128 + extra
    //Extra mints
    
    _safeMint(0x3979Bf6F519d4452E83F82B709F1bF1F97ad1a88, 8); //8-12
    _safeMint(0x7C4a7d85623CdF7bBf67ceaf2b862E3028Fe9aCb, 1); //13
    _safeMint(0x02E765dDea5fF25a2dAC1006cf09f0Cc1AfDDA8c, 1); //14
    _safeMint(0x05B9B8D4F708f94176c330501C8E61f3017447b9, 1); //15
    _safeMint(0x704bd11A1fFb457e95186FDFe6B2Ba963aFB4c4d, 1); //16
    _safeMint(0x799A9275EE3904CC9d6a9A8a04a401ef8aaCFedA, 7); //17-20
    _safeMint(0x6390Ec87849F5cd003Fee1Ed9142F23C0c833277, 1); //21
    
    _safeMint(0xDa754c0Db6d130bcc196b7FCD013175F5A42FaF3, 3); //22-25
    _safeMint(0xB3b1A4EB7d3Ab8283af4aeDb9952e2F42D1C4A6D, 15); //26-35
    _safeMint(0xB5B4a1378e98f73683884E240734BEE3cF195fFD, 5); //36-38
    _safeMint(0x4E97DfaEc8e11f43eE3fB326148E603F283eb43E, 3); //39-40
    _safeMint(0xe5963480aCE624A003cb1645C75eF468d7d533C5, 8); //41-45
    _safeMint(0xe25c3fc737089ea15d10e8159dF8a8E7923413a0, 1); //46
    _safeMint(0x15B925A76f88b18AE1CF2263E7b4Cd6e9Ebffa2C, 3); //47-48
    _safeMint(0xb425E0716de4c85e973F88f1b68deE82f909ED72, 1); //49
    _safeMint(0xAed4134fb4F2F007ae9Cb0Df7AfcFdE8B770FCDC, 3); //50-51
    _safeMint(0xc6ed19804420c42E5c98d2Dd6c49adDa1deB6a15, 1); //52
    _safeMint(0xd68df74e496d3243bFd27821664998Dabd3dF3fb, 1); //53
    _safeMint(0x4aC88DFA5E0D3488F5537597d64677F460CC5F11, 4); //54-56
   
    _safeMint(0x8228C60f778bFEd1c8d31EF779323fa6fEb53eba, 1); //58
    _safeMint(0xBc32959ad4D52B248A8876748414791eA6a8Cc3d, 4); //59-61
    _safeMint(0xC33B76C77a5fe806bECF04742a057Bf25264faBe, 2); //62
    _safeMint(0x8054DA59cCFfAde428Ac2751845aB44969d95d0a, 1); //63
    _safeMint(0x480f0c2958dF72AD9a28073052BD13C6D985Ff8F, 1); //64
    _safeMint(0x75909d460c9dF289Ea15Ed082cD72dd54068E650, 15); //65-74
    _safeMint(0x8bE7fC0d077cEb3366B92D6bf5EAB052821d107b, 1); //75
    _safeMint(0x1A22F009Dd0C2d7127c1816dfC6Fa1E1acC28E34, 3); //76-77
    
    _safeMint(0x18622da87351Ff40c2bdF43a24Bcc8fb9d022507, 1); //79
    _safeMint(0xe485e0E28F59EB2D7AfCeA159AC130070F6D314a, 1); //80
    _safeMint(0x348C8038fA9B6Ccad7b0c9b28C55315A64fc3343, 4); //81-83
    _safeMint(0x1a4984Be14d3D42f09384503d20F14c04Bb13586, 3); //84
    _safeMint(0x9BFF216e4a01D871bcf4aBfe3a7522E37A730817, 1); //85
    _safeMint(0xFb32f9B707951BAd108Dc29b93FF7B59F232deE0, 3); //86-88
    _safeMint(0x4Ea6bE3239df771aC0B388455850759dEFb82d02, 5); //89-91
    _safeMint(0x71204C4F1ca66ADd0A4ADb061D30CDa922533dE9, 3); //92-93
    
    _safeMint(0x6462bff7Bc9DebBa43542560FEEb1A1aCfE86bDe, 1); //95
    _safeMint(0xceaF64b3F2B9c7c931151B763E17Dc321574a424, 8); //96-100
    _safeMint(0x1d78A68746B33bccD0bDD542F6eE47175c239587, 3); //101-102
    _safeMint(0x9239e291942AF64988c041967327000832B95580, 1); //103
    _safeMint(0xbBfCD953c886Ec99176cD9A8462e28D79229C0ac, 1); //104
    _safeMint(0x50F34E958cb16f634bc8B7C0eA810248cCF28a6E, 1); //105
    _safeMint(0x5e2d64F5A8Bf3feF89FAD021f86d9597E82d0085, 1); //106
    _safeMint(0x41d91fecD7e7fcd490A438a7F4b7129191e9ad4f, 15); //107-116
    
    _safeMint(0x9935B60426F2504acEC9D8E71F2bB1692d3868Fd, 1); //118
    _safeMint(0x3aDb733356BBEf0aFAC9BAA66CEbCcDf466Caa45, 1); //119
    _safeMint(0x8C66e109C7361C39Ce250f2eD5dcDbeAC8331c80, 6); //120-123
    _safeMint(0xAD0d4DD3df16374bbb041dd5d7c439FAc28C49FE, 1); //124
    _safeMint(0x0c9EC5f066300bB193100ae8519Cb31392a32480, 1); //125
    _safeMint(0x91f8b8b8641fb8E52b1F51cd3C60817feCC1c6BA, 1); //126
    _safeMint(0x228C728c22D3160c44692da11947E76bE56DCcdA, 1); 
    }
    
  modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

function mintFloydie(uint256 numberOfTokens) public payable callerIsUser {
        require(saleStatus, "Sale must be active to mint a token");
        require(
            numberOfTokens <= MAX_PURCHASE,
            "Each wallet can only mint 50 tokens at a time"
        );
        uint256 targetTotalSupply = totalSupply().add(numberOfTokens);
        require(
            targetTotalSupply <= MAX_SUPPLY,
            "Purchase would exceed max supply of tokens"
        );
        uint256 totalCost = TOKEN_PRICE.mul(numberOfTokens);
        require(totalCost <= msg.value, "Ether value sent is too low");

        _safeMint(msg.sender, numberOfTokens);

        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }


function setSaleStatus(bool newSaleStatus) external onlyOwner {
        saleStatus = newSaleStatus;
    }

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
 
function withdraw(address payable recipient) public onlyOwner {
        uint256 balance = address(this).balance;
        recipient.transfer(balance);
      }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFloydie","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newSaleStatus","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080556001600760146101000a81548160ff0219169083151502179055503480156200003057600080fd5b50604051620061af380380620061af8339818101604052810190620000569190620019f6565b6040518060400160405280601581526020017f47656e6572617469766520466c6f7964696573203200000000000000000000008152506040518060400160405280600581526020017f464c4756320000000000000000000000000000000000000000000000000000008152508160019080519060200190620000da9291906200187f565b508060029080519060200190620000f39291906200187f565b505050620001166200010a6200118360201b60201c565b6200118b60201b60201c565b80600890805190602001906200012e9291906200187f565b506200015673507e52947402ee329c998943134cfb59cecb3ab260086200125160201b60201c565b6200017d733979bf6f519d4452e83f82b709f1bf1f97ad1a8860056200125160201b60201c565b620001a4737c4a7d85623cdf7bbf67ceaf2b862e3028fe9acb60016200125160201b60201c565b620001cb7302e765ddea5ff25a2dac1006cf09f0cc1afdda8c60016200125160201b60201c565b620001f27305b9b8d4f708f94176c330501c8e61f3017447b960016200125160201b60201c565b6200021973704bd11a1ffb457e95186fdfe6b2ba963afb4c4d60016200125160201b60201c565b6200024073799a9275ee3904cc9d6a9a8a04a401ef8aacfeda60046200125160201b60201c565b62000267736390ec87849f5cd003fee1ed9142f23c0c83327760016200125160201b60201c565b6200028e73507e52947402ee329c998943134cfb59cecb3ab260016200125160201b60201c565b620002b573da754c0db6d130bcc196b7fcd013175f5a42faf360036200125160201b60201c565b620002dc73b3b1a4eb7d3ab8283af4aedb9952e2f42d1c4a6d600a6200125160201b60201c565b6200030373b5b4a1378e98f73683884e240734bee3cf195ffd60036200125160201b60201c565b6200032a734e97dfaec8e11f43ee3fb326148e603f283eb43e60026200125160201b60201c565b6200035173e5963480ace624a003cb1645c75ef468d7d533c560056200125160201b60201c565b6200037873e25c3fc737089ea15d10e8159df8a8e7923413a060016200125160201b60201c565b6200039f7315b925a76f88b18ae1cf2263e7b4cd6e9ebffa2c60026200125160201b60201c565b620003c673b425e0716de4c85e973f88f1b68dee82f909ed7260016200125160201b60201c565b620003ed73aed4134fb4f2f007ae9cb0df7afcfde8b770fcdc60026200125160201b60201c565b6200041473c6ed19804420c42e5c98d2dd6c49adda1deb6a1560016200125160201b60201c565b6200043b73d68df74e496d3243bfd27821664998dabd3df3fb60016200125160201b60201c565b62000462734ac88dfa5e0d3488f5537597d64677f460cc5f1160036200125160201b60201c565b6200048973507e52947402ee329c998943134cfb59cecb3ab260016200125160201b60201c565b620004b0738228c60f778bfed1c8d31ef779323fa6feb53eba60016200125160201b60201c565b620004d773bc32959ad4d52b248a8876748414791ea6a8cc3d60036200125160201b60201c565b620004fe73c33b76c77a5fe806becf04742a057bf25264fabe60016200125160201b60201c565b62000525738054da59ccffade428ac2751845ab44969d95d0a60016200125160201b60201c565b6200054c73480f0c2958df72ad9a28073052bd13c6d985ff8f60016200125160201b60201c565b620005737375909d460c9df289ea15ed082cd72dd54068e650600a6200125160201b60201c565b6200059a738be7fc0d077ceb3366b92d6bf5eab052821d107b60016200125160201b60201c565b620005c1731a22f009dd0c2d7127c1816dfc6fa1e1acc28e3460026200125160201b60201c565b620005e873c33b76c77a5fe806becf04742a057bf25264fabe60016200125160201b60201c565b6200060f7318622da87351ff40c2bdf43a24bcc8fb9d02250760016200125160201b60201c565b6200063673e485e0e28f59eb2d7afcea159ac130070f6d314a60016200125160201b60201c565b6200065d73348c8038fa9b6ccad7b0c9b28c55315a64fc334360036200125160201b60201c565b62000684731a4984be14d3d42f09384503d20f14c04bb1358660016200125160201b60201c565b620006ab739bff216e4a01d871bcf4abfe3a7522e37a73081760016200125160201b60201c565b620006d273fb32f9b707951bad108dc29b93ff7b59f232dee060036200125160201b60201c565b620006f9734ea6be3239df771ac0b388455850759defb82d0260036200125160201b60201c565b620007207371204c4f1ca66add0a4adb061d30cda922533de960026200125160201b60201c565b62000747731a4984be14d3d42f09384503d20f14c04bb1358660016200125160201b60201c565b6200076e736462bff7bc9debba43542560feeb1a1acfe86bde60016200125160201b60201c565b6200079573ceaf64b3f2b9c7c931151b763e17dc321574a42460056200125160201b60201c565b620007bc731d78a68746b33bccd0bdd542f6ee47175c23958760026200125160201b60201c565b620007e3739239e291942af64988c041967327000832b9558060016200125160201b60201c565b6200080a73bbfcd953c886ec99176cd9a8462e28d79229c0ac60016200125160201b60201c565b620008317350f34e958cb16f634bc8b7c0ea810248ccf28a6e60016200125160201b60201c565b62000858735e2d64f5a8bf3fef89fad021f86d9597e82d008560016200125160201b60201c565b6200087f7341d91fecd7e7fcd490a438a7f4b7129191e9ad4f600a6200125160201b60201c565b620008a6731a4984be14d3d42f09384503d20f14c04bb1358660016200125160201b60201c565b620008cd739935b60426f2504acec9d8e71f2bb1692d3868fd60016200125160201b60201c565b620008f4733adb733356bbef0afac9baa66cebccdf466caa4560016200125160201b60201c565b6200091b738c66e109c7361c39ce250f2ed5dcdbeac8331c8060046200125160201b60201c565b6200094273ad0d4dd3df16374bbb041dd5d7c439fac28c49fe60016200125160201b60201c565b62000969730c9ec5f066300bb193100ae8519cb31392a3248060016200125160201b60201c565b620009907391f8b8b8641fb8e52b1f51cd3c60817fecc1c6ba60016200125160201b60201c565b620009b773228c728c22d3160c44692da11947e76be56dccda60016200125160201b60201c565b620009de73caa1c4c4e563493858b3e3254c6b69e626703ec460026200125160201b60201c565b62000a05733979bf6f519d4452e83f82b709f1bf1f97ad1a8860086200125160201b60201c565b62000a2c737c4a7d85623cdf7bbf67ceaf2b862e3028fe9acb60016200125160201b60201c565b62000a537302e765ddea5ff25a2dac1006cf09f0cc1afdda8c60016200125160201b60201c565b62000a7a7305b9b8d4f708f94176c330501c8e61f3017447b960016200125160201b60201c565b62000aa173704bd11a1ffb457e95186fdfe6b2ba963afb4c4d60016200125160201b60201c565b62000ac873799a9275ee3904cc9d6a9a8a04a401ef8aacfeda60076200125160201b60201c565b62000aef736390ec87849f5cd003fee1ed9142f23c0c83327760016200125160201b60201c565b62000b1673da754c0db6d130bcc196b7fcd013175f5a42faf360036200125160201b60201c565b62000b3d73b3b1a4eb7d3ab8283af4aedb9952e2f42d1c4a6d600f6200125160201b60201c565b62000b6473b5b4a1378e98f73683884e240734bee3cf195ffd60056200125160201b60201c565b62000b8b734e97dfaec8e11f43ee3fb326148e603f283eb43e60036200125160201b60201c565b62000bb273e5963480ace624a003cb1645c75ef468d7d533c560086200125160201b60201c565b62000bd973e25c3fc737089ea15d10e8159df8a8e7923413a060016200125160201b60201c565b62000c007315b925a76f88b18ae1cf2263e7b4cd6e9ebffa2c60036200125160201b60201c565b62000c2773b425e0716de4c85e973f88f1b68dee82f909ed7260016200125160201b60201c565b62000c4e73aed4134fb4f2f007ae9cb0df7afcfde8b770fcdc60036200125160201b60201c565b62000c7573c6ed19804420c42e5c98d2dd6c49adda1deb6a1560016200125160201b60201c565b62000c9c73d68df74e496d3243bfd27821664998dabd3df3fb60016200125160201b60201c565b62000cc3734ac88dfa5e0d3488f5537597d64677f460cc5f1160046200125160201b60201c565b62000cea738228c60f778bfed1c8d31ef779323fa6feb53eba60016200125160201b60201c565b62000d1173bc32959ad4d52b248a8876748414791ea6a8cc3d60046200125160201b60201c565b62000d3873c33b76c77a5fe806becf04742a057bf25264fabe60026200125160201b60201c565b62000d5f738054da59ccffade428ac2751845ab44969d95d0a60016200125160201b60201c565b62000d8673480f0c2958df72ad9a28073052bd13c6d985ff8f60016200125160201b60201c565b62000dad7375909d460c9df289ea15ed082cd72dd54068e650600f6200125160201b60201c565b62000dd4738be7fc0d077ceb3366b92d6bf5eab052821d107b60016200125160201b60201c565b62000dfb731a22f009dd0c2d7127c1816dfc6fa1e1acc28e3460036200125160201b60201c565b62000e227318622da87351ff40c2bdf43a24bcc8fb9d02250760016200125160201b60201c565b62000e4973e485e0e28f59eb2d7afcea159ac130070f6d314a60016200125160201b60201c565b62000e7073348c8038fa9b6ccad7b0c9b28c55315a64fc334360046200125160201b60201c565b62000e97731a4984be14d3d42f09384503d20f14c04bb1358660036200125160201b60201c565b62000ebe739bff216e4a01d871bcf4abfe3a7522e37a73081760016200125160201b60201c565b62000ee573fb32f9b707951bad108dc29b93ff7b59f232dee060036200125160201b60201c565b62000f0c734ea6be3239df771ac0b388455850759defb82d0260056200125160201b60201c565b62000f337371204c4f1ca66add0a4adb061d30cda922533de960036200125160201b60201c565b62000f5a736462bff7bc9debba43542560feeb1a1acfe86bde60016200125160201b60201c565b62000f8173ceaf64b3f2b9c7c931151b763e17dc321574a42460086200125160201b60201c565b62000fa8731d78a68746b33bccd0bdd542f6ee47175c23958760036200125160201b60201c565b62000fcf739239e291942af64988c041967327000832b9558060016200125160201b60201c565b62000ff673bbfcd953c886ec99176cd9a8462e28d79229c0ac60016200125160201b60201c565b6200101d7350f34e958cb16f634bc8b7c0ea810248ccf28a6e60016200125160201b60201c565b62001044735e2d64f5a8bf3fef89fad021f86d9597e82d008560016200125160201b60201c565b6200106b7341d91fecd7e7fcd490a438a7f4b7129191e9ad4f600f6200125160201b60201c565b62001092739935b60426f2504acec9d8e71f2bb1692d3868fd60016200125160201b60201c565b620010b9733adb733356bbef0afac9baa66cebccdf466caa4560016200125160201b60201c565b620010e0738c66e109c7361c39ce250f2ed5dcdbeac8331c8060066200125160201b60201c565b6200110773ad0d4dd3df16374bbb041dd5d7c439fac28c49fe60016200125160201b60201c565b6200112e730c9ec5f066300bb193100ae8519cb31392a3248060016200125160201b60201c565b620011557391f8b8b8641fb8e52b1f51cd3c60817fecc1c6ba60016200125160201b60201c565b6200117c73228c728c22d3160c44692da11947e76be56dccda60016200125160201b60201c565b5062002053565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620012738282604051806020016040528060008152506200127760201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620012f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012e79062001bde565b60405180910390fd5b62001301816200168960201b60201c565b1562001344576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200133b9062001bbc565b60405180910390fd5b600083116200138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013819062001c00565b60405180910390fd5b6200139f60008583866200169660201b60201c565b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166200140e919062001cae565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16620014b3919062001cae565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b848110156200166557818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620015fd60008784876200169c60201b60201c565b6200163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016369062001b9a565b60405180910390fd5b81806200164c9062001e23565b92505080806200165c9062001e23565b91505062001583565b50806000819055506200168260008684876200185660201b60201c565b5050505050565b6000805482109050919050565b50505050565b6000620016ca8473ffffffffffffffffffffffffffffffffffffffff166200185c60201b6200174f1760201c565b1562001849578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620016fc6200118360201b60201c565b8786866040518563ffffffff1660e01b815260040162001720949392919062001b46565b602060405180830381600087803b1580156200173b57600080fd5b505af19250505080156200176f57506040513d601f19601f820116820180604052508101906200176c9190620019c4565b60015b620017f8573d8060008114620017a2576040519150601f19603f3d011682016040523d82523d6000602084013e620017a7565b606091505b50600081511415620017f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017e79062001b9a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200184e565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200188d9062001db7565b90600052602060002090601f016020900481019282620018b15760008555620018fd565b82601f10620018cc57805160ff1916838001178555620018fd565b82800160010185558215620018fd579182015b82811115620018fc578251825591602001919060010190620018df565b5b5090506200190c919062001910565b5090565b5b808211156200192b57600081600090555060010162001911565b5090565b600062001946620019408462001c4b565b62001c22565b90508281526020810184848401111562001965576200196462001f03565b5b6200197284828562001d81565b509392505050565b6000815190506200198b8162002039565b92915050565b600082601f830112620019a957620019a862001efe565b5b8151620019bb8482602086016200192f565b91505092915050565b600060208284031215620019dd57620019dc62001f0d565b5b6000620019ed848285016200197a565b91505092915050565b60006020828403121562001a0f5762001a0e62001f0d565b5b600082015167ffffffffffffffff81111562001a305762001a2f62001f08565b5b62001a3e8482850162001991565b91505092915050565b62001a528162001cfb565b82525050565b600062001a658262001c81565b62001a71818562001c8c565b935062001a8381856020860162001d81565b62001a8e8162001f12565b840191505092915050565b600062001aa860338362001c9d565b915062001ab58262001f23565b604082019050919050565b600062001acf601d8362001c9d565b915062001adc8262001f72565b602082019050919050565b600062001af660218362001c9d565b915062001b038262001f9b565b604082019050919050565b600062001b1d60288362001c9d565b915062001b2a8262001fea565b604082019050919050565b62001b408162001d77565b82525050565b600060808201905062001b5d600083018762001a47565b62001b6c602083018662001a47565b62001b7b604083018562001b35565b818103606083015262001b8f818462001a58565b905095945050505050565b6000602082019050818103600083015262001bb58162001a99565b9050919050565b6000602082019050818103600083015262001bd78162001ac0565b9050919050565b6000602082019050818103600083015262001bf98162001ae7565b9050919050565b6000602082019050818103600083015262001c1b8162001b0e565b9050919050565b600062001c2e62001c41565b905062001c3c828262001ded565b919050565b6000604051905090565b600067ffffffffffffffff82111562001c695762001c6862001ecf565b5b62001c748262001f12565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001cbb8262001d3b565b915062001cc88362001d3b565b9250826fffffffffffffffffffffffffffffffff0382111562001cf05762001cef62001e71565b5b828201905092915050565b600062001d088262001d57565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001da157808201518184015260208101905062001d84565b8381111562001db1576000848401525b50505050565b6000600282049050600182168062001dd057607f821691505b6020821081141562001de75762001de662001ea0565b5b50919050565b62001df88262001f12565b810181811067ffffffffffffffff8211171562001e1a5762001e1962001ecf565b5b80604052505050565b600062001e308262001d77565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001e665762001e6562001e71565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b620020448162001d0f565b81146200205057600080fd5b50565b61414c80620020636000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063d897833e11610064578063d897833e146105cb578063e985e9c5146105f4578063f2fde38b14610631578063f9020e331461065a5761019c565b8063b88d4fde1461053a578063c87b56dd14610563578063d2d8cb67146105a05761019c565b806382e47cb3116100c657806382e47cb31461049f5780638da5cb5b146104bb57806395d89b41146104e6578063a22cb465146105115761019c565b806370a08231146104205780637146bd081461045d578063715018a6146104885761019c565b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461035457806351cff8d91461039157806355f804b3146103ba5780636352211e146103e35761019c565b80632f745c59146102c357806332cb6b0c1461030057806342842e0e1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c07565b610685565b6040516101d5919061318d565b60405180910390f35b3480156101ea57600080fd5b506101f36107cf565b60405161020091906131a8565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612cae565b610861565b60405161023d9190613126565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612b9a565b6108e6565b005b34801561027b57600080fd5b506102846109ff565b60405161029191906134e5565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612a84565b610a08565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612b9a565b610a18565b6040516102f791906134e5565b60405180910390f35b34801561030c57600080fd5b50610315610c16565b60405161032291906134ca565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612a84565b610c1c565b005b34801561036057600080fd5b5061037b60048036038101906103769190612cae565b610c3c565b60405161038891906134e5565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612a17565b610c8f565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612c61565b610d5b565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612cae565b610ded565b6040516104179190613126565b60405180910390f35b34801561042c57600080fd5b50610447600480360381019061044291906129ea565b610e03565b60405161045491906134e5565b60405180910390f35b34801561046957600080fd5b50610472610eec565b60405161047f91906134ca565b60405180910390f35b34801561049457600080fd5b5061049d610ef1565b005b6104b960048036038101906104b49190612cae565b610f79565b005b3480156104c757600080fd5b506104d06111cc565b6040516104dd9190613126565b60405180910390f35b3480156104f257600080fd5b506104fb6111f6565b60405161050891906131a8565b60405180910390f35b34801561051d57600080fd5b5061053860048036038101906105339190612b5a565b611288565b005b34801561054657600080fd5b50610561600480360381019061055c9190612ad7565b611409565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612cae565b611465565b60405161059791906131a8565b60405180910390f35b3480156105ac57600080fd5b506105b561150c565b6040516105c291906134e5565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190612bda565b611517565b005b34801561060057600080fd5b5061061b60048036038101906106169190612a44565b6115b0565b604051610628919061318d565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906129ea565b611644565b005b34801561066657600080fd5b5061066f61173c565b60405161067c919061318d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c857506107c782611772565b5b9050919050565b6060600180546107de90613802565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90613802565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c826117dc565b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a2906134aa565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f182610ded565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906133ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109816117e9565b73ffffffffffffffffffffffffffffffffffffffff1614806109b057506109af816109aa6117e9565b6115b0565b5b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e6906132ca565b60405180910390fd5b6109fa8383836117f1565b505050565b60008054905090565b610a138383836118a3565b505050565b6000610a2383610e03565b8210610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906131ca565b60405180910390fd5b6000610a6e6109ff565b905060008060005b83811015610bd4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b6857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc05786841415610bb1578195505050505050610c10565b8380610bbc90613865565b9450505b508080610bcc90613865565b915050610a76565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c079061348a565b60405180910390fd5b92915050565b61138881565b610c3783838360405180602001604052806000815250611409565b505050565b6000610c466109ff565b8210610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e9061322a565b60405180910390fd5b819050919050565b610c976117e9565b73ffffffffffffffffffffffffffffffffffffffff16610cb56111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d029061336a565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d56573d6000803e3d6000fd5b505050565b610d636117e9565b73ffffffffffffffffffffffffffffffffffffffff16610d816111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061336a565b60405180910390fd5b818160089190610de89291906127c9565b505050565b6000610df882611dec565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b9061330a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b603281565b610ef96117e9565b73ffffffffffffffffffffffffffffffffffffffff16610f176111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f649061336a565b60405180910390fd5b610f776000611f47565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061328a565b60405180910390fd5b600760149054906101000a900460ff16611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d9061326a565b60405180910390fd5b60326fffffffffffffffffffffffffffffffff1681111561108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906132aa565b60405180910390fd5b60006110a88261109a6109ff565b61200d90919063ffffffff16565b90506113886fffffffffffffffffffffffffffffffff16811115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906132ea565b60405180910390fd5b600061111d83661c6bf52634000061202390919063ffffffff16565b905034811115611162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111599061332a565b60405180910390fd5b61116c3384612039565b803411156111c7573373ffffffffffffffffffffffffffffffffffffffff166108fc823461119a91906136c0565b9081150290604051600060405180830381858888f193505050501580156111c5573d6000803e3d6000fd5b505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461120590613802565b80601f016020809104026020016040519081016040528092919081815260200182805461123190613802565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b5050505050905090565b6112906117e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f5906133aa565b60405180910390fd5b806006600061130b6117e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b86117e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fd919061318d565b60405180910390a35050565b6114148484846118a3565b61142084848484612057565b61145f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114569061340a565b60405180910390fd5b50505050565b6060611470826117dc565b6114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a69061338a565b60405180910390fd5b60006114b96121ee565b905060008151116114d95760405180602001604052806000815250611504565b806114e384612280565b6040516020016114f4929190613102565b6040516020818303038152906040525b915050919050565b661c6bf52634000081565b61151f6117e9565b73ffffffffffffffffffffffffffffffffffffffff1661153d6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a9061336a565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164c6117e9565b73ffffffffffffffffffffffffffffffffffffffff1661166a6111cc565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061336a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611727906131ea565b60405180910390fd5b61173981611f47565b50565b600760149054906101000a900460ff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118ae82611dec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118d56117e9565b73ffffffffffffffffffffffffffffffffffffffff16148061193157506118fa6117e9565b73ffffffffffffffffffffffffffffffffffffffff1661191984610861565b73ffffffffffffffffffffffffffffffffffffffff16145b8061194d575061194c82600001516119476117e9565b6115b0565b5b90508061198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906133ca565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061334a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a689061324a565b60405180910390fd5b611a7e85858560016123e1565b611a8e60008484600001516117f1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184611c6591906135df565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d7c57611cdb816117dc565b15611d7b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de486868660016123e7565b505050505050565b611df461284f565b611dfd826117dc565b611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e339061320a565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f2e578092505050611f42565b508080611f3a906137d8565b915050611e42565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361201b91906135df565b905092915050565b600081836120319190613666565b905092915050565b6120538282604051806020016040528060008152506123ed565b5050565b60006120788473ffffffffffffffffffffffffffffffffffffffff1661174f565b156121e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120a16117e9565b8786866040518563ffffffff1660e01b81526004016120c39493929190613141565b602060405180830381600087803b1580156120dd57600080fd5b505af192505050801561210e57506040513d601f19601f8201168201806040525081019061210b9190612c34565b60015b612191573d806000811461213e576040519150601f19603f3d011682016040523d82523d6000602084013e612143565b606091505b50600081511415612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061340a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121e6565b600190505b949350505050565b6060600880546121fd90613802565b80601f016020809104026020016040519081016040528092919081815260200182805461222990613802565b80156122765780601f1061224b57610100808354040283529160200191612276565b820191906000526020600020905b81548152906001019060200180831161225957829003601f168201915b5050505050905090565b606060008214156122c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123dc565b600082905060005b600082146122fa5780806122e390613865565b915050600a826122f39190613635565b91506122d0565b60008167ffffffffffffffff8111156123165761231561399b565b5b6040519080825280601f01601f1916602001820160405280156123485781602001600182028036833780820191505090505b5090505b600085146123d55760018261236191906136c0565b9150600a8561237091906138ae565b603061237c91906135df565b60f81b8183815181106123925761239161396c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ce9190613635565b945061234c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061344a565b60405180910390fd5b61246c816117dc565b156124ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a39061342a565b60405180910390fd5b600083116124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e69061346a565b60405180910390fd5b6124fc60008583866123e1565b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125699190613599565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff1661260c9190613599565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b848110156127ad57818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461274d6000878487612057565b61278c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127839061340a565b60405180910390fd5b818061279790613865565b92505080806127a590613865565b9150506126dc565b50806000819055506127c260008684876123e7565b5050505050565b8280546127d590613802565b90600052602060002090601f0160209004810192826127f7576000855561283e565b82601f1061281057803560ff191683800117855561283e565b8280016001018555821561283e579182015b8281111561283d578235825591602001919060010190612822565b5b50905061284b9190612889565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128a257600081600090555060010161288a565b5090565b60006128b96128b484613525565b613500565b9050828152602081018484840111156128d5576128d46139d9565b5b6128e0848285613796565b509392505050565b6000813590506128f7816140a3565b92915050565b60008135905061290c816140ba565b92915050565b600081359050612921816140d1565b92915050565b600081359050612936816140e8565b92915050565b60008151905061294b816140e8565b92915050565b600082601f830112612966576129656139cf565b5b81356129768482602086016128a6565b91505092915050565b60008083601f840112612995576129946139cf565b5b8235905067ffffffffffffffff8111156129b2576129b16139ca565b5b6020830191508360018202830111156129ce576129cd6139d4565b5b9250929050565b6000813590506129e4816140ff565b92915050565b600060208284031215612a00576129ff6139e3565b5b6000612a0e848285016128e8565b91505092915050565b600060208284031215612a2d57612a2c6139e3565b5b6000612a3b848285016128fd565b91505092915050565b60008060408385031215612a5b57612a5a6139e3565b5b6000612a69858286016128e8565b9250506020612a7a858286016128e8565b9150509250929050565b600080600060608486031215612a9d57612a9c6139e3565b5b6000612aab868287016128e8565b9350506020612abc868287016128e8565b9250506040612acd868287016129d5565b9150509250925092565b60008060008060808587031215612af157612af06139e3565b5b6000612aff878288016128e8565b9450506020612b10878288016128e8565b9350506040612b21878288016129d5565b925050606085013567ffffffffffffffff811115612b4257612b416139de565b5b612b4e87828801612951565b91505092959194509250565b60008060408385031215612b7157612b706139e3565b5b6000612b7f858286016128e8565b9250506020612b9085828601612912565b9150509250929050565b60008060408385031215612bb157612bb06139e3565b5b6000612bbf858286016128e8565b9250506020612bd0858286016129d5565b9150509250929050565b600060208284031215612bf057612bef6139e3565b5b6000612bfe84828501612912565b91505092915050565b600060208284031215612c1d57612c1c6139e3565b5b6000612c2b84828501612927565b91505092915050565b600060208284031215612c4a57612c496139e3565b5b6000612c588482850161293c565b91505092915050565b60008060208385031215612c7857612c776139e3565b5b600083013567ffffffffffffffff811115612c9657612c956139de565b5b612ca28582860161297f565b92509250509250929050565b600060208284031215612cc457612cc36139e3565b5b6000612cd2848285016129d5565b91505092915050565b612ce4816136f4565b82525050565b612cf381613718565b82525050565b6000612d0482613556565b612d0e818561356c565b9350612d1e8185602086016137a5565b612d27816139e8565b840191505092915050565b6000612d3d82613561565b612d47818561357d565b9350612d578185602086016137a5565b612d60816139e8565b840191505092915050565b6000612d7682613561565b612d80818561358e565b9350612d908185602086016137a5565b80840191505092915050565b6000612da960228361357d565b9150612db4826139f9565b604082019050919050565b6000612dcc60268361357d565b9150612dd782613a48565b604082019050919050565b6000612def602a8361357d565b9150612dfa82613a97565b604082019050919050565b6000612e1260238361357d565b9150612e1d82613ae6565b604082019050919050565b6000612e3560258361357d565b9150612e4082613b35565b604082019050919050565b6000612e5860238361357d565b9150612e6382613b84565b604082019050919050565b6000612e7b601e8361357d565b9150612e8682613bd3565b602082019050919050565b6000612e9e602d8361357d565b9150612ea982613bfc565b604082019050919050565b6000612ec160398361357d565b9150612ecc82613c4b565b604082019050919050565b6000612ee4602a8361357d565b9150612eef82613c9a565b604082019050919050565b6000612f07602b8361357d565b9150612f1282613ce9565b604082019050919050565b6000612f2a601b8361357d565b9150612f3582613d38565b602082019050919050565b6000612f4d60268361357d565b9150612f5882613d61565b604082019050919050565b6000612f7060208361357d565b9150612f7b82613db0565b602082019050919050565b6000612f93602f8361357d565b9150612f9e82613dd9565b604082019050919050565b6000612fb6601a8361357d565b9150612fc182613e28565b602082019050919050565b6000612fd960328361357d565b9150612fe482613e51565b604082019050919050565b6000612ffc60228361357d565b915061300782613ea0565b604082019050919050565b600061301f60338361357d565b915061302a82613eef565b604082019050919050565b6000613042601d8361357d565b915061304d82613f3e565b602082019050919050565b600061306560218361357d565b915061307082613f67565b604082019050919050565b600061308860288361357d565b915061309382613fb6565b604082019050919050565b60006130ab602e8361357d565b91506130b682614005565b604082019050919050565b60006130ce602d8361357d565b91506130d982614054565b604082019050919050565b6130ed81613750565b82525050565b6130fc8161378c565b82525050565b600061310e8285612d6b565b915061311a8284612d6b565b91508190509392505050565b600060208201905061313b6000830184612cdb565b92915050565b60006080820190506131566000830187612cdb565b6131636020830186612cdb565b61317060408301856130f3565b81810360608301526131828184612cf9565b905095945050505050565b60006020820190506131a26000830184612cea565b92915050565b600060208201905081810360008301526131c28184612d32565b905092915050565b600060208201905081810360008301526131e381612d9c565b9050919050565b6000602082019050818103600083015261320381612dbf565b9050919050565b6000602082019050818103600083015261322381612de2565b9050919050565b6000602082019050818103600083015261324381612e05565b9050919050565b6000602082019050818103600083015261326381612e28565b9050919050565b6000602082019050818103600083015261328381612e4b565b9050919050565b600060208201905081810360008301526132a381612e6e565b9050919050565b600060208201905081810360008301526132c381612e91565b9050919050565b600060208201905081810360008301526132e381612eb4565b9050919050565b6000602082019050818103600083015261330381612ed7565b9050919050565b6000602082019050818103600083015261332381612efa565b9050919050565b6000602082019050818103600083015261334381612f1d565b9050919050565b6000602082019050818103600083015261336381612f40565b9050919050565b6000602082019050818103600083015261338381612f63565b9050919050565b600060208201905081810360008301526133a381612f86565b9050919050565b600060208201905081810360008301526133c381612fa9565b9050919050565b600060208201905081810360008301526133e381612fcc565b9050919050565b6000602082019050818103600083015261340381612fef565b9050919050565b6000602082019050818103600083015261342381613012565b9050919050565b6000602082019050818103600083015261344381613035565b9050919050565b6000602082019050818103600083015261346381613058565b9050919050565b600060208201905081810360008301526134838161307b565b9050919050565b600060208201905081810360008301526134a38161309e565b9050919050565b600060208201905081810360008301526134c3816130c1565b9050919050565b60006020820190506134df60008301846130e4565b92915050565b60006020820190506134fa60008301846130f3565b92915050565b600061350a61351b565b90506135168282613834565b919050565b6000604051905090565b600067ffffffffffffffff8211156135405761353f61399b565b5b613549826139e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135a482613750565b91506135af83613750565b9250826fffffffffffffffffffffffffffffffff038211156135d4576135d36138df565b5b828201905092915050565b60006135ea8261378c565b91506135f58361378c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362a576136296138df565b5b828201905092915050565b60006136408261378c565b915061364b8361378c565b92508261365b5761365a61390e565b5b828204905092915050565b60006136718261378c565b915061367c8361378c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b5576136b46138df565b5b828202905092915050565b60006136cb8261378c565b91506136d68361378c565b9250828210156136e9576136e86138df565b5b828203905092915050565b60006136ff8261376c565b9050919050565b60006137118261376c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c35780820151818401526020810190506137a8565b838111156137d2576000848401525b50505050565b60006137e38261378c565b915060008214156137f7576137f66138df565b5b600182039050919050565b6000600282049050600182168061381a57607f821691505b6020821081141561382e5761382d61393d565b5b50919050565b61383d826139e8565b810181811067ffffffffffffffff8211171561385c5761385b61399b565b5b80604052505050565b60006138708261378c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a3576138a26138df565b5b600182019050919050565b60006138b98261378c565b91506138c48361378c565b9250826138d4576138d361390e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206120746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f456163682077616c6c65742063616e206f6e6c79206d696e7420353020746f6b60008201527f656e7320617420612074696d6500000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e7420697320746f6f206c6f770000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140ac816136f4565b81146140b757600080fd5b50565b6140c381613706565b81146140ce57600080fd5b50565b6140da81613718565b81146140e557600080fd5b50565b6140f181613724565b81146140fc57600080fd5b50565b6141088161378c565b811461411357600080fd5b5056fea2646970667358221220328338664e69321f85456cd35e05fb7a3232263d52fd183a09f9d6935488b6c564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5359757873424e64526b39737369526f6d794e414477367066646e34613664584c43794e334d6873783250312f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063d897833e11610064578063d897833e146105cb578063e985e9c5146105f4578063f2fde38b14610631578063f9020e331461065a5761019c565b8063b88d4fde1461053a578063c87b56dd14610563578063d2d8cb67146105a05761019c565b806382e47cb3116100c657806382e47cb31461049f5780638da5cb5b146104bb57806395d89b41146104e6578063a22cb465146105115761019c565b806370a08231146104205780637146bd081461045d578063715018a6146104885761019c565b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461035457806351cff8d91461039157806355f804b3146103ba5780636352211e146103e35761019c565b80632f745c59146102c357806332cb6b0c1461030057806342842e0e1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c07565b610685565b6040516101d5919061318d565b60405180910390f35b3480156101ea57600080fd5b506101f36107cf565b60405161020091906131a8565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612cae565b610861565b60405161023d9190613126565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612b9a565b6108e6565b005b34801561027b57600080fd5b506102846109ff565b60405161029191906134e5565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612a84565b610a08565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612b9a565b610a18565b6040516102f791906134e5565b60405180910390f35b34801561030c57600080fd5b50610315610c16565b60405161032291906134ca565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612a84565b610c1c565b005b34801561036057600080fd5b5061037b60048036038101906103769190612cae565b610c3c565b60405161038891906134e5565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612a17565b610c8f565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612c61565b610d5b565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612cae565b610ded565b6040516104179190613126565b60405180910390f35b34801561042c57600080fd5b50610447600480360381019061044291906129ea565b610e03565b60405161045491906134e5565b60405180910390f35b34801561046957600080fd5b50610472610eec565b60405161047f91906134ca565b60405180910390f35b34801561049457600080fd5b5061049d610ef1565b005b6104b960048036038101906104b49190612cae565b610f79565b005b3480156104c757600080fd5b506104d06111cc565b6040516104dd9190613126565b60405180910390f35b3480156104f257600080fd5b506104fb6111f6565b60405161050891906131a8565b60405180910390f35b34801561051d57600080fd5b5061053860048036038101906105339190612b5a565b611288565b005b34801561054657600080fd5b50610561600480360381019061055c9190612ad7565b611409565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612cae565b611465565b60405161059791906131a8565b60405180910390f35b3480156105ac57600080fd5b506105b561150c565b6040516105c291906134e5565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190612bda565b611517565b005b34801561060057600080fd5b5061061b60048036038101906106169190612a44565b6115b0565b604051610628919061318d565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906129ea565b611644565b005b34801561066657600080fd5b5061066f61173c565b60405161067c919061318d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c857506107c782611772565b5b9050919050565b6060600180546107de90613802565b80601f016020809104026020016040519081016040528092919081815260200182805461080a90613802565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c826117dc565b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a2906134aa565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f182610ded565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906133ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109816117e9565b73ffffffffffffffffffffffffffffffffffffffff1614806109b057506109af816109aa6117e9565b6115b0565b5b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e6906132ca565b60405180910390fd5b6109fa8383836117f1565b505050565b60008054905090565b610a138383836118a3565b505050565b6000610a2383610e03565b8210610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906131ca565b60405180910390fd5b6000610a6e6109ff565b905060008060005b83811015610bd4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b6857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc05786841415610bb1578195505050505050610c10565b8380610bbc90613865565b9450505b508080610bcc90613865565b915050610a76565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c079061348a565b60405180910390fd5b92915050565b61138881565b610c3783838360405180602001604052806000815250611409565b505050565b6000610c466109ff565b8210610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e9061322a565b60405180910390fd5b819050919050565b610c976117e9565b73ffffffffffffffffffffffffffffffffffffffff16610cb56111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d029061336a565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d56573d6000803e3d6000fd5b505050565b610d636117e9565b73ffffffffffffffffffffffffffffffffffffffff16610d816111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061336a565b60405180910390fd5b818160089190610de89291906127c9565b505050565b6000610df882611dec565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b9061330a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b603281565b610ef96117e9565b73ffffffffffffffffffffffffffffffffffffffff16610f176111cc565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f649061336a565b60405180910390fd5b610f776000611f47565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061328a565b60405180910390fd5b600760149054906101000a900460ff16611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d9061326a565b60405180910390fd5b60326fffffffffffffffffffffffffffffffff1681111561108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906132aa565b60405180910390fd5b60006110a88261109a6109ff565b61200d90919063ffffffff16565b90506113886fffffffffffffffffffffffffffffffff16811115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906132ea565b60405180910390fd5b600061111d83661c6bf52634000061202390919063ffffffff16565b905034811115611162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111599061332a565b60405180910390fd5b61116c3384612039565b803411156111c7573373ffffffffffffffffffffffffffffffffffffffff166108fc823461119a91906136c0565b9081150290604051600060405180830381858888f193505050501580156111c5573d6000803e3d6000fd5b505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461120590613802565b80601f016020809104026020016040519081016040528092919081815260200182805461123190613802565b801561127e5780601f106112535761010080835404028352916020019161127e565b820191906000526020600020905b81548152906001019060200180831161126157829003601f168201915b5050505050905090565b6112906117e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f5906133aa565b60405180910390fd5b806006600061130b6117e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113b86117e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113fd919061318d565b60405180910390a35050565b6114148484846118a3565b61142084848484612057565b61145f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114569061340a565b60405180910390fd5b50505050565b6060611470826117dc565b6114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a69061338a565b60405180910390fd5b60006114b96121ee565b905060008151116114d95760405180602001604052806000815250611504565b806114e384612280565b6040516020016114f4929190613102565b6040516020818303038152906040525b915050919050565b661c6bf52634000081565b61151f6117e9565b73ffffffffffffffffffffffffffffffffffffffff1661153d6111cc565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a9061336a565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164c6117e9565b73ffffffffffffffffffffffffffffffffffffffff1661166a6111cc565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061336a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611727906131ea565b60405180910390fd5b61173981611f47565b50565b600760149054906101000a900460ff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118ae82611dec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118d56117e9565b73ffffffffffffffffffffffffffffffffffffffff16148061193157506118fa6117e9565b73ffffffffffffffffffffffffffffffffffffffff1661191984610861565b73ffffffffffffffffffffffffffffffffffffffff16145b8061194d575061194c82600001516119476117e9565b6115b0565b5b90508061198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906133ca565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061334a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a689061324a565b60405180910390fd5b611a7e85858560016123e1565b611a8e60008484600001516117f1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184611c6591906135df565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d7c57611cdb816117dc565b15611d7b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de486868660016123e7565b505050505050565b611df461284f565b611dfd826117dc565b611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e339061320a565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f2e578092505050611f42565b508080611f3a906137d8565b915050611e42565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361201b91906135df565b905092915050565b600081836120319190613666565b905092915050565b6120538282604051806020016040528060008152506123ed565b5050565b60006120788473ffffffffffffffffffffffffffffffffffffffff1661174f565b156121e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120a16117e9565b8786866040518563ffffffff1660e01b81526004016120c39493929190613141565b602060405180830381600087803b1580156120dd57600080fd5b505af192505050801561210e57506040513d601f19601f8201168201806040525081019061210b9190612c34565b60015b612191573d806000811461213e576040519150601f19603f3d011682016040523d82523d6000602084013e612143565b606091505b50600081511415612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061340a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121e6565b600190505b949350505050565b6060600880546121fd90613802565b80601f016020809104026020016040519081016040528092919081815260200182805461222990613802565b80156122765780601f1061224b57610100808354040283529160200191612276565b820191906000526020600020905b81548152906001019060200180831161225957829003601f168201915b5050505050905090565b606060008214156122c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123dc565b600082905060005b600082146122fa5780806122e390613865565b915050600a826122f39190613635565b91506122d0565b60008167ffffffffffffffff8111156123165761231561399b565b5b6040519080825280601f01601f1916602001820160405280156123485781602001600182028036833780820191505090505b5090505b600085146123d55760018261236191906136c0565b9150600a8561237091906138ae565b603061237c91906135df565b60f81b8183815181106123925761239161396c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ce9190613635565b945061234c565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061344a565b60405180910390fd5b61246c816117dc565b156124ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a39061342a565b60405180910390fd5b600083116124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e69061346a565b60405180910390fd5b6124fc60008583866123e1565b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125699190613599565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff1661260c9190613599565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b848110156127ad57818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461274d6000878487612057565b61278c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127839061340a565b60405180910390fd5b818061279790613865565b92505080806127a590613865565b9150506126dc565b50806000819055506127c260008684876123e7565b5050505050565b8280546127d590613802565b90600052602060002090601f0160209004810192826127f7576000855561283e565b82601f1061281057803560ff191683800117855561283e565b8280016001018555821561283e579182015b8281111561283d578235825591602001919060010190612822565b5b50905061284b9190612889565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128a257600081600090555060010161288a565b5090565b60006128b96128b484613525565b613500565b9050828152602081018484840111156128d5576128d46139d9565b5b6128e0848285613796565b509392505050565b6000813590506128f7816140a3565b92915050565b60008135905061290c816140ba565b92915050565b600081359050612921816140d1565b92915050565b600081359050612936816140e8565b92915050565b60008151905061294b816140e8565b92915050565b600082601f830112612966576129656139cf565b5b81356129768482602086016128a6565b91505092915050565b60008083601f840112612995576129946139cf565b5b8235905067ffffffffffffffff8111156129b2576129b16139ca565b5b6020830191508360018202830111156129ce576129cd6139d4565b5b9250929050565b6000813590506129e4816140ff565b92915050565b600060208284031215612a00576129ff6139e3565b5b6000612a0e848285016128e8565b91505092915050565b600060208284031215612a2d57612a2c6139e3565b5b6000612a3b848285016128fd565b91505092915050565b60008060408385031215612a5b57612a5a6139e3565b5b6000612a69858286016128e8565b9250506020612a7a858286016128e8565b9150509250929050565b600080600060608486031215612a9d57612a9c6139e3565b5b6000612aab868287016128e8565b9350506020612abc868287016128e8565b9250506040612acd868287016129d5565b9150509250925092565b60008060008060808587031215612af157612af06139e3565b5b6000612aff878288016128e8565b9450506020612b10878288016128e8565b9350506040612b21878288016129d5565b925050606085013567ffffffffffffffff811115612b4257612b416139de565b5b612b4e87828801612951565b91505092959194509250565b60008060408385031215612b7157612b706139e3565b5b6000612b7f858286016128e8565b9250506020612b9085828601612912565b9150509250929050565b60008060408385031215612bb157612bb06139e3565b5b6000612bbf858286016128e8565b9250506020612bd0858286016129d5565b9150509250929050565b600060208284031215612bf057612bef6139e3565b5b6000612bfe84828501612912565b91505092915050565b600060208284031215612c1d57612c1c6139e3565b5b6000612c2b84828501612927565b91505092915050565b600060208284031215612c4a57612c496139e3565b5b6000612c588482850161293c565b91505092915050565b60008060208385031215612c7857612c776139e3565b5b600083013567ffffffffffffffff811115612c9657612c956139de565b5b612ca28582860161297f565b92509250509250929050565b600060208284031215612cc457612cc36139e3565b5b6000612cd2848285016129d5565b91505092915050565b612ce4816136f4565b82525050565b612cf381613718565b82525050565b6000612d0482613556565b612d0e818561356c565b9350612d1e8185602086016137a5565b612d27816139e8565b840191505092915050565b6000612d3d82613561565b612d47818561357d565b9350612d578185602086016137a5565b612d60816139e8565b840191505092915050565b6000612d7682613561565b612d80818561358e565b9350612d908185602086016137a5565b80840191505092915050565b6000612da960228361357d565b9150612db4826139f9565b604082019050919050565b6000612dcc60268361357d565b9150612dd782613a48565b604082019050919050565b6000612def602a8361357d565b9150612dfa82613a97565b604082019050919050565b6000612e1260238361357d565b9150612e1d82613ae6565b604082019050919050565b6000612e3560258361357d565b9150612e4082613b35565b604082019050919050565b6000612e5860238361357d565b9150612e6382613b84565b604082019050919050565b6000612e7b601e8361357d565b9150612e8682613bd3565b602082019050919050565b6000612e9e602d8361357d565b9150612ea982613bfc565b604082019050919050565b6000612ec160398361357d565b9150612ecc82613c4b565b604082019050919050565b6000612ee4602a8361357d565b9150612eef82613c9a565b604082019050919050565b6000612f07602b8361357d565b9150612f1282613ce9565b604082019050919050565b6000612f2a601b8361357d565b9150612f3582613d38565b602082019050919050565b6000612f4d60268361357d565b9150612f5882613d61565b604082019050919050565b6000612f7060208361357d565b9150612f7b82613db0565b602082019050919050565b6000612f93602f8361357d565b9150612f9e82613dd9565b604082019050919050565b6000612fb6601a8361357d565b9150612fc182613e28565b602082019050919050565b6000612fd960328361357d565b9150612fe482613e51565b604082019050919050565b6000612ffc60228361357d565b915061300782613ea0565b604082019050919050565b600061301f60338361357d565b915061302a82613eef565b604082019050919050565b6000613042601d8361357d565b915061304d82613f3e565b602082019050919050565b600061306560218361357d565b915061307082613f67565b604082019050919050565b600061308860288361357d565b915061309382613fb6565b604082019050919050565b60006130ab602e8361357d565b91506130b682614005565b604082019050919050565b60006130ce602d8361357d565b91506130d982614054565b604082019050919050565b6130ed81613750565b82525050565b6130fc8161378c565b82525050565b600061310e8285612d6b565b915061311a8284612d6b565b91508190509392505050565b600060208201905061313b6000830184612cdb565b92915050565b60006080820190506131566000830187612cdb565b6131636020830186612cdb565b61317060408301856130f3565b81810360608301526131828184612cf9565b905095945050505050565b60006020820190506131a26000830184612cea565b92915050565b600060208201905081810360008301526131c28184612d32565b905092915050565b600060208201905081810360008301526131e381612d9c565b9050919050565b6000602082019050818103600083015261320381612dbf565b9050919050565b6000602082019050818103600083015261322381612de2565b9050919050565b6000602082019050818103600083015261324381612e05565b9050919050565b6000602082019050818103600083015261326381612e28565b9050919050565b6000602082019050818103600083015261328381612e4b565b9050919050565b600060208201905081810360008301526132a381612e6e565b9050919050565b600060208201905081810360008301526132c381612e91565b9050919050565b600060208201905081810360008301526132e381612eb4565b9050919050565b6000602082019050818103600083015261330381612ed7565b9050919050565b6000602082019050818103600083015261332381612efa565b9050919050565b6000602082019050818103600083015261334381612f1d565b9050919050565b6000602082019050818103600083015261336381612f40565b9050919050565b6000602082019050818103600083015261338381612f63565b9050919050565b600060208201905081810360008301526133a381612f86565b9050919050565b600060208201905081810360008301526133c381612fa9565b9050919050565b600060208201905081810360008301526133e381612fcc565b9050919050565b6000602082019050818103600083015261340381612fef565b9050919050565b6000602082019050818103600083015261342381613012565b9050919050565b6000602082019050818103600083015261344381613035565b9050919050565b6000602082019050818103600083015261346381613058565b9050919050565b600060208201905081810360008301526134838161307b565b9050919050565b600060208201905081810360008301526134a38161309e565b9050919050565b600060208201905081810360008301526134c3816130c1565b9050919050565b60006020820190506134df60008301846130e4565b92915050565b60006020820190506134fa60008301846130f3565b92915050565b600061350a61351b565b90506135168282613834565b919050565b6000604051905090565b600067ffffffffffffffff8211156135405761353f61399b565b5b613549826139e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135a482613750565b91506135af83613750565b9250826fffffffffffffffffffffffffffffffff038211156135d4576135d36138df565b5b828201905092915050565b60006135ea8261378c565b91506135f58361378c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362a576136296138df565b5b828201905092915050565b60006136408261378c565b915061364b8361378c565b92508261365b5761365a61390e565b5b828204905092915050565b60006136718261378c565b915061367c8361378c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b5576136b46138df565b5b828202905092915050565b60006136cb8261378c565b91506136d68361378c565b9250828210156136e9576136e86138df565b5b828203905092915050565b60006136ff8261376c565b9050919050565b60006137118261376c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c35780820151818401526020810190506137a8565b838111156137d2576000848401525b50505050565b60006137e38261378c565b915060008214156137f7576137f66138df565b5b600182039050919050565b6000600282049050600182168061381a57607f821691505b6020821081141561382e5761382d61393d565b5b50919050565b61383d826139e8565b810181811067ffffffffffffffff8211171561385c5761385b61399b565b5b80604052505050565b60006138708261378c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a3576138a26138df565b5b600182019050919050565b60006138b98261378c565b91506138c48361378c565b9250826138d4576138d361390e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206120746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f456163682077616c6c65742063616e206f6e6c79206d696e7420353020746f6b60008201527f656e7320617420612074696d6500000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e7420697320746f6f206c6f770000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140ac816136f4565b81146140b757600080fd5b50565b6140c381613706565b81146140ce57600080fd5b50565b6140da81613718565b81146140e557600080fd5b50565b6140f181613724565b81146140fc57600080fd5b50565b6141088161378c565b811461411357600080fd5b5056fea2646970667358221220328338664e69321f85456cd35e05fb7a3232263d52fd183a09f9d6935488b6c564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5359757873424e64526b39737369526f6d794e414477367066646e34613664584c43794e334d6873783250312f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmSYuxsBNdRk9ssiRomyNADw6pfdn4a6dXLCyN3Mhsx2P1/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5359757873424e64526b39737369526f6d794e41447736
Arg [3] : 7066646e34613664584c43794e334d6873783250312f00000000000000000000


Deployed Bytecode Sourcemap

46424:9393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34171:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35992:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37553:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37074:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32612:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38429:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33276:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46514:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38662:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32789:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55650:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55539:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35801:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34607:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46562:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11757:103;;;;;;;;;;;;;:::i;:::-;;54506:794;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11106:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36161:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37839:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38910:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36336:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46610:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55306:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38198:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46668:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34171:372;34273:4;34325:25;34310:40;;;:11;:40;;;;:105;;;;34382:33;34367:48;;;:11;:48;;;;34310:105;:172;;;;34447:35;34432:50;;;:11;:50;;;;34310:172;:225;;;;34499:36;34523:11;34499:23;:36::i;:::-;34310:225;34290:245;;34171:372;;;:::o;35992:100::-;36046:13;36079:5;36072:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35992:100;:::o;37553:214::-;37621:7;37649:16;37657:7;37649;:16::i;:::-;37641:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37735:15;:24;37751:7;37735:24;;;;;;;;;;;;;;;;;;;;;37728:31;;37553:214;;;:::o;37074:413::-;37147:13;37163:24;37179:7;37163:15;:24::i;:::-;37147:40;;37212:5;37206:11;;:2;:11;;;;37198:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37307:5;37291:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37316:37;37333:5;37340:12;:10;:12::i;:::-;37316:16;:37::i;:::-;37291:62;37269:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37451:28;37460:2;37464:7;37473:5;37451:8;:28::i;:::-;37136:351;37074:413;;:::o;32612:100::-;32665:7;32692:12;;32685:19;;32612:100;:::o;38429:162::-;38555:28;38565:4;38571:2;38575:7;38555:9;:28::i;:::-;38429:162;;;:::o;33276:823::-;33365:7;33401:16;33411:5;33401:9;:16::i;:::-;33393:5;:24;33385:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33467:22;33492:13;:11;:13::i;:::-;33467:38;;33516:19;33550:25;33604:9;33599:426;33623:14;33619:1;:18;33599:426;;;33659:31;33693:11;:14;33705:1;33693:14;;;;;;;;;;;33659:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33752:1;33726:28;;:9;:14;;;:28;;;33722:103;;33795:9;:14;;;33775:34;;33722:103;33864:5;33843:26;;:17;:26;;;33839:175;;;33909:5;33894:11;:20;33890:77;;;33946:1;33939:8;;;;;;;;;33890:77;33985:13;;;;;:::i;:::-;;;;33839:175;33644:381;33639:3;;;;;:::i;:::-;;;;33599:426;;;;34035:56;;;;;;;;;;:::i;:::-;;;;;;;;33276:823;;;;;:::o;46514:41::-;46551:4;46514:41;:::o;38662:177::-;38792:39;38809:4;38815:2;38819:7;38792:39;;;;;;;;;;;;:16;:39::i;:::-;38662:177;;;:::o;32789:187::-;32856:7;32892:13;:11;:13::i;:::-;32884:5;:21;32876:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;32963:5;32956:12;;32789:187;;;:::o;55650:160::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55723:15:::1;55741:21;55723:39;;55773:9;:18;;:27;55792:7;55773:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55712:98;55650:160:::0;:::o;55539:106::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55630:7:::1;;55614:13;:23;;;;;;;:::i;:::-;;55539:106:::0;;:::o;35801:124::-;35865:7;35892:20;35904:7;35892:11;:20::i;:::-;:25;;;35885:32;;35801:124;;;:::o;34607:221::-;34671:7;34716:1;34699:19;;:5;:19;;;;34691:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34792:12;:19;34805:5;34792:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34784:36;;34777:43;;34607:221;;;:::o;46562:41::-;46601:2;46562:41;:::o;11757:103::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11822:30:::1;11849:1;11822:18;:30::i;:::-;11757:103::o:0;54506:794::-;54437:10;54424:23;;:9;:23;;;54416:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;54598:10:::1;;;;;;;;;;;54590:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46601:2;54681:30;;:14;:30;;54659:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;54795:25;54823:33;54841:14;54823:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;54795:61;;46551:4;54889:31;;:17;:31;;54867:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;55001:17;55021:31;55037:14;46648:11;55021:15;;:31;;;;:::i;:::-;55001:51;;55084:9;55071;:22;;55063:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55138:37;55148:10;55160:14;55138:9;:37::i;:::-;55204:9;55192;:21;55188:105;;;55238:10;55230:28;;:51;55271:9;55259;:21;;;;:::i;:::-;55230:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55188:105;54579:721;;54506:794:::0;:::o;11106:87::-;11152:7;11179:6;;;;;;;;;;;11172:13;;11106:87;:::o;36161:104::-;36217:13;36250:7;36243:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36161:104;:::o;37839:288::-;37946:12;:10;:12::i;:::-;37934:24;;:8;:24;;;;37926:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38047:8;38002:18;:32;38021:12;:10;:12::i;:::-;38002:32;;;;;;;;;;;;;;;:42;38035:8;38002:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38100:8;38071:48;;38086:12;:10;:12::i;:::-;38071:48;;;38110:8;38071:48;;;;;;:::i;:::-;;;;;;;;37839:288;;:::o;38910:355::-;39069:28;39079:4;39085:2;39089:7;39069:9;:28::i;:::-;39130:48;39153:4;39159:2;39163:7;39172:5;39130:22;:48::i;:::-;39108:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;38910:355;;;;:::o;36336:334::-;36409:13;36443:16;36451:7;36443;:16::i;:::-;36435:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36524:21;36548:10;:8;:10::i;:::-;36524:34;;36600:1;36582:7;36576:21;:25;:86;;;;;;;;;;;;;;;;;36628:7;36637:18;:7;:16;:18::i;:::-;36611:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36576:86;36569:93;;;36336:334;;;:::o;46610:49::-;46648:11;46610:49;:::o;55306:107::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55392:13:::1;55379:10;;:26;;;;;;;;;;;;;;;;;;55306:107:::0;:::o;38198:164::-;38295:4;38319:18;:25;38338:5;38319:25;;;;;;;;;;;;;;;:35;38345:8;38319:35;;;;;;;;;;;;;;;;;;;;;;;;;38312:42;;38198:164;;;;:::o;12015:201::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12124:1:::1;12104:22;;:8;:22;;;;12096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12180:28;12199:8;12180:18;:28::i;:::-;12015:201:::0;:::o;46668:29::-;;;;;;;;;;;;;:::o;13792:326::-;13852:4;14109:1;14087:7;:19;;;:23;14080:30;;13792:326;;;:::o;23875:157::-;23960:4;23999:25;23984:40;;;:11;:40;;;;23977:47;;23875:157;;;:::o;39520:111::-;39577:4;39611:12;;39601:7;:22;39594:29;;39520:111;;;:::o;9830:98::-;9883:7;9910:10;9903:17;;9830:98;:::o;43570:196::-;43712:2;43685:15;:24;43701:7;43685:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43750:7;43746:2;43730:28;;43739:5;43730:28;;;;;;;;;;;;43570:196;;;:::o;41585:1867::-;41700:35;41738:20;41750:7;41738:11;:20::i;:::-;41700:58;;41771:22;41813:13;:18;;;41797:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;41872:12;:10;:12::i;:::-;41848:36;;:20;41860:7;41848:11;:20::i;:::-;:36;;;41797:87;:154;;;;41901:50;41918:13;:18;;;41938:12;:10;:12::i;:::-;41901:16;:50::i;:::-;41797:154;41771:181;;41973:17;41965:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42088:4;42066:26;;:13;:18;;;:26;;;42058:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42168:1;42154:16;;:2;:16;;;;42146:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42225:43;42247:4;42253:2;42257:7;42266:1;42225:21;:43::i;:::-;42333:49;42350:1;42354:7;42363:13;:18;;;42333:8;:49::i;:::-;42617:1;42587:12;:18;42600:4;42587:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42661:1;42633:12;:16;42646:2;42633:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42714:2;42686:11;:20;42698:7;42686:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42772:15;42727:11;:20;42739:7;42727:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;43028:19;43060:1;43050:7;:11;;;;:::i;:::-;43028:33;;43117:1;43076:43;;:11;:24;43088:11;43076:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;43072:275;;;43140:20;43148:11;43140:7;:20::i;:::-;43136:200;;;43213:13;:18;;;43181:11;:24;43193:11;43181:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;43292:13;:28;;;43250:11;:24;43262:11;43250:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;43136:200;43072:275;43383:7;43379:2;43364:27;;43373:4;43364:27;;;;;;;;;;;;43402:42;43423:4;43429:2;43433:7;43442:1;43402:20;:42::i;:::-;41689:1763;;;41585:1867;;;:::o;35267:472::-;35328:21;;:::i;:::-;35370:16;35378:7;35370;:16::i;:::-;35362:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35451:12;35466:7;35451:22;;35446:216;35500:31;35534:11;:17;35546:4;35534:17;;;;;;;;;;;35500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35596:1;35570:28;;:9;:14;;;:28;;;35566:85;;35626:9;35619:16;;;;;;35566:85;35485:177;35477:6;;;;;:::i;:::-;;;;35446:216;;35267:472;;;;:::o;12376:191::-;12450:16;12469:6;;;;;;;;;;;12450:25;;12495:8;12486:6;;:17;;;;;;;;;;;;;;;;;;12550:8;12519:40;;12540:8;12519:40;;;;;;;;;;;;12439:128;12376:191;:::o;2862:98::-;2920:7;2951:1;2947;:5;;;;:::i;:::-;2940:12;;2862:98;;;;:::o;3600:::-;3658:7;3689:1;3685;:5;;;;:::i;:::-;3678:12;;3600:98;;;;:::o;39639:104::-;39708:27;39718:2;39722:8;39708:27;;;;;;;;;;;;:9;:27::i;:::-;39639:104;;:::o;44331:804::-;44486:4;44507:15;:2;:13;;;:15::i;:::-;44503:625;;;44559:2;44543:36;;;44580:12;:10;:12::i;:::-;44594:4;44600:7;44609:5;44543:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44539:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44806:1;44789:6;:13;:18;44785:273;;;44832:61;;;;;;;;;;:::i;:::-;;;;;;;;44785:273;45008:6;45002:13;44993:6;44989:2;44985:15;44978:38;44539:534;44676:45;;;44666:55;;;:6;:55;;;;44659:62;;;;;44503:625;45112:4;45105:11;;44331:804;;;;;;;:::o;55417:114::-;55477:13;55510;55503:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55417:114;:::o;7392:723::-;7448:13;7678:1;7669:5;:10;7665:53;;;7696:10;;;;;;;;;;;;;;;;;;;;;7665:53;7728:12;7743:5;7728:20;;7759:14;7784:78;7799:1;7791:4;:9;7784:78;;7817:8;;;;;:::i;:::-;;;;7848:2;7840:10;;;;;:::i;:::-;;;7784:78;;;7872:19;7904:6;7894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7872:39;;7922:154;7938:1;7929:5;:10;7922:154;;7966:1;7956:11;;;;;:::i;:::-;;;8033:2;8025:5;:10;;;;:::i;:::-;8012:2;:24;;;;:::i;:::-;7999:39;;7982:6;7989;7982:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8062:2;8053:11;;;;;:::i;:::-;;;7922:154;;;8100:6;8086:21;;;;;7392:723;;;;:::o;45623:159::-;;;;;:::o;46194:158::-;;;;;:::o;40002:1329::-;40125:20;40148:12;;40125:35;;40193:1;40179:16;;:2;:16;;;;40171:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40378:21;40386:12;40378:7;:21::i;:::-;40377:22;40369:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40463:1;40452:8;:12;40444:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40522:61;40552:1;40556:2;40560:12;40574:8;40522:21;:61::i;:::-;40632:8;40596:12;:16;40609:2;40596:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40693:8;40652:12;:16;40665:2;40652:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40748:2;40715:11;:25;40727:12;40715:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40811:15;40761:11;:25;40773:12;40761:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40840:20;40863:12;40840:35;;40893:9;40888:325;40912:8;40908:1;:12;40888:325;;;40972:12;40968:2;40947:38;;40964:1;40947:38;;;;;;;;;;;;41026:59;41057:1;41061:2;41065:12;41079:5;41026:22;:59::i;:::-;41000:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;41187:14;;;;;:::i;:::-;;;;40922:3;;;;;:::i;:::-;;;;40888:325;;;;41240:12;41225;:27;;;;41263:60;41292:1;41296:2;41300:12;41314:8;41263:20;:60::i;:::-;40114:1217;;40002:1329;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:155::-;622:5;660:6;647:20;638:29;;676:41;711:5;676:41;:::i;:::-;568:155;;;;:::o;729:133::-;772:5;810:6;797:20;788:29;;826:30;850:5;826:30;:::i;:::-;729:133;;;;:::o;868:137::-;913:5;951:6;938:20;929:29;;967:32;993:5;967:32;:::i;:::-;868:137;;;;:::o;1011:141::-;1067:5;1098:6;1092:13;1083:22;;1114:32;1140:5;1114:32;:::i;:::-;1011:141;;;;:::o;1171:338::-;1226:5;1275:3;1268:4;1260:6;1256:17;1252:27;1242:122;;1283:79;;:::i;:::-;1242:122;1400:6;1387:20;1425:78;1499:3;1491:6;1484:4;1476:6;1472:17;1425:78;:::i;:::-;1416:87;;1232:277;1171:338;;;;:::o;1529:553::-;1587:8;1597:6;1647:3;1640:4;1632:6;1628:17;1624:27;1614:122;;1655:79;;:::i;:::-;1614:122;1768:6;1755:20;1745:30;;1798:18;1790:6;1787:30;1784:117;;;1820:79;;:::i;:::-;1784:117;1934:4;1926:6;1922:17;1910:29;;1988:3;1980:4;1972:6;1968:17;1958:8;1954:32;1951:41;1948:128;;;1995:79;;:::i;:::-;1948:128;1529:553;;;;;:::o;2088:139::-;2134:5;2172:6;2159:20;2150:29;;2188:33;2215:5;2188:33;:::i;:::-;2088:139;;;;:::o;2233:329::-;2292:6;2341:2;2329:9;2320:7;2316:23;2312:32;2309:119;;;2347:79;;:::i;:::-;2309:119;2467:1;2492:53;2537:7;2528:6;2517:9;2513:22;2492:53;:::i;:::-;2482:63;;2438:117;2233:329;;;;:::o;2568:345::-;2635:6;2684:2;2672:9;2663:7;2659:23;2655:32;2652:119;;;2690:79;;:::i;:::-;2652:119;2810:1;2835:61;2888:7;2879:6;2868:9;2864:22;2835:61;:::i;:::-;2825:71;;2781:125;2568:345;;;;:::o;2919:474::-;2987:6;2995;3044:2;3032:9;3023:7;3019:23;3015:32;3012:119;;;3050:79;;:::i;:::-;3012:119;3170:1;3195:53;3240:7;3231:6;3220:9;3216:22;3195:53;:::i;:::-;3185:63;;3141:117;3297:2;3323:53;3368:7;3359:6;3348:9;3344:22;3323:53;:::i;:::-;3313:63;;3268:118;2919:474;;;;;:::o;3399:619::-;3476:6;3484;3492;3541:2;3529:9;3520:7;3516:23;3512:32;3509:119;;;3547:79;;:::i;:::-;3509:119;3667:1;3692:53;3737:7;3728:6;3717:9;3713:22;3692:53;:::i;:::-;3682:63;;3638:117;3794:2;3820:53;3865:7;3856:6;3845:9;3841:22;3820:53;:::i;:::-;3810:63;;3765:118;3922:2;3948:53;3993:7;3984:6;3973:9;3969:22;3948:53;:::i;:::-;3938:63;;3893:118;3399:619;;;;;:::o;4024:943::-;4119:6;4127;4135;4143;4192:3;4180:9;4171:7;4167:23;4163:33;4160:120;;;4199:79;;:::i;:::-;4160:120;4319:1;4344:53;4389:7;4380:6;4369:9;4365:22;4344:53;:::i;:::-;4334:63;;4290:117;4446:2;4472:53;4517:7;4508:6;4497:9;4493:22;4472:53;:::i;:::-;4462:63;;4417:118;4574:2;4600:53;4645:7;4636:6;4625:9;4621:22;4600:53;:::i;:::-;4590:63;;4545:118;4730:2;4719:9;4715:18;4702:32;4761:18;4753:6;4750:30;4747:117;;;4783:79;;:::i;:::-;4747:117;4888:62;4942:7;4933:6;4922:9;4918:22;4888:62;:::i;:::-;4878:72;;4673:287;4024:943;;;;;;;:::o;4973:468::-;5038:6;5046;5095:2;5083:9;5074:7;5070:23;5066:32;5063:119;;;5101:79;;:::i;:::-;5063:119;5221:1;5246:53;5291:7;5282:6;5271:9;5267:22;5246:53;:::i;:::-;5236:63;;5192:117;5348:2;5374:50;5416:7;5407:6;5396:9;5392:22;5374:50;:::i;:::-;5364:60;;5319:115;4973:468;;;;;:::o;5447:474::-;5515:6;5523;5572:2;5560:9;5551:7;5547:23;5543:32;5540:119;;;5578:79;;:::i;:::-;5540:119;5698:1;5723:53;5768:7;5759:6;5748:9;5744:22;5723:53;:::i;:::-;5713:63;;5669:117;5825:2;5851:53;5896:7;5887:6;5876:9;5872:22;5851:53;:::i;:::-;5841:63;;5796:118;5447:474;;;;;:::o;5927:323::-;5983:6;6032:2;6020:9;6011:7;6007:23;6003:32;6000:119;;;6038:79;;:::i;:::-;6000:119;6158:1;6183:50;6225:7;6216:6;6205:9;6201:22;6183:50;:::i;:::-;6173:60;;6129:114;5927:323;;;;:::o;6256:327::-;6314:6;6363:2;6351:9;6342:7;6338:23;6334:32;6331:119;;;6369:79;;:::i;:::-;6331:119;6489:1;6514:52;6558:7;6549:6;6538:9;6534:22;6514:52;:::i;:::-;6504:62;;6460:116;6256:327;;;;:::o;6589:349::-;6658:6;6707:2;6695:9;6686:7;6682:23;6678:32;6675:119;;;6713:79;;:::i;:::-;6675:119;6833:1;6858:63;6913:7;6904:6;6893:9;6889:22;6858:63;:::i;:::-;6848:73;;6804:127;6589:349;;;;:::o;6944:529::-;7015:6;7023;7072:2;7060:9;7051:7;7047:23;7043:32;7040:119;;;7078:79;;:::i;:::-;7040:119;7226:1;7215:9;7211:17;7198:31;7256:18;7248:6;7245:30;7242:117;;;7278:79;;:::i;:::-;7242:117;7391:65;7448:7;7439:6;7428:9;7424:22;7391:65;:::i;:::-;7373:83;;;;7169:297;6944:529;;;;;:::o;7479:329::-;7538:6;7587:2;7575:9;7566:7;7562:23;7558:32;7555:119;;;7593:79;;:::i;:::-;7555:119;7713:1;7738:53;7783:7;7774:6;7763:9;7759:22;7738:53;:::i;:::-;7728:63;;7684:117;7479:329;;;;:::o;7814:118::-;7901:24;7919:5;7901:24;:::i;:::-;7896:3;7889:37;7814:118;;:::o;7938:109::-;8019:21;8034:5;8019:21;:::i;:::-;8014:3;8007:34;7938:109;;:::o;8053:360::-;8139:3;8167:38;8199:5;8167:38;:::i;:::-;8221:70;8284:6;8279:3;8221:70;:::i;:::-;8214:77;;8300:52;8345:6;8340:3;8333:4;8326:5;8322:16;8300:52;:::i;:::-;8377:29;8399:6;8377:29;:::i;:::-;8372:3;8368:39;8361:46;;8143:270;8053:360;;;;:::o;8419:364::-;8507:3;8535:39;8568:5;8535:39;:::i;:::-;8590:71;8654:6;8649:3;8590:71;:::i;:::-;8583:78;;8670:52;8715:6;8710:3;8703:4;8696:5;8692:16;8670:52;:::i;:::-;8747:29;8769:6;8747:29;:::i;:::-;8742:3;8738:39;8731:46;;8511:272;8419:364;;;;:::o;8789:377::-;8895:3;8923:39;8956:5;8923:39;:::i;:::-;8978:89;9060:6;9055:3;8978:89;:::i;:::-;8971:96;;9076:52;9121:6;9116:3;9109:4;9102:5;9098:16;9076:52;:::i;:::-;9153:6;9148:3;9144:16;9137:23;;8899:267;8789:377;;;;:::o;9172:366::-;9314:3;9335:67;9399:2;9394:3;9335:67;:::i;:::-;9328:74;;9411:93;9500:3;9411:93;:::i;:::-;9529:2;9524:3;9520:12;9513:19;;9172:366;;;:::o;9544:::-;9686:3;9707:67;9771:2;9766:3;9707:67;:::i;:::-;9700:74;;9783:93;9872:3;9783:93;:::i;:::-;9901:2;9896:3;9892:12;9885:19;;9544:366;;;:::o;9916:::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:::-;10430:3;10451:67;10515:2;10510:3;10451:67;:::i;:::-;10444:74;;10527:93;10616:3;10527:93;:::i;:::-;10645:2;10640:3;10636:12;10629:19;;10288:366;;;:::o;10660:::-;10802:3;10823:67;10887:2;10882:3;10823:67;:::i;:::-;10816:74;;10899:93;10988:3;10899:93;:::i;:::-;11017:2;11012:3;11008:12;11001:19;;10660:366;;;:::o;11032:::-;11174:3;11195:67;11259:2;11254:3;11195:67;:::i;:::-;11188:74;;11271:93;11360:3;11271:93;:::i;:::-;11389:2;11384:3;11380:12;11373:19;;11032:366;;;:::o;11404:::-;11546:3;11567:67;11631:2;11626:3;11567:67;:::i;:::-;11560:74;;11643:93;11732:3;11643:93;:::i;:::-;11761:2;11756:3;11752:12;11745:19;;11404:366;;;:::o;11776:::-;11918:3;11939:67;12003:2;11998:3;11939:67;:::i;:::-;11932:74;;12015:93;12104:3;12015:93;:::i;:::-;12133:2;12128:3;12124:12;12117:19;;11776:366;;;:::o;12148:::-;12290:3;12311:67;12375:2;12370:3;12311:67;:::i;:::-;12304:74;;12387:93;12476:3;12387:93;:::i;:::-;12505:2;12500:3;12496:12;12489:19;;12148:366;;;:::o;12520:::-;12662:3;12683:67;12747:2;12742:3;12683:67;:::i;:::-;12676:74;;12759:93;12848:3;12759:93;:::i;:::-;12877:2;12872:3;12868:12;12861:19;;12520:366;;;:::o;12892:::-;13034:3;13055:67;13119:2;13114:3;13055:67;:::i;:::-;13048:74;;13131:93;13220:3;13131:93;:::i;:::-;13249:2;13244:3;13240:12;13233:19;;12892:366;;;:::o;13264:::-;13406:3;13427:67;13491:2;13486:3;13427:67;:::i;:::-;13420:74;;13503:93;13592:3;13503:93;:::i;:::-;13621:2;13616:3;13612:12;13605:19;;13264:366;;;:::o;13636:::-;13778:3;13799:67;13863:2;13858:3;13799:67;:::i;:::-;13792:74;;13875:93;13964:3;13875:93;:::i;:::-;13993:2;13988:3;13984:12;13977:19;;13636:366;;;:::o;14008:::-;14150:3;14171:67;14235:2;14230:3;14171:67;:::i;:::-;14164:74;;14247:93;14336:3;14247:93;:::i;:::-;14365:2;14360:3;14356:12;14349:19;;14008:366;;;:::o;14380:::-;14522:3;14543:67;14607:2;14602:3;14543:67;:::i;:::-;14536:74;;14619:93;14708:3;14619:93;:::i;:::-;14737:2;14732:3;14728:12;14721:19;;14380:366;;;:::o;14752:::-;14894:3;14915:67;14979:2;14974:3;14915:67;:::i;:::-;14908:74;;14991:93;15080:3;14991:93;:::i;:::-;15109:2;15104:3;15100:12;15093:19;;14752:366;;;:::o;15124:::-;15266:3;15287:67;15351:2;15346:3;15287:67;:::i;:::-;15280:74;;15363:93;15452:3;15363:93;:::i;:::-;15481:2;15476:3;15472:12;15465:19;;15124:366;;;:::o;15496:::-;15638:3;15659:67;15723:2;15718:3;15659:67;:::i;:::-;15652:74;;15735:93;15824:3;15735:93;:::i;:::-;15853:2;15848:3;15844:12;15837:19;;15496:366;;;:::o;15868:::-;16010:3;16031:67;16095:2;16090:3;16031:67;:::i;:::-;16024:74;;16107:93;16196:3;16107:93;:::i;:::-;16225:2;16220:3;16216:12;16209:19;;15868:366;;;:::o;16240:::-;16382:3;16403:67;16467:2;16462:3;16403:67;:::i;:::-;16396:74;;16479:93;16568:3;16479:93;:::i;:::-;16597:2;16592:3;16588:12;16581:19;;16240:366;;;:::o;16612:::-;16754:3;16775:67;16839:2;16834:3;16775:67;:::i;:::-;16768:74;;16851:93;16940:3;16851:93;:::i;:::-;16969:2;16964:3;16960:12;16953:19;;16612:366;;;:::o;16984:::-;17126:3;17147:67;17211:2;17206:3;17147:67;:::i;:::-;17140:74;;17223:93;17312:3;17223:93;:::i;:::-;17341:2;17336:3;17332:12;17325:19;;16984:366;;;:::o;17356:::-;17498:3;17519:67;17583:2;17578:3;17519:67;:::i;:::-;17512:74;;17595:93;17684:3;17595:93;:::i;:::-;17713:2;17708:3;17704:12;17697:19;;17356:366;;;:::o;18100:::-;18242:3;18263:67;18327:2;18322:3;18263:67;:::i;:::-;18256:74;;18339:93;18428:3;18339:93;:::i;:::-;18457:2;18452:3;18448:12;18441:19;;18100:366;;;:::o;18472:118::-;18559:24;18577:5;18559:24;:::i;:::-;18554:3;18547:37;18472:118;;:::o;18596:::-;18683:24;18701:5;18683:24;:::i;:::-;18678:3;18671:37;18596:118;;:::o;18720:435::-;18900:3;18922:95;19013:3;19004:6;18922:95;:::i;:::-;18915:102;;19034:95;19125:3;19116:6;19034:95;:::i;:::-;19027:102;;19146:3;19139:10;;18720:435;;;;;:::o;19161:222::-;19254:4;19292:2;19281:9;19277:18;19269:26;;19305:71;19373:1;19362:9;19358:17;19349:6;19305:71;:::i;:::-;19161:222;;;;:::o;19389:640::-;19584:4;19622:3;19611:9;19607:19;19599:27;;19636:71;19704:1;19693:9;19689:17;19680:6;19636:71;:::i;:::-;19717:72;19785:2;19774:9;19770:18;19761:6;19717:72;:::i;:::-;19799;19867:2;19856:9;19852:18;19843:6;19799:72;:::i;:::-;19918:9;19912:4;19908:20;19903:2;19892:9;19888:18;19881:48;19946:76;20017:4;20008:6;19946:76;:::i;:::-;19938:84;;19389:640;;;;;;;:::o;20035:210::-;20122:4;20160:2;20149:9;20145:18;20137:26;;20173:65;20235:1;20224:9;20220:17;20211:6;20173:65;:::i;:::-;20035:210;;;;:::o;20251:313::-;20364:4;20402:2;20391:9;20387:18;20379:26;;20451:9;20445:4;20441:20;20437:1;20426:9;20422:17;20415:47;20479:78;20552:4;20543:6;20479:78;:::i;:::-;20471:86;;20251:313;;;;:::o;20570:419::-;20736:4;20774:2;20763:9;20759:18;20751:26;;20823:9;20817:4;20813:20;20809:1;20798:9;20794:17;20787:47;20851:131;20977:4;20851:131;:::i;:::-;20843:139;;20570:419;;;:::o;20995:::-;21161:4;21199:2;21188:9;21184:18;21176:26;;21248:9;21242:4;21238:20;21234:1;21223:9;21219:17;21212:47;21276:131;21402:4;21276:131;:::i;:::-;21268:139;;20995:419;;;:::o;21420:::-;21586:4;21624:2;21613:9;21609:18;21601:26;;21673:9;21667:4;21663:20;21659:1;21648:9;21644:17;21637:47;21701:131;21827:4;21701:131;:::i;:::-;21693:139;;21420:419;;;:::o;21845:::-;22011:4;22049:2;22038:9;22034:18;22026:26;;22098:9;22092:4;22088:20;22084:1;22073:9;22069:17;22062:47;22126:131;22252:4;22126:131;:::i;:::-;22118:139;;21845:419;;;:::o;22270:::-;22436:4;22474:2;22463:9;22459:18;22451:26;;22523:9;22517:4;22513:20;22509:1;22498:9;22494:17;22487:47;22551:131;22677:4;22551:131;:::i;:::-;22543:139;;22270:419;;;:::o;22695:::-;22861:4;22899:2;22888:9;22884:18;22876:26;;22948:9;22942:4;22938:20;22934:1;22923:9;22919:17;22912:47;22976:131;23102:4;22976:131;:::i;:::-;22968:139;;22695:419;;;:::o;23120:::-;23286:4;23324:2;23313:9;23309:18;23301:26;;23373:9;23367:4;23363:20;23359:1;23348:9;23344:17;23337:47;23401:131;23527:4;23401:131;:::i;:::-;23393:139;;23120:419;;;:::o;23545:::-;23711:4;23749:2;23738:9;23734:18;23726:26;;23798:9;23792:4;23788:20;23784:1;23773:9;23769:17;23762:47;23826:131;23952:4;23826:131;:::i;:::-;23818:139;;23545:419;;;:::o;23970:::-;24136:4;24174:2;24163:9;24159:18;24151:26;;24223:9;24217:4;24213:20;24209:1;24198:9;24194:17;24187:47;24251:131;24377:4;24251:131;:::i;:::-;24243:139;;23970:419;;;:::o;24395:::-;24561:4;24599:2;24588:9;24584:18;24576:26;;24648:9;24642:4;24638:20;24634:1;24623:9;24619:17;24612:47;24676:131;24802:4;24676:131;:::i;:::-;24668:139;;24395:419;;;:::o;24820:::-;24986:4;25024:2;25013:9;25009:18;25001:26;;25073:9;25067:4;25063:20;25059:1;25048:9;25044:17;25037:47;25101:131;25227:4;25101:131;:::i;:::-;25093:139;;24820:419;;;:::o;25245:::-;25411:4;25449:2;25438:9;25434:18;25426:26;;25498:9;25492:4;25488:20;25484:1;25473:9;25469:17;25462:47;25526:131;25652:4;25526:131;:::i;:::-;25518:139;;25245:419;;;:::o;25670:::-;25836:4;25874:2;25863:9;25859:18;25851:26;;25923:9;25917:4;25913:20;25909:1;25898:9;25894:17;25887:47;25951:131;26077:4;25951:131;:::i;:::-;25943:139;;25670:419;;;:::o;26095:::-;26261:4;26299:2;26288:9;26284:18;26276:26;;26348:9;26342:4;26338:20;26334:1;26323:9;26319:17;26312:47;26376:131;26502:4;26376:131;:::i;:::-;26368:139;;26095:419;;;:::o;26520:::-;26686:4;26724:2;26713:9;26709:18;26701:26;;26773:9;26767:4;26763:20;26759:1;26748:9;26744:17;26737:47;26801:131;26927:4;26801:131;:::i;:::-;26793:139;;26520:419;;;:::o;26945:::-;27111:4;27149:2;27138:9;27134:18;27126:26;;27198:9;27192:4;27188:20;27184:1;27173:9;27169:17;27162:47;27226:131;27352:4;27226:131;:::i;:::-;27218:139;;26945:419;;;:::o;27370:::-;27536:4;27574:2;27563:9;27559:18;27551:26;;27623:9;27617:4;27613:20;27609:1;27598:9;27594:17;27587:47;27651:131;27777:4;27651:131;:::i;:::-;27643:139;;27370:419;;;:::o;27795:::-;27961:4;27999:2;27988:9;27984:18;27976:26;;28048:9;28042:4;28038:20;28034:1;28023:9;28019:17;28012:47;28076:131;28202:4;28076:131;:::i;:::-;28068:139;;27795:419;;;:::o;28220:::-;28386:4;28424:2;28413:9;28409:18;28401:26;;28473:9;28467:4;28463:20;28459:1;28448:9;28444:17;28437:47;28501:131;28627:4;28501:131;:::i;:::-;28493:139;;28220:419;;;:::o;28645:::-;28811:4;28849:2;28838:9;28834:18;28826:26;;28898:9;28892:4;28888:20;28884:1;28873:9;28869:17;28862:47;28926:131;29052:4;28926:131;:::i;:::-;28918:139;;28645:419;;;:::o;29070:::-;29236:4;29274:2;29263:9;29259:18;29251:26;;29323:9;29317:4;29313:20;29309:1;29298:9;29294:17;29287:47;29351:131;29477:4;29351:131;:::i;:::-;29343:139;;29070:419;;;:::o;29495:::-;29661:4;29699:2;29688:9;29684:18;29676:26;;29748:9;29742:4;29738:20;29734:1;29723:9;29719:17;29712:47;29776:131;29902:4;29776:131;:::i;:::-;29768:139;;29495:419;;;:::o;29920:::-;30086:4;30124:2;30113:9;30109:18;30101:26;;30173:9;30167:4;30163:20;30159:1;30148:9;30144:17;30137:47;30201:131;30327:4;30201:131;:::i;:::-;30193:139;;29920:419;;;:::o;30770:::-;30936:4;30974:2;30963:9;30959:18;30951:26;;31023:9;31017:4;31013:20;31009:1;30998:9;30994:17;30987:47;31051:131;31177:4;31051:131;:::i;:::-;31043:139;;30770:419;;;:::o;31195:222::-;31288:4;31326:2;31315:9;31311:18;31303:26;;31339:71;31407:1;31396:9;31392:17;31383:6;31339:71;:::i;:::-;31195:222;;;;:::o;31423:::-;31516:4;31554:2;31543:9;31539:18;31531:26;;31567:71;31635:1;31624:9;31620:17;31611:6;31567:71;:::i;:::-;31423:222;;;;:::o;31651:129::-;31685:6;31712:20;;:::i;:::-;31702:30;;31741:33;31769:4;31761:6;31741:33;:::i;:::-;31651:129;;;:::o;31786:75::-;31819:6;31852:2;31846:9;31836:19;;31786:75;:::o;31867:307::-;31928:4;32018:18;32010:6;32007:30;32004:56;;;32040:18;;:::i;:::-;32004:56;32078:29;32100:6;32078:29;:::i;:::-;32070:37;;32162:4;32156;32152:15;32144:23;;31867:307;;;:::o;32180:98::-;32231:6;32265:5;32259:12;32249:22;;32180:98;;;:::o;32284:99::-;32336:6;32370:5;32364:12;32354:22;;32284:99;;;:::o;32389:168::-;32472:11;32506:6;32501:3;32494:19;32546:4;32541:3;32537:14;32522:29;;32389:168;;;;:::o;32563:169::-;32647:11;32681:6;32676:3;32669:19;32721:4;32716:3;32712:14;32697:29;;32563:169;;;;:::o;32738:148::-;32840:11;32877:3;32862:18;;32738:148;;;;:::o;32892:273::-;32932:3;32951:20;32969:1;32951:20;:::i;:::-;32946:25;;32985:20;33003:1;32985:20;:::i;:::-;32980:25;;33107:1;33071:34;33067:42;33064:1;33061:49;33058:75;;;33113:18;;:::i;:::-;33058:75;33157:1;33154;33150:9;33143:16;;32892:273;;;;:::o;33171:305::-;33211:3;33230:20;33248:1;33230:20;:::i;:::-;33225:25;;33264:20;33282:1;33264:20;:::i;:::-;33259:25;;33418:1;33350:66;33346:74;33343:1;33340:81;33337:107;;;33424:18;;:::i;:::-;33337:107;33468:1;33465;33461:9;33454:16;;33171:305;;;;:::o;33482:185::-;33522:1;33539:20;33557:1;33539:20;:::i;:::-;33534:25;;33573:20;33591:1;33573:20;:::i;:::-;33568:25;;33612:1;33602:35;;33617:18;;:::i;:::-;33602:35;33659:1;33656;33652:9;33647:14;;33482:185;;;;:::o;33673:348::-;33713:7;33736:20;33754:1;33736:20;:::i;:::-;33731:25;;33770:20;33788:1;33770:20;:::i;:::-;33765:25;;33958:1;33890:66;33886:74;33883:1;33880:81;33875:1;33868:9;33861:17;33857:105;33854:131;;;33965:18;;:::i;:::-;33854:131;34013:1;34010;34006:9;33995:20;;33673:348;;;;:::o;34027:191::-;34067:4;34087:20;34105:1;34087:20;:::i;:::-;34082:25;;34121:20;34139:1;34121:20;:::i;:::-;34116:25;;34160:1;34157;34154:8;34151:34;;;34165:18;;:::i;:::-;34151:34;34210:1;34207;34203:9;34195:17;;34027:191;;;;:::o;34224:96::-;34261:7;34290:24;34308:5;34290:24;:::i;:::-;34279:35;;34224:96;;;:::o;34326:104::-;34371:7;34400:24;34418:5;34400:24;:::i;:::-;34389:35;;34326:104;;;:::o;34436:90::-;34470:7;34513:5;34506:13;34499:21;34488:32;;34436:90;;;:::o;34532:149::-;34568:7;34608:66;34601:5;34597:78;34586:89;;34532:149;;;:::o;34687:118::-;34724:7;34764:34;34757:5;34753:46;34742:57;;34687:118;;;:::o;34811:126::-;34848:7;34888:42;34881:5;34877:54;34866:65;;34811:126;;;:::o;34943:77::-;34980:7;35009:5;34998:16;;34943:77;;;:::o;35026:154::-;35110:6;35105:3;35100;35087:30;35172:1;35163:6;35158:3;35154:16;35147:27;35026:154;;;:::o;35186:307::-;35254:1;35264:113;35278:6;35275:1;35272:13;35264:113;;;35363:1;35358:3;35354:11;35348:18;35344:1;35339:3;35335:11;35328:39;35300:2;35297:1;35293:10;35288:15;;35264:113;;;35395:6;35392:1;35389:13;35386:101;;;35475:1;35466:6;35461:3;35457:16;35450:27;35386:101;35235:258;35186:307;;;:::o;35499:171::-;35538:3;35561:24;35579:5;35561:24;:::i;:::-;35552:33;;35607:4;35600:5;35597:15;35594:41;;;35615:18;;:::i;:::-;35594:41;35662:1;35655:5;35651:13;35644:20;;35499:171;;;:::o;35676:320::-;35720:6;35757:1;35751:4;35747:12;35737:22;;35804:1;35798:4;35794:12;35825:18;35815:81;;35881:4;35873:6;35869:17;35859:27;;35815:81;35943:2;35935:6;35932:14;35912:18;35909:38;35906:84;;;35962:18;;:::i;:::-;35906:84;35727:269;35676:320;;;:::o;36002:281::-;36085:27;36107:4;36085:27;:::i;:::-;36077:6;36073:40;36215:6;36203:10;36200:22;36179:18;36167:10;36164:34;36161:62;36158:88;;;36226:18;;:::i;:::-;36158:88;36266:10;36262:2;36255:22;36045:238;36002:281;;:::o;36289:233::-;36328:3;36351:24;36369:5;36351:24;:::i;:::-;36342:33;;36397:66;36390:5;36387:77;36384:103;;;36467:18;;:::i;:::-;36384:103;36514:1;36507:5;36503:13;36496:20;;36289:233;;;:::o;36528:176::-;36560:1;36577:20;36595:1;36577:20;:::i;:::-;36572:25;;36611:20;36629:1;36611:20;:::i;:::-;36606:25;;36650:1;36640:35;;36655:18;;:::i;:::-;36640:35;36696:1;36693;36689:9;36684:14;;36528:176;;;;:::o;36710:180::-;36758:77;36755:1;36748:88;36855:4;36852:1;36845:15;36879:4;36876:1;36869:15;36896:180;36944:77;36941:1;36934:88;37041:4;37038:1;37031:15;37065:4;37062:1;37055:15;37082:180;37130:77;37127:1;37120:88;37227:4;37224:1;37217:15;37251:4;37248:1;37241:15;37268:180;37316:77;37313:1;37306:88;37413:4;37410:1;37403:15;37437:4;37434:1;37427:15;37454:180;37502:77;37499:1;37492:88;37599:4;37596:1;37589:15;37623:4;37620:1;37613:15;37640:117;37749:1;37746;37739:12;37763:117;37872:1;37869;37862:12;37886:117;37995:1;37992;37985:12;38009:117;38118:1;38115;38108:12;38132:117;38241:1;38238;38231:12;38255:117;38364:1;38361;38354:12;38378:102;38419:6;38470:2;38466:7;38461:2;38454:5;38450:14;38446:28;38436:38;;38378:102;;;:::o;38486:221::-;38626:34;38622:1;38614:6;38610:14;38603:58;38695:4;38690:2;38682:6;38678:15;38671:29;38486:221;:::o;38713:225::-;38853:34;38849:1;38841:6;38837:14;38830:58;38922:8;38917:2;38909:6;38905:15;38898:33;38713:225;:::o;38944:229::-;39084:34;39080:1;39072:6;39068:14;39061:58;39153:12;39148:2;39140:6;39136:15;39129:37;38944:229;:::o;39179:222::-;39319:34;39315:1;39307:6;39303:14;39296:58;39388:5;39383:2;39375:6;39371:15;39364:30;39179:222;:::o;39407:224::-;39547:34;39543:1;39535:6;39531:14;39524:58;39616:7;39611:2;39603:6;39599:15;39592:32;39407:224;:::o;39637:222::-;39777:34;39773:1;39765:6;39761:14;39754:58;39846:5;39841:2;39833:6;39829:15;39822:30;39637:222;:::o;39865:180::-;40005:32;40001:1;39993:6;39989:14;39982:56;39865:180;:::o;40051:232::-;40191:34;40187:1;40179:6;40175:14;40168:58;40260:15;40255:2;40247:6;40243:15;40236:40;40051:232;:::o;40289:244::-;40429:34;40425:1;40417:6;40413:14;40406:58;40498:27;40493:2;40485:6;40481:15;40474:52;40289:244;:::o;40539:229::-;40679:34;40675:1;40667:6;40663:14;40656:58;40748:12;40743:2;40735:6;40731:15;40724:37;40539:229;:::o;40774:230::-;40914:34;40910:1;40902:6;40898:14;40891:58;40983:13;40978:2;40970:6;40966:15;40959:38;40774:230;:::o;41010:177::-;41150:29;41146:1;41138:6;41134:14;41127:53;41010:177;:::o;41193:225::-;41333:34;41329:1;41321:6;41317:14;41310:58;41402:8;41397:2;41389:6;41385:15;41378:33;41193:225;:::o;41424:182::-;41564:34;41560:1;41552:6;41548:14;41541:58;41424:182;:::o;41612:234::-;41752:34;41748:1;41740:6;41736:14;41729:58;41821:17;41816:2;41808:6;41804:15;41797:42;41612:234;:::o;41852:176::-;41992:28;41988:1;41980:6;41976:14;41969:52;41852:176;:::o;42034:237::-;42174:34;42170:1;42162:6;42158:14;42151:58;42243:20;42238:2;42230:6;42226:15;42219:45;42034:237;:::o;42277:221::-;42417:34;42413:1;42405:6;42401:14;42394:58;42486:4;42481:2;42473:6;42469:15;42462:29;42277:221;:::o;42504:238::-;42644:34;42640:1;42632:6;42628:14;42621:58;42713:21;42708:2;42700:6;42696:15;42689:46;42504:238;:::o;42748:179::-;42888:31;42884:1;42876:6;42872:14;42865:55;42748:179;:::o;42933:220::-;43073:34;43069:1;43061:6;43057:14;43050:58;43142:3;43137:2;43129:6;43125:15;43118:28;42933:220;:::o;43159:227::-;43299:34;43295:1;43287:6;43283:14;43276:58;43368:10;43363:2;43355:6;43351:15;43344:35;43159:227;:::o;43392:233::-;43532:34;43528:1;43520:6;43516:14;43509:58;43601:16;43596:2;43588:6;43584:15;43577:41;43392:233;:::o;43871:232::-;44011:34;44007:1;43999:6;43995:14;43988:58;44080:15;44075:2;44067:6;44063:15;44056:40;43871:232;:::o;44109:122::-;44182:24;44200:5;44182:24;:::i;:::-;44175:5;44172:35;44162:63;;44221:1;44218;44211:12;44162:63;44109:122;:::o;44237:138::-;44318:32;44344:5;44318:32;:::i;:::-;44311:5;44308:43;44298:71;;44365:1;44362;44355:12;44298:71;44237:138;:::o;44381:116::-;44451:21;44466:5;44451:21;:::i;:::-;44444:5;44441:32;44431:60;;44487:1;44484;44477:12;44431:60;44381:116;:::o;44503:120::-;44575:23;44592:5;44575:23;:::i;:::-;44568:5;44565:34;44555:62;;44613:1;44610;44603:12;44555:62;44503:120;:::o;44629:122::-;44702:24;44720:5;44702:24;:::i;:::-;44695:5;44692:35;44682:63;;44741:1;44738;44731:12;44682:63;44629:122;:::o

Swarm Source

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