ETH Price: $2,983.88 (-2.45%)
Gas: 1 Gwei

Token

Icy Apes (ICYAPES)
 

Overview

Max Total Supply

1,984 ICYAPES

Holders

197

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cuteasiann.eth
Balance
20 ICYAPES
0xa68cdf10cd91a4f3d1598c56e76335c33dec1592
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:
IcyApes

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-03-07
*/

// SPDX-License-Identifier: MIT
// File: openzeppelin-solidity/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-solidity/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-solidity/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-solidity/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-solidity/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @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-solidity/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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // 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) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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 _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/IcyApes.sol



pragma solidity ^0.8.4;





contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract IcyApes is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    uint256 public constant maxSupply = 2000;
    uint256 public constant freeMints = 1600;
    uint256 public constant maxFreeMintsPerWallet = 20;
    uint256 public reservedAssets = 0;
    uint256 public maxPurchase = 20;
    uint256 public _price = 0.015 ether;
    string public _baseTokenURI;
    string public _uriSuffix = ".json";
    bool public isSaleActive;
    address proxyRegistryAddress;

    mapping (uint256 => string) private _tokenURIs;
    mapping (address => uint256) private freeMintsWallet;

    constructor(string memory baseURI, address _proxyRegistryAddress) ERC721A("Icy Apes", "ICYAPES") {
        setBaseURI(baseURI);
        isSaleActive = false;
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function mintNFT(uint256 numAssets) external payable {
        require(isSaleActive, "Sale is not active!");
        require(numAssets >= 0 && numAssets <= maxPurchase,
            "You can only mint 20 assets at a time!");
        require(totalSupply().add(numAssets) <= maxSupply - reservedAssets,
            "Not enough assets available...");

        if(totalSupply().add(numAssets) > freeMints){
            require(msg.value >= _price.mul(numAssets),
                "Not enough ETH for this purchase!");
        }else{
            require(totalSupply().add(numAssets) <= freeMints,
                "You would exceed the number of free mints");
            require(freeMintsWallet[msg.sender].add(numAssets) <= maxFreeMintsPerWallet, 
                "You can only mint 20 assets for free!");
            freeMintsWallet[msg.sender] += numAssets;
        }
        _safeMint(msg.sender, numAssets);
    }


    function assetOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory tokensId = new uint256[](tokenCount);
            for (uint256 i = 0; i < tokenCount; i++){
                tokensId[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return tokensId;
        }
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        _price = newPrice;
    }

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

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    function mintNFTS(address _to, uint256 _amount) external onlyOwner() {
        require(totalSupply().add(_amount) <= maxSupply - reservedAssets,
            "Hold up! You would buy more assets than available...");
        _safeMint(_to, _amount);  
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(msg.sender).send(balance),
            "Withdraw did not work...");
    }

    function isApprovedForAll(address owner, address operator) override public view returns(bool){
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"assetOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","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":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numAssets","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintNFTS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedAssets","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600855601460095566354a6ba7a18000600a556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200006692919062000372565b503480156200007457600080fd5b5060405162004d2c38038062004d2c83398181016040528101906200009a9190620004b7565b6040518060400160405280600881526020017f49637920417065730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f494359415045530000000000000000000000000000000000000000000000000081525081600190805190602001906200011e92919062000372565b5080600290805190602001906200013792919062000372565b5050506200015a6200014e620001cf60201b60201c565b620001d760201b60201c565b6200016b826200029d60201b60201c565b6000600d60006101000a81548160ff02191690831515021790555080600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000772565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ad620001cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d36200034860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003239062000544565b60405180910390fd5b80600b90805190602001906200034492919062000372565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003809062000640565b90600052602060002090601f016020900481019282620003a45760008555620003f0565b82601f10620003bf57805160ff1916838001178555620003f0565b82800160010185558215620003f0579182015b82811115620003ef578251825591602001919060010190620003d2565b5b509050620003ff919062000403565b5090565b5b808211156200041e57600081600090555060010162000404565b5090565b60006200043962000433846200058f565b62000566565b9050828152602081018484840111156200045857620004576200070f565b5b620004658482856200060a565b509392505050565b6000815190506200047e8162000758565b92915050565b600082601f8301126200049c576200049b6200070a565b5b8151620004ae84826020860162000422565b91505092915050565b60008060408385031215620004d157620004d062000719565b5b600083015167ffffffffffffffff811115620004f257620004f162000714565b5b620005008582860162000484565b925050602062000513858286016200046d565b9150509250929050565b60006200052c602083620005c5565b915062000539826200072f565b602082019050919050565b600060208201905081810360008301526200055f816200051d565b9050919050565b60006200057262000585565b905062000580828262000676565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ad57620005ac620006db565b5b620005b8826200071e565b9050602081019050919050565b600082825260208201905092915050565b6000620005e382620005ea565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200062a5780820151818401526020810190506200060d565b838111156200063a576000848401525b50505050565b600060028204905060018216806200065957607f821691505b6020821081141562000670576200066f620006ac565b5b50919050565b62000681826200071e565b810181811067ffffffffffffffff82111715620006a357620006a2620006db565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200076381620005d6565b81146200076f57600080fd5b50565b6145aa80620007826000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b146107b2578063d26ea6c0146107dd578063d5abeb0114610806578063e985e9c514610831578063f2fde38b1461086e5761021a565b8063a22cb465146106cf578063b88d4fde146106f8578063bac15a3414610721578063bb3802041461074a578063c87b56dd146107755761021a565b806391b7f5ed116100f257806391b7f5ed146105f7578063926427441461062057806395d89b411461063c578063977b055b146106675780639b2e1d5c146106925761021a565b8063715018a61461057357806380b173351461058a578063853828b6146105b55780638da5cb5b146105cc5761021a565b806334918dfd116101a65780634f6ccce7116101755780634f6ccce71461046857806355f804b3146104a5578063564566a8146104ce5780636352211e146104f957806370a08231146105365761021a565b806334918dfd146103d25780633d302d06146103e957806342842e0e146104145780634cb1ac021461043d5761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806318160ddd14610316578063235b6ea11461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613720565b610897565b6040516102539190613c09565b60405180910390f35b34801561026857600080fd5b506102716109e1565b60405161027e9190613c24565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906137f0565b610a73565b6040516102bb9190613b80565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906136e0565b610aef565b005b3480156102f957600080fd5b50610314600480360381019061030f91906137a7565b610bfa565b005b34801561032257600080fd5b5061032b610c90565b6040516103389190613d86565b60405180910390f35b34801561034d57600080fd5b50610356610ce5565b6040516103639190613d86565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906135ca565b610ceb565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906136e0565b610cfb565b6040516103c99190613d86565b60405180910390f35b3480156103de57600080fd5b506103e7610f02565b005b3480156103f557600080fd5b506103fe610faa565b60405161040b9190613d86565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906135ca565b610fb0565b005b34801561044957600080fd5b50610452610fd0565b60405161045f9190613d86565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906137f0565b610fd5565b60405161049c9190613d86565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906137a7565b611146565b005b3480156104da57600080fd5b506104e36111dc565b6040516104f09190613c09565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906137f0565b6111ef565b60405161052d9190613b80565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061355d565b611205565b60405161056a9190613d86565b60405180910390f35b34801561057f57600080fd5b506105886112d5565b005b34801561059657600080fd5b5061059f61135d565b6040516105ac9190613d86565b60405180910390f35b3480156105c157600080fd5b506105ca611363565b005b3480156105d857600080fd5b506105e161145b565b6040516105ee9190613b80565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906137f0565b611485565b005b61063a600480360381019061063591906137f0565b61150b565b005b34801561064857600080fd5b506106516117ed565b60405161065e9190613c24565b60405180910390f35b34801561067357600080fd5b5061067c61187f565b6040516106899190613d86565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061355d565b611885565b6040516106c69190613be7565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f191906136a0565b61198f565b005b34801561070457600080fd5b5061071f600480360381019061071a919061361d565b611b07565b005b34801561072d57600080fd5b50610748600480360381019061074391906136e0565b611b5a565b005b34801561075657600080fd5b5061075f611c4f565b60405161076c9190613c24565b60405180910390f35b34801561078157600080fd5b5061079c600480360381019061079791906137f0565b611cdd565b6040516107a99190613c24565b60405180910390f35b3480156107be57600080fd5b506107c7611d7e565b6040516107d49190613c24565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061355d565b611e0c565b005b34801561081257600080fd5b5061081b611ecc565b6040516108289190613d86565b60405180910390f35b34801561083d57600080fd5b506108586004803603810190610853919061358a565b611ed2565b6040516108659190613c09565b60405180910390f35b34801561087a57600080fd5b506108956004803603810190610890919061355d565b611fd4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ca57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109da57506109d9826120cc565b5b9050919050565b6060600180546109f090614096565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c90614096565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b6000610a7e82612136565b610ab4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afa826111ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8161219e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb35750610bb181610bac61219e565b611ed2565b155b15610bea576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf58383836121a6565b505050565b610c0261219e565b73ffffffffffffffffffffffffffffffffffffffff16610c2061145b565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613cc6565b60405180910390fd5b80600c9080519060200190610c8c929190613319565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b600a5481565b610cf6838383612258565b505050565b6000610d0683611205565b8210610d3e576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610ef6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610e555750610ee9565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee75786841415610ede578195505050505050610efc565b83806001019450505b505b8080600101915050610d78565b50600080fd5b92915050565b610f0a61219e565b73ffffffffffffffffffffffffffffffffffffffff16610f2861145b565b73ffffffffffffffffffffffffffffffffffffffff1614610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613cc6565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60085481565b610fcb83838360405180602001604052806000815250611b07565b505050565b601481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561110e576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161110057858314156110f75781945050505050611141565b82806001019350505b50808060010191505061100d565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61114e61219e565b73ffffffffffffffffffffffffffffffffffffffff1661116c61145b565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613cc6565b60405180910390fd5b80600b90805190602001906111d8929190613319565b5050565b600d60009054906101000a900460ff1681565b60006111fa82612775565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112dd61219e565b73ffffffffffffffffffffffffffffffffffffffff166112fb61145b565b73ffffffffffffffffffffffffffffffffffffffff1614611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890613cc6565b60405180910390fd5b61135b6000612a1d565b565b61064081565b61136b61219e565b73ffffffffffffffffffffffffffffffffffffffff1661138961145b565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613cc6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613d46565b60405180910390fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61148d61219e565b73ffffffffffffffffffffffffffffffffffffffff166114ab61145b565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613cc6565b60405180910390fd5b80600a8190555050565b600d60009054906101000a900460ff1661155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613d06565b60405180910390fd5b6000811015801561156d57506009548111155b6115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613ce6565b60405180910390fd5b6008546107d06115bc9190613f9a565b6115d6826115c8610c90565b612ae390919063ffffffff16565b1115611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613c86565b60405180910390fd5b61064061163482611626610c90565b612ae390919063ffffffff16565b11156116965761164f81600a54612af990919063ffffffff16565b341015611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c46565b60405180910390fd5b6117e0565b6106406116b3826116a5610c90565b612ae390919063ffffffff16565b11156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613d66565b60405180910390fd5b601461174882600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ae390919063ffffffff16565b1115611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613ca6565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d89190613eb9565b925050819055505b6117ea3382612b0f565b50565b6060600280546117fc90614096565b80601f016020809104026020016040519081016040528092919081815260200182805461182890614096565b80156118755780601f1061184a57610100808354040283529160200191611875565b820191906000526020600020905b81548152906001019060200180831161185857829003601f168201915b5050505050905090565b60095481565b6060600061189283611205565b905060008114156118ef57600067ffffffffffffffff8111156118b8576118b761422f565b5b6040519080825280602002602001820160405280156118e65781602001602082028036833780820191505090505b5091505061198a565b60008167ffffffffffffffff81111561190b5761190a61422f565b5b6040519080825280602002602001820160405280156119395781602001602082028036833780820191505090505b50905060005b82811015611983576119518582610cfb565b82828151811061196457611963614200565b5b602002602001018181525050808061197b906140f9565b91505061193f565b5080925050505b919050565b61199761219e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611a0961219e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab661219e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afb9190613c09565b60405180910390a35050565b611b12848484612258565b611b1e84848484612b2d565b611b54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611b6261219e565b73ffffffffffffffffffffffffffffffffffffffff16611b8061145b565b73ffffffffffffffffffffffffffffffffffffffff1614611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90613cc6565b60405180910390fd5b6008546107d0611be69190613f9a565b611c0082611bf2610c90565b612ae390919063ffffffff16565b1115611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613d26565b60405180910390fd5b611c4b8282612b0f565b5050565b600c8054611c5c90614096565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8890614096565b8015611cd55780601f10611caa57610100808354040283529160200191611cd5565b820191906000526020600020905b815481529060010190602001808311611cb857829003601f168201915b505050505081565b6060611ce882612136565b611d1e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d28612cbb565b90506000815111611d485760405180602001604052806000815250611d76565b80611d5284612d4d565b600c604051602001611d6693929190613b4f565b6040516020818303038152906040525b915050919050565b600b8054611d8b90614096565b80601f0160208091040260200160405190810160405280929190818152602001828054611db790614096565b8015611e045780601f10611dd957610100808354040283529160200191611e04565b820191906000526020600020905b815481529060010190602001808311611de757829003601f168201915b505050505081565b611e1461219e565b73ffffffffffffffffffffffffffffffffffffffff16611e3261145b565b73ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613cc6565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6107d081565b600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611f4a9190613b80565b60206040518083038186803b158015611f6257600080fd5b505afa158015611f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9a919061377a565b73ffffffffffffffffffffffffffffffffffffffff161415611fc0576001915050611fce565b611fca8484612eae565b9150505b92915050565b611fdc61219e565b73ffffffffffffffffffffffffffffffffffffffff16611ffa61145b565b73ffffffffffffffffffffffffffffffffffffffff1614612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790613cc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790613c66565b60405180910390fd5b6120c981612a1d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612197575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061226382612775565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661228a61219e565b73ffffffffffffffffffffffffffffffffffffffff1614806122bd57506122bc82600001516122b761219e565b611ed2565b5b8061230257506122cb61219e565b73ffffffffffffffffffffffffffffffffffffffff166122ea84610a73565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061233b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561240b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124188585856001612f42565b61242860008484600001516121a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127055760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127045782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461276e8585856001612f48565b5050505050565b61277d61339f565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156129e6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129e457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c8578092505050612a18565b5b6001156129e357818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129de578092505050612a18565b6128c9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612af19190613eb9565b905092915050565b60008183612b079190613f40565b905092915050565b612b29828260405180602001604052806000815250612f4e565b5050565b6000612b4e8473ffffffffffffffffffffffffffffffffffffffff16612f60565b15612cae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b7761219e565b8786866040518563ffffffff1660e01b8152600401612b999493929190613b9b565b602060405180830381600087803b158015612bb357600080fd5b505af1925050508015612be457506040513d601f19601f82011682018060405250810190612be1919061374d565b60015b612c5e573d8060008114612c14576040519150601f19603f3d011682016040523d82523d6000602084013e612c19565b606091505b50600081511415612c56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cb3565b600190505b949350505050565b6060600b8054612cca90614096565b80601f0160208091040260200160405190810160405280929190818152602001828054612cf690614096565b8015612d435780601f10612d1857610100808354040283529160200191612d43565b820191906000526020600020905b815481529060010190602001808311612d2657829003601f168201915b5050505050905090565b60606000821415612d95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ea9565b600082905060005b60008214612dc7578080612db0906140f9565b915050600a82612dc09190613f0f565b9150612d9d565b60008167ffffffffffffffff811115612de357612de261422f565b5b6040519080825280601f01601f191660200182016040528015612e155781602001600182028036833780820191505090505b5090505b60008514612ea257600182612e2e9190613f9a565b9150600a85612e3d9190614142565b6030612e499190613eb9565b60f81b818381518110612e5f57612e5e614200565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e9b9190613f0f565b9450612e19565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612f5b8383836001612f83565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561301e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613059576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130666000868387612f42565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156132cb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561327f575061327d6000888488612b2d565b155b156132b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613204565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506133126000868387612f48565b5050505050565b82805461332590614096565b90600052602060002090601f016020900481019282613347576000855561338e565b82601f1061336057805160ff191683800117855561338e565b8280016001018555821561338e579182015b8281111561338d578251825591602001919060010190613372565b5b50905061339b91906133e2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133fb5760008160009055506001016133e3565b5090565b600061341261340d84613dc6565b613da1565b90508281526020810184848401111561342e5761342d614263565b5b613439848285614054565b509392505050565b600061345461344f84613df7565b613da1565b9050828152602081018484840111156134705761346f614263565b5b61347b848285614054565b509392505050565b60008135905061349281614501565b92915050565b6000813590506134a781614518565b92915050565b6000813590506134bc8161452f565b92915050565b6000815190506134d18161452f565b92915050565b600082601f8301126134ec576134eb61425e565b5b81356134fc8482602086016133ff565b91505092915050565b60008151905061351481614546565b92915050565b600082601f83011261352f5761352e61425e565b5b813561353f848260208601613441565b91505092915050565b6000813590506135578161455d565b92915050565b6000602082840312156135735761357261426d565b5b600061358184828501613483565b91505092915050565b600080604083850312156135a1576135a061426d565b5b60006135af85828601613483565b92505060206135c085828601613483565b9150509250929050565b6000806000606084860312156135e3576135e261426d565b5b60006135f186828701613483565b935050602061360286828701613483565b925050604061361386828701613548565b9150509250925092565b600080600080608085870312156136375761363661426d565b5b600061364587828801613483565b945050602061365687828801613483565b935050604061366787828801613548565b925050606085013567ffffffffffffffff81111561368857613687614268565b5b613694878288016134d7565b91505092959194509250565b600080604083850312156136b7576136b661426d565b5b60006136c585828601613483565b92505060206136d685828601613498565b9150509250929050565b600080604083850312156136f7576136f661426d565b5b600061370585828601613483565b925050602061371685828601613548565b9150509250929050565b6000602082840312156137365761373561426d565b5b6000613744848285016134ad565b91505092915050565b6000602082840312156137635761376261426d565b5b6000613771848285016134c2565b91505092915050565b6000602082840312156137905761378f61426d565b5b600061379e84828501613505565b91505092915050565b6000602082840312156137bd576137bc61426d565b5b600082013567ffffffffffffffff8111156137db576137da614268565b5b6137e78482850161351a565b91505092915050565b6000602082840312156138065761380561426d565b5b600061381484828501613548565b91505092915050565b60006138298383613b31565b60208301905092915050565b61383e81613fce565b82525050565b600061384f82613e4d565b6138598185613e7b565b935061386483613e28565b8060005b8381101561389557815161387c888261381d565b975061388783613e6e565b925050600181019050613868565b5085935050505092915050565b6138ab81613fe0565b82525050565b60006138bc82613e58565b6138c68185613e8c565b93506138d6818560208601614063565b6138df81614272565b840191505092915050565b60006138f582613e63565b6138ff8185613e9d565b935061390f818560208601614063565b61391881614272565b840191505092915050565b600061392e82613e63565b6139388185613eae565b9350613948818560208601614063565b80840191505092915050565b6000815461396181614096565b61396b8186613eae565b945060018216600081146139865760018114613997576139ca565b60ff198316865281860193506139ca565b6139a085613e38565b60005b838110156139c2578154818901526001820191506020810190506139a3565b838801955050505b50505092915050565b60006139e0602183613e9d565b91506139eb82614283565b604082019050919050565b6000613a03602683613e9d565b9150613a0e826142d2565b604082019050919050565b6000613a26601e83613e9d565b9150613a3182614321565b602082019050919050565b6000613a49602583613e9d565b9150613a548261434a565b604082019050919050565b6000613a6c602083613e9d565b9150613a7782614399565b602082019050919050565b6000613a8f602683613e9d565b9150613a9a826143c2565b604082019050919050565b6000613ab2601383613e9d565b9150613abd82614411565b602082019050919050565b6000613ad5603483613e9d565b9150613ae08261443a565b604082019050919050565b6000613af8601883613e9d565b9150613b0382614489565b602082019050919050565b6000613b1b602983613e9d565b9150613b26826144b2565b604082019050919050565b613b3a8161404a565b82525050565b613b498161404a565b82525050565b6000613b5b8286613923565b9150613b678285613923565b9150613b738284613954565b9150819050949350505050565b6000602082019050613b956000830184613835565b92915050565b6000608082019050613bb06000830187613835565b613bbd6020830186613835565b613bca6040830185613b40565b8181036060830152613bdc81846138b1565b905095945050505050565b60006020820190508181036000830152613c018184613844565b905092915050565b6000602082019050613c1e60008301846138a2565b92915050565b60006020820190508181036000830152613c3e81846138ea565b905092915050565b60006020820190508181036000830152613c5f816139d3565b9050919050565b60006020820190508181036000830152613c7f816139f6565b9050919050565b60006020820190508181036000830152613c9f81613a19565b9050919050565b60006020820190508181036000830152613cbf81613a3c565b9050919050565b60006020820190508181036000830152613cdf81613a5f565b9050919050565b60006020820190508181036000830152613cff81613a82565b9050919050565b60006020820190508181036000830152613d1f81613aa5565b9050919050565b60006020820190508181036000830152613d3f81613ac8565b9050919050565b60006020820190508181036000830152613d5f81613aeb565b9050919050565b60006020820190508181036000830152613d7f81613b0e565b9050919050565b6000602082019050613d9b6000830184613b40565b92915050565b6000613dab613dbc565b9050613db782826140c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613de157613de061422f565b5b613dea82614272565b9050602081019050919050565b600067ffffffffffffffff821115613e1257613e1161422f565b5b613e1b82614272565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ec48261404a565b9150613ecf8361404a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0457613f03614173565b5b828201905092915050565b6000613f1a8261404a565b9150613f258361404a565b925082613f3557613f346141a2565b5b828204905092915050565b6000613f4b8261404a565b9150613f568361404a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f8f57613f8e614173565b5b828202905092915050565b6000613fa58261404a565b9150613fb08361404a565b925082821015613fc357613fc2614173565b5b828203905092915050565b6000613fd98261402a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061402382613fce565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614081578082015181840152602081019050614066565b83811115614090576000848401525b50505050565b600060028204905060018216806140ae57607f821691505b602082108114156140c2576140c16141d1565b5b50919050565b6140d182614272565b810181811067ffffffffffffffff821117156140f0576140ef61422f565b5b80604052505050565b60006141048261404a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561413757614136614173565b5b600182019050919050565b600061414d8261404a565b91506141588361404a565b925082614168576141676141a2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f7567682045544820666f72207468697320707572636861736560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682061737365747320617661696c61626c652e2e2e0000600082015250565b7f596f752063616e206f6e6c79206d696e742032302061737365747320666f722060008201527f6672656521000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e206f6e6c79206d696e7420323020617373657473206174206160008201527f2074696d65210000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f486f6c642075702120596f7520776f756c6420627579206d6f7265206173736560008201527f7473207468616e20617661696c61626c652e2e2e000000000000000000000000602082015250565b7f576974686472617720646964206e6f7420776f726b2e2e2e0000000000000000600082015250565b7f596f7520776f756c642065786365656420746865206e756d626572206f66206660008201527f726565206d696e74730000000000000000000000000000000000000000000000602082015250565b61450a81613fce565b811461451557600080fd5b50565b61452181613fe0565b811461452c57600080fd5b50565b61453881613fec565b811461454357600080fd5b50565b61454f81614018565b811461455a57600080fd5b50565b6145668161404a565b811461457157600080fd5b5056fea26469706673582212208e4ee972233b70099f8707661a0a211bb1a0487b0f8791c4546c1d89dda49ab464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000010697066733a2f2f6e6f7472656164792f00000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b146107b2578063d26ea6c0146107dd578063d5abeb0114610806578063e985e9c514610831578063f2fde38b1461086e5761021a565b8063a22cb465146106cf578063b88d4fde146106f8578063bac15a3414610721578063bb3802041461074a578063c87b56dd146107755761021a565b806391b7f5ed116100f257806391b7f5ed146105f7578063926427441461062057806395d89b411461063c578063977b055b146106675780639b2e1d5c146106925761021a565b8063715018a61461057357806380b173351461058a578063853828b6146105b55780638da5cb5b146105cc5761021a565b806334918dfd116101a65780634f6ccce7116101755780634f6ccce71461046857806355f804b3146104a5578063564566a8146104ce5780636352211e146104f957806370a08231146105365761021a565b806334918dfd146103d25780633d302d06146103e957806342842e0e146104145780634cb1ac021461043d5761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806318160ddd14610316578063235b6ea11461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613720565b610897565b6040516102539190613c09565b60405180910390f35b34801561026857600080fd5b506102716109e1565b60405161027e9190613c24565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906137f0565b610a73565b6040516102bb9190613b80565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906136e0565b610aef565b005b3480156102f957600080fd5b50610314600480360381019061030f91906137a7565b610bfa565b005b34801561032257600080fd5b5061032b610c90565b6040516103389190613d86565b60405180910390f35b34801561034d57600080fd5b50610356610ce5565b6040516103639190613d86565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906135ca565b610ceb565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906136e0565b610cfb565b6040516103c99190613d86565b60405180910390f35b3480156103de57600080fd5b506103e7610f02565b005b3480156103f557600080fd5b506103fe610faa565b60405161040b9190613d86565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906135ca565b610fb0565b005b34801561044957600080fd5b50610452610fd0565b60405161045f9190613d86565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906137f0565b610fd5565b60405161049c9190613d86565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906137a7565b611146565b005b3480156104da57600080fd5b506104e36111dc565b6040516104f09190613c09565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906137f0565b6111ef565b60405161052d9190613b80565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061355d565b611205565b60405161056a9190613d86565b60405180910390f35b34801561057f57600080fd5b506105886112d5565b005b34801561059657600080fd5b5061059f61135d565b6040516105ac9190613d86565b60405180910390f35b3480156105c157600080fd5b506105ca611363565b005b3480156105d857600080fd5b506105e161145b565b6040516105ee9190613b80565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906137f0565b611485565b005b61063a600480360381019061063591906137f0565b61150b565b005b34801561064857600080fd5b506106516117ed565b60405161065e9190613c24565b60405180910390f35b34801561067357600080fd5b5061067c61187f565b6040516106899190613d86565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061355d565b611885565b6040516106c69190613be7565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f191906136a0565b61198f565b005b34801561070457600080fd5b5061071f600480360381019061071a919061361d565b611b07565b005b34801561072d57600080fd5b50610748600480360381019061074391906136e0565b611b5a565b005b34801561075657600080fd5b5061075f611c4f565b60405161076c9190613c24565b60405180910390f35b34801561078157600080fd5b5061079c600480360381019061079791906137f0565b611cdd565b6040516107a99190613c24565b60405180910390f35b3480156107be57600080fd5b506107c7611d7e565b6040516107d49190613c24565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061355d565b611e0c565b005b34801561081257600080fd5b5061081b611ecc565b6040516108289190613d86565b60405180910390f35b34801561083d57600080fd5b506108586004803603810190610853919061358a565b611ed2565b6040516108659190613c09565b60405180910390f35b34801561087a57600080fd5b506108956004803603810190610890919061355d565b611fd4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ca57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109da57506109d9826120cc565b5b9050919050565b6060600180546109f090614096565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c90614096565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b6000610a7e82612136565b610ab4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afa826111ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8161219e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb35750610bb181610bac61219e565b611ed2565b155b15610bea576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf58383836121a6565b505050565b610c0261219e565b73ffffffffffffffffffffffffffffffffffffffff16610c2061145b565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613cc6565b60405180910390fd5b80600c9080519060200190610c8c929190613319565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b600a5481565b610cf6838383612258565b505050565b6000610d0683611205565b8210610d3e576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610ef6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610e555750610ee9565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee75786841415610ede578195505050505050610efc565b83806001019450505b505b8080600101915050610d78565b50600080fd5b92915050565b610f0a61219e565b73ffffffffffffffffffffffffffffffffffffffff16610f2861145b565b73ffffffffffffffffffffffffffffffffffffffff1614610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613cc6565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60085481565b610fcb83838360405180602001604052806000815250611b07565b505050565b601481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561110e576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161110057858314156110f75781945050505050611141565b82806001019350505b50808060010191505061100d565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61114e61219e565b73ffffffffffffffffffffffffffffffffffffffff1661116c61145b565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613cc6565b60405180910390fd5b80600b90805190602001906111d8929190613319565b5050565b600d60009054906101000a900460ff1681565b60006111fa82612775565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112dd61219e565b73ffffffffffffffffffffffffffffffffffffffff166112fb61145b565b73ffffffffffffffffffffffffffffffffffffffff1614611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890613cc6565b60405180910390fd5b61135b6000612a1d565b565b61064081565b61136b61219e565b73ffffffffffffffffffffffffffffffffffffffff1661138961145b565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613cc6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613d46565b60405180910390fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61148d61219e565b73ffffffffffffffffffffffffffffffffffffffff166114ab61145b565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613cc6565b60405180910390fd5b80600a8190555050565b600d60009054906101000a900460ff1661155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613d06565b60405180910390fd5b6000811015801561156d57506009548111155b6115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613ce6565b60405180910390fd5b6008546107d06115bc9190613f9a565b6115d6826115c8610c90565b612ae390919063ffffffff16565b1115611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613c86565b60405180910390fd5b61064061163482611626610c90565b612ae390919063ffffffff16565b11156116965761164f81600a54612af990919063ffffffff16565b341015611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c46565b60405180910390fd5b6117e0565b6106406116b3826116a5610c90565b612ae390919063ffffffff16565b11156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613d66565b60405180910390fd5b601461174882600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ae390919063ffffffff16565b1115611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613ca6565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d89190613eb9565b925050819055505b6117ea3382612b0f565b50565b6060600280546117fc90614096565b80601f016020809104026020016040519081016040528092919081815260200182805461182890614096565b80156118755780601f1061184a57610100808354040283529160200191611875565b820191906000526020600020905b81548152906001019060200180831161185857829003601f168201915b5050505050905090565b60095481565b6060600061189283611205565b905060008114156118ef57600067ffffffffffffffff8111156118b8576118b761422f565b5b6040519080825280602002602001820160405280156118e65781602001602082028036833780820191505090505b5091505061198a565b60008167ffffffffffffffff81111561190b5761190a61422f565b5b6040519080825280602002602001820160405280156119395781602001602082028036833780820191505090505b50905060005b82811015611983576119518582610cfb565b82828151811061196457611963614200565b5b602002602001018181525050808061197b906140f9565b91505061193f565b5080925050505b919050565b61199761219e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611a0961219e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab661219e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afb9190613c09565b60405180910390a35050565b611b12848484612258565b611b1e84848484612b2d565b611b54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611b6261219e565b73ffffffffffffffffffffffffffffffffffffffff16611b8061145b565b73ffffffffffffffffffffffffffffffffffffffff1614611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90613cc6565b60405180910390fd5b6008546107d0611be69190613f9a565b611c0082611bf2610c90565b612ae390919063ffffffff16565b1115611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613d26565b60405180910390fd5b611c4b8282612b0f565b5050565b600c8054611c5c90614096565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8890614096565b8015611cd55780601f10611caa57610100808354040283529160200191611cd5565b820191906000526020600020905b815481529060010190602001808311611cb857829003601f168201915b505050505081565b6060611ce882612136565b611d1e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d28612cbb565b90506000815111611d485760405180602001604052806000815250611d76565b80611d5284612d4d565b600c604051602001611d6693929190613b4f565b6040516020818303038152906040525b915050919050565b600b8054611d8b90614096565b80601f0160208091040260200160405190810160405280929190818152602001828054611db790614096565b8015611e045780601f10611dd957610100808354040283529160200191611e04565b820191906000526020600020905b815481529060010190602001808311611de757829003601f168201915b505050505081565b611e1461219e565b73ffffffffffffffffffffffffffffffffffffffff16611e3261145b565b73ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613cc6565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6107d081565b600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611f4a9190613b80565b60206040518083038186803b158015611f6257600080fd5b505afa158015611f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9a919061377a565b73ffffffffffffffffffffffffffffffffffffffff161415611fc0576001915050611fce565b611fca8484612eae565b9150505b92915050565b611fdc61219e565b73ffffffffffffffffffffffffffffffffffffffff16611ffa61145b565b73ffffffffffffffffffffffffffffffffffffffff1614612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790613cc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790613c66565b60405180910390fd5b6120c981612a1d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612197575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061226382612775565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661228a61219e565b73ffffffffffffffffffffffffffffffffffffffff1614806122bd57506122bc82600001516122b761219e565b611ed2565b5b8061230257506122cb61219e565b73ffffffffffffffffffffffffffffffffffffffff166122ea84610a73565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061233b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561240b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124188585856001612f42565b61242860008484600001516121a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127055760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127045782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461276e8585856001612f48565b5050505050565b61277d61339f565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156129e6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129e457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c8578092505050612a18565b5b6001156129e357818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129de578092505050612a18565b6128c9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612af19190613eb9565b905092915050565b60008183612b079190613f40565b905092915050565b612b29828260405180602001604052806000815250612f4e565b5050565b6000612b4e8473ffffffffffffffffffffffffffffffffffffffff16612f60565b15612cae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b7761219e565b8786866040518563ffffffff1660e01b8152600401612b999493929190613b9b565b602060405180830381600087803b158015612bb357600080fd5b505af1925050508015612be457506040513d601f19601f82011682018060405250810190612be1919061374d565b60015b612c5e573d8060008114612c14576040519150601f19603f3d011682016040523d82523d6000602084013e612c19565b606091505b50600081511415612c56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cb3565b600190505b949350505050565b6060600b8054612cca90614096565b80601f0160208091040260200160405190810160405280929190818152602001828054612cf690614096565b8015612d435780601f10612d1857610100808354040283529160200191612d43565b820191906000526020600020905b815481529060010190602001808311612d2657829003601f168201915b5050505050905090565b60606000821415612d95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ea9565b600082905060005b60008214612dc7578080612db0906140f9565b915050600a82612dc09190613f0f565b9150612d9d565b60008167ffffffffffffffff811115612de357612de261422f565b5b6040519080825280601f01601f191660200182016040528015612e155781602001600182028036833780820191505090505b5090505b60008514612ea257600182612e2e9190613f9a565b9150600a85612e3d9190614142565b6030612e499190613eb9565b60f81b818381518110612e5f57612e5e614200565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e9b9190613f0f565b9450612e19565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612f5b8383836001612f83565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561301e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613059576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130666000868387612f42565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156132cb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561327f575061327d6000888488612b2d565b155b156132b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613204565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506133126000868387612f48565b5050505050565b82805461332590614096565b90600052602060002090601f016020900481019282613347576000855561338e565b82601f1061336057805160ff191683800117855561338e565b8280016001018555821561338e579182015b8281111561338d578251825591602001919060010190613372565b5b50905061339b91906133e2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133fb5760008160009055506001016133e3565b5090565b600061341261340d84613dc6565b613da1565b90508281526020810184848401111561342e5761342d614263565b5b613439848285614054565b509392505050565b600061345461344f84613df7565b613da1565b9050828152602081018484840111156134705761346f614263565b5b61347b848285614054565b509392505050565b60008135905061349281614501565b92915050565b6000813590506134a781614518565b92915050565b6000813590506134bc8161452f565b92915050565b6000815190506134d18161452f565b92915050565b600082601f8301126134ec576134eb61425e565b5b81356134fc8482602086016133ff565b91505092915050565b60008151905061351481614546565b92915050565b600082601f83011261352f5761352e61425e565b5b813561353f848260208601613441565b91505092915050565b6000813590506135578161455d565b92915050565b6000602082840312156135735761357261426d565b5b600061358184828501613483565b91505092915050565b600080604083850312156135a1576135a061426d565b5b60006135af85828601613483565b92505060206135c085828601613483565b9150509250929050565b6000806000606084860312156135e3576135e261426d565b5b60006135f186828701613483565b935050602061360286828701613483565b925050604061361386828701613548565b9150509250925092565b600080600080608085870312156136375761363661426d565b5b600061364587828801613483565b945050602061365687828801613483565b935050604061366787828801613548565b925050606085013567ffffffffffffffff81111561368857613687614268565b5b613694878288016134d7565b91505092959194509250565b600080604083850312156136b7576136b661426d565b5b60006136c585828601613483565b92505060206136d685828601613498565b9150509250929050565b600080604083850312156136f7576136f661426d565b5b600061370585828601613483565b925050602061371685828601613548565b9150509250929050565b6000602082840312156137365761373561426d565b5b6000613744848285016134ad565b91505092915050565b6000602082840312156137635761376261426d565b5b6000613771848285016134c2565b91505092915050565b6000602082840312156137905761378f61426d565b5b600061379e84828501613505565b91505092915050565b6000602082840312156137bd576137bc61426d565b5b600082013567ffffffffffffffff8111156137db576137da614268565b5b6137e78482850161351a565b91505092915050565b6000602082840312156138065761380561426d565b5b600061381484828501613548565b91505092915050565b60006138298383613b31565b60208301905092915050565b61383e81613fce565b82525050565b600061384f82613e4d565b6138598185613e7b565b935061386483613e28565b8060005b8381101561389557815161387c888261381d565b975061388783613e6e565b925050600181019050613868565b5085935050505092915050565b6138ab81613fe0565b82525050565b60006138bc82613e58565b6138c68185613e8c565b93506138d6818560208601614063565b6138df81614272565b840191505092915050565b60006138f582613e63565b6138ff8185613e9d565b935061390f818560208601614063565b61391881614272565b840191505092915050565b600061392e82613e63565b6139388185613eae565b9350613948818560208601614063565b80840191505092915050565b6000815461396181614096565b61396b8186613eae565b945060018216600081146139865760018114613997576139ca565b60ff198316865281860193506139ca565b6139a085613e38565b60005b838110156139c2578154818901526001820191506020810190506139a3565b838801955050505b50505092915050565b60006139e0602183613e9d565b91506139eb82614283565b604082019050919050565b6000613a03602683613e9d565b9150613a0e826142d2565b604082019050919050565b6000613a26601e83613e9d565b9150613a3182614321565b602082019050919050565b6000613a49602583613e9d565b9150613a548261434a565b604082019050919050565b6000613a6c602083613e9d565b9150613a7782614399565b602082019050919050565b6000613a8f602683613e9d565b9150613a9a826143c2565b604082019050919050565b6000613ab2601383613e9d565b9150613abd82614411565b602082019050919050565b6000613ad5603483613e9d565b9150613ae08261443a565b604082019050919050565b6000613af8601883613e9d565b9150613b0382614489565b602082019050919050565b6000613b1b602983613e9d565b9150613b26826144b2565b604082019050919050565b613b3a8161404a565b82525050565b613b498161404a565b82525050565b6000613b5b8286613923565b9150613b678285613923565b9150613b738284613954565b9150819050949350505050565b6000602082019050613b956000830184613835565b92915050565b6000608082019050613bb06000830187613835565b613bbd6020830186613835565b613bca6040830185613b40565b8181036060830152613bdc81846138b1565b905095945050505050565b60006020820190508181036000830152613c018184613844565b905092915050565b6000602082019050613c1e60008301846138a2565b92915050565b60006020820190508181036000830152613c3e81846138ea565b905092915050565b60006020820190508181036000830152613c5f816139d3565b9050919050565b60006020820190508181036000830152613c7f816139f6565b9050919050565b60006020820190508181036000830152613c9f81613a19565b9050919050565b60006020820190508181036000830152613cbf81613a3c565b9050919050565b60006020820190508181036000830152613cdf81613a5f565b9050919050565b60006020820190508181036000830152613cff81613a82565b9050919050565b60006020820190508181036000830152613d1f81613aa5565b9050919050565b60006020820190508181036000830152613d3f81613ac8565b9050919050565b60006020820190508181036000830152613d5f81613aeb565b9050919050565b60006020820190508181036000830152613d7f81613b0e565b9050919050565b6000602082019050613d9b6000830184613b40565b92915050565b6000613dab613dbc565b9050613db782826140c8565b919050565b6000604051905090565b600067ffffffffffffffff821115613de157613de061422f565b5b613dea82614272565b9050602081019050919050565b600067ffffffffffffffff821115613e1257613e1161422f565b5b613e1b82614272565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ec48261404a565b9150613ecf8361404a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0457613f03614173565b5b828201905092915050565b6000613f1a8261404a565b9150613f258361404a565b925082613f3557613f346141a2565b5b828204905092915050565b6000613f4b8261404a565b9150613f568361404a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f8f57613f8e614173565b5b828202905092915050565b6000613fa58261404a565b9150613fb08361404a565b925082821015613fc357613fc2614173565b5b828203905092915050565b6000613fd98261402a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061402382613fce565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614081578082015181840152602081019050614066565b83811115614090576000848401525b50505050565b600060028204905060018216806140ae57607f821691505b602082108114156140c2576140c16141d1565b5b50919050565b6140d182614272565b810181811067ffffffffffffffff821117156140f0576140ef61422f565b5b80604052505050565b60006141048261404a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561413757614136614173565b5b600182019050919050565b600061414d8261404a565b91506141588361404a565b925082614168576141676141a2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f7567682045544820666f72207468697320707572636861736560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682061737365747320617661696c61626c652e2e2e0000600082015250565b7f596f752063616e206f6e6c79206d696e742032302061737365747320666f722060008201527f6672656521000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e206f6e6c79206d696e7420323020617373657473206174206160008201527f2074696d65210000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f486f6c642075702120596f7520776f756c6420627579206d6f7265206173736560008201527f7473207468616e20617661696c61626c652e2e2e000000000000000000000000602082015250565b7f576974686472617720646964206e6f7420776f726b2e2e2e0000000000000000600082015250565b7f596f7520776f756c642065786365656420746865206e756d626572206f66206660008201527f726565206d696e74730000000000000000000000000000000000000000000000602082015250565b61450a81613fce565b811461451557600080fd5b50565b61452181613fe0565b811461452c57600080fd5b50565b61453881613fec565b811461454357600080fd5b50565b61454f81614018565b811461455a57600080fd5b50565b6145668161404a565b811461457157600080fd5b5056fea26469706673582212208e4ee972233b70099f8707661a0a211bb1a0487b0f8791c4546c1d89dda49ab464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000010697066733a2f2f6e6f7472656164792f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://notready/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 697066733a2f2f6e6f7472656164792f00000000000000000000000000000000


Deployed Bytecode Sourcemap

53610:4159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36949:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39559:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41061:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40624:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56312:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34186:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53948:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41918:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35772:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55985:89;;;;;;;;;;;;;:::i;:::-;;53870:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42159:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53813:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34759:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56204:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54065:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39368:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37385:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:103;;;;;;;;;;;;;:::i;:::-;;53766:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57028:192;;;;;;;;;;;;;:::i;:::-;;11171:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55888:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54476:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39728:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53910:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55415:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41337:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42415:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56762:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54024:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56425:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53990:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57638:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53719:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57228:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12080:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36949:372;37051:4;37103:25;37088:40;;;:11;:40;;;;:105;;;;37160:33;37145:48;;;:11;:48;;;;37088:105;:172;;;;37225:35;37210:50;;;:11;:50;;;;37088:172;:225;;;;37277:36;37301:11;37277:23;:36::i;:::-;37088:225;37068:245;;36949:372;;;:::o;39559:100::-;39613:13;39646:5;39639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39559:100;:::o;41061:204::-;41129:7;41154:16;41162:7;41154;:16::i;:::-;41149:64;;41179:34;;;;;;;;;;;;;;41149:64;41233:15;:24;41249:7;41233:24;;;;;;;;;;;;;;;;;;;;;41226:31;;41061:204;;;:::o;40624:371::-;40697:13;40713:24;40729:7;40713:15;:24::i;:::-;40697:40;;40758:5;40752:11;;:2;:11;;;40748:48;;;40772:24;;;;;;;;;;;;;;40748:48;40829:5;40813:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40839:37;40856:5;40863:12;:10;:12::i;:::-;40839:16;:37::i;:::-;40838:38;40813:63;40809:138;;;40900:35;;;;;;;;;;;;;;40809:138;40959:28;40968:2;40972:7;40981:5;40959:8;:28::i;:::-;40686:309;40624:371;;:::o;56312:105::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56400:9:::1;56387:10;:22;;;;;;;;;;;;:::i;:::-;;56312:105:::0;:::o;34186:280::-;34239:7;34431:12;;;;;;;;;;;34415:13;;;;;;;;;;:28;34408:35;;;;34186:280;:::o;53948:35::-;;;;:::o;41918:170::-;42052:28;42062:4;42068:2;42072:7;42052:9;:28::i;:::-;41918:170;;;:::o;35772:1105::-;35861:7;35894:16;35904:5;35894:9;:16::i;:::-;35885:5;:25;35881:61;;35919:23;;;;;;;;;;;;;;35881:61;35953:22;35978:13;;;;;;;;;;;35953:38;;;;36002:19;36032:25;36233:9;36228:557;36248:14;36244:1;:18;36228:557;;;36288:31;36322:11;:14;36334:1;36322:14;;;;;;;;;;;36288:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36359:9;:16;;;36355:73;;;36400:8;;;36355:73;36476:1;36450:28;;:9;:14;;;:28;;;36446:111;;36523:9;:14;;;36503:34;;36446:111;36600:5;36579:26;;:17;:26;;;36575:195;;;36649:5;36634:11;:20;36630:85;;;36690:1;36683:8;;;;;;;;;36630:85;36737:13;;;;;;;36575:195;36269:516;36228:557;36264:3;;;;;;;36228:557;;;;36861:8;;;35772:1105;;;;;:::o;55985:89::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56054:12:::1;;;;;;;;;;;56053:13;56038:12;;:28;;;;;;;;;;;;;;;;;;55985:89::o:0;53870:33::-;;;;:::o;42159:185::-;42297:39;42314:4;42320:2;42324:7;42297:39;;;;;;;;;;;;:16;:39::i;:::-;42159:185;;;:::o;53813:50::-;53861:2;53813:50;:::o;34759:713::-;34826:7;34846:22;34871:13;;;;;;;;;;34846:38;;;;34895:19;35090:9;35085:328;35105:14;35101:1;:18;35085:328;;;35145:31;35179:11;:14;35191:1;35179:14;;;;;;;;;;;35145:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35217:9;:16;;;35212:186;;35277:5;35262:11;:20;35258:85;;;35318:1;35311:8;;;;;;;;35258:85;35365:13;;;;;;;35212:186;35126:287;35121:3;;;;;;;35085:328;;;;35441:23;;;;;;;;;;;;;;34759:713;;;;:::o;56204:102::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56291:7:::1;56275:13;:23;;;;;;;;;;;;:::i;:::-;;56204:102:::0;:::o;54065:24::-;;;;;;;;;;;;;:::o;39368:124::-;39432:7;39459:20;39471:7;39459:11;:20::i;:::-;:25;;;39452:32;;39368:124;;;:::o;37385:206::-;37449:7;37490:1;37473:19;;:5;:19;;;37469:60;;;37501:28;;;;;;;;;;;;;;37469:60;37555:12;:19;37568:5;37555:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37547:36;;37540:43;;37385:206;;;:::o;11822:103::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11887:30:::1;11914:1;11887:18;:30::i;:::-;11822:103::o:0;53766:40::-;53802:4;53766:40;:::o;57028:192::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57079:15:::1;57097:21;57079:39;;57145:10;57137:24;;:33;57162:7;57137:33;;;;;;;;;;;;;;;;;;;;;;;57129:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57068:152;57028:192::o:0;11171:87::-;11217:7;11244:6;;;;;;;;;;;11237:13;;11171:87;:::o;55888:89::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55961:8:::1;55952:6;:17;;;;55888:89:::0;:::o;54476:929::-;54548:12;;;;;;;;;;;54540:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54616:1;54603:9;:14;;:42;;;;;54634:11;;54621:9;:24;;54603:42;54595:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;54764:14;;53755:4;54752:26;;;;:::i;:::-;54720:28;54738:9;54720:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:58;;54712:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;53802:4;54842:28;54860:9;54842:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:40;54839:516;;;54919:21;54930:9;54919:6;;:10;;:21;;;;:::i;:::-;54906:9;:34;;54898:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;54839:516;;;53802:4;55034:28;55052:9;55034:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:41;;55026:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;53861:2;55161:42;55193:9;55161:15;:27;55177:10;55161:27;;;;;;;;;;;;;;;;:31;;:42;;;;:::i;:::-;:67;;55153:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;55334:9;55303:15;:27;55319:10;55303:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;54839:516;55365:32;55375:10;55387:9;55365;:32::i;:::-;54476:929;:::o;39728:104::-;39784:13;39817:7;39810:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39728:104;:::o;53910:31::-;;;;:::o;55415:465::-;55475:16;55504:18;55525:17;55535:6;55525:9;:17::i;:::-;55504:38;;55571:1;55557:10;:15;55553:320;;;55610:1;55596:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55589:23;;;;;55553:320;55645:25;55687:10;55673:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55645:53;;55718:9;55713:119;55737:10;55733:1;:14;55713:119;;;55786:30;55806:6;55814:1;55786:19;:30::i;:::-;55772:8;55781:1;55772:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;55749:3;;;;;:::i;:::-;;;;55713:119;;;;55853:8;55846:15;;;;55415:465;;;;:::o;41337:279::-;41440:12;:10;:12::i;:::-;41428:24;;:8;:24;;;41424:54;;;41461:17;;;;;;;;;;;;;;41424:54;41536:8;41491:18;:32;41510:12;:10;:12::i;:::-;41491:32;;;;;;;;;;;;;;;:42;41524:8;41491:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41589:8;41560:48;;41575:12;:10;:12::i;:::-;41560:48;;;41599:8;41560:48;;;;;;:::i;:::-;;;;;;;;41337:279;;:::o;42415:342::-;42582:28;42592:4;42598:2;42602:7;42582:9;:28::i;:::-;42626:48;42649:4;42655:2;42659:7;42668:5;42626:22;:48::i;:::-;42621:129;;42698:40;;;;;;;;;;;;;;42621:129;42415:342;;;;:::o;56762:258::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56892:14:::1;;53755:4;56880:26;;;;:::i;:::-;56850;56868:7;56850:13;:11;:13::i;:::-;:17;;:26;;;;:::i;:::-;:56;;56842:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;56987:23;56997:3;57002:7;56987:9;:23::i;:::-;56762:258:::0;;:::o;54024:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56425:329::-;56498:13;56529:16;56537:7;56529;:16::i;:::-;56524:59;;56554:29;;;;;;;;;;;;;;56524:59;56596:21;56620:10;:8;:10::i;:::-;56596:34;;56672:1;56654:7;56648:21;:25;:98;;;;;;;;;;;;;;;;;56700:7;56709:18;:7;:16;:18::i;:::-;56729:10;56683:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56648:98;56641:105;;;56425:329;;;:::o;53990:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57638:128::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57746:12:::1;57723:20;;:35;;;;;;;;;;;;;;;;;;57638:128:::0;:::o;53719:40::-;53755:4;53719:40;:::o;57228:402::-;57316:4;57395:27;57439:20;;;;;;;;;;;57395:65;;57516:8;57475:49;;57483:13;:21;;;57505:5;57483:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57475:49;;;57471:93;;;57548:4;57541:11;;;;;57471:93;57583:39;57606:5;57613:8;57583:22;:39::i;:::-;57576:46;;;57228:402;;;;;:::o;12080:201::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12189:1:::1;12169:22;;:8;:22;;;;12161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12245:28;12264:8;12245:18;:28::i;:::-;12080:201:::0;:::o;23987:157::-;24072:4;24111:25;24096:40;;;:11;:40;;;;24089:47;;23987:157;;;:::o;43012:144::-;43069:4;43103:13;;;;;;;;;;;43093:23;;:7;:23;:55;;;;;43121:11;:20;43133:7;43121:20;;;;;;;;;;;:27;;;;;;;;;;;;43120:28;43093:55;43086:62;;43012:144;;;:::o;9887:98::-;9940:7;9967:10;9960:17;;9887:98;:::o;50228:196::-;50370:2;50343:15;:24;50359:7;50343:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50408:7;50404:2;50388:28;;50397:5;50388:28;;;;;;;;;;;;50228:196;;;:::o;45729:2112::-;45844:35;45882:20;45894:7;45882:11;:20::i;:::-;45844:58;;45915:22;45957:13;:18;;;45941:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;45992:50;46009:13;:18;;;46029:12;:10;:12::i;:::-;45992:16;:50::i;:::-;45941:101;:154;;;;46083:12;:10;:12::i;:::-;46059:36;;:20;46071:7;46059:11;:20::i;:::-;:36;;;45941:154;45915:181;;46114:17;46109:66;;46140:35;;;;;;;;;;;;;;46109:66;46212:4;46190:26;;:13;:18;;;:26;;;46186:67;;46225:28;;;;;;;;;;;;;;46186:67;46282:1;46268:16;;:2;:16;;;46264:52;;;46293:23;;;;;;;;;;;;;;46264:52;46329:43;46351:4;46357:2;46361:7;46370:1;46329:21;:43::i;:::-;46437:49;46454:1;46458:7;46467:13;:18;;;46437:8;:49::i;:::-;46812:1;46782:12;:18;46795:4;46782:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46856:1;46828:12;:16;46841:2;46828:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46902:2;46874:11;:20;46886:7;46874:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46964:15;46919:11;:20;46931:7;46919:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;47232:19;47264:1;47254:7;:11;47232:33;;47325:1;47284:43;;:11;:24;47296:11;47284:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47280:445;;;47509:13;;;;;;;;;;47495:27;;:11;:27;47491:219;;;47579:13;:18;;;47547:11;:24;47559:11;47547:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47662:13;:28;;;47620:11;:24;47632:11;47620:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47491:219;47280:445;46757:979;47772:7;47768:2;47753:27;;47762:4;47753:27;;;;;;;;;;;;47791:42;47812:4;47818:2;47822:7;47831:1;47791:20;:42::i;:::-;45833:2008;;45729:2112;;;:::o;38223:1083::-;38284:21;;:::i;:::-;38318:12;38333:7;38318:22;;38389:13;;;;;;;;;;38382:20;;:4;:20;38378:861;;;38423:31;38457:11;:17;38469:4;38457:17;;;;;;;;;;;38423:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38498:9;:16;;;38493:731;;38569:1;38543:28;;:9;:14;;;:28;;;38539:101;;38607:9;38600:16;;;;;;38539:101;38944:261;38951:4;38944:261;;;38984:6;;;;;;;;39029:11;:17;39041:4;39029:17;;;;;;;;;;;39017:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39103:1;39077:28;;:9;:14;;;:28;;;39073:109;;39145:9;39138:16;;;;;;39073:109;38944:261;;;38493:731;38404:835;38378:861;39267:31;;;;;;;;;;;;;;38223:1083;;;;:::o;12441:191::-;12515:16;12534:6;;;;;;;;;;;12515:25;;12560:8;12551:6;;:17;;;;;;;;;;;;;;;;;;12615:8;12584:40;;12605:8;12584:40;;;;;;;;;;;;12504:128;12441:191;:::o;2903:98::-;2961:7;2992:1;2988;:5;;;;:::i;:::-;2981:12;;2903:98;;;;:::o;3641:::-;3699:7;3730:1;3726;:5;;;;:::i;:::-;3719:12;;3641:98;;;;:::o;43164:104::-;43233:27;43243:2;43247:8;43233:27;;;;;;;;;;;;:9;:27::i;:::-;43164:104;;:::o;50989:790::-;51144:4;51165:15;:2;:13;;;:15::i;:::-;51161:611;;;51217:2;51201:36;;;51238:12;:10;:12::i;:::-;51252:4;51258:7;51267:5;51201:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51197:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51464:1;51447:6;:13;:18;51443:259;;;51497:40;;;;;;;;;;;;;;51443:259;51652:6;51646:13;51637:6;51633:2;51629:15;51622:38;51197:520;51334:45;;;51324:55;;;:6;:55;;;;51317:62;;;;;51161:611;51756:4;51749:11;;50989:790;;;;;;;:::o;56082:114::-;56142:13;56175;56168:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56082:114;:::o;7441:723::-;7497:13;7727:1;7718:5;:10;7714:53;;;7745:10;;;;;;;;;;;;;;;;;;;;;7714:53;7777:12;7792:5;7777:20;;7808:14;7833:78;7848:1;7840:4;:9;7833:78;;7866:8;;;;;:::i;:::-;;;;7897:2;7889:10;;;;;:::i;:::-;;;7833:78;;;7921:19;7953:6;7943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7921:39;;7971:154;7987:1;7978:5;:10;7971:154;;8015:1;8005:11;;;;;:::i;:::-;;;8082:2;8074:5;:10;;;;:::i;:::-;8061:2;:24;;;;:::i;:::-;8048:39;;8031:6;8038;8031:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8111:2;8102:11;;;;;:::i;:::-;;;7971:154;;;8149:6;8135:21;;;;;7441:723;;;;:::o;41687:164::-;41784:4;41808:18;:25;41827:5;41808:25;;;;;;;;;;;;;;;:35;41834:8;41808:35;;;;;;;;;;;;;;;;;;;;;;;;;41801:42;;41687:164;;;;:::o;52427:159::-;;;;;:::o;53245:158::-;;;;;:::o;43631:163::-;43754:32;43760:2;43764:8;43774:5;43781:4;43754:5;:32::i;:::-;43631:163;;;:::o;13880:326::-;13940:4;14197:1;14175:7;:19;;;:23;14168:30;;13880:326;;;:::o;44053:1422::-;44192:20;44215:13;;;;;;;;;;;44192:36;;;;44257:1;44243:16;;:2;:16;;;44239:48;;;44268:19;;;;;;;;;;;;;;44239:48;44314:1;44302:8;:13;44298:44;;;44324:18;;;;;;;;;;;;;;44298:44;44355:61;44385:1;44389:2;44393:12;44407:8;44355:21;:61::i;:::-;44729:8;44694:12;:16;44707:2;44694:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44793:8;44753:12;:16;44766:2;44753:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44852:2;44819:11;:25;44831:12;44819:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44919:15;44869:11;:25;44881:12;44869:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44952:20;44975:12;44952:35;;45009:9;45004:328;45024:8;45020:1;:12;45004:328;;;45088:12;45084:2;45063:38;;45080:1;45063:38;;;;;;;;;;;;45124:4;:68;;;;;45133:59;45164:1;45168:2;45172:12;45186:5;45133:22;:59::i;:::-;45132:60;45124:68;45120:164;;;45224:40;;;;;;;;;;;;;;45120:164;45302:14;;;;;;;45034:3;;;;;;;45004:328;;;;45372:12;45348:13;;:37;;;;;;;;;;;;;;;;;;44669:728;45407:60;45436:1;45440:2;45444:12;45458:8;45407:20;:60::i;:::-;44181:1294;44053:1422;;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:327::-;5885:6;5934:2;5922:9;5913:7;5909:23;5905:32;5902:119;;;5940:79;;:::i;:::-;5902:119;6060:1;6085:52;6129:7;6120:6;6109:9;6105:22;6085:52;:::i;:::-;6075:62;;6031:116;5827:327;;;;:::o;6160:349::-;6229:6;6278:2;6266:9;6257:7;6253:23;6249:32;6246:119;;;6284:79;;:::i;:::-;6246:119;6404:1;6429:63;6484:7;6475:6;6464:9;6460:22;6429:63;:::i;:::-;6419:73;;6375:127;6160:349;;;;:::o;6515:409::-;6614:6;6663:2;6651:9;6642:7;6638:23;6634:32;6631:119;;;6669:79;;:::i;:::-;6631:119;6789:1;6814:93;6899:7;6890:6;6879:9;6875:22;6814:93;:::i;:::-;6804:103;;6760:157;6515:409;;;;:::o;6930:509::-;6999:6;7048:2;7036:9;7027:7;7023:23;7019:32;7016:119;;;7054:79;;:::i;:::-;7016:119;7202:1;7191:9;7187:17;7174:31;7232:18;7224:6;7221:30;7218:117;;;7254:79;;:::i;:::-;7218:117;7359:63;7414:7;7405:6;7394:9;7390:22;7359:63;:::i;:::-;7349:73;;7145:287;6930:509;;;;:::o;7445:329::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:53;7749:7;7740:6;7729:9;7725:22;7704:53;:::i;:::-;7694:63;;7650:117;7445:329;;;;:::o;7780:179::-;7849:10;7870:46;7912:3;7904:6;7870:46;:::i;:::-;7948:4;7943:3;7939:14;7925:28;;7780:179;;;;:::o;7965:118::-;8052:24;8070:5;8052:24;:::i;:::-;8047:3;8040:37;7965:118;;:::o;8119:732::-;8238:3;8267:54;8315:5;8267:54;:::i;:::-;8337:86;8416:6;8411:3;8337:86;:::i;:::-;8330:93;;8447:56;8497:5;8447:56;:::i;:::-;8526:7;8557:1;8542:284;8567:6;8564:1;8561:13;8542:284;;;8643:6;8637:13;8670:63;8729:3;8714:13;8670:63;:::i;:::-;8663:70;;8756:60;8809:6;8756:60;:::i;:::-;8746:70;;8602:224;8589:1;8586;8582:9;8577:14;;8542:284;;;8546:14;8842:3;8835:10;;8243:608;;;8119:732;;;;:::o;8857:109::-;8938:21;8953:5;8938:21;:::i;:::-;8933:3;8926:34;8857:109;;:::o;8972:360::-;9058:3;9086:38;9118:5;9086:38;:::i;:::-;9140:70;9203:6;9198:3;9140:70;:::i;:::-;9133:77;;9219:52;9264:6;9259:3;9252:4;9245:5;9241:16;9219:52;:::i;:::-;9296:29;9318:6;9296:29;:::i;:::-;9291:3;9287:39;9280:46;;9062:270;8972:360;;;;:::o;9338:364::-;9426:3;9454:39;9487:5;9454:39;:::i;:::-;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9589:52;9634:6;9629:3;9622:4;9615:5;9611:16;9589:52;:::i;:::-;9666:29;9688:6;9666:29;:::i;:::-;9661:3;9657:39;9650:46;;9430:272;9338:364;;;;:::o;9708:377::-;9814:3;9842:39;9875:5;9842:39;:::i;:::-;9897:89;9979:6;9974:3;9897:89;:::i;:::-;9890:96;;9995:52;10040:6;10035:3;10028:4;10021:5;10017:16;9995:52;:::i;:::-;10072:6;10067:3;10063:16;10056:23;;9818:267;9708:377;;;;:::o;10115:845::-;10218:3;10255:5;10249:12;10284:36;10310:9;10284:36;:::i;:::-;10336:89;10418:6;10413:3;10336:89;:::i;:::-;10329:96;;10456:1;10445:9;10441:17;10472:1;10467:137;;;;10618:1;10613:341;;;;10434:520;;10467:137;10551:4;10547:9;10536;10532:25;10527:3;10520:38;10587:6;10582:3;10578:16;10571:23;;10467:137;;10613:341;10680:38;10712:5;10680:38;:::i;:::-;10740:1;10754:154;10768:6;10765:1;10762:13;10754:154;;;10842:7;10836:14;10832:1;10827:3;10823:11;10816:35;10892:1;10883:7;10879:15;10868:26;;10790:4;10787:1;10783:12;10778:17;;10754:154;;;10937:6;10932:3;10928:16;10921:23;;10620:334;;10434:520;;10222:738;;10115:845;;;;:::o;10966:366::-;11108:3;11129:67;11193:2;11188:3;11129:67;:::i;:::-;11122:74;;11205:93;11294:3;11205:93;:::i;:::-;11323:2;11318:3;11314:12;11307:19;;10966:366;;;:::o;11338:::-;11480:3;11501:67;11565:2;11560:3;11501:67;:::i;:::-;11494:74;;11577:93;11666:3;11577:93;:::i;:::-;11695:2;11690:3;11686:12;11679:19;;11338:366;;;:::o;11710:::-;11852:3;11873:67;11937:2;11932:3;11873:67;:::i;:::-;11866:74;;11949:93;12038:3;11949:93;:::i;:::-;12067:2;12062:3;12058:12;12051:19;;11710:366;;;:::o;12082:::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12082:366;;;:::o;12454:::-;12596:3;12617:67;12681:2;12676:3;12617:67;:::i;:::-;12610:74;;12693:93;12782:3;12693:93;:::i;:::-;12811:2;12806:3;12802:12;12795:19;;12454:366;;;:::o;12826:::-;12968:3;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13065:93;13154:3;13065:93;:::i;:::-;13183:2;13178:3;13174:12;13167:19;;12826:366;;;:::o;13198:::-;13340:3;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13437:93;13526:3;13437:93;:::i;:::-;13555:2;13550:3;13546:12;13539:19;;13198:366;;;:::o;13570:::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:::-;14456:3;14477:67;14541:2;14536:3;14477:67;:::i;:::-;14470:74;;14553:93;14642:3;14553:93;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14314:366;;;:::o;14686:108::-;14763:24;14781:5;14763:24;:::i;:::-;14758:3;14751:37;14686:108;;:::o;14800:118::-;14887:24;14905:5;14887:24;:::i;:::-;14882:3;14875:37;14800:118;;:::o;14924:589::-;15149:3;15171:95;15262:3;15253:6;15171:95;:::i;:::-;15164:102;;15283:95;15374:3;15365:6;15283:95;:::i;:::-;15276:102;;15395:92;15483:3;15474:6;15395:92;:::i;:::-;15388:99;;15504:3;15497:10;;14924:589;;;;;;:::o;15519:222::-;15612:4;15650:2;15639:9;15635:18;15627:26;;15663:71;15731:1;15720:9;15716:17;15707:6;15663:71;:::i;:::-;15519:222;;;;:::o;15747:640::-;15942:4;15980:3;15969:9;15965:19;15957:27;;15994:71;16062:1;16051:9;16047:17;16038:6;15994:71;:::i;:::-;16075:72;16143:2;16132:9;16128:18;16119:6;16075:72;:::i;:::-;16157;16225:2;16214:9;16210:18;16201:6;16157:72;:::i;:::-;16276:9;16270:4;16266:20;16261:2;16250:9;16246:18;16239:48;16304:76;16375:4;16366:6;16304:76;:::i;:::-;16296:84;;15747:640;;;;;;;:::o;16393:373::-;16536:4;16574:2;16563:9;16559:18;16551:26;;16623:9;16617:4;16613:20;16609:1;16598:9;16594:17;16587:47;16651:108;16754:4;16745:6;16651:108;:::i;:::-;16643:116;;16393:373;;;;:::o;16772:210::-;16859:4;16897:2;16886:9;16882:18;16874:26;;16910:65;16972:1;16961:9;16957:17;16948:6;16910:65;:::i;:::-;16772:210;;;;:::o;16988:313::-;17101:4;17139:2;17128:9;17124:18;17116:26;;17188:9;17182:4;17178:20;17174:1;17163:9;17159:17;17152:47;17216:78;17289:4;17280:6;17216:78;:::i;:::-;17208:86;;16988:313;;;;:::o;17307:419::-;17473:4;17511:2;17500:9;17496:18;17488:26;;17560:9;17554:4;17550:20;17546:1;17535:9;17531:17;17524:47;17588:131;17714:4;17588:131;:::i;:::-;17580:139;;17307:419;;;:::o;17732:::-;17898:4;17936:2;17925:9;17921:18;17913:26;;17985:9;17979:4;17975:20;17971:1;17960:9;17956:17;17949:47;18013:131;18139:4;18013:131;:::i;:::-;18005:139;;17732:419;;;:::o;18157:::-;18323:4;18361:2;18350:9;18346:18;18338:26;;18410:9;18404:4;18400:20;18396:1;18385:9;18381:17;18374:47;18438:131;18564:4;18438:131;:::i;:::-;18430:139;;18157:419;;;:::o;18582:::-;18748:4;18786:2;18775:9;18771:18;18763:26;;18835:9;18829:4;18825:20;18821:1;18810:9;18806:17;18799:47;18863:131;18989:4;18863:131;:::i;:::-;18855:139;;18582:419;;;:::o;19007:::-;19173:4;19211:2;19200:9;19196:18;19188:26;;19260:9;19254:4;19250:20;19246:1;19235:9;19231:17;19224:47;19288:131;19414:4;19288:131;:::i;:::-;19280:139;;19007:419;;;:::o;19432:::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19685:9;19679:4;19675:20;19671:1;19660:9;19656:17;19649:47;19713:131;19839:4;19713:131;:::i;:::-;19705:139;;19432:419;;;:::o;19857:::-;20023:4;20061:2;20050:9;20046:18;20038:26;;20110:9;20104:4;20100:20;20096:1;20085:9;20081:17;20074:47;20138:131;20264:4;20138:131;:::i;:::-;20130:139;;19857:419;;;:::o;20282:::-;20448:4;20486:2;20475:9;20471:18;20463:26;;20535:9;20529:4;20525:20;20521:1;20510:9;20506:17;20499:47;20563:131;20689:4;20563:131;:::i;:::-;20555:139;;20282:419;;;:::o;20707:::-;20873:4;20911:2;20900:9;20896:18;20888:26;;20960:9;20954:4;20950:20;20946:1;20935:9;20931:17;20924:47;20988:131;21114:4;20988:131;:::i;:::-;20980:139;;20707:419;;;:::o;21132:::-;21298:4;21336:2;21325:9;21321:18;21313:26;;21385:9;21379:4;21375:20;21371:1;21360:9;21356:17;21349:47;21413:131;21539:4;21413:131;:::i;:::-;21405:139;;21132:419;;;:::o;21557:222::-;21650:4;21688:2;21677:9;21673:18;21665:26;;21701:71;21769:1;21758:9;21754:17;21745:6;21701:71;:::i;:::-;21557:222;;;;:::o;21785:129::-;21819:6;21846:20;;:::i;:::-;21836:30;;21875:33;21903:4;21895:6;21875:33;:::i;:::-;21785:129;;;:::o;21920:75::-;21953:6;21986:2;21980:9;21970:19;;21920:75;:::o;22001:307::-;22062:4;22152:18;22144:6;22141:30;22138:56;;;22174:18;;:::i;:::-;22138:56;22212:29;22234:6;22212:29;:::i;:::-;22204:37;;22296:4;22290;22286:15;22278:23;;22001:307;;;:::o;22314:308::-;22376:4;22466:18;22458:6;22455:30;22452:56;;;22488:18;;:::i;:::-;22452:56;22526:29;22548:6;22526:29;:::i;:::-;22518:37;;22610:4;22604;22600:15;22592:23;;22314:308;;;:::o;22628:132::-;22695:4;22718:3;22710:11;;22748:4;22743:3;22739:14;22731:22;;22628:132;;;:::o;22766:141::-;22815:4;22838:3;22830:11;;22861:3;22858:1;22851:14;22895:4;22892:1;22882:18;22874:26;;22766:141;;;:::o;22913:114::-;22980:6;23014:5;23008:12;22998:22;;22913:114;;;:::o;23033:98::-;23084:6;23118:5;23112:12;23102:22;;23033:98;;;:::o;23137:99::-;23189:6;23223:5;23217:12;23207:22;;23137:99;;;:::o;23242:113::-;23312:4;23344;23339:3;23335:14;23327:22;;23242:113;;;:::o;23361:184::-;23460:11;23494:6;23489:3;23482:19;23534:4;23529:3;23525:14;23510:29;;23361:184;;;;:::o;23551:168::-;23634:11;23668:6;23663:3;23656:19;23708:4;23703:3;23699:14;23684:29;;23551:168;;;;:::o;23725:169::-;23809:11;23843:6;23838:3;23831:19;23883:4;23878:3;23874:14;23859:29;;23725:169;;;;:::o;23900:148::-;24002:11;24039:3;24024:18;;23900:148;;;;:::o;24054:305::-;24094:3;24113:20;24131:1;24113:20;:::i;:::-;24108:25;;24147:20;24165:1;24147:20;:::i;:::-;24142:25;;24301:1;24233:66;24229:74;24226:1;24223:81;24220:107;;;24307:18;;:::i;:::-;24220:107;24351:1;24348;24344:9;24337:16;;24054:305;;;;:::o;24365:185::-;24405:1;24422:20;24440:1;24422:20;:::i;:::-;24417:25;;24456:20;24474:1;24456:20;:::i;:::-;24451:25;;24495:1;24485:35;;24500:18;;:::i;:::-;24485:35;24542:1;24539;24535:9;24530:14;;24365:185;;;;:::o;24556:348::-;24596:7;24619:20;24637:1;24619:20;:::i;:::-;24614:25;;24653:20;24671:1;24653:20;:::i;:::-;24648:25;;24841:1;24773:66;24769:74;24766:1;24763:81;24758:1;24751:9;24744:17;24740:105;24737:131;;;24848:18;;:::i;:::-;24737:131;24896:1;24893;24889:9;24878:20;;24556:348;;;;:::o;24910:191::-;24950:4;24970:20;24988:1;24970:20;:::i;:::-;24965:25;;25004:20;25022:1;25004:20;:::i;:::-;24999:25;;25043:1;25040;25037:8;25034:34;;;25048:18;;:::i;:::-;25034:34;25093:1;25090;25086:9;25078:17;;24910:191;;;;:::o;25107:96::-;25144:7;25173:24;25191:5;25173:24;:::i;:::-;25162:35;;25107:96;;;:::o;25209:90::-;25243:7;25286:5;25279:13;25272:21;25261:32;;25209:90;;;:::o;25305:149::-;25341:7;25381:66;25374:5;25370:78;25359:89;;25305:149;;;:::o;25460:125::-;25526:7;25555:24;25573:5;25555:24;:::i;:::-;25544:35;;25460:125;;;:::o;25591:126::-;25628:7;25668:42;25661:5;25657:54;25646:65;;25591:126;;;:::o;25723:77::-;25760:7;25789:5;25778:16;;25723:77;;;:::o;25806:154::-;25890:6;25885:3;25880;25867:30;25952:1;25943:6;25938:3;25934:16;25927:27;25806:154;;;:::o;25966:307::-;26034:1;26044:113;26058:6;26055:1;26052:13;26044:113;;;26143:1;26138:3;26134:11;26128:18;26124:1;26119:3;26115:11;26108:39;26080:2;26077:1;26073:10;26068:15;;26044:113;;;26175:6;26172:1;26169:13;26166:101;;;26255:1;26246:6;26241:3;26237:16;26230:27;26166:101;26015:258;25966:307;;;:::o;26279:320::-;26323:6;26360:1;26354:4;26350:12;26340:22;;26407:1;26401:4;26397:12;26428:18;26418:81;;26484:4;26476:6;26472:17;26462:27;;26418:81;26546:2;26538:6;26535:14;26515:18;26512:38;26509:84;;;26565:18;;:::i;:::-;26509:84;26330:269;26279:320;;;:::o;26605:281::-;26688:27;26710:4;26688:27;:::i;:::-;26680:6;26676:40;26818:6;26806:10;26803:22;26782:18;26770:10;26767:34;26764:62;26761:88;;;26829:18;;:::i;:::-;26761:88;26869:10;26865:2;26858:22;26648:238;26605:281;;:::o;26892:233::-;26931:3;26954:24;26972:5;26954:24;:::i;:::-;26945:33;;27000:66;26993:5;26990:77;26987:103;;;27070:18;;:::i;:::-;26987:103;27117:1;27110:5;27106:13;27099:20;;26892:233;;;:::o;27131:176::-;27163:1;27180:20;27198:1;27180:20;:::i;:::-;27175:25;;27214:20;27232:1;27214:20;:::i;:::-;27209:25;;27253:1;27243:35;;27258:18;;:::i;:::-;27243:35;27299:1;27296;27292:9;27287:14;;27131:176;;;;:::o;27313:180::-;27361:77;27358:1;27351:88;27458:4;27455:1;27448:15;27482:4;27479:1;27472:15;27499:180;27547:77;27544:1;27537:88;27644:4;27641:1;27634:15;27668:4;27665:1;27658:15;27685:180;27733:77;27730:1;27723:88;27830:4;27827:1;27820:15;27854:4;27851:1;27844:15;27871:180;27919:77;27916:1;27909:88;28016:4;28013:1;28006:15;28040:4;28037:1;28030:15;28057:180;28105:77;28102:1;28095:88;28202:4;28199:1;28192:15;28226:4;28223:1;28216:15;28243:117;28352:1;28349;28342:12;28366:117;28475:1;28472;28465:12;28489:117;28598:1;28595;28588:12;28612:117;28721:1;28718;28711:12;28735:102;28776:6;28827:2;28823:7;28818:2;28811:5;28807:14;28803:28;28793:38;;28735:102;;;:::o;28843:220::-;28983:34;28979:1;28971:6;28967:14;28960:58;29052:3;29047:2;29039:6;29035:15;29028:28;28843:220;:::o;29069:225::-;29209:34;29205:1;29197:6;29193:14;29186:58;29278:8;29273:2;29265:6;29261:15;29254:33;29069:225;:::o;29300:180::-;29440:32;29436:1;29428:6;29424:14;29417:56;29300:180;:::o;29486:224::-;29626:34;29622:1;29614:6;29610:14;29603:58;29695:7;29690:2;29682:6;29678:15;29671:32;29486:224;:::o;29716:182::-;29856:34;29852:1;29844:6;29840:14;29833:58;29716:182;:::o;29904:225::-;30044:34;30040:1;30032:6;30028:14;30021:58;30113:8;30108:2;30100:6;30096:15;30089:33;29904:225;:::o;30135:169::-;30275:21;30271:1;30263:6;30259:14;30252:45;30135:169;:::o;30310:239::-;30450:34;30446:1;30438:6;30434:14;30427:58;30519:22;30514:2;30506:6;30502:15;30495:47;30310:239;:::o;30555:174::-;30695:26;30691:1;30683:6;30679:14;30672:50;30555:174;:::o;30735:228::-;30875:34;30871:1;30863:6;30859:14;30852:58;30944:11;30939:2;30931:6;30927:15;30920:36;30735:228;:::o;30969:122::-;31042:24;31060:5;31042:24;:::i;:::-;31035:5;31032:35;31022:63;;31081:1;31078;31071:12;31022:63;30969:122;:::o;31097:116::-;31167:21;31182:5;31167:21;:::i;:::-;31160:5;31157:32;31147:60;;31203:1;31200;31193:12;31147:60;31097:116;:::o;31219:120::-;31291:23;31308:5;31291:23;:::i;:::-;31284:5;31281:34;31271:62;;31329:1;31326;31319:12;31271:62;31219:120;:::o;31345:180::-;31447:53;31494:5;31447:53;:::i;:::-;31440:5;31437:64;31427:92;;31515:1;31512;31505:12;31427:92;31345:180;:::o;31531:122::-;31604:24;31622:5;31604:24;:::i;:::-;31597:5;31594:35;31584:63;;31643:1;31640;31633:12;31584:63;31531:122;:::o

Swarm Source

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