ETH Price: $2,390.71 (-0.97%)

Token

V1 Cryptophunks (Wrapped) (WPHV1)
 

Overview

Max Total Supply

104 WPHV1

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WPHV1
0xbefed71039112ee322ef9fb189af1258353b37d4
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:
PhunksV1Wrapper

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: base64-sol/base64.sol



pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/PhunksV1Wrapper.sol



pragma solidity ^0.8.0;






interface CryptoPhunksV1Interface {
  function ownerOf ( uint256 tokenId ) external view returns ( address );
  function getApproved ( uint256 tokenId ) external view returns ( address );
  function isApprovedForAll ( address owner, address operator ) external view returns ( bool );
  function safeTransferFrom ( address from, address to, uint256 tokenId ) external;
}

contract PhunksV1Wrapper is Ownable, ERC721, IERC721Receiver {
    using Strings for uint256;
    
    CryptoPhunksV1Interface public immutable phunkContract;
    
    string private _baseTokenURI;
    string private _baseTokenImageURI;
    uint256 private _tokenSupply;
    
    // I tried to mimic the Wrapped V1 Punk (0x282bdd42f4eb70e7a9d9f40c8fea0825b7f68c5d) description
    // as closely as possible. Taken as a whole, this project presents some conceptual ambiguity
    // as to whether it is a wrapping of the V1 Phunks or a flipping of the wrapped V1 Punks.
    // This is intentional.
    string public constant contractDescription = "V1 Phunks are the original NFT set of the well known CryptoPhunks NFT set released in 2021. However, due to various misunderstandings about the nature of conceptual art, the tokens were deemed non-tradable in their original form by OpenSea after it was discovered that when someone bought these Phunks, they also got the artwork of the associated CryptoPunk, effectively acquiring the NFT at no cost!\\n\\nV1 Phunk owners are now able to wrap their Phunks into an ERC-721 contract and patch over the issue where every Phunk image is Philip the Intern. This recovery of the original Phunks smart contract is a community led and rapidly growing phenomenon consisting of one person. There is no clear leader and all important decisions are voted on by community members.\\n\\nV1 Phunks are not a derivative, but are in fact the original set of Phunks released in 2021 (and actually predate the release of CryptoPhunks NFTs). This is verified on the Ethereum blockchain and is immutable.";
    
    // The image of Philip in the V1 metadata is hosted on S3! Let's put him on IPFS for safety.
    // Someday I hope to upload his likeness to the blockchain itself in SVG form.
    // However this is out of scope for the current project.
    string public constant philipImageURI = "ipfs://QmbGgTwzukwHEe4mcvSQtZ55dfv6cEE8Djm9CUtMBfkYwA";
    
    string public constant contractImageURI = "ipfs://QmYDfMywCGmHwEmBipuGGRpxB4EWdeFoaLpTVhXJdjphox";
    string public constant contractBannerImageURI = "ipfs://QmVvBLMYrQgZuXZ5LixZXTuU3ru3eB2qQ7P769ZX2etD41";
    
    // Mimicing the www.v1punks.io
    string public constant contractExternalURI = "https://www.v1phunks.io/";
    
    // Again, name and symbol flipped from the Punk wrapper
    constructor(address _phunkAddress) ERC721("V1 Cryptophunks (Wrapped)", "WPHV1") {
        _baseTokenURI = "ipfs://QmXwc9E4Mjq5oHspuL77DCQwQQ4TvP7Bse35BRpTXeFtZp/";
        _baseTokenImageURI = "ipfs://QmQd5kibvRWNecTxSKE55YnKbWKN7f4fDjgyXPZU1YxN6o/";
        
        phunkContract = CryptoPhunksV1Interface(_phunkAddress);
    }
    
    // This essentially reimplements the internal _isApprovedOrOwner() function. I consider there not
    // being a public version of this method to be a design flaw in ERC721. If ownerOf() is public
    // there should also be a public way of seeing who can act as the owner under a variety of circumstances
    function canBeWrappedByUser(address user, uint tokenId) public view returns (bool) {
        address tokenOwner = phunkContract.ownerOf(tokenId);
        
        return (
            user == tokenOwner ||
            phunkContract.getApproved(tokenId) == user ||
            phunkContract.isApprovedForAll(tokenOwner, user)
        );
    }
    
    function canBeUnwrappedByUser(address user, uint tokenId) public view returns (bool) {
        return _isApprovedOrOwner(user, tokenId);
    }
    
    // To wrap a V1 Phunk you use safeTransferFrom() to send the Phunk to this contract.
    // The wrapping happens automatically in this callback.
    //
    // Somewhat unbelievably, there is no standard for wrapping an ERC721 token—the V1 Punk wrapper is of course
    // of a very specific non-ERC721 NFT. I took this approach from
    // https://www.reddit.com/r/ethdev/comments/c64sok/methods_to_wrap_erc721_tokens/
    // The more straightforward route is to have a wrap() function on the wrapper that moves the original
    // token on behalf of the user, but that would require an additional transaction for approval
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external virtual override returns (bytes4) {
        require(msg.sender == address(phunkContract), "I can only wrap V1 Phunks");
        require(phunkContract.ownerOf(tokenId) == address(this), "I cannot wrap a Phunk unless I own it");
        
        // A notable improvement over the V1 Punk wrapper which increments via the
        // more verbose `_tokenSupply +=1`
        _tokenSupply++;
        _safeMint(from, tokenId);
        
        return IERC721Receiver.onERC721Received.selector;
    }
    
    function unwrap(uint tokenId) external {
        require(canBeUnwrappedByUser(msg.sender, tokenId), "Not authorized to unwrap");
        
        _tokenSupply--;
        _burn(tokenId);
        
        phunkContract.safeTransferFrom(address(this), msg.sender, tokenId);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    // The image URIs presented a significant artistic decision. Flipping the V1 Punk wrapping would
    // mean mimicing their image URIs which are bare IPFS links (not so fun). Instead, I decided to copy
    // the Phunk V2 image URIs, including the zero-padding for the ids which drives me crazy why
    // would you do that? This is what the URIs look like:
    //
    // ipfs://QmQd5kibvRWNecTxSKE55YnKbWKN7f4fDjgyXPZU1YxN6o/notwrappedpunk3100.png
    //
    // HOWEVER, note that the original filenames were of the form notpunk3100.png. This presented me
    // with an extremely difficult artistic decision:
    // Should the wraps be wrappednotpunk3100.png or notwrappedpunk3100.png?
    
    // The fact that I chose the latter strongly implies that my intent is to flip the wrapped punks, NOT
    // to wrap the flipped Punks (i.e., the Phunks)!
    
    // I gave all the images a purple background to, again, mimic the V1 Punk wrapper. V1 Punks had
    // transparent backgrounds which makes it easy to add the purple. Phunks have a solid color
    // background with varying border colors which made replacing the background color on 10k images
    // not so easy to do! But I think it looks cool and we have to distinguish them from their V2 brethren.
    function wrapPreviewImageURI(uint phunkId) public view returns (string memory) {
        string memory idString = phunkId.toString();
        
        while (bytes(idString).length < 4) {
            idString = string(abi.encodePacked("0", idString));
        }
        
        return string(abi.encodePacked(_baseTokenImageURI, "notwrappedpunk", idString, ".png"));
    }
    
    function wrapPreviewTokenJSON(uint phunkId) public view returns (string memory) {
        return string(abi.encodePacked(_baseURI(), phunkId.toString()));
    }

    function setBaseTokenURI(string memory __baseTokenURI) public onlyOwner {
        _baseTokenURI = __baseTokenURI;
    }
    
    function setBaseTokenImageURI(string memory __baseTokenImageURI) public onlyOwner {
        _baseTokenImageURI = __baseTokenImageURI;
    }

    function exists(uint256 tokenId) external view virtual returns (bool) {
        return _exists(tokenId);
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply;
    }
    
    function contractURI() public pure returns (string memory) {
        return
            string(
                abi.encodePacked(
                    'data:application/json;base64,',
                    Base64.encode(
                        bytes(
                            abi.encodePacked(
                                '{',
                                '"name":"', "V1 Phunks (Wrapped)", '",'
                                '"description":"', contractDescription, '",'
                                '"image":"', contractImageURI, '",'
                                '"external_link":"', contractExternalURI, '"'
                                '}'
                            )
                        )
                    )
                )
            );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_phunkAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"canBeUnwrappedByUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"canBeWrappedByUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBannerImageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractExternalURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractImageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","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":"philipImageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phunkContract","outputs":[{"internalType":"contract CryptoPhunksV1Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenImageURI","type":"string"}],"name":"setBaseTokenImageURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"phunkId","type":"uint256"}],"name":"wrapPreviewImageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"phunkId","type":"uint256"}],"name":"wrapPreviewTokenJSON","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b5060405162004df538038062004df583398181016040528101906200003791906200037c565b6040518060400160405280601981526020017f56312043727970746f7068756e6b7320285772617070656429000000000000008152506040518060400160405280600581526020017f5750485631000000000000000000000000000000000000000000000000000000815250620000c3620000b76200019660201b60201c565b6200019e60201b60201c565b8160019080519060200190620000db92919062000262565b508060029080519060200190620000f492919062000262565b50505060405180606001604052806036815260200162004dbf60369139600790805190602001906200012892919062000262565b5060405180606001604052806036815260200162004d8960369139600890805190602001906200015a92919062000262565b508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505062000413565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027090620003dd565b90600052602060002090601f016020900481019282620002945760008555620002e0565b82601f10620002af57805160ff1916838001178555620002e0565b82800160010185558215620002e0579182015b82811115620002df578251825591602001919060010190620002c2565b5b509050620002ef9190620002f3565b5090565b5b808211156200030e576000816000905550600101620002f4565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003448262000317565b9050919050565b620003568162000337565b81146200036257600080fd5b50565b60008151905062000376816200034b565b92915050565b60006020828403121562000395576200039462000312565b5b6000620003a58482850162000365565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f657607f821691505b602082108114156200040d576200040c620003ae565b5b50919050565b60805161493062000459600039600081816109a501528181610a4a01528181610b6f01528181610f6c015281816110540152818161110c015261154001526149306000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806373a0f7f11161011a578063b88d4fde116100ad578063d65bc71f1161007c578063d65bc71f146105ec578063de0e9a3e1461060a578063e8a3d48514610626578063e985e9c514610644578063f2fde38b14610674576101fb565b8063b88d4fde14610552578063c87b56dd1461056e578063caa178c21461059e578063ccaaac3a146105bc576101fb565b806395d89b41116100e957806395d89b41146104b8578063a22cb465146104d6578063ac9189d7146104f2578063b5e52c6414610522576101fb565b806373a0f7f11461042e578063770cdd631461045e578063872db8891461047c5780638da5cb5b1461049a576101fb565b806323b872dd1161019257806362a241321161016157806362a24132146103a65780636352211e146103c457806370a08231146103f4578063715018a614610424576101fb565b806323b872dd1461032257806330176e131461033e57806342842e0e1461035a5780634f558e7914610376576101fb565b8063150b7a02116101ce578063150b7a021461029a578063155a7a24146102ca57806318160ddd146102e85780632306228714610306576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a600480360381019061021591906128e7565b610690565b604051610227919061292f565b60405180910390f35b610238610772565b60405161024591906129e3565b60405180910390f35b61026860048036038101906102639190612a3b565b610804565b6040516102759190612aa9565b60405180910390f35b61029860048036038101906102939190612af0565b610889565b005b6102b460048036038101906102af9190612b95565b6109a1565b6040516102c19190612c2c565b60405180910390f35b6102d2610b6d565b6040516102df9190612ca6565b60405180910390f35b6102f0610b91565b6040516102fd9190612cd0565b60405180910390f35b610320600480360381019061031b9190612e1b565b610b9b565b005b61033c60048036038101906103379190612e64565b610c31565b005b61035860048036038101906103539190612e1b565b610c91565b005b610374600480360381019061036f9190612e64565b610d27565b005b610390600480360381019061038b9190612a3b565b610d47565b60405161039d919061292f565b60405180910390f35b6103ae610d59565b6040516103bb91906129e3565b60405180910390f35b6103de60048036038101906103d99190612a3b565b610d75565b6040516103eb9190612aa9565b60405180910390f35b61040e60048036038101906104099190612eb7565b610e27565b60405161041b9190612cd0565b60405180910390f35b61042c610edf565b005b61044860048036038101906104439190612af0565b610f67565b604051610455919061292f565b60405180910390f35b6104666111b0565b60405161047391906129e3565b60405180910390f35b6104846111cc565b60405161049191906129e3565b60405180910390f35b6104a26111eb565b6040516104af9190612aa9565b60405180910390f35b6104c0611214565b6040516104cd91906129e3565b60405180910390f35b6104f060048036038101906104eb9190612f10565b6112a6565b005b61050c60048036038101906105079190612a3b565b6112bc565b60405161051991906129e3565b60405180910390f35b61053c60048036038101906105379190612af0565b6112f6565b604051610549919061292f565b60405180910390f35b61056c60048036038101906105679190612ff1565b61130a565b005b61058860048036038101906105839190612a3b565b61136c565b60405161059591906129e3565b60405180910390f35b6105a6611413565b6040516105b391906129e3565b60405180910390f35b6105d660048036038101906105d19190612a3b565b61142f565b6040516105e391906129e3565b60405180910390f35b6105f461149b565b60405161060191906129e3565b60405180910390f35b610624600480360381019061061f9190612a3b565b6114d4565b005b61062e6115d0565b60405161063b91906129e3565b60405180910390f35b61065e60048036038101906106599190613074565b61168a565b60405161066b919061292f565b60405180910390f35b61068e60048036038101906106899190612eb7565b61171e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076b575061076a82611816565b5b9050919050565b606060018054610781906130e3565b80601f01602080910402602001604051908101604052809291908181526020018280546107ad906130e3565b80156107fa5780601f106107cf576101008083540402835291602001916107fa565b820191906000526020600020905b8154815290600101906020018083116107dd57829003601f168201915b5050505050905090565b600061080f82611880565b61084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590613187565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089482610d75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90613219565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109246118ec565b73ffffffffffffffffffffffffffffffffffffffff16148061095357506109528161094d6118ec565b61168a565b5b610992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610989906132ab565b60405180910390fd5b61099c83836118f4565b505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890613317565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e866040518263ffffffff1660e01b8152600401610aa19190612cd0565b602060405180830381865afa158015610abe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae2919061334c565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f906133eb565b60405180910390fd5b60096000815480929190610b4b9061343a565b9190505550610b5a85856119ad565b63150b7a0260e01b905095945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b610ba36118ec565b73ffffffffffffffffffffffffffffffffffffffff16610bc16111eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e906134cf565b60405180910390fd5b8060089080519060200190610c2d9291906127d8565b5050565b610c42610c3c6118ec565b826119cb565b610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890613561565b60405180910390fd5b610c8c838383611aa9565b505050565b610c996118ec565b73ffffffffffffffffffffffffffffffffffffffff16610cb76111eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906134cf565b60405180910390fd5b8060079080519060200190610d239291906127d8565b5050565b610d428383836040518060200160405280600081525061130a565b505050565b6000610d5282611880565b9050919050565b6040518060600160405280603581526020016144496035913981565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e15906135f3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613685565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee76118ec565b73ffffffffffffffffffffffffffffffffffffffff16610f056111eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f52906134cf565b60405180910390fd5b610f656000611d05565b565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610fc39190612cd0565b602060405180830381865afa158015610fe0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611004919061334c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061110457508373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663081812fc856040518263ffffffff1660e01b81526004016110ab9190612cd0565b602060405180830381865afa1580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ec919061334c565b73ffffffffffffffffffffffffffffffffffffffff16145b806111a757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e985e9c582866040518363ffffffff1660e01b81526004016111659291906136a5565b602060405180830381865afa158015611182573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a691906136e3565b5b91505092915050565b60405180606001604052806035815260200161447e6035913981565b6040518061040001604052806103d381526020016145286103d3913981565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611223906130e3565b80601f016020809104026020016040519081016040528092919081815260200182805461124f906130e3565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b6112b86112b16118ec565b8383611dc9565b5050565b60606112c6611f36565b6112cf83611fc8565b6040516020016112e092919061374c565b6040516020818303038152906040529050919050565b600061130283836119cb565b905092915050565b61131b6113156118ec565b836119cb565b61135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613561565b60405180910390fd5b61136684848484612129565b50505050565b606061137782611880565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906137e2565b60405180910390fd5b60006113c0611f36565b905060008151116113e0576040518060200160405280600081525061140b565b806113ea84611fc8565b6040516020016113fb92919061374c565b6040516020818303038152906040525b915050919050565b6040518060600160405280603581526020016144f36035913981565b6060600061143c83611fc8565b90505b600481511015611470578060405160200161145a919061384e565b604051602081830303815290604052905061143f565b60088160405160200161148492919061399c565b604051602081830303815290604052915050919050565b6040518060400160405280601881526020017f68747470733a2f2f7777772e76317068756e6b732e696f2f000000000000000081525081565b6114de33826112f6565b61151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613a22565b60405180910390fd5b6009600081548092919061153090613a42565b919050555061153e81612185565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166342842e0e3033846040518463ffffffff1660e01b815260040161159b93929190613a6c565b600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b5050505050565b60606116666040518061040001604052806103d381526020016145286103d391396040518060600160405280603581526020016144f3603591396040518060400160405280601881526020017f68747470733a2f2f7777772e76317068756e6b732e696f2f000000000000000081525060405160200161165293929190613cb7565b604051602081830303815290604052612296565b6040516020016116769190613d81565b604051602081830303815290604052905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117266118ec565b73ffffffffffffffffffffffffffffffffffffffff166117446111eb565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611791906134cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613e15565b60405180910390fd5b61181381611d05565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196783610d75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119c782826040518060200160405280600081525061240f565b5050565b60006119d682611880565b611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90613ea7565b60405180910390fd5b6000611a2083610d75565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a8f57508373ffffffffffffffffffffffffffffffffffffffff16611a7784610804565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aa05750611a9f818561168a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ac982610d75565b73ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690613f39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690613fcb565b60405180910390fd5b611b9a83838361246a565b611ba56000826118f4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf59190613feb565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4c919061401f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906140c1565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f29919061292f565b60405180910390a3505050565b606060078054611f45906130e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f71906130e3565b8015611fbe5780601f10611f9357610100808354040283529160200191611fbe565b820191906000526020600020905b815481529060010190602001808311611fa157829003601f168201915b5050505050905090565b60606000821415612010576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612124565b600082905060005b6000821461204257808061202b9061343a565b915050600a8261203b9190614110565b9150612018565b60008167ffffffffffffffff81111561205e5761205d612cf0565b5b6040519080825280601f01601f1916602001820160405280156120905781602001600182028036833780820191505090505b5090505b6000851461211d576001826120a99190613feb565b9150600a856120b89190614141565b60306120c4919061401f565b60f81b8183815181106120da576120d9614172565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121169190614110565b9450612094565b8093505050505b919050565b612134848484611aa9565b6121408484848461246f565b61217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217690614213565b60405180910390fd5b50505050565b600061219082610d75565b905061219e8160008461246a565b6121a96000836118f4565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f99190613feb565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000825114156122b95760405180602001604052806000815250905061240a565b60006040518060600160405280604081526020016144b360409139905060006003600285516122e8919061401f565b6122f29190614110565b60046122fe9190614233565b9050600060208261230f919061401f565b67ffffffffffffffff81111561232857612327612cf0565b5b6040519080825280601f01601f19166020018201604052801561235a5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156123c9576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182536001820191505061236e565b6003895106600181146123e357600281146123f3576123fe565b613d3d60f01b60028303526123fe565b603d60f81b60018303525b50505050508093505050505b919050565b61241983836125f7565b612426600084848461246f565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c90614213565b60405180910390fd5b505050565b505050565b60006124908473ffffffffffffffffffffffffffffffffffffffff166127c5565b156125ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124b96118ec565b8786866040518563ffffffff1660e01b81526004016124db94939291906142e2565b6020604051808303816000875af192505050801561251757506040513d601f19601f820116820180604052508101906125149190614343565b60015b61259a573d8060008114612547576040519150601f19603f3d011682016040523d82523d6000602084013e61254c565b606091505b50600081511415612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990614213565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ef565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e906143bc565b60405180910390fd5b61267081611880565b156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790614428565b60405180910390fd5b6126bc6000838361246a565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270c919061401f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127e4906130e3565b90600052602060002090601f016020900481019282612806576000855561284d565b82601f1061281f57805160ff191683800117855561284d565b8280016001018555821561284d579182015b8281111561284c578251825591602001919060010190612831565b5b50905061285a919061285e565b5090565b5b8082111561287757600081600090555060010161285f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128c48161288f565b81146128cf57600080fd5b50565b6000813590506128e1816128bb565b92915050565b6000602082840312156128fd576128fc612885565b5b600061290b848285016128d2565b91505092915050565b60008115159050919050565b61292981612914565b82525050565b60006020820190506129446000830184612920565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612984578082015181840152602081019050612969565b83811115612993576000848401525b50505050565b6000601f19601f8301169050919050565b60006129b58261294a565b6129bf8185612955565b93506129cf818560208601612966565b6129d881612999565b840191505092915050565b600060208201905081810360008301526129fd81846129aa565b905092915050565b6000819050919050565b612a1881612a05565b8114612a2357600080fd5b50565b600081359050612a3581612a0f565b92915050565b600060208284031215612a5157612a50612885565b5b6000612a5f84828501612a26565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a9382612a68565b9050919050565b612aa381612a88565b82525050565b6000602082019050612abe6000830184612a9a565b92915050565b612acd81612a88565b8114612ad857600080fd5b50565b600081359050612aea81612ac4565b92915050565b60008060408385031215612b0757612b06612885565b5b6000612b1585828601612adb565b9250506020612b2685828601612a26565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b5557612b54612b30565b5b8235905067ffffffffffffffff811115612b7257612b71612b35565b5b602083019150836001820283011115612b8e57612b8d612b3a565b5b9250929050565b600080600080600060808688031215612bb157612bb0612885565b5b6000612bbf88828901612adb565b9550506020612bd088828901612adb565b9450506040612be188828901612a26565b935050606086013567ffffffffffffffff811115612c0257612c0161288a565b5b612c0e88828901612b3f565b92509250509295509295909350565b612c268161288f565b82525050565b6000602082019050612c416000830184612c1d565b92915050565b6000819050919050565b6000612c6c612c67612c6284612a68565b612c47565b612a68565b9050919050565b6000612c7e82612c51565b9050919050565b6000612c9082612c73565b9050919050565b612ca081612c85565b82525050565b6000602082019050612cbb6000830184612c97565b92915050565b612cca81612a05565b82525050565b6000602082019050612ce56000830184612cc1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2882612999565b810181811067ffffffffffffffff82111715612d4757612d46612cf0565b5b80604052505050565b6000612d5a61287b565b9050612d668282612d1f565b919050565b600067ffffffffffffffff821115612d8657612d85612cf0565b5b612d8f82612999565b9050602081019050919050565b82818337600083830152505050565b6000612dbe612db984612d6b565b612d50565b905082815260208101848484011115612dda57612dd9612ceb565b5b612de5848285612d9c565b509392505050565b600082601f830112612e0257612e01612b30565b5b8135612e12848260208601612dab565b91505092915050565b600060208284031215612e3157612e30612885565b5b600082013567ffffffffffffffff811115612e4f57612e4e61288a565b5b612e5b84828501612ded565b91505092915050565b600080600060608486031215612e7d57612e7c612885565b5b6000612e8b86828701612adb565b9350506020612e9c86828701612adb565b9250506040612ead86828701612a26565b9150509250925092565b600060208284031215612ecd57612ecc612885565b5b6000612edb84828501612adb565b91505092915050565b612eed81612914565b8114612ef857600080fd5b50565b600081359050612f0a81612ee4565b92915050565b60008060408385031215612f2757612f26612885565b5b6000612f3585828601612adb565b9250506020612f4685828601612efb565b9150509250929050565b600067ffffffffffffffff821115612f6b57612f6a612cf0565b5b612f7482612999565b9050602081019050919050565b6000612f94612f8f84612f50565b612d50565b905082815260208101848484011115612fb057612faf612ceb565b5b612fbb848285612d9c565b509392505050565b600082601f830112612fd857612fd7612b30565b5b8135612fe8848260208601612f81565b91505092915050565b6000806000806080858703121561300b5761300a612885565b5b600061301987828801612adb565b945050602061302a87828801612adb565b935050604061303b87828801612a26565b925050606085013567ffffffffffffffff81111561305c5761305b61288a565b5b61306887828801612fc3565b91505092959194509250565b6000806040838503121561308b5761308a612885565b5b600061309985828601612adb565b92505060206130aa85828601612adb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130fb57607f821691505b6020821081141561310f5761310e6130b4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613171602c83612955565b915061317c82613115565b604082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613203602183612955565b915061320e826131a7565b604082019050919050565b60006020820190508181036000830152613232816131f6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613295603883612955565b91506132a082613239565b604082019050919050565b600060208201905081810360008301526132c481613288565b9050919050565b7f492063616e206f6e6c792077726170205631205068756e6b7300000000000000600082015250565b6000613301601983612955565b915061330c826132cb565b602082019050919050565b60006020820190508181036000830152613330816132f4565b9050919050565b60008151905061334681612ac4565b92915050565b60006020828403121561336257613361612885565b5b600061337084828501613337565b91505092915050565b7f492063616e6e6f7420777261702061205068756e6b20756e6c6573732049206f60008201527f776e206974000000000000000000000000000000000000000000000000000000602082015250565b60006133d5602583612955565b91506133e082613379565b604082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061344582612a05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134785761347761340b565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134b9602083612955565b91506134c482613483565b602082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061354b603183612955565b9150613556826134ef565b604082019050919050565b6000602082019050818103600083015261357a8161353e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006135dd602983612955565b91506135e882613581565b604082019050919050565b6000602082019050818103600083015261360c816135d0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061366f602a83612955565b915061367a82613613565b604082019050919050565b6000602082019050818103600083015261369e81613662565b9050919050565b60006040820190506136ba6000830185612a9a565b6136c76020830184612a9a565b9392505050565b6000815190506136dd81612ee4565b92915050565b6000602082840312156136f9576136f8612885565b5b6000613707848285016136ce565b91505092915050565b600081905092915050565b60006137268261294a565b6137308185613710565b9350613740818560208601612966565b80840191505092915050565b6000613758828561371b565b9150613764828461371b565b91508190509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137cc602f83612955565b91506137d782613770565b604082019050919050565b600060208201905081810360008301526137fb816137bf565b9050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000613838600183613710565b915061384382613802565b600182019050919050565b60006138598261382b565b9150613865828461371b565b915081905092915050565b60008190508160005260206000209050919050565b60008154613892816130e3565b61389c8186613710565b945060018216600081146138b757600181146138c8576138fb565b60ff198316865281860193506138fb565b6138d185613870565b60005b838110156138f3578154818901526001820191506020810190506138d4565b838801955050505b50505092915050565b7f6e6f747772617070656470756e6b000000000000000000000000000000000000600082015250565b600061393a600e83613710565b915061394582613904565b600e82019050919050565b7f2e706e6700000000000000000000000000000000000000000000000000000000600082015250565b6000613986600483613710565b915061399182613950565b600482019050919050565b60006139a88285613885565b91506139b38261392d565b91506139bf828461371b565b91506139ca82613979565b91508190509392505050565b7f4e6f7420617574686f72697a656420746f20756e777261700000000000000000600082015250565b6000613a0c601883612955565b9150613a17826139d6565b602082019050919050565b60006020820190508181036000830152613a3b816139ff565b9050919050565b6000613a4d82612a05565b91506000821415613a6157613a6061340b565b5b600182039050919050565b6000606082019050613a816000830186612a9a565b613a8e6020830185612a9a565b613a9b6040830184612cc1565b949350505050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613ad9600183613710565b9150613ae482613aa3565b600182019050919050565b7f226e616d65223a22000000000000000000000000000000000000000000000000600082015250565b6000613b25600883613710565b9150613b3082613aef565b600882019050919050565b7f5631205068756e6b732028577261707065642900000000000000000000000000600082015250565b6000613b71601383613710565b9150613b7c82613b3b565b601382019050919050565b7f222c226465736372697074696f6e223a22000000000000000000000000000000600082015250565b6000613bbd601183613710565b9150613bc882613b87565b601182019050919050565b7f222c22696d616765223a22000000000000000000000000000000000000000000600082015250565b6000613c09600b83613710565b9150613c1482613bd3565b600b82019050919050565b7f222c2265787465726e616c5f6c696e6b223a2200000000000000000000000000600082015250565b6000613c55601383613710565b9150613c6082613c1f565b601382019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000613ca1600283613710565b9150613cac82613c6b565b600282019050919050565b6000613cc282613acc565b9150613ccd82613b18565b9150613cd882613b64565b9150613ce382613bb0565b9150613cef828661371b565b9150613cfa82613bfc565b9150613d06828561371b565b9150613d1182613c48565b9150613d1d828461371b565b9150613d2882613c94565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000613d6b601d83613710565b9150613d7682613d35565b601d82019050919050565b6000613d8c82613d5e565b9150613d98828461371b565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dff602683612955565b9150613e0a82613da3565b604082019050919050565b60006020820190508181036000830152613e2e81613df2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e91602c83612955565b9150613e9c82613e35565b604082019050919050565b60006020820190508181036000830152613ec081613e84565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613f23602983612955565b9150613f2e82613ec7565b604082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fb5602483612955565b9150613fc082613f59565b604082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b6000613ff682612a05565b915061400183612a05565b9250828210156140145761401361340b565b5b828203905092915050565b600061402a82612a05565b915061403583612a05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561406a5761406961340b565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140ab601983612955565b91506140b682614075565b602082019050919050565b600060208201905081810360008301526140da8161409e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061411b82612a05565b915061412683612a05565b925082614136576141356140e1565b5b828204905092915050565b600061414c82612a05565b915061415783612a05565b925082614167576141666140e1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006141fd603283612955565b9150614208826141a1565b604082019050919050565b6000602082019050818103600083015261422c816141f0565b9050919050565b600061423e82612a05565b915061424983612a05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142825761428161340b565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b60006142b48261428d565b6142be8185614298565b93506142ce818560208601612966565b6142d781612999565b840191505092915050565b60006080820190506142f76000830187612a9a565b6143046020830186612a9a565b6143116040830185612cc1565b818103606083015261432381846142a9565b905095945050505050565b60008151905061433d816128bb565b92915050565b60006020828403121561435957614358612885565b5b60006143678482850161432e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006143a6602083612955565b91506143b182614370565b602082019050919050565b600060208201905081810360008301526143d581614399565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614412601c83612955565b915061441d826143dc565b602082019050919050565b6000602082019050818103600083015261444181614405565b905091905056fe697066733a2f2f516d5676424c4d597251675a75585a354c69785a5854755533727533654232715137503736395a58326574443431697066733a2f2f516d62476754777a756b77484565346d63765351745a35356466763663454538446a6d394355744d42666b5977414142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f697066733a2f2f516d5944664d797743476d4877456d426970754747527078423445576465466f614c70545668584a646a70686f785631205068756e6b732061726520746865206f726967696e616c204e465420736574206f66207468652077656c6c206b6e6f776e2043727970746f5068756e6b73204e4654207365742072656c656173656420696e20323032312e20486f77657665722c2064756520746f20766172696f7573206d6973756e6465727374616e64696e67732061626f757420746865206e6174757265206f6620636f6e6365707475616c206172742c2074686520746f6b656e732077657265206465656d6564206e6f6e2d7472616461626c6520696e207468656972206f726967696e616c20666f726d206279204f70656e5365612061667465722069742077617320646973636f76657265642074686174207768656e20736f6d656f6e6520626f75676874207468657365205068756e6b732c207468657920616c736f20676f742074686520617274776f726b206f6620746865206173736f6369617465642043727970746f50756e6b2c206566666563746976656c7920616371756972696e6720746865204e4654206174206e6f20636f7374215c6e5c6e5631205068756e6b206f776e65727320617265206e6f772061626c6520746f2077726170207468656972205068756e6b7320696e746f20616e204552432d37323120636f6e747261637420616e64207061746368206f76657220746865206973737565207768657265206576657279205068756e6b20696d616765206973205068696c69702074686520496e7465726e2e2054686973207265636f76657279206f6620746865206f726967696e616c205068756e6b7320736d61727420636f6e7472616374206973206120636f6d6d756e697479206c656420616e642072617069646c792067726f77696e67207068656e6f6d656e6f6e20636f6e73697374696e67206f66206f6e6520706572736f6e2e205468657265206973206e6f20636c656172206c656164657220616e6420616c6c20696d706f7274616e74206465636973696f6e732061726520766f746564206f6e20627920636f6d6d756e697479206d656d626572732e5c6e5c6e5631205068756e6b7320617265206e6f74206120646572697661746976652c206275742061726520696e206661637420746865206f726967696e616c20736574206f66205068756e6b732072656c656173656420696e20323032312028616e642061637475616c6c792070726564617465207468652072656c65617365206f662043727970746f5068756e6b73204e465473292e2054686973206973207665726966696564206f6e2074686520457468657265756d20626c6f636b636861696e20616e6420697320696d6d757461626c652ea26469706673582212202918c85da9d0bdba23adbc355fd7999355e7220a16675f4132d0c9733d8dc3b164736f6c634300080b0033697066733a2f2f516d5164356b69627652574e65635478534b453535596e4b62574b4e37663466446a677958505a553159784e366f2f697066733a2f2f516d5877633945344d6a71356f487370754c37374443517751513454765037427365333542527054586546745a702f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806373a0f7f11161011a578063b88d4fde116100ad578063d65bc71f1161007c578063d65bc71f146105ec578063de0e9a3e1461060a578063e8a3d48514610626578063e985e9c514610644578063f2fde38b14610674576101fb565b8063b88d4fde14610552578063c87b56dd1461056e578063caa178c21461059e578063ccaaac3a146105bc576101fb565b806395d89b41116100e957806395d89b41146104b8578063a22cb465146104d6578063ac9189d7146104f2578063b5e52c6414610522576101fb565b806373a0f7f11461042e578063770cdd631461045e578063872db8891461047c5780638da5cb5b1461049a576101fb565b806323b872dd1161019257806362a241321161016157806362a24132146103a65780636352211e146103c457806370a08231146103f4578063715018a614610424576101fb565b806323b872dd1461032257806330176e131461033e57806342842e0e1461035a5780634f558e7914610376576101fb565b8063150b7a02116101ce578063150b7a021461029a578063155a7a24146102ca57806318160ddd146102e85780632306228714610306576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a600480360381019061021591906128e7565b610690565b604051610227919061292f565b60405180910390f35b610238610772565b60405161024591906129e3565b60405180910390f35b61026860048036038101906102639190612a3b565b610804565b6040516102759190612aa9565b60405180910390f35b61029860048036038101906102939190612af0565b610889565b005b6102b460048036038101906102af9190612b95565b6109a1565b6040516102c19190612c2c565b60405180910390f35b6102d2610b6d565b6040516102df9190612ca6565b60405180910390f35b6102f0610b91565b6040516102fd9190612cd0565b60405180910390f35b610320600480360381019061031b9190612e1b565b610b9b565b005b61033c60048036038101906103379190612e64565b610c31565b005b61035860048036038101906103539190612e1b565b610c91565b005b610374600480360381019061036f9190612e64565b610d27565b005b610390600480360381019061038b9190612a3b565b610d47565b60405161039d919061292f565b60405180910390f35b6103ae610d59565b6040516103bb91906129e3565b60405180910390f35b6103de60048036038101906103d99190612a3b565b610d75565b6040516103eb9190612aa9565b60405180910390f35b61040e60048036038101906104099190612eb7565b610e27565b60405161041b9190612cd0565b60405180910390f35b61042c610edf565b005b61044860048036038101906104439190612af0565b610f67565b604051610455919061292f565b60405180910390f35b6104666111b0565b60405161047391906129e3565b60405180910390f35b6104846111cc565b60405161049191906129e3565b60405180910390f35b6104a26111eb565b6040516104af9190612aa9565b60405180910390f35b6104c0611214565b6040516104cd91906129e3565b60405180910390f35b6104f060048036038101906104eb9190612f10565b6112a6565b005b61050c60048036038101906105079190612a3b565b6112bc565b60405161051991906129e3565b60405180910390f35b61053c60048036038101906105379190612af0565b6112f6565b604051610549919061292f565b60405180910390f35b61056c60048036038101906105679190612ff1565b61130a565b005b61058860048036038101906105839190612a3b565b61136c565b60405161059591906129e3565b60405180910390f35b6105a6611413565b6040516105b391906129e3565b60405180910390f35b6105d660048036038101906105d19190612a3b565b61142f565b6040516105e391906129e3565b60405180910390f35b6105f461149b565b60405161060191906129e3565b60405180910390f35b610624600480360381019061061f9190612a3b565b6114d4565b005b61062e6115d0565b60405161063b91906129e3565b60405180910390f35b61065e60048036038101906106599190613074565b61168a565b60405161066b919061292f565b60405180910390f35b61068e60048036038101906106899190612eb7565b61171e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076b575061076a82611816565b5b9050919050565b606060018054610781906130e3565b80601f01602080910402602001604051908101604052809291908181526020018280546107ad906130e3565b80156107fa5780601f106107cf576101008083540402835291602001916107fa565b820191906000526020600020905b8154815290600101906020018083116107dd57829003601f168201915b5050505050905090565b600061080f82611880565b61084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590613187565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089482610d75565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90613219565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109246118ec565b73ffffffffffffffffffffffffffffffffffffffff16148061095357506109528161094d6118ec565b61168a565b5b610992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610989906132ab565b60405180910390fd5b61099c83836118f4565b505050565b60007f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890613317565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce73ffffffffffffffffffffffffffffffffffffffff16636352211e866040518263ffffffff1660e01b8152600401610aa19190612cd0565b602060405180830381865afa158015610abe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae2919061334c565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f906133eb565b60405180910390fd5b60096000815480929190610b4b9061343a565b9190505550610b5a85856119ad565b63150b7a0260e01b905095945050505050565b7f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce81565b6000600954905090565b610ba36118ec565b73ffffffffffffffffffffffffffffffffffffffff16610bc16111eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e906134cf565b60405180910390fd5b8060089080519060200190610c2d9291906127d8565b5050565b610c42610c3c6118ec565b826119cb565b610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890613561565b60405180910390fd5b610c8c838383611aa9565b505050565b610c996118ec565b73ffffffffffffffffffffffffffffffffffffffff16610cb76111eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906134cf565b60405180910390fd5b8060079080519060200190610d239291906127d8565b5050565b610d428383836040518060200160405280600081525061130a565b505050565b6000610d5282611880565b9050919050565b6040518060600160405280603581526020016144496035913981565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e15906135f3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613685565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee76118ec565b73ffffffffffffffffffffffffffffffffffffffff16610f056111eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f52906134cf565b60405180910390fd5b610f656000611d05565b565b6000807f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce73ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610fc39190612cd0565b602060405180830381865afa158015610fe0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611004919061334c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061110457508373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce73ffffffffffffffffffffffffffffffffffffffff1663081812fc856040518263ffffffff1660e01b81526004016110ab9190612cd0565b602060405180830381865afa1580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ec919061334c565b73ffffffffffffffffffffffffffffffffffffffff16145b806111a757507f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce73ffffffffffffffffffffffffffffffffffffffff1663e985e9c582866040518363ffffffff1660e01b81526004016111659291906136a5565b602060405180830381865afa158015611182573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a691906136e3565b5b91505092915050565b60405180606001604052806035815260200161447e6035913981565b6040518061040001604052806103d381526020016145286103d3913981565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611223906130e3565b80601f016020809104026020016040519081016040528092919081815260200182805461124f906130e3565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b5050505050905090565b6112b86112b16118ec565b8383611dc9565b5050565b60606112c6611f36565b6112cf83611fc8565b6040516020016112e092919061374c565b6040516020818303038152906040529050919050565b600061130283836119cb565b905092915050565b61131b6113156118ec565b836119cb565b61135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613561565b60405180910390fd5b61136684848484612129565b50505050565b606061137782611880565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906137e2565b60405180910390fd5b60006113c0611f36565b905060008151116113e0576040518060200160405280600081525061140b565b806113ea84611fc8565b6040516020016113fb92919061374c565b6040516020818303038152906040525b915050919050565b6040518060600160405280603581526020016144f36035913981565b6060600061143c83611fc8565b90505b600481511015611470578060405160200161145a919061384e565b604051602081830303815290604052905061143f565b60088160405160200161148492919061399c565b604051602081830303815290604052915050919050565b6040518060400160405280601881526020017f68747470733a2f2f7777772e76317068756e6b732e696f2f000000000000000081525081565b6114de33826112f6565b61151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613a22565b60405180910390fd5b6009600081548092919061153090613a42565b919050555061153e81612185565b7f000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033846040518463ffffffff1660e01b815260040161159b93929190613a6c565b600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b5050505050565b60606116666040518061040001604052806103d381526020016145286103d391396040518060600160405280603581526020016144f3603591396040518060400160405280601881526020017f68747470733a2f2f7777772e76317068756e6b732e696f2f000000000000000081525060405160200161165293929190613cb7565b604051602081830303815290604052612296565b6040516020016116769190613d81565b604051602081830303815290604052905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117266118ec565b73ffffffffffffffffffffffffffffffffffffffff166117446111eb565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611791906134cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613e15565b60405180910390fd5b61181381611d05565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196783610d75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119c782826040518060200160405280600081525061240f565b5050565b60006119d682611880565b611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90613ea7565b60405180910390fd5b6000611a2083610d75565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a8f57508373ffffffffffffffffffffffffffffffffffffffff16611a7784610804565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aa05750611a9f818561168a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ac982610d75565b73ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690613f39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690613fcb565b60405180910390fd5b611b9a83838361246a565b611ba56000826118f4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf59190613feb565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4c919061401f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906140c1565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f29919061292f565b60405180910390a3505050565b606060078054611f45906130e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f71906130e3565b8015611fbe5780601f10611f9357610100808354040283529160200191611fbe565b820191906000526020600020905b815481529060010190602001808311611fa157829003601f168201915b5050505050905090565b60606000821415612010576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612124565b600082905060005b6000821461204257808061202b9061343a565b915050600a8261203b9190614110565b9150612018565b60008167ffffffffffffffff81111561205e5761205d612cf0565b5b6040519080825280601f01601f1916602001820160405280156120905781602001600182028036833780820191505090505b5090505b6000851461211d576001826120a99190613feb565b9150600a856120b89190614141565b60306120c4919061401f565b60f81b8183815181106120da576120d9614172565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121169190614110565b9450612094565b8093505050505b919050565b612134848484611aa9565b6121408484848461246f565b61217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217690614213565b60405180910390fd5b50505050565b600061219082610d75565b905061219e8160008461246a565b6121a96000836118f4565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f99190613feb565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000825114156122b95760405180602001604052806000815250905061240a565b60006040518060600160405280604081526020016144b360409139905060006003600285516122e8919061401f565b6122f29190614110565b60046122fe9190614233565b9050600060208261230f919061401f565b67ffffffffffffffff81111561232857612327612cf0565b5b6040519080825280601f01601f19166020018201604052801561235a5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156123c9576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182536001820191505061236e565b6003895106600181146123e357600281146123f3576123fe565b613d3d60f01b60028303526123fe565b603d60f81b60018303525b50505050508093505050505b919050565b61241983836125f7565b612426600084848461246f565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c90614213565b60405180910390fd5b505050565b505050565b60006124908473ffffffffffffffffffffffffffffffffffffffff166127c5565b156125ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124b96118ec565b8786866040518563ffffffff1660e01b81526004016124db94939291906142e2565b6020604051808303816000875af192505050801561251757506040513d601f19601f820116820180604052508101906125149190614343565b60015b61259a573d8060008114612547576040519150601f19603f3d011682016040523d82523d6000602084013e61254c565b606091505b50600081511415612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990614213565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ef565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e906143bc565b60405180910390fd5b61267081611880565b156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790614428565b60405180910390fd5b6126bc6000838361246a565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270c919061401f565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127e4906130e3565b90600052602060002090601f016020900481019282612806576000855561284d565b82601f1061281f57805160ff191683800117855561284d565b8280016001018555821561284d579182015b8281111561284c578251825591602001919060010190612831565b5b50905061285a919061285e565b5090565b5b8082111561287757600081600090555060010161285f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128c48161288f565b81146128cf57600080fd5b50565b6000813590506128e1816128bb565b92915050565b6000602082840312156128fd576128fc612885565b5b600061290b848285016128d2565b91505092915050565b60008115159050919050565b61292981612914565b82525050565b60006020820190506129446000830184612920565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612984578082015181840152602081019050612969565b83811115612993576000848401525b50505050565b6000601f19601f8301169050919050565b60006129b58261294a565b6129bf8185612955565b93506129cf818560208601612966565b6129d881612999565b840191505092915050565b600060208201905081810360008301526129fd81846129aa565b905092915050565b6000819050919050565b612a1881612a05565b8114612a2357600080fd5b50565b600081359050612a3581612a0f565b92915050565b600060208284031215612a5157612a50612885565b5b6000612a5f84828501612a26565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a9382612a68565b9050919050565b612aa381612a88565b82525050565b6000602082019050612abe6000830184612a9a565b92915050565b612acd81612a88565b8114612ad857600080fd5b50565b600081359050612aea81612ac4565b92915050565b60008060408385031215612b0757612b06612885565b5b6000612b1585828601612adb565b9250506020612b2685828601612a26565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b5557612b54612b30565b5b8235905067ffffffffffffffff811115612b7257612b71612b35565b5b602083019150836001820283011115612b8e57612b8d612b3a565b5b9250929050565b600080600080600060808688031215612bb157612bb0612885565b5b6000612bbf88828901612adb565b9550506020612bd088828901612adb565b9450506040612be188828901612a26565b935050606086013567ffffffffffffffff811115612c0257612c0161288a565b5b612c0e88828901612b3f565b92509250509295509295909350565b612c268161288f565b82525050565b6000602082019050612c416000830184612c1d565b92915050565b6000819050919050565b6000612c6c612c67612c6284612a68565b612c47565b612a68565b9050919050565b6000612c7e82612c51565b9050919050565b6000612c9082612c73565b9050919050565b612ca081612c85565b82525050565b6000602082019050612cbb6000830184612c97565b92915050565b612cca81612a05565b82525050565b6000602082019050612ce56000830184612cc1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d2882612999565b810181811067ffffffffffffffff82111715612d4757612d46612cf0565b5b80604052505050565b6000612d5a61287b565b9050612d668282612d1f565b919050565b600067ffffffffffffffff821115612d8657612d85612cf0565b5b612d8f82612999565b9050602081019050919050565b82818337600083830152505050565b6000612dbe612db984612d6b565b612d50565b905082815260208101848484011115612dda57612dd9612ceb565b5b612de5848285612d9c565b509392505050565b600082601f830112612e0257612e01612b30565b5b8135612e12848260208601612dab565b91505092915050565b600060208284031215612e3157612e30612885565b5b600082013567ffffffffffffffff811115612e4f57612e4e61288a565b5b612e5b84828501612ded565b91505092915050565b600080600060608486031215612e7d57612e7c612885565b5b6000612e8b86828701612adb565b9350506020612e9c86828701612adb565b9250506040612ead86828701612a26565b9150509250925092565b600060208284031215612ecd57612ecc612885565b5b6000612edb84828501612adb565b91505092915050565b612eed81612914565b8114612ef857600080fd5b50565b600081359050612f0a81612ee4565b92915050565b60008060408385031215612f2757612f26612885565b5b6000612f3585828601612adb565b9250506020612f4685828601612efb565b9150509250929050565b600067ffffffffffffffff821115612f6b57612f6a612cf0565b5b612f7482612999565b9050602081019050919050565b6000612f94612f8f84612f50565b612d50565b905082815260208101848484011115612fb057612faf612ceb565b5b612fbb848285612d9c565b509392505050565b600082601f830112612fd857612fd7612b30565b5b8135612fe8848260208601612f81565b91505092915050565b6000806000806080858703121561300b5761300a612885565b5b600061301987828801612adb565b945050602061302a87828801612adb565b935050604061303b87828801612a26565b925050606085013567ffffffffffffffff81111561305c5761305b61288a565b5b61306887828801612fc3565b91505092959194509250565b6000806040838503121561308b5761308a612885565b5b600061309985828601612adb565b92505060206130aa85828601612adb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130fb57607f821691505b6020821081141561310f5761310e6130b4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613171602c83612955565b915061317c82613115565b604082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613203602183612955565b915061320e826131a7565b604082019050919050565b60006020820190508181036000830152613232816131f6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613295603883612955565b91506132a082613239565b604082019050919050565b600060208201905081810360008301526132c481613288565b9050919050565b7f492063616e206f6e6c792077726170205631205068756e6b7300000000000000600082015250565b6000613301601983612955565b915061330c826132cb565b602082019050919050565b60006020820190508181036000830152613330816132f4565b9050919050565b60008151905061334681612ac4565b92915050565b60006020828403121561336257613361612885565b5b600061337084828501613337565b91505092915050565b7f492063616e6e6f7420777261702061205068756e6b20756e6c6573732049206f60008201527f776e206974000000000000000000000000000000000000000000000000000000602082015250565b60006133d5602583612955565b91506133e082613379565b604082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061344582612a05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134785761347761340b565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134b9602083612955565b91506134c482613483565b602082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061354b603183612955565b9150613556826134ef565b604082019050919050565b6000602082019050818103600083015261357a8161353e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006135dd602983612955565b91506135e882613581565b604082019050919050565b6000602082019050818103600083015261360c816135d0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061366f602a83612955565b915061367a82613613565b604082019050919050565b6000602082019050818103600083015261369e81613662565b9050919050565b60006040820190506136ba6000830185612a9a565b6136c76020830184612a9a565b9392505050565b6000815190506136dd81612ee4565b92915050565b6000602082840312156136f9576136f8612885565b5b6000613707848285016136ce565b91505092915050565b600081905092915050565b60006137268261294a565b6137308185613710565b9350613740818560208601612966565b80840191505092915050565b6000613758828561371b565b9150613764828461371b565b91508190509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137cc602f83612955565b91506137d782613770565b604082019050919050565b600060208201905081810360008301526137fb816137bf565b9050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000613838600183613710565b915061384382613802565b600182019050919050565b60006138598261382b565b9150613865828461371b565b915081905092915050565b60008190508160005260206000209050919050565b60008154613892816130e3565b61389c8186613710565b945060018216600081146138b757600181146138c8576138fb565b60ff198316865281860193506138fb565b6138d185613870565b60005b838110156138f3578154818901526001820191506020810190506138d4565b838801955050505b50505092915050565b7f6e6f747772617070656470756e6b000000000000000000000000000000000000600082015250565b600061393a600e83613710565b915061394582613904565b600e82019050919050565b7f2e706e6700000000000000000000000000000000000000000000000000000000600082015250565b6000613986600483613710565b915061399182613950565b600482019050919050565b60006139a88285613885565b91506139b38261392d565b91506139bf828461371b565b91506139ca82613979565b91508190509392505050565b7f4e6f7420617574686f72697a656420746f20756e777261700000000000000000600082015250565b6000613a0c601883612955565b9150613a17826139d6565b602082019050919050565b60006020820190508181036000830152613a3b816139ff565b9050919050565b6000613a4d82612a05565b91506000821415613a6157613a6061340b565b5b600182039050919050565b6000606082019050613a816000830186612a9a565b613a8e6020830185612a9a565b613a9b6040830184612cc1565b949350505050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613ad9600183613710565b9150613ae482613aa3565b600182019050919050565b7f226e616d65223a22000000000000000000000000000000000000000000000000600082015250565b6000613b25600883613710565b9150613b3082613aef565b600882019050919050565b7f5631205068756e6b732028577261707065642900000000000000000000000000600082015250565b6000613b71601383613710565b9150613b7c82613b3b565b601382019050919050565b7f222c226465736372697074696f6e223a22000000000000000000000000000000600082015250565b6000613bbd601183613710565b9150613bc882613b87565b601182019050919050565b7f222c22696d616765223a22000000000000000000000000000000000000000000600082015250565b6000613c09600b83613710565b9150613c1482613bd3565b600b82019050919050565b7f222c2265787465726e616c5f6c696e6b223a2200000000000000000000000000600082015250565b6000613c55601383613710565b9150613c6082613c1f565b601382019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000613ca1600283613710565b9150613cac82613c6b565b600282019050919050565b6000613cc282613acc565b9150613ccd82613b18565b9150613cd882613b64565b9150613ce382613bb0565b9150613cef828661371b565b9150613cfa82613bfc565b9150613d06828561371b565b9150613d1182613c48565b9150613d1d828461371b565b9150613d2882613c94565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000613d6b601d83613710565b9150613d7682613d35565b601d82019050919050565b6000613d8c82613d5e565b9150613d98828461371b565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dff602683612955565b9150613e0a82613da3565b604082019050919050565b60006020820190508181036000830152613e2e81613df2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e91602c83612955565b9150613e9c82613e35565b604082019050919050565b60006020820190508181036000830152613ec081613e84565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613f23602983612955565b9150613f2e82613ec7565b604082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fb5602483612955565b9150613fc082613f59565b604082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b6000613ff682612a05565b915061400183612a05565b9250828210156140145761401361340b565b5b828203905092915050565b600061402a82612a05565b915061403583612a05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561406a5761406961340b565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140ab601983612955565b91506140b682614075565b602082019050919050565b600060208201905081810360008301526140da8161409e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061411b82612a05565b915061412683612a05565b925082614136576141356140e1565b5b828204905092915050565b600061414c82612a05565b915061415783612a05565b925082614167576141666140e1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006141fd603283612955565b9150614208826141a1565b604082019050919050565b6000602082019050818103600083015261422c816141f0565b9050919050565b600061423e82612a05565b915061424983612a05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142825761428161340b565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b60006142b48261428d565b6142be8185614298565b93506142ce818560208601612966565b6142d781612999565b840191505092915050565b60006080820190506142f76000830187612a9a565b6143046020830186612a9a565b6143116040830185612cc1565b818103606083015261432381846142a9565b905095945050505050565b60008151905061433d816128bb565b92915050565b60006020828403121561435957614358612885565b5b60006143678482850161432e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006143a6602083612955565b91506143b182614370565b602082019050919050565b600060208201905081810360008301526143d581614399565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614412601c83612955565b915061441d826143dc565b602082019050919050565b6000602082019050818103600083015261444181614405565b905091905056fe697066733a2f2f516d5676424c4d597251675a75585a354c69785a5854755533727533654232715137503736395a58326574443431697066733a2f2f516d62476754777a756b77484565346d63765351745a35356466763663454538446a6d394355744d42666b5977414142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f697066733a2f2f516d5944664d797743476d4877456d426970754747527078423445576465466f614c70545668584a646a70686f785631205068756e6b732061726520746865206f726967696e616c204e465420736574206f66207468652077656c6c206b6e6f776e2043727970746f5068756e6b73204e4654207365742072656c656173656420696e20323032312e20486f77657665722c2064756520746f20766172696f7573206d6973756e6465727374616e64696e67732061626f757420746865206e6174757265206f6620636f6e6365707475616c206172742c2074686520746f6b656e732077657265206465656d6564206e6f6e2d7472616461626c6520696e207468656972206f726967696e616c20666f726d206279204f70656e5365612061667465722069742077617320646973636f76657265642074686174207768656e20736f6d656f6e6520626f75676874207468657365205068756e6b732c207468657920616c736f20676f742074686520617274776f726b206f6620746865206173736f6369617465642043727970746f50756e6b2c206566666563746976656c7920616371756972696e6720746865204e4654206174206e6f20636f7374215c6e5c6e5631205068756e6b206f776e65727320617265206e6f772061626c6520746f2077726170207468656972205068756e6b7320696e746f20616e204552432d37323120636f6e747261637420616e64207061746368206f76657220746865206973737565207768657265206576657279205068756e6b20696d616765206973205068696c69702074686520496e7465726e2e2054686973207265636f76657279206f6620746865206f726967696e616c205068756e6b7320736d61727420636f6e7472616374206973206120636f6d6d756e697479206c656420616e642072617069646c792067726f77696e67207068656e6f6d656e6f6e20636f6e73697374696e67206f66206f6e6520706572736f6e2e205468657265206973206e6f20636c656172206c656164657220616e6420616c6c20696d706f7274616e74206465636973696f6e732061726520766f746564206f6e20627920636f6d6d756e697479206d656d626572732e5c6e5c6e5631205068756e6b7320617265206e6f74206120646572697661746976652c206275742061726520696e206661637420746865206f726967696e616c20736574206f66205068756e6b732072656c656173656420696e20323032312028616e642061637475616c6c792070726564617465207468652072656c65617365206f662043727970746f5068756e6b73204e465473292e2054686973206973207665726966696564206f6e2074686520457468657265756d20626c6f636b636861696e20616e6420697320696d6d757461626c652ea26469706673582212202918c85da9d0bdba23adbc355fd7999355e7220a16675f4132d0c9733d8dc3b164736f6c634300080b0033

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

000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce

-----Decoded View---------------
Arg [0] : _phunkAddress (address): 0xA82F3a61F002F83Eba7D184c50bB2a8B359cA1cE

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a82f3a61f002f83eba7d184c50bb2a8b359ca1ce


Deployed Bytecode Sourcemap

41603:8411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28702:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29647:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31206:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30729:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45825:607;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41709:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49110:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48841:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31956:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48708:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32366:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48990:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43715:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29341:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29071:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7566:103;;;:::i;:::-;;44671:349;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43503:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42216:1030;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6915:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29816:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31499:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48538:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45032:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32622:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29991:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43611:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48145:381;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43867:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46444:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49213:798;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31725:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7824:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28702:305;28804:4;28856:25;28841:40;;;:11;:40;;;;:105;;;;28913:33;28898:48;;;:11;:48;;;;28841:105;:158;;;;28963:36;28987:11;28963:23;:36::i;:::-;28841:158;28821:178;;28702:305;;;:::o;29647:100::-;29701:13;29734:5;29727:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29647:100;:::o;31206:221::-;31282:7;31310:16;31318:7;31310;:16::i;:::-;31302:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31395:15;:24;31411:7;31395:24;;;;;;;;;;;;;;;;;;;;;31388:31;;31206:221;;;:::o;30729:411::-;30810:13;30826:23;30841:7;30826:14;:23::i;:::-;30810:39;;30874:5;30868:11;;:2;:11;;;;30860:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30968:5;30952:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30977:37;30994:5;31001:12;:10;:12::i;:::-;30977:16;:37::i;:::-;30952:62;30930:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;31111:21;31120:2;31124:7;31111:8;:21::i;:::-;30799:341;30729:411;;:::o;45825:607::-;45956:6;46005:13;45983:36;;:10;:36;;;45975:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46110:4;46068:47;;:13;:21;;;46090:7;46068:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;46060:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46306:12;;:14;;;;;;;;;:::i;:::-;;;;;;46331:24;46341:4;46347:7;46331:9;:24::i;:::-;46383:41;;;46376:48;;45825:607;;;;;;;:::o;41709:54::-;;;:::o;49110:91::-;49154:7;49181:12;;49174:19;;49110:91;:::o;48841:141::-;7146:12;:10;:12::i;:::-;7135:23;;:7;:5;:7::i;:::-;:23;;;7127:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48955:19:::1;48934:18;:40;;;;;;;;;;;;:::i;:::-;;48841:141:::0;:::o;31956:339::-;32151:41;32170:12;:10;:12::i;:::-;32184:7;32151:18;:41::i;:::-;32143:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32259:28;32269:4;32275:2;32279:7;32259:9;:28::i;:::-;31956:339;;;:::o;48708:121::-;7146:12;:10;:12::i;:::-;7135:23;;:7;:5;:7::i;:::-;:23;;;7127:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48807:14:::1;48791:13;:30;;;;;;;;;;;;:::i;:::-;;48708:121:::0;:::o;32366:185::-;32504:39;32521:4;32527:2;32531:7;32504:39;;;;;;;;;;;;:16;:39::i;:::-;32366:185;;;:::o;48990:112::-;49054:4;49078:16;49086:7;49078;:16::i;:::-;49071:23;;48990:112;;;:::o;43715:103::-;;;;;;;;;;;;;;;;;;;:::o;29341:239::-;29413:7;29433:13;29449:7;:16;29457:7;29449:16;;;;;;;;;;;;;;;;;;;;;29433:32;;29501:1;29484:19;;:5;:19;;;;29476:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29567:5;29560:12;;;29341:239;;;:::o;29071:208::-;29143:7;29188:1;29171:19;;:5;:19;;;;29163:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29255:9;:16;29265:5;29255:16;;;;;;;;;;;;;;;;29248:23;;29071:208;;;:::o;7566:103::-;7146:12;:10;:12::i;:::-;7135:23;;:7;:5;:7::i;:::-;:23;;;7127:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7631:30:::1;7658:1;7631:18;:30::i;:::-;7566:103::o:0;44671:349::-;44748:4;44765:18;44786:13;:21;;;44808:7;44786:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44765:51;;44867:10;44859:18;;:4;:18;;;:77;;;;44932:4;44894:42;;:13;:25;;;44920:7;44894:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;;44859:77;:142;;;;44953:13;:30;;;44984:10;44996:4;44953:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44859:142;44837:175;;;44671:349;;;;:::o;43503:95::-;;;;;;;;;;;;;;;;;;;:::o;42216:1030::-;;;;;;;;;;;;;;;;;;;:::o;6915:87::-;6961:7;6988:6;;;;;;;;;;;6981:13;;6915:87;:::o;29816:104::-;29872:13;29905:7;29898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29816:104;:::o;31499:155::-;31594:52;31613:12;:10;:12::i;:::-;31627:8;31637;31594:18;:52::i;:::-;31499:155;;:::o;48538:162::-;48603:13;48660:10;:8;:10::i;:::-;48672:18;:7;:16;:18::i;:::-;48643:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48629:63;;48538:162;;;:::o;45032:144::-;45111:4;45135:33;45154:4;45160:7;45135:18;:33::i;:::-;45128:40;;45032:144;;;;:::o;32622:328::-;32797:41;32816:12;:10;:12::i;:::-;32830:7;32797:18;:41::i;:::-;32789:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32903:39;32917:4;32923:2;32927:7;32936:5;32903:13;:39::i;:::-;32622:328;;;;:::o;29991:334::-;30064:13;30098:16;30106:7;30098;:16::i;:::-;30090:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30179:21;30203:10;:8;:10::i;:::-;30179:34;;30255:1;30237:7;30231:21;:25;:86;;;;;;;;;;;;;;;;;30283:7;30292:18;:7;:16;:18::i;:::-;30266:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30231:86;30224:93;;;29991:334;;;:::o;43611:97::-;;;;;;;;;;;;;;;;;;;:::o;48145:381::-;48209:13;48235:22;48260:18;:7;:16;:18::i;:::-;48235:43;;48299:112;48331:1;48312:8;48306:22;:26;48299:112;;;48389:8;48367:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;48349:50;;48299:112;;;48462:18;48500:8;48445:72;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48431:87;;;48145:381;;;:::o;43867:71::-;;;;;;;;;;;;;;;;;;;:::o;46444:283::-;46502:41;46523:10;46535:7;46502:20;:41::i;:::-;46494:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46593:12;;:14;;;;;;;;;:::i;:::-;;;;;;46618;46624:7;46618:5;:14::i;:::-;46653:13;:30;;;46692:4;46699:10;46711:7;46653:66;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46444:283;:::o;49213:798::-;49257:13;49421:548;49678:19;;;;;;;;;;;;;;;;;49750:16;;;;;;;;;;;;;;;;;49827:19;;;;;;;;;;;;;;;;;49497:422;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49421:13;:548::i;:::-;49328:660;;;;;;;;:::i;:::-;;;;;;;;;;;;;49283:720;;49213:798;:::o;31725:164::-;31822:4;31846:18;:25;31865:5;31846:25;;;;;;;;;;;;;;;:35;31872:8;31846:35;;;;;;;;;;;;;;;;;;;;;;;;;31839:42;;31725:164;;;;:::o;7824:201::-;7146:12;:10;:12::i;:::-;7135:23;;:7;:5;:7::i;:::-;:23;;;7127:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7933:1:::1;7913:22;;:8;:22;;;;7905:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7989:28;8008:8;7989:18;:28::i;:::-;7824:201:::0;:::o;19347:157::-;19432:4;19471:25;19456:40;;;:11;:40;;;;19449:47;;19347:157;;;:::o;34460:127::-;34525:4;34577:1;34549:30;;:7;:16;34557:7;34549:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34542:37;;34460:127;;;:::o;5639:98::-;5692:7;5719:10;5712:17;;5639:98;:::o;38442:174::-;38544:2;38517:15;:24;38533:7;38517:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38600:7;38596:2;38562:46;;38571:23;38586:7;38571:14;:23::i;:::-;38562:46;;;;;;;;;;;;38442:174;;:::o;35444:110::-;35520:26;35530:2;35534:7;35520:26;;;;;;;;;;;;:9;:26::i;:::-;35444:110;;:::o;34754:348::-;34847:4;34872:16;34880:7;34872;:16::i;:::-;34864:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34948:13;34964:23;34979:7;34964:14;:23::i;:::-;34948:39;;35017:5;35006:16;;:7;:16;;;:51;;;;35050:7;35026:31;;:20;35038:7;35026:11;:20::i;:::-;:31;;;35006:51;:87;;;;35061:32;35078:5;35085:7;35061:16;:32::i;:::-;35006:87;34998:96;;;34754:348;;;;:::o;37746:578::-;37905:4;37878:31;;:23;37893:7;37878:14;:23::i;:::-;:31;;;37870:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37988:1;37974:16;;:2;:16;;;;37966:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38044:39;38065:4;38071:2;38075:7;38044:20;:39::i;:::-;38148:29;38165:1;38169:7;38148:8;:29::i;:::-;38209:1;38190:9;:15;38200:4;38190:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38238:1;38221:9;:13;38231:2;38221:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38269:2;38250:7;:16;38258:7;38250:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38308:7;38304:2;38289:27;;38298:4;38289:27;;;;;;;;;;;;37746:578;;;:::o;8185:191::-;8259:16;8278:6;;;;;;;;;;;8259:25;;8304:8;8295:6;;:17;;;;;;;;;;;;;;;;;;8359:8;8328:40;;8349:8;8328:40;;;;;;;;;;;;8248:128;8185:191;:::o;38758:315::-;38913:8;38904:17;;:5;:17;;;;38896:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39000:8;38962:18;:25;38981:5;38962:25;;;;;;;;;;;;;;;:35;38988:8;38962:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39046:8;39024:41;;39039:5;39024:41;;;39056:8;39024:41;;;;;;:::i;:::-;;;;;;;;38758:315;;;:::o;46735:114::-;46795:13;46828;46821:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46735:114;:::o;25551:723::-;25607:13;25837:1;25828:5;:10;25824:53;;;25855:10;;;;;;;;;;;;;;;;;;;;;25824:53;25887:12;25902:5;25887:20;;25918:14;25943:78;25958:1;25950:4;:9;25943:78;;25976:8;;;;;:::i;:::-;;;;26007:2;25999:10;;;;;:::i;:::-;;;25943:78;;;26031:19;26063:6;26053:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26031:39;;26081:154;26097:1;26088:5;:10;26081:154;;26125:1;26115:11;;;;;:::i;:::-;;;26192:2;26184:5;:10;;;;:::i;:::-;26171:2;:24;;;;:::i;:::-;26158:39;;26141:6;26148;26141:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;26221:2;26212:11;;;;;:::i;:::-;;;26081:154;;;26259:6;26245:21;;;;;25551:723;;;;:::o;33832:315::-;33989:28;33999:4;34005:2;34009:7;33989:9;:28::i;:::-;34036:48;34059:4;34065:2;34069:7;34078:5;34036:22;:48::i;:::-;34028:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33832:315;;;;:::o;37049:360::-;37109:13;37125:23;37140:7;37125:14;:23::i;:::-;37109:39;;37161:48;37182:5;37197:1;37201:7;37161:20;:48::i;:::-;37250:29;37267:1;37271:7;37250:8;:29::i;:::-;37312:1;37292:9;:16;37302:5;37292:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;37331:7;:16;37339:7;37331:16;;;;;;;;;;;;37324:23;;;;;;;;;;;37393:7;37389:1;37365:36;;37374:5;37365:36;;;;;;;;;;;;37098:311;37049:360;:::o;794:1912::-;852:13;897:1;882:4;:11;:16;878:31;;;900:9;;;;;;;;;;;;;;;;878:31;961:19;983:12;;;;;;;;;;;;;;;;;961:34;;1047:18;1093:1;1088;1074:4;:11;:15;;;;:::i;:::-;1073:21;;;;:::i;:::-;1068:1;:27;;;;:::i;:::-;1047:48;;1178:20;1225:2;1212:10;:15;;;;:::i;:::-;1201:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178:50;;1325:10;1317:6;1310:26;1420:1;1413:5;1409:13;1479:4;1530;1524:11;1515:7;1511:25;1626:2;1618:6;1614:15;1699:754;1718:6;1709:7;1706:19;1699:754;;;1818:1;1809:7;1805:15;1794:26;;1857:7;1851:14;1983:4;1975:5;1971:2;1967:14;1963:25;1953:8;1949:40;1943:47;1932:9;1924:67;2037:1;2026:9;2022:17;2009:30;;2116:4;2108:5;2104:2;2100:14;2096:25;2086:8;2082:40;2076:47;2065:9;2057:67;2170:1;2159:9;2155:17;2142:30;;2249:4;2241:5;2238:1;2233:14;2229:25;2219:8;2215:40;2209:47;2198:9;2190:67;2303:1;2292:9;2288:17;2275:30;;2382:4;2374:5;2362:25;2352:8;2348:40;2342:47;2331:9;2323:67;2436:1;2425:9;2421:17;2408:30;;1742:711;1699:754;;;2526:1;2519:4;2513:11;2509:19;2547:1;2542:54;;;;2615:1;2610:52;;;;2502:160;;2542:54;2586:6;2581:3;2577:16;2573:1;2562:9;2558:17;2551:43;2542:54;;2610:52;2654:4;2649:3;2645:14;2641:1;2630:9;2626:17;2619:41;2502:160;;1250:1423;;;;2692:6;2685:13;;;;;794:1912;;;;:::o;35781:321::-;35911:18;35917:2;35921:7;35911:5;:18::i;:::-;35962:54;35993:1;35997:2;36001:7;36010:5;35962:22;:54::i;:::-;35940:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35781:321;;;:::o;41009:126::-;;;;:::o;39638:799::-;39793:4;39814:15;:2;:13;;;:15::i;:::-;39810:620;;;39866:2;39850:36;;;39887:12;:10;:12::i;:::-;39901:4;39907:7;39916:5;39850:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39846:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40109:1;40092:6;:13;:18;40088:272;;;40135:60;;;;;;;;;;:::i;:::-;;;;;;;;40088:272;40310:6;40304:13;40295:6;40291:2;40287:15;40280:38;39846:529;39983:41;;;39973:51;;;:6;:51;;;;39966:58;;;;;39810:620;40414:4;40407:11;;39638:799;;;;;;;:::o;36438:382::-;36532:1;36518:16;;:2;:16;;;;36510:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36591:16;36599:7;36591;:16::i;:::-;36590:17;36582:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36653:45;36682:1;36686:2;36690:7;36653:20;:45::i;:::-;36728:1;36711:9;:13;36721:2;36711:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36759:2;36740:7;:16;36748:7;36740:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36804:7;36800:2;36779:33;;36796:1;36779:33;;;;;;;;;;;;36438:382;;:::o;9203:387::-;9263:4;9471:12;9538:7;9526:20;9518:28;;9581:1;9574:4;:8;9567:15;;;9203:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:117;5293:1;5290;5283:12;5320:552;5377:8;5387:6;5437:3;5430:4;5422:6;5418:17;5414:27;5404:122;;5445:79;;:::i;:::-;5404:122;5558:6;5545:20;5535:30;;5588:18;5580:6;5577:30;5574:117;;;5610:79;;:::i;:::-;5574:117;5724:4;5716:6;5712:17;5700:29;;5778:3;5770:4;5762:6;5758:17;5748:8;5744:32;5741:41;5738:128;;;5785:79;;:::i;:::-;5738:128;5320:552;;;;;:::o;5878:963::-;5975:6;5983;5991;5999;6007;6056:3;6044:9;6035:7;6031:23;6027:33;6024:120;;;6063:79;;:::i;:::-;6024:120;6183:1;6208:53;6253:7;6244:6;6233:9;6229:22;6208:53;:::i;:::-;6198:63;;6154:117;6310:2;6336:53;6381:7;6372:6;6361:9;6357:22;6336:53;:::i;:::-;6326:63;;6281:118;6438:2;6464:53;6509:7;6500:6;6489:9;6485:22;6464:53;:::i;:::-;6454:63;;6409:118;6594:2;6583:9;6579:18;6566:32;6625:18;6617:6;6614:30;6611:117;;;6647:79;;:::i;:::-;6611:117;6760:64;6816:7;6807:6;6796:9;6792:22;6760:64;:::i;:::-;6742:82;;;;6537:297;5878:963;;;;;;;;:::o;6847:115::-;6932:23;6949:5;6932:23;:::i;:::-;6927:3;6920:36;6847:115;;:::o;6968:218::-;7059:4;7097:2;7086:9;7082:18;7074:26;;7110:69;7176:1;7165:9;7161:17;7152:6;7110:69;:::i;:::-;6968:218;;;;:::o;7192:60::-;7220:3;7241:5;7234:12;;7192:60;;;:::o;7258:142::-;7308:9;7341:53;7359:34;7368:24;7386:5;7368:24;:::i;:::-;7359:34;:::i;:::-;7341:53;:::i;:::-;7328:66;;7258:142;;;:::o;7406:126::-;7456:9;7489:37;7520:5;7489:37;:::i;:::-;7476:50;;7406:126;;;:::o;7538:158::-;7620:9;7653:37;7684:5;7653:37;:::i;:::-;7640:50;;7538:158;;;:::o;7702:195::-;7821:69;7884:5;7821:69;:::i;:::-;7816:3;7809:82;7702:195;;:::o;7903:286::-;8028:4;8066:2;8055:9;8051:18;8043:26;;8079:103;8179:1;8168:9;8164:17;8155:6;8079:103;:::i;:::-;7903:286;;;;:::o;8195:118::-;8282:24;8300:5;8282:24;:::i;:::-;8277:3;8270:37;8195:118;;:::o;8319:222::-;8412:4;8450:2;8439:9;8435:18;8427:26;;8463:71;8531:1;8520:9;8516:17;8507:6;8463:71;:::i;:::-;8319:222;;;;:::o;8547:117::-;8656:1;8653;8646:12;8670:180;8718:77;8715:1;8708:88;8815:4;8812:1;8805:15;8839:4;8836:1;8829:15;8856:281;8939:27;8961:4;8939:27;:::i;:::-;8931:6;8927:40;9069:6;9057:10;9054:22;9033:18;9021:10;9018:34;9015:62;9012:88;;;9080:18;;:::i;:::-;9012:88;9120:10;9116:2;9109:22;8899:238;8856:281;;:::o;9143:129::-;9177:6;9204:20;;:::i;:::-;9194:30;;9233:33;9261:4;9253:6;9233:33;:::i;:::-;9143:129;;;:::o;9278:308::-;9340:4;9430:18;9422:6;9419:30;9416:56;;;9452:18;;:::i;:::-;9416:56;9490:29;9512:6;9490:29;:::i;:::-;9482:37;;9574:4;9568;9564:15;9556:23;;9278:308;;;:::o;9592:154::-;9676:6;9671:3;9666;9653:30;9738:1;9729:6;9724:3;9720:16;9713:27;9592:154;;;:::o;9752:412::-;9830:5;9855:66;9871:49;9913:6;9871:49;:::i;:::-;9855:66;:::i;:::-;9846:75;;9944:6;9937:5;9930:21;9982:4;9975:5;9971:16;10020:3;10011:6;10006:3;10002:16;9999:25;9996:112;;;10027:79;;:::i;:::-;9996:112;10117:41;10151:6;10146:3;10141;10117:41;:::i;:::-;9836:328;9752:412;;;;;:::o;10184:340::-;10240:5;10289:3;10282:4;10274:6;10270:17;10266:27;10256:122;;10297:79;;:::i;:::-;10256:122;10414:6;10401:20;10439:79;10514:3;10506:6;10499:4;10491:6;10487:17;10439:79;:::i;:::-;10430:88;;10246:278;10184:340;;;;:::o;10530:509::-;10599:6;10648:2;10636:9;10627:7;10623:23;10619:32;10616:119;;;10654:79;;:::i;:::-;10616:119;10802:1;10791:9;10787:17;10774:31;10832:18;10824:6;10821:30;10818:117;;;10854:79;;:::i;:::-;10818:117;10959:63;11014:7;11005:6;10994:9;10990:22;10959:63;:::i;:::-;10949:73;;10745:287;10530:509;;;;:::o;11045:619::-;11122:6;11130;11138;11187:2;11175:9;11166:7;11162:23;11158:32;11155:119;;;11193:79;;:::i;:::-;11155:119;11313:1;11338:53;11383:7;11374:6;11363:9;11359:22;11338:53;:::i;:::-;11328:63;;11284:117;11440:2;11466:53;11511:7;11502:6;11491:9;11487:22;11466:53;:::i;:::-;11456:63;;11411:118;11568:2;11594:53;11639:7;11630:6;11619:9;11615:22;11594:53;:::i;:::-;11584:63;;11539:118;11045:619;;;;;:::o;11670:329::-;11729:6;11778:2;11766:9;11757:7;11753:23;11749:32;11746:119;;;11784:79;;:::i;:::-;11746:119;11904:1;11929:53;11974:7;11965:6;11954:9;11950:22;11929:53;:::i;:::-;11919:63;;11875:117;11670:329;;;;:::o;12005:116::-;12075:21;12090:5;12075:21;:::i;:::-;12068:5;12065:32;12055:60;;12111:1;12108;12101:12;12055:60;12005:116;:::o;12127:133::-;12170:5;12208:6;12195:20;12186:29;;12224:30;12248:5;12224:30;:::i;:::-;12127:133;;;;:::o;12266:468::-;12331:6;12339;12388:2;12376:9;12367:7;12363:23;12359:32;12356:119;;;12394:79;;:::i;:::-;12356:119;12514:1;12539:53;12584:7;12575:6;12564:9;12560:22;12539:53;:::i;:::-;12529:63;;12485:117;12641:2;12667:50;12709:7;12700:6;12689:9;12685:22;12667:50;:::i;:::-;12657:60;;12612:115;12266:468;;;;;:::o;12740:307::-;12801:4;12891:18;12883:6;12880:30;12877:56;;;12913:18;;:::i;:::-;12877:56;12951:29;12973:6;12951:29;:::i;:::-;12943:37;;13035:4;13029;13025:15;13017:23;;12740:307;;;:::o;13053:410::-;13130:5;13155:65;13171:48;13212:6;13171:48;:::i;:::-;13155:65;:::i;:::-;13146:74;;13243:6;13236:5;13229:21;13281:4;13274:5;13270:16;13319:3;13310:6;13305:3;13301:16;13298:25;13295:112;;;13326:79;;:::i;:::-;13295:112;13416:41;13450:6;13445:3;13440;13416:41;:::i;:::-;13136:327;13053:410;;;;;:::o;13482:338::-;13537:5;13586:3;13579:4;13571:6;13567:17;13563:27;13553:122;;13594:79;;:::i;:::-;13553:122;13711:6;13698:20;13736:78;13810:3;13802:6;13795:4;13787:6;13783:17;13736:78;:::i;:::-;13727:87;;13543:277;13482:338;;;;:::o;13826:943::-;13921:6;13929;13937;13945;13994:3;13982:9;13973:7;13969:23;13965:33;13962:120;;;14001:79;;:::i;:::-;13962:120;14121:1;14146:53;14191:7;14182:6;14171:9;14167:22;14146:53;:::i;:::-;14136:63;;14092:117;14248:2;14274:53;14319:7;14310:6;14299:9;14295:22;14274:53;:::i;:::-;14264:63;;14219:118;14376:2;14402:53;14447:7;14438:6;14427:9;14423:22;14402:53;:::i;:::-;14392:63;;14347:118;14532:2;14521:9;14517:18;14504:32;14563:18;14555:6;14552:30;14549:117;;;14585:79;;:::i;:::-;14549:117;14690:62;14744:7;14735:6;14724:9;14720:22;14690:62;:::i;:::-;14680:72;;14475:287;13826:943;;;;;;;:::o;14775:474::-;14843:6;14851;14900:2;14888:9;14879:7;14875:23;14871:32;14868:119;;;14906:79;;:::i;:::-;14868:119;15026:1;15051:53;15096:7;15087:6;15076:9;15072:22;15051:53;:::i;:::-;15041:63;;14997:117;15153:2;15179:53;15224:7;15215:6;15204:9;15200:22;15179:53;:::i;:::-;15169:63;;15124:118;14775:474;;;;;:::o;15255:180::-;15303:77;15300:1;15293:88;15400:4;15397:1;15390:15;15424:4;15421:1;15414:15;15441:320;15485:6;15522:1;15516:4;15512:12;15502:22;;15569:1;15563:4;15559:12;15590:18;15580:81;;15646:4;15638:6;15634:17;15624:27;;15580:81;15708:2;15700:6;15697:14;15677:18;15674:38;15671:84;;;15727:18;;:::i;:::-;15671:84;15492:269;15441:320;;;:::o;15767:231::-;15907:34;15903:1;15895:6;15891:14;15884:58;15976:14;15971:2;15963:6;15959:15;15952:39;15767:231;:::o;16004:366::-;16146:3;16167:67;16231:2;16226:3;16167:67;:::i;:::-;16160:74;;16243:93;16332:3;16243:93;:::i;:::-;16361:2;16356:3;16352:12;16345:19;;16004:366;;;:::o;16376:419::-;16542:4;16580:2;16569:9;16565:18;16557:26;;16629:9;16623:4;16619:20;16615:1;16604:9;16600:17;16593:47;16657:131;16783:4;16657:131;:::i;:::-;16649:139;;16376:419;;;:::o;16801:220::-;16941:34;16937:1;16929:6;16925:14;16918:58;17010:3;17005:2;16997:6;16993:15;16986:28;16801:220;:::o;17027:366::-;17169:3;17190:67;17254:2;17249:3;17190:67;:::i;:::-;17183:74;;17266:93;17355:3;17266:93;:::i;:::-;17384:2;17379:3;17375:12;17368:19;;17027:366;;;:::o;17399:419::-;17565:4;17603:2;17592:9;17588:18;17580:26;;17652:9;17646:4;17642:20;17638:1;17627:9;17623:17;17616:47;17680:131;17806:4;17680:131;:::i;:::-;17672:139;;17399:419;;;:::o;17824:243::-;17964:34;17960:1;17952:6;17948:14;17941:58;18033:26;18028:2;18020:6;18016:15;18009:51;17824:243;:::o;18073:366::-;18215:3;18236:67;18300:2;18295:3;18236:67;:::i;:::-;18229:74;;18312:93;18401:3;18312:93;:::i;:::-;18430:2;18425:3;18421:12;18414:19;;18073:366;;;:::o;18445:419::-;18611:4;18649:2;18638:9;18634:18;18626:26;;18698:9;18692:4;18688:20;18684:1;18673:9;18669:17;18662:47;18726:131;18852:4;18726:131;:::i;:::-;18718:139;;18445:419;;;:::o;18870:175::-;19010:27;19006:1;18998:6;18994:14;18987:51;18870:175;:::o;19051:366::-;19193:3;19214:67;19278:2;19273:3;19214:67;:::i;:::-;19207:74;;19290:93;19379:3;19290:93;:::i;:::-;19408:2;19403:3;19399:12;19392:19;;19051:366;;;:::o;19423:419::-;19589:4;19627:2;19616:9;19612:18;19604:26;;19676:9;19670:4;19666:20;19662:1;19651:9;19647:17;19640:47;19704:131;19830:4;19704:131;:::i;:::-;19696:139;;19423:419;;;:::o;19848:143::-;19905:5;19936:6;19930:13;19921:22;;19952:33;19979:5;19952:33;:::i;:::-;19848:143;;;;:::o;19997:351::-;20067:6;20116:2;20104:9;20095:7;20091:23;20087:32;20084:119;;;20122:79;;:::i;:::-;20084:119;20242:1;20267:64;20323:7;20314:6;20303:9;20299:22;20267:64;:::i;:::-;20257:74;;20213:128;19997:351;;;;:::o;20354:224::-;20494:34;20490:1;20482:6;20478:14;20471:58;20563:7;20558:2;20550:6;20546:15;20539:32;20354:224;:::o;20584:366::-;20726:3;20747:67;20811:2;20806:3;20747:67;:::i;:::-;20740:74;;20823:93;20912:3;20823:93;:::i;:::-;20941:2;20936:3;20932:12;20925:19;;20584:366;;;:::o;20956:419::-;21122:4;21160:2;21149:9;21145:18;21137:26;;21209:9;21203:4;21199:20;21195:1;21184:9;21180:17;21173:47;21237:131;21363:4;21237:131;:::i;:::-;21229:139;;20956:419;;;:::o;21381:180::-;21429:77;21426:1;21419:88;21526:4;21523:1;21516:15;21550:4;21547:1;21540:15;21567:233;21606:3;21629:24;21647:5;21629:24;:::i;:::-;21620:33;;21675:66;21668:5;21665:77;21662:103;;;21745:18;;:::i;:::-;21662:103;21792:1;21785:5;21781:13;21774:20;;21567:233;;;:::o;21806:182::-;21946:34;21942:1;21934:6;21930:14;21923:58;21806:182;:::o;21994:366::-;22136:3;22157:67;22221:2;22216:3;22157:67;:::i;:::-;22150:74;;22233:93;22322:3;22233:93;:::i;:::-;22351:2;22346:3;22342:12;22335:19;;21994:366;;;:::o;22366:419::-;22532:4;22570:2;22559:9;22555:18;22547:26;;22619:9;22613:4;22609:20;22605:1;22594:9;22590:17;22583:47;22647:131;22773:4;22647:131;:::i;:::-;22639:139;;22366:419;;;:::o;22791:236::-;22931:34;22927:1;22919:6;22915:14;22908:58;23000:19;22995:2;22987:6;22983:15;22976:44;22791:236;:::o;23033:366::-;23175:3;23196:67;23260:2;23255:3;23196:67;:::i;:::-;23189:74;;23272:93;23361:3;23272:93;:::i;:::-;23390:2;23385:3;23381:12;23374:19;;23033:366;;;:::o;23405:419::-;23571:4;23609:2;23598:9;23594:18;23586:26;;23658:9;23652:4;23648:20;23644:1;23633:9;23629:17;23622:47;23686:131;23812:4;23686:131;:::i;:::-;23678:139;;23405:419;;;:::o;23830:228::-;23970:34;23966:1;23958:6;23954:14;23947:58;24039:11;24034:2;24026:6;24022:15;24015:36;23830:228;:::o;24064:366::-;24206:3;24227:67;24291:2;24286:3;24227:67;:::i;:::-;24220:74;;24303:93;24392:3;24303:93;:::i;:::-;24421:2;24416:3;24412:12;24405:19;;24064:366;;;:::o;24436:419::-;24602:4;24640:2;24629:9;24625:18;24617:26;;24689:9;24683:4;24679:20;24675:1;24664:9;24660:17;24653:47;24717:131;24843:4;24717:131;:::i;:::-;24709:139;;24436:419;;;:::o;24861:229::-;25001:34;24997:1;24989:6;24985:14;24978:58;25070:12;25065:2;25057:6;25053:15;25046:37;24861:229;:::o;25096:366::-;25238:3;25259:67;25323:2;25318:3;25259:67;:::i;:::-;25252:74;;25335:93;25424:3;25335:93;:::i;:::-;25453:2;25448:3;25444:12;25437:19;;25096:366;;;:::o;25468:419::-;25634:4;25672:2;25661:9;25657:18;25649:26;;25721:9;25715:4;25711:20;25707:1;25696:9;25692:17;25685:47;25749:131;25875:4;25749:131;:::i;:::-;25741:139;;25468:419;;;:::o;25893:332::-;26014:4;26052:2;26041:9;26037:18;26029:26;;26065:71;26133:1;26122:9;26118:17;26109:6;26065:71;:::i;:::-;26146:72;26214:2;26203:9;26199:18;26190:6;26146:72;:::i;:::-;25893:332;;;;;:::o;26231:137::-;26285:5;26316:6;26310:13;26301:22;;26332:30;26356:5;26332:30;:::i;:::-;26231:137;;;;:::o;26374:345::-;26441:6;26490:2;26478:9;26469:7;26465:23;26461:32;26458:119;;;26496:79;;:::i;:::-;26458:119;26616:1;26641:61;26694:7;26685:6;26674:9;26670:22;26641:61;:::i;:::-;26631:71;;26587:125;26374:345;;;;:::o;26725:148::-;26827:11;26864:3;26849:18;;26725:148;;;;:::o;26879:377::-;26985:3;27013:39;27046:5;27013:39;:::i;:::-;27068:89;27150:6;27145:3;27068:89;:::i;:::-;27061:96;;27166:52;27211:6;27206:3;27199:4;27192:5;27188:16;27166:52;:::i;:::-;27243:6;27238:3;27234:16;27227:23;;26989:267;26879:377;;;;:::o;27262:435::-;27442:3;27464:95;27555:3;27546:6;27464:95;:::i;:::-;27457:102;;27576:95;27667:3;27658:6;27576:95;:::i;:::-;27569:102;;27688:3;27681:10;;27262:435;;;;;:::o;27703:234::-;27843:34;27839:1;27831:6;27827:14;27820:58;27912:17;27907:2;27899:6;27895:15;27888:42;27703:234;:::o;27943:366::-;28085:3;28106:67;28170:2;28165:3;28106:67;:::i;:::-;28099:74;;28182:93;28271:3;28182:93;:::i;:::-;28300:2;28295:3;28291:12;28284:19;;27943:366;;;:::o;28315:419::-;28481:4;28519:2;28508:9;28504:18;28496:26;;28568:9;28562:4;28558:20;28554:1;28543:9;28539:17;28532:47;28596:131;28722:4;28596:131;:::i;:::-;28588:139;;28315:419;;;:::o;28740:151::-;28880:3;28876:1;28868:6;28864:14;28857:27;28740:151;:::o;28897:400::-;29057:3;29078:84;29160:1;29155:3;29078:84;:::i;:::-;29071:91;;29171:93;29260:3;29171:93;:::i;:::-;29289:1;29284:3;29280:11;29273:18;;28897:400;;;:::o;29303:541::-;29536:3;29558:148;29702:3;29558:148;:::i;:::-;29551:155;;29723:95;29814:3;29805:6;29723:95;:::i;:::-;29716:102;;29835:3;29828:10;;29303:541;;;;:::o;29850:141::-;29899:4;29922:3;29914:11;;29945:3;29942:1;29935:14;29979:4;29976:1;29966:18;29958:26;;29850:141;;;:::o;30021:845::-;30124:3;30161:5;30155:12;30190:36;30216:9;30190:36;:::i;:::-;30242:89;30324:6;30319:3;30242:89;:::i;:::-;30235:96;;30362:1;30351:9;30347:17;30378:1;30373:137;;;;30524:1;30519:341;;;;30340:520;;30373:137;30457:4;30453:9;30442;30438:25;30433:3;30426:38;30493:6;30488:3;30484:16;30477:23;;30373:137;;30519:341;30586:38;30618:5;30586:38;:::i;:::-;30646:1;30660:154;30674:6;30671:1;30668:13;30660:154;;;30748:7;30742:14;30738:1;30733:3;30729:11;30722:35;30798:1;30789:7;30785:15;30774:26;;30696:4;30693:1;30689:12;30684:17;;30660:154;;;30843:6;30838:3;30834:16;30827:23;;30526:334;;30340:520;;30128:738;;30021:845;;;;:::o;30872:164::-;31012:16;31008:1;31000:6;30996:14;30989:40;30872:164;:::o;31042:402::-;31202:3;31223:85;31305:2;31300:3;31223:85;:::i;:::-;31216:92;;31317:93;31406:3;31317:93;:::i;:::-;31435:2;31430:3;31426:12;31419:19;;31042:402;;;:::o;31450:154::-;31590:6;31586:1;31578:6;31574:14;31567:30;31450:154;:::o;31610:400::-;31770:3;31791:84;31873:1;31868:3;31791:84;:::i;:::-;31784:91;;31884:93;31973:3;31884:93;:::i;:::-;32002:1;31997:3;31993:11;31986:18;;31610:400;;;:::o;32016:961::-;32395:3;32417:92;32505:3;32496:6;32417:92;:::i;:::-;32410:99;;32526:148;32670:3;32526:148;:::i;:::-;32519:155;;32691:95;32782:3;32773:6;32691:95;:::i;:::-;32684:102;;32803:148;32947:3;32803:148;:::i;:::-;32796:155;;32968:3;32961:10;;32016:961;;;;;:::o;32983:174::-;33123:26;33119:1;33111:6;33107:14;33100:50;32983:174;:::o;33163:366::-;33305:3;33326:67;33390:2;33385:3;33326:67;:::i;:::-;33319:74;;33402:93;33491:3;33402:93;:::i;:::-;33520:2;33515:3;33511:12;33504:19;;33163:366;;;:::o;33535:419::-;33701:4;33739:2;33728:9;33724:18;33716:26;;33788:9;33782:4;33778:20;33774:1;33763:9;33759:17;33752:47;33816:131;33942:4;33816:131;:::i;:::-;33808:139;;33535:419;;;:::o;33960:171::-;33999:3;34022:24;34040:5;34022:24;:::i;:::-;34013:33;;34068:4;34061:5;34058:15;34055:41;;;34076:18;;:::i;:::-;34055:41;34123:1;34116:5;34112:13;34105:20;;33960:171;;;:::o;34137:442::-;34286:4;34324:2;34313:9;34309:18;34301:26;;34337:71;34405:1;34394:9;34390:17;34381:6;34337:71;:::i;:::-;34418:72;34486:2;34475:9;34471:18;34462:6;34418:72;:::i;:::-;34500;34568:2;34557:9;34553:18;34544:6;34500:72;:::i;:::-;34137:442;;;;;;:::o;34585:155::-;34725:3;34721:1;34713:6;34709:14;34702:27;34585:155;:::o;34750:416::-;34910:3;34935:84;35017:1;35012:3;34935:84;:::i;:::-;34928:91;;35032:93;35121:3;35032:93;:::i;:::-;35154:1;35149:3;35145:11;35138:18;;34750:416;;;:::o;35176:222::-;35320:66;35316:1;35308:6;35304:14;35297:90;35176:222;:::o;35408:416::-;35568:3;35593:84;35675:1;35670:3;35593:84;:::i;:::-;35586:91;;35690:93;35779:3;35690:93;:::i;:::-;35812:1;35807:3;35803:11;35796:18;;35408:416;;;:::o;35834:177::-;35978:21;35974:1;35966:6;35962:14;35955:45;35834:177;:::o;36021:418::-;36181:3;36206:85;36288:2;36283:3;36206:85;:::i;:::-;36199:92;;36304:93;36393:3;36304:93;:::i;:::-;36426:2;36421:3;36417:12;36410:19;;36021:418;;;:::o;36449:222::-;36593:66;36589:1;36581:6;36577:14;36570:90;36449:222;:::o;36681:418::-;36841:3;36866:85;36948:2;36943:3;36866:85;:::i;:::-;36859:92;;36964:93;37053:3;36964:93;:::i;:::-;37086:2;37081:3;37077:12;37070:19;;36681:418;;;:::o;37109:222::-;37253:66;37249:1;37241:6;37237:14;37230:90;37109:222;:::o;37341:418::-;37501:3;37526:85;37608:2;37603:3;37526:85;:::i;:::-;37519:92;;37624:93;37713:3;37624:93;:::i;:::-;37746:2;37741:3;37737:12;37730:19;;37341:418;;;:::o;37769:222::-;37913:66;37909:1;37901:6;37897:14;37890:90;37769:222;:::o;38001:418::-;38161:3;38186:85;38268:2;38263:3;38186:85;:::i;:::-;38179:92;;38284:93;38373:3;38284:93;:::i;:::-;38406:2;38401:3;38397:12;38390:19;;38001:418;;;:::o;38429:222::-;38573:66;38569:1;38561:6;38557:14;38550:90;38429:222;:::o;38661:416::-;38821:3;38846:84;38928:1;38923:3;38846:84;:::i;:::-;38839:91;;38943:93;39032:3;38943:93;:::i;:::-;39065:1;39060:3;39056:11;39049:18;;38661:416;;;:::o;39087:2505::-;40022:3;40048:148;40192:3;40048:148;:::i;:::-;40041:155;;40217:148;40361:3;40217:148;:::i;:::-;40210:155;;40386:148;40530:3;40386:148;:::i;:::-;40379:155;;40555:148;40699:3;40555:148;:::i;:::-;40548:155;;40724:95;40815:3;40806:6;40724:95;:::i;:::-;40717:102;;40840:148;40984:3;40840:148;:::i;:::-;40833:155;;41009:95;41100:3;41091:6;41009:95;:::i;:::-;41002:102;;41125:148;41269:3;41125:148;:::i;:::-;41118:155;;41294:95;41385:3;41376:6;41294:95;:::i;:::-;41287:102;;41410:148;41554:3;41410:148;:::i;:::-;41403:155;;41579:3;41572:10;;39087:2505;;;;;;:::o;41602:187::-;41746:31;41742:1;41734:6;41730:14;41723:55;41602:187;:::o;41799:418::-;41959:3;41984:85;42066:2;42061:3;41984:85;:::i;:::-;41977:92;;42082:93;42171:3;42082:93;:::i;:::-;42204:2;42199:3;42195:12;42188:19;;41799:418;;;:::o;42227:557::-;42460:3;42486:148;42630:3;42486:148;:::i;:::-;42479:155;;42655:95;42746:3;42737:6;42655:95;:::i;:::-;42648:102;;42771:3;42764:10;;42227:557;;;;:::o;42794:237::-;42938:34;42934:1;42926:6;42922:14;42915:58;43011:8;43006:2;42998:6;42994:15;42987:33;42794:237;:::o;43041:382::-;43183:3;43208:67;43272:2;43267:3;43208:67;:::i;:::-;43201:74;;43288:93;43377:3;43288:93;:::i;:::-;43410:2;43405:3;43401:12;43394:19;;43041:382;;;:::o;43433:435::-;43599:4;43641:2;43630:9;43626:18;43618:26;;43694:9;43688:4;43684:20;43680:1;43669:9;43665:17;43658:47;43726:131;43852:4;43726:131;:::i;:::-;43718:139;;43433:435;;;:::o;43878:243::-;44022:34;44018:1;44010:6;44006:14;43999:58;44095:14;44090:2;44082:6;44078:15;44071:39;43878:243;:::o;44131:382::-;44273:3;44298:67;44362:2;44357:3;44298:67;:::i;:::-;44291:74;;44378:93;44467:3;44378:93;:::i;:::-;44500:2;44495:3;44491:12;44484:19;;44131:382;;;:::o;44523:435::-;44689:4;44731:2;44720:9;44716:18;44708:26;;44784:9;44778:4;44774:20;44770:1;44759:9;44755:17;44748:47;44816:131;44942:4;44816:131;:::i;:::-;44808:139;;44523:435;;;:::o;44968:240::-;45112:34;45108:1;45100:6;45096:14;45089:58;45185:11;45180:2;45172:6;45168:15;45161:36;44968:240;:::o;45218:382::-;45360:3;45385:67;45449:2;45444:3;45385:67;:::i;:::-;45378:74;;45465:93;45554:3;45465:93;:::i;:::-;45587:2;45582:3;45578:12;45571:19;;45218:382;;;:::o;45610:435::-;45776:4;45818:2;45807:9;45803:18;45795:26;;45871:9;45865:4;45861:20;45857:1;45846:9;45842:17;45835:47;45903:131;46029:4;45903:131;:::i;:::-;45895:139;;45610:435;;;:::o;46055:235::-;46199:34;46195:1;46187:6;46183:14;46176:58;46272:6;46267:2;46259:6;46255:15;46248:31;46055:235;:::o;46300:382::-;46442:3;46467:67;46531:2;46526:3;46467:67;:::i;:::-;46460:74;;46547:93;46636:3;46547:93;:::i;:::-;46669:2;46664:3;46660:12;46653:19;;46300:382;;;:::o;46692:435::-;46858:4;46900:2;46889:9;46885:18;46877:26;;46953:9;46947:4;46943:20;46939:1;46928:9;46924:17;46917:47;46985:131;47111:4;46985:131;:::i;:::-;46977:139;;46692:435;;;:::o;47137:211::-;47177:4;47201:20;47219:1;47201:20;:::i;:::-;47196:25;;47239:20;47257:1;47239:20;:::i;:::-;47234:25;;47282:1;47279;47276:8;47273:34;;;47287:18;;:::i;:::-;47273:34;47336:1;47333;47329:9;47321:17;;47137:211;;;;:::o;47358:329::-;47398:3;47421:20;47439:1;47421:20;:::i;:::-;47416:25;;47459:20;47477:1;47459:20;:::i;:::-;47454:25;;47621:1;47553:66;47549:74;47546:1;47543:81;47540:107;;;47627:18;;:::i;:::-;47540:107;47675:1;47672;47668:9;47661:16;;47358:329;;;;:::o;47697:183::-;47841:27;47837:1;47829:6;47825:14;47818:51;47697:183;:::o;47890:382::-;48032:3;48057:67;48121:2;48116:3;48057:67;:::i;:::-;48050:74;;48137:93;48226:3;48137:93;:::i;:::-;48259:2;48254:3;48250:12;48243:19;;47890:382;;;:::o;48282:435::-;48448:4;48490:2;48479:9;48475:18;48467:26;;48543:9;48537:4;48533:20;48529:1;48518:9;48514:17;48507:47;48575:131;48701:4;48575:131;:::i;:::-;48567:139;;48282:435;;;:::o;48727:196::-;48779:77;48776:1;48769:88;48880:4;48877:1;48870:15;48908:4;48905:1;48898:15;48933:205;48973:1;48994:20;49012:1;48994:20;:::i;:::-;48989:25;;49032:20;49050:1;49032:20;:::i;:::-;49027:25;;49075:1;49065:35;;49080:18;;:::i;:::-;49065:35;49126:1;49123;49119:9;49114:14;;48933:205;;;;:::o;49148:196::-;49180:1;49201:20;49219:1;49201:20;:::i;:::-;49196:25;;49239:20;49257:1;49239:20;:::i;:::-;49234:25;;49282:1;49272:35;;49287:18;;:::i;:::-;49272:35;49332:1;49329;49325:9;49320:14;;49148:196;;;;:::o;49354:::-;49406:77;49403:1;49396:88;49507:4;49504:1;49497:15;49535:4;49532:1;49525:15;49560:249;49704:34;49700:1;49692:6;49688:14;49681:58;49777:20;49772:2;49764:6;49760:15;49753:45;49560:249;:::o;49819:382::-;49961:3;49986:67;50050:2;50045:3;49986:67;:::i;:::-;49979:74;;50066:93;50155:3;50066:93;:::i;:::-;50188:2;50183:3;50179:12;50172:19;;49819:382;;;:::o;50211:435::-;50377:4;50419:2;50408:9;50404:18;50396:26;;50472:9;50466:4;50462:20;50458:1;50447:9;50443:17;50436:47;50504:131;50630:4;50504:131;:::i;:::-;50496:139;;50211:435;;;:::o;50656:372::-;50696:7;50723:20;50741:1;50723:20;:::i;:::-;50718:25;;50761:20;50779:1;50761:20;:::i;:::-;50756:25;;50957:1;50889:66;50885:74;50882:1;50879:81;50874:1;50867:9;50860:17;50856:105;50853:131;;;50964:18;;:::i;:::-;50853:131;51016:1;51013;51009:9;50998:20;;50656:372;;;;:::o;51038:106::-;51089:6;51127:5;51121:12;51111:22;;51038:106;;;:::o;51154:180::-;51237:11;51275:6;51270:3;51263:19;51319:4;51314:3;51310:14;51295:29;;51154:180;;;;:::o;51344:380::-;51430:3;51462:38;51494:5;51462:38;:::i;:::-;51520:70;51583:6;51578:3;51520:70;:::i;:::-;51513:77;;51603:52;51648:6;51643:3;51636:4;51629:5;51625:16;51603:52;:::i;:::-;51684:29;51706:6;51684:29;:::i;:::-;51679:3;51675:39;51668:46;;51434:290;51344:380;;;;:::o;51734:668::-;51929:4;51971:3;51960:9;51956:19;51948:27;;51989:71;52057:1;52046:9;52042:17;52033:6;51989:71;:::i;:::-;52074:72;52142:2;52131:9;52127:18;52118:6;52074:72;:::i;:::-;52160;52228:2;52217:9;52213:18;52204:6;52160:72;:::i;:::-;52283:9;52277:4;52273:20;52268:2;52257:9;52253:18;52246:48;52315:76;52386:4;52377:6;52315:76;:::i;:::-;52307:84;;51734:668;;;;;;;:::o;52412:153::-;52468:5;52503:6;52497:13;52488:22;;52523:32;52549:5;52523:32;:::i;:::-;52412:153;;;;:::o;52575:373::-;52644:6;52697:2;52685:9;52676:7;52672:23;52668:32;52665:119;;;52703:79;;:::i;:::-;52665:119;52831:1;52860:63;52915:7;52906:6;52895:9;52891:22;52860:63;:::i;:::-;52850:73;;52798:139;52575:373;;;;:::o;52958:190::-;53102:34;53098:1;53090:6;53086:14;53079:58;52958:190;:::o;53158:382::-;53300:3;53325:67;53389:2;53384:3;53325:67;:::i;:::-;53318:74;;53405:93;53494:3;53405:93;:::i;:::-;53527:2;53522:3;53518:12;53511:19;;53158:382;;;:::o;53550:435::-;53716:4;53758:2;53747:9;53743:18;53735:26;;53811:9;53805:4;53801:20;53797:1;53786:9;53782:17;53775:47;53843:131;53969:4;53843:131;:::i;:::-;53835:139;;53550:435;;;:::o;53995:186::-;54139:30;54135:1;54127:6;54123:14;54116:54;53995:186;:::o;54191:382::-;54333:3;54358:67;54422:2;54417:3;54358:67;:::i;:::-;54351:74;;54438:93;54527:3;54438:93;:::i;:::-;54560:2;54555:3;54551:12;54544:19;;54191:382;;;:::o;54583:435::-;54749:4;54791:2;54780:9;54776:18;54768:26;;54844:9;54838:4;54834:20;54830:1;54819:9;54815:17;54808:47;54876:131;55002:4;54876:131;:::i;:::-;54868:139;;54583:435;;;:::o

Swarm Source

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