ETH Price: $3,300.82 (-3.25%)
Gas: 22 Gwei

Token

OrdinaryPunks (ORDINARYPUNKS)
 

Overview

Max Total Supply

5,000 ORDINARYPUNKS

Holders

952

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
willywill.eth
Balance
10 ORDINARYPUNKS
0x430d55c83b666c2ce0eecf0a1c5a9a0a03336feb
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:
OrdinaryPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-08
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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/ordinaryPunks.sol


pragma solidity ^0.8.7;

contract OrdinaryPunks is Ownable, ERC721 {
    using SafeMath for uint256;

  uint public maxPerTransaction = 20; //Max per transaction
  uint public supplyLimit = 5000;
  uint public freeSupply = 2500;
  bool public publicSaleActive = true;
  uint256 public totalSupply;
  string public baseURI;
  uint256 public tokenPrice = 10000000000000000;

  constructor(string memory name, string memory symbol, string memory baseURIinput)
    ERC721(name, symbol)
  {
      baseURI = baseURIinput;
  }

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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }

  function togglePublicSaleActive() external onlyOwner {
    publicSaleActive = !publicSaleActive;
  }

    function buy(uint _count) public payable{
    require(_count <= maxPerTransaction, "invalid token count");
    require(tokenPrice.mul(_count) <= msg.value,"Ether value sent is not correct");
    require(publicSaleActive == true, "Sale is Paused.");
    require((totalSupply + _count) <= supplyLimit, "supply reached");

    uint256 newId = totalSupply;

        for(uint i = 0; i < _count; i++){
            newId+=1;
            _safeMint(msg.sender, newId);
        }

    totalSupply = newId;
    }

  function freeMint(uint256 numberOfTokens) public {
    require(totalSupply <= freeSupply, "Free supply is over!");
    require(publicSaleActive == true, "Sale is Paused.");
    require(numberOfTokens <= maxPerTransaction, "Over max per transaction!");

    uint256 newId = totalSupply;
        for (uint i = 0; i < numberOfTokens; i++) {
        newId+=1;
        _safeMint(msg.sender, newId);
        }
    totalSupply = newId;
  }

  function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260146007556113886008556109c46009556001600a60006101000a81548160ff021916908315150217905550662386f26fc10000600d553480156200004857600080fd5b5060405162003d8938038062003d8983398181016040528101906200006e9190620002e0565b82826200009062000084620000e660201b60201c565b620000ee60201b60201c565b8160019080519060200190620000a8929190620001b2565b508060029080519060200190620000c1929190620001b2565b50505080600c9080519060200190620000dc929190620001b2565b505050506200051d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c0906200042e565b90600052602060002090601f016020900481019282620001e4576000855562000230565b82601f10620001ff57805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200022f57825182559160200191906001019062000212565b5b5090506200023f919062000243565b5090565b5b808211156200025e57600081600090555060010162000244565b5090565b6000620002796200027384620003c2565b62000399565b905082815260208101848484011115620002985762000297620004fd565b5b620002a5848285620003f8565b509392505050565b600082601f830112620002c557620002c4620004f8565b5b8151620002d784826020860162000262565b91505092915050565b600080600060608486031215620002fc57620002fb62000507565b5b600084015167ffffffffffffffff8111156200031d576200031c62000502565b5b6200032b86828701620002ad565b935050602084015167ffffffffffffffff8111156200034f576200034e62000502565b5b6200035d86828701620002ad565b925050604084015167ffffffffffffffff81111562000381576200038062000502565b5b6200038f86828701620002ad565b9150509250925092565b6000620003a5620003b8565b9050620003b3828262000464565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e057620003df620004c9565b5b620003eb826200050c565b9050602081019050919050565b60005b8381101562000418578082015181840152602081019050620003fb565b8381111562000428576000848401525b50505050565b600060028204905060018216806200044757607f821691505b602082108114156200045e576200045d6200049a565b5b50919050565b6200046f826200050c565b810181811067ffffffffffffffff82111715620004915762000490620004c9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61385c806200052d6000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105c2578063d96a094a146105ff578063e985e9c51461061b578063f2fde38b14610658576101b7565b8063a22cb46514610545578063b88d4fde1461056e578063bc8893b414610597576101b7565b80637c928fe9116100c65780637c928fe91461049b5780637ff9b596146104c45780638da5cb5b146104ef57806395d89b411461051a576101b7565b80636c0360eb1461041c57806370a0823114610447578063715018a614610484576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103625780634b980d671461038b57806355f804b3146103b65780636352211e146103df576101b7565b806323b872dd146102f757806324a6ab0c146103205780633ccfd60b1461034b576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461028a57806318160ddd146102a157806319d1997a146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906125d8565b610681565b6040516101f09190612b09565b60405180910390f35b34801561020557600080fd5b5061020e610763565b60405161021b9190612b24565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061267f565b6107f5565b6040516102589190612aa2565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612598565b61087a565b005b34801561029657600080fd5b5061029f610992565b005b3480156102ad57600080fd5b506102b6610a3a565b6040516102c39190612e06565b60405180910390f35b3480156102d857600080fd5b506102e1610a40565b6040516102ee9190612e06565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612482565b610a46565b005b34801561032c57600080fd5b50610335610aa6565b6040516103429190612e06565b60405180910390f35b34801561035757600080fd5b50610360610aac565b005b34801561036e57600080fd5b5061038960048036038101906103849190612482565b610b77565b005b34801561039757600080fd5b506103a0610b97565b6040516103ad9190612e06565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612632565b610b9d565b005b3480156103eb57600080fd5b506104066004803603810190610401919061267f565b610c2f565b6040516104139190612aa2565b60405180910390f35b34801561042857600080fd5b50610431610ce1565b60405161043e9190612b24565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612415565b610d6f565b60405161047b9190612e06565b60405180910390f35b34801561049057600080fd5b50610499610e27565b005b3480156104a757600080fd5b506104c260048036038101906104bd919061267f565b610eaf565b005b3480156104d057600080fd5b506104d9610fdb565b6040516104e69190612e06565b60405180910390f35b3480156104fb57600080fd5b50610504610fe1565b6040516105119190612aa2565b60405180910390f35b34801561052657600080fd5b5061052f61100a565b60405161053c9190612b24565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612558565b61109c565b005b34801561057a57600080fd5b50610595600480360381019061059091906124d5565b61121d565b005b3480156105a357600080fd5b506105ac61127f565b6040516105b99190612b09565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e4919061267f565b611292565b6040516105f69190612b24565b60405180910390f35b6106196004803603810190610614919061267f565b611339565b005b34801561062757600080fd5b50610642600480360381019061063d9190612442565b6114c7565b60405161064f9190612b09565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612415565b61155b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075c575061075b82611653565b5b9050919050565b60606001805461077290613085565b80601f016020809104026020016040519081016040528092919081815260200182805461079e90613085565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b6000610800826116bd565b61083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690612ce6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088582610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90612d86565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610915611729565b73ffffffffffffffffffffffffffffffffffffffff16148061094457506109438161093e611729565b6114c7565b5b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90612c46565b60405180910390fd5b61098d8383611731565b505050565b61099a611729565b73ffffffffffffffffffffffffffffffffffffffff166109b8610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612d06565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600b5481565b60085481565b610a57610a51611729565b826117ea565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612da6565b60405180910390fd5b610aa18383836118c8565b505050565b60095481565b610ab4611729565b73ffffffffffffffffffffffffffffffffffffffff16610ad2610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612d06565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b73573d6000803e3d6000fd5b5050565b610b928383836040518060200160405280600081525061121d565b505050565b60075481565b610ba5611729565b73ffffffffffffffffffffffffffffffffffffffff16610bc3610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090612d06565b60405180910390fd5b8181600c9190610c2a929190612243565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90612c86565b60405180910390fd5b80915050919050565b600c8054610cee90613085565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90613085565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790612c66565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2f611729565b73ffffffffffffffffffffffffffffffffffffffff16610e4d610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612d06565b60405180910390fd5b610ead6000611b24565b565b600954600b541115610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90612dc6565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612de6565b60405180910390fd5b600754811115610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612ca6565b60405180910390fd5b6000600b54905060005b82811015610fcf57600182610fb09190612eba565b9150610fbc3383611be8565b8080610fc7906130e8565b915050610f9b565b5080600b819055505050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461101990613085565b80601f016020809104026020016040519081016040528092919081815260200182805461104590613085565b80156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905090565b6110a4611729565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990612be6565b60405180910390fd5b806006600061111f611729565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111cc611729565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112119190612b09565b60405180910390a35050565b61122e611228611729565b836117ea565b61126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490612da6565b60405180910390fd5b61127984848484611c06565b50505050565b600a60009054906101000a900460ff1681565b606061129d826116bd565b6112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612d46565b60405180910390fd5b60006112e6611c62565b905060008151116113065760405180602001604052806000815250611331565b8061131084611cf4565b604051602001611321929190612a7e565b6040516020818303038152906040525b915050919050565b60075481111561137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590612d66565b60405180910390fd5b3461139482600d54611e5590919063ffffffff16565b11156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612c06565b60405180910390fd5b60011515600a60009054906101000a900460ff1615151461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612de6565b60405180910390fd5b60085481600b5461143c9190612eba565b111561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612ba6565b60405180910390fd5b6000600b54905060005b828110156114bb5760018261149c9190612eba565b91506114a83383611be8565b80806114b3906130e8565b915050611487565b5080600b819055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611563611729565b73ffffffffffffffffffffffffffffffffffffffff16611581610fe1565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90612d06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90612b66565b60405180910390fd5b61165081611b24565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117a483610c2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117f5826116bd565b611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612c26565b60405180910390fd5b600061183f83610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118ae57508373ffffffffffffffffffffffffffffffffffffffff16611896846107f5565b73ffffffffffffffffffffffffffffffffffffffff16145b806118bf57506118be81856114c7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118e882610c2f565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612d26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590612bc6565b60405180910390fd5b6119b9838383611e6b565b6119c4600082611731565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a149190612f9b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6b9190612eba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c02828260405180602001604052806000815250611e70565b5050565b611c118484846118c8565b611c1d84848484611ecb565b611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390612b46565b60405180910390fd5b50505050565b6060600c8054611c7190613085565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9d90613085565b8015611cea5780601f10611cbf57610100808354040283529160200191611cea565b820191906000526020600020905b815481529060010190602001808311611ccd57829003601f168201915b5050505050905090565b60606000821415611d3c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e50565b600082905060005b60008214611d6e578080611d57906130e8565b915050600a82611d679190612f10565b9150611d44565b60008167ffffffffffffffff811115611d8a57611d8961321e565b5b6040519080825280601f01601f191660200182016040528015611dbc5781602001600182028036833780820191505090505b5090505b60008514611e4957600182611dd59190612f9b565b9150600a85611de49190613131565b6030611df09190612eba565b60f81b818381518110611e0657611e056131ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e429190612f10565b9450611dc0565b8093505050505b919050565b60008183611e639190612f41565b905092915050565b505050565b611e7a8383612062565b611e876000848484611ecb565b611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90612b46565b60405180910390fd5b505050565b6000611eec8473ffffffffffffffffffffffffffffffffffffffff16612230565b15612055578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f15611729565b8786866040518563ffffffff1660e01b8152600401611f379493929190612abd565b602060405180830381600087803b158015611f5157600080fd5b505af1925050508015611f8257506040513d601f19601f82011682018060405250810190611f7f9190612605565b60015b612005573d8060008114611fb2576040519150601f19603f3d011682016040523d82523d6000602084013e611fb7565b606091505b50600081511415611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490612b46565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061205a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c990612cc6565b60405180910390fd5b6120db816116bd565b1561211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211290612b86565b60405180910390fd5b61212760008383611e6b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121779190612eba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461224f90613085565b90600052602060002090601f01602090048101928261227157600085556122b8565b82601f1061228a57803560ff19168380011785556122b8565b828001600101855582156122b8579182015b828111156122b757823582559160200191906001019061229c565b5b5090506122c591906122c9565b5090565b5b808211156122e25760008160009055506001016122ca565b5090565b60006122f96122f484612e46565b612e21565b9050828152602081018484840111156123155761231461325c565b5b612320848285613043565b509392505050565b600081359050612337816137ca565b92915050565b60008135905061234c816137e1565b92915050565b600081359050612361816137f8565b92915050565b600081519050612376816137f8565b92915050565b600082601f83011261239157612390613252565b5b81356123a18482602086016122e6565b91505092915050565b60008083601f8401126123c0576123bf613252565b5b8235905067ffffffffffffffff8111156123dd576123dc61324d565b5b6020830191508360018202830111156123f9576123f8613257565b5b9250929050565b60008135905061240f8161380f565b92915050565b60006020828403121561242b5761242a613266565b5b600061243984828501612328565b91505092915050565b6000806040838503121561245957612458613266565b5b600061246785828601612328565b925050602061247885828601612328565b9150509250929050565b60008060006060848603121561249b5761249a613266565b5b60006124a986828701612328565b93505060206124ba86828701612328565b92505060406124cb86828701612400565b9150509250925092565b600080600080608085870312156124ef576124ee613266565b5b60006124fd87828801612328565b945050602061250e87828801612328565b935050604061251f87828801612400565b925050606085013567ffffffffffffffff8111156125405761253f613261565b5b61254c8782880161237c565b91505092959194509250565b6000806040838503121561256f5761256e613266565b5b600061257d85828601612328565b925050602061258e8582860161233d565b9150509250929050565b600080604083850312156125af576125ae613266565b5b60006125bd85828601612328565b92505060206125ce85828601612400565b9150509250929050565b6000602082840312156125ee576125ed613266565b5b60006125fc84828501612352565b91505092915050565b60006020828403121561261b5761261a613266565b5b600061262984828501612367565b91505092915050565b6000806020838503121561264957612648613266565b5b600083013567ffffffffffffffff81111561266757612666613261565b5b612673858286016123aa565b92509250509250929050565b60006020828403121561269557612694613266565b5b60006126a384828501612400565b91505092915050565b6126b581612fcf565b82525050565b6126c481612fe1565b82525050565b60006126d582612e77565b6126df8185612e8d565b93506126ef818560208601613052565b6126f88161326b565b840191505092915050565b600061270e82612e82565b6127188185612e9e565b9350612728818560208601613052565b6127318161326b565b840191505092915050565b600061274782612e82565b6127518185612eaf565b9350612761818560208601613052565b80840191505092915050565b600061277a603283612e9e565b91506127858261327c565b604082019050919050565b600061279d602683612e9e565b91506127a8826132cb565b604082019050919050565b60006127c0601c83612e9e565b91506127cb8261331a565b602082019050919050565b60006127e3600e83612e9e565b91506127ee82613343565b602082019050919050565b6000612806602483612e9e565b91506128118261336c565b604082019050919050565b6000612829601983612e9e565b9150612834826133bb565b602082019050919050565b600061284c601f83612e9e565b9150612857826133e4565b602082019050919050565b600061286f602c83612e9e565b915061287a8261340d565b604082019050919050565b6000612892603883612e9e565b915061289d8261345c565b604082019050919050565b60006128b5602a83612e9e565b91506128c0826134ab565b604082019050919050565b60006128d8602983612e9e565b91506128e3826134fa565b604082019050919050565b60006128fb601983612e9e565b915061290682613549565b602082019050919050565b600061291e602083612e9e565b915061292982613572565b602082019050919050565b6000612941602c83612e9e565b915061294c8261359b565b604082019050919050565b6000612964602083612e9e565b915061296f826135ea565b602082019050919050565b6000612987602983612e9e565b915061299282613613565b604082019050919050565b60006129aa602f83612e9e565b91506129b582613662565b604082019050919050565b60006129cd601383612e9e565b91506129d8826136b1565b602082019050919050565b60006129f0602183612e9e565b91506129fb826136da565b604082019050919050565b6000612a13603183612e9e565b9150612a1e82613729565b604082019050919050565b6000612a36601483612e9e565b9150612a4182613778565b602082019050919050565b6000612a59600f83612e9e565b9150612a64826137a1565b602082019050919050565b612a7881613039565b82525050565b6000612a8a828561273c565b9150612a96828461273c565b91508190509392505050565b6000602082019050612ab760008301846126ac565b92915050565b6000608082019050612ad260008301876126ac565b612adf60208301866126ac565b612aec6040830185612a6f565b8181036060830152612afe81846126ca565b905095945050505050565b6000602082019050612b1e60008301846126bb565b92915050565b60006020820190508181036000830152612b3e8184612703565b905092915050565b60006020820190508181036000830152612b5f8161276d565b9050919050565b60006020820190508181036000830152612b7f81612790565b9050919050565b60006020820190508181036000830152612b9f816127b3565b9050919050565b60006020820190508181036000830152612bbf816127d6565b9050919050565b60006020820190508181036000830152612bdf816127f9565b9050919050565b60006020820190508181036000830152612bff8161281c565b9050919050565b60006020820190508181036000830152612c1f8161283f565b9050919050565b60006020820190508181036000830152612c3f81612862565b9050919050565b60006020820190508181036000830152612c5f81612885565b9050919050565b60006020820190508181036000830152612c7f816128a8565b9050919050565b60006020820190508181036000830152612c9f816128cb565b9050919050565b60006020820190508181036000830152612cbf816128ee565b9050919050565b60006020820190508181036000830152612cdf81612911565b9050919050565b60006020820190508181036000830152612cff81612934565b9050919050565b60006020820190508181036000830152612d1f81612957565b9050919050565b60006020820190508181036000830152612d3f8161297a565b9050919050565b60006020820190508181036000830152612d5f8161299d565b9050919050565b60006020820190508181036000830152612d7f816129c0565b9050919050565b60006020820190508181036000830152612d9f816129e3565b9050919050565b60006020820190508181036000830152612dbf81612a06565b9050919050565b60006020820190508181036000830152612ddf81612a29565b9050919050565b60006020820190508181036000830152612dff81612a4c565b9050919050565b6000602082019050612e1b6000830184612a6f565b92915050565b6000612e2b612e3c565b9050612e3782826130b7565b919050565b6000604051905090565b600067ffffffffffffffff821115612e6157612e6061321e565b5b612e6a8261326b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ec582613039565b9150612ed083613039565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0557612f04613162565b5b828201905092915050565b6000612f1b82613039565b9150612f2683613039565b925082612f3657612f35613191565b5b828204905092915050565b6000612f4c82613039565b9150612f5783613039565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9057612f8f613162565b5b828202905092915050565b6000612fa682613039565b9150612fb183613039565b925082821015612fc457612fc3613162565b5b828203905092915050565b6000612fda82613019565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613070578082015181840152602081019050613055565b8381111561307f576000848401525b50505050565b6000600282049050600182168061309d57607f821691505b602082108114156130b1576130b06131c0565b5b50919050565b6130c08261326b565b810181811067ffffffffffffffff821117156130df576130de61321e565b5b80604052505050565b60006130f382613039565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561312657613125613162565b5b600182019050919050565b600061313c82613039565b915061314783613039565b92508261315757613156613191565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f737570706c792072656163686564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820706572207472616e73616374696f6e2100000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f696e76616c696420746f6b656e20636f756e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4672656520737570706c79206973206f76657221000000000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6137d381612fcf565b81146137de57600080fd5b50565b6137ea81612fe1565b81146137f557600080fd5b50565b61380181612fed565b811461380c57600080fd5b50565b61381881613039565b811461382357600080fd5b5056fea264697066735822122092ce99b18d397286ea00cb42693c527fadbd172997eea4581d85ebab769138c464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4f7264696e61727950756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4f5244494e41525950554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d625267643854526d6d6463483943546b484b434458344657316b734e533168765478675a6755565a327645572f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105c2578063d96a094a146105ff578063e985e9c51461061b578063f2fde38b14610658576101b7565b8063a22cb46514610545578063b88d4fde1461056e578063bc8893b414610597576101b7565b80637c928fe9116100c65780637c928fe91461049b5780637ff9b596146104c45780638da5cb5b146104ef57806395d89b411461051a576101b7565b80636c0360eb1461041c57806370a0823114610447578063715018a614610484576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103625780634b980d671461038b57806355f804b3146103b65780636352211e146103df576101b7565b806323b872dd146102f757806324a6ab0c146103205780633ccfd60b1461034b576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461028a57806318160ddd146102a157806319d1997a146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906125d8565b610681565b6040516101f09190612b09565b60405180910390f35b34801561020557600080fd5b5061020e610763565b60405161021b9190612b24565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061267f565b6107f5565b6040516102589190612aa2565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612598565b61087a565b005b34801561029657600080fd5b5061029f610992565b005b3480156102ad57600080fd5b506102b6610a3a565b6040516102c39190612e06565b60405180910390f35b3480156102d857600080fd5b506102e1610a40565b6040516102ee9190612e06565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612482565b610a46565b005b34801561032c57600080fd5b50610335610aa6565b6040516103429190612e06565b60405180910390f35b34801561035757600080fd5b50610360610aac565b005b34801561036e57600080fd5b5061038960048036038101906103849190612482565b610b77565b005b34801561039757600080fd5b506103a0610b97565b6040516103ad9190612e06565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612632565b610b9d565b005b3480156103eb57600080fd5b506104066004803603810190610401919061267f565b610c2f565b6040516104139190612aa2565b60405180910390f35b34801561042857600080fd5b50610431610ce1565b60405161043e9190612b24565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612415565b610d6f565b60405161047b9190612e06565b60405180910390f35b34801561049057600080fd5b50610499610e27565b005b3480156104a757600080fd5b506104c260048036038101906104bd919061267f565b610eaf565b005b3480156104d057600080fd5b506104d9610fdb565b6040516104e69190612e06565b60405180910390f35b3480156104fb57600080fd5b50610504610fe1565b6040516105119190612aa2565b60405180910390f35b34801561052657600080fd5b5061052f61100a565b60405161053c9190612b24565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612558565b61109c565b005b34801561057a57600080fd5b50610595600480360381019061059091906124d5565b61121d565b005b3480156105a357600080fd5b506105ac61127f565b6040516105b99190612b09565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e4919061267f565b611292565b6040516105f69190612b24565b60405180910390f35b6106196004803603810190610614919061267f565b611339565b005b34801561062757600080fd5b50610642600480360381019061063d9190612442565b6114c7565b60405161064f9190612b09565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612415565b61155b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075c575061075b82611653565b5b9050919050565b60606001805461077290613085565b80601f016020809104026020016040519081016040528092919081815260200182805461079e90613085565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b6000610800826116bd565b61083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690612ce6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088582610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90612d86565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610915611729565b73ffffffffffffffffffffffffffffffffffffffff16148061094457506109438161093e611729565b6114c7565b5b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90612c46565b60405180910390fd5b61098d8383611731565b505050565b61099a611729565b73ffffffffffffffffffffffffffffffffffffffff166109b8610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612d06565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600b5481565b60085481565b610a57610a51611729565b826117ea565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612da6565b60405180910390fd5b610aa18383836118c8565b505050565b60095481565b610ab4611729565b73ffffffffffffffffffffffffffffffffffffffff16610ad2610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612d06565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b73573d6000803e3d6000fd5b5050565b610b928383836040518060200160405280600081525061121d565b505050565b60075481565b610ba5611729565b73ffffffffffffffffffffffffffffffffffffffff16610bc3610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090612d06565b60405180910390fd5b8181600c9190610c2a929190612243565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90612c86565b60405180910390fd5b80915050919050565b600c8054610cee90613085565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90613085565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790612c66565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2f611729565b73ffffffffffffffffffffffffffffffffffffffff16610e4d610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612d06565b60405180910390fd5b610ead6000611b24565b565b600954600b541115610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90612dc6565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612de6565b60405180910390fd5b600754811115610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612ca6565b60405180910390fd5b6000600b54905060005b82811015610fcf57600182610fb09190612eba565b9150610fbc3383611be8565b8080610fc7906130e8565b915050610f9b565b5080600b819055505050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461101990613085565b80601f016020809104026020016040519081016040528092919081815260200182805461104590613085565b80156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905090565b6110a4611729565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990612be6565b60405180910390fd5b806006600061111f611729565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111cc611729565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112119190612b09565b60405180910390a35050565b61122e611228611729565b836117ea565b61126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490612da6565b60405180910390fd5b61127984848484611c06565b50505050565b600a60009054906101000a900460ff1681565b606061129d826116bd565b6112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390612d46565b60405180910390fd5b60006112e6611c62565b905060008151116113065760405180602001604052806000815250611331565b8061131084611cf4565b604051602001611321929190612a7e565b6040516020818303038152906040525b915050919050565b60075481111561137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590612d66565b60405180910390fd5b3461139482600d54611e5590919063ffffffff16565b11156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612c06565b60405180910390fd5b60011515600a60009054906101000a900460ff1615151461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612de6565b60405180910390fd5b60085481600b5461143c9190612eba565b111561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612ba6565b60405180910390fd5b6000600b54905060005b828110156114bb5760018261149c9190612eba565b91506114a83383611be8565b80806114b3906130e8565b915050611487565b5080600b819055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611563611729565b73ffffffffffffffffffffffffffffffffffffffff16611581610fe1565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90612d06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90612b66565b60405180910390fd5b61165081611b24565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117a483610c2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117f5826116bd565b611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612c26565b60405180910390fd5b600061183f83610c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118ae57508373ffffffffffffffffffffffffffffffffffffffff16611896846107f5565b73ffffffffffffffffffffffffffffffffffffffff16145b806118bf57506118be81856114c7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118e882610c2f565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612d26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590612bc6565b60405180910390fd5b6119b9838383611e6b565b6119c4600082611731565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a149190612f9b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6b9190612eba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c02828260405180602001604052806000815250611e70565b5050565b611c118484846118c8565b611c1d84848484611ecb565b611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390612b46565b60405180910390fd5b50505050565b6060600c8054611c7190613085565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9d90613085565b8015611cea5780601f10611cbf57610100808354040283529160200191611cea565b820191906000526020600020905b815481529060010190602001808311611ccd57829003601f168201915b5050505050905090565b60606000821415611d3c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e50565b600082905060005b60008214611d6e578080611d57906130e8565b915050600a82611d679190612f10565b9150611d44565b60008167ffffffffffffffff811115611d8a57611d8961321e565b5b6040519080825280601f01601f191660200182016040528015611dbc5781602001600182028036833780820191505090505b5090505b60008514611e4957600182611dd59190612f9b565b9150600a85611de49190613131565b6030611df09190612eba565b60f81b818381518110611e0657611e056131ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e429190612f10565b9450611dc0565b8093505050505b919050565b60008183611e639190612f41565b905092915050565b505050565b611e7a8383612062565b611e876000848484611ecb565b611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90612b46565b60405180910390fd5b505050565b6000611eec8473ffffffffffffffffffffffffffffffffffffffff16612230565b15612055578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f15611729565b8786866040518563ffffffff1660e01b8152600401611f379493929190612abd565b602060405180830381600087803b158015611f5157600080fd5b505af1925050508015611f8257506040513d601f19601f82011682018060405250810190611f7f9190612605565b60015b612005573d8060008114611fb2576040519150601f19603f3d011682016040523d82523d6000602084013e611fb7565b606091505b50600081511415611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490612b46565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061205a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c990612cc6565b60405180910390fd5b6120db816116bd565b1561211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211290612b86565b60405180910390fd5b61212760008383611e6b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121779190612eba565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461224f90613085565b90600052602060002090601f01602090048101928261227157600085556122b8565b82601f1061228a57803560ff19168380011785556122b8565b828001600101855582156122b8579182015b828111156122b757823582559160200191906001019061229c565b5b5090506122c591906122c9565b5090565b5b808211156122e25760008160009055506001016122ca565b5090565b60006122f96122f484612e46565b612e21565b9050828152602081018484840111156123155761231461325c565b5b612320848285613043565b509392505050565b600081359050612337816137ca565b92915050565b60008135905061234c816137e1565b92915050565b600081359050612361816137f8565b92915050565b600081519050612376816137f8565b92915050565b600082601f83011261239157612390613252565b5b81356123a18482602086016122e6565b91505092915050565b60008083601f8401126123c0576123bf613252565b5b8235905067ffffffffffffffff8111156123dd576123dc61324d565b5b6020830191508360018202830111156123f9576123f8613257565b5b9250929050565b60008135905061240f8161380f565b92915050565b60006020828403121561242b5761242a613266565b5b600061243984828501612328565b91505092915050565b6000806040838503121561245957612458613266565b5b600061246785828601612328565b925050602061247885828601612328565b9150509250929050565b60008060006060848603121561249b5761249a613266565b5b60006124a986828701612328565b93505060206124ba86828701612328565b92505060406124cb86828701612400565b9150509250925092565b600080600080608085870312156124ef576124ee613266565b5b60006124fd87828801612328565b945050602061250e87828801612328565b935050604061251f87828801612400565b925050606085013567ffffffffffffffff8111156125405761253f613261565b5b61254c8782880161237c565b91505092959194509250565b6000806040838503121561256f5761256e613266565b5b600061257d85828601612328565b925050602061258e8582860161233d565b9150509250929050565b600080604083850312156125af576125ae613266565b5b60006125bd85828601612328565b92505060206125ce85828601612400565b9150509250929050565b6000602082840312156125ee576125ed613266565b5b60006125fc84828501612352565b91505092915050565b60006020828403121561261b5761261a613266565b5b600061262984828501612367565b91505092915050565b6000806020838503121561264957612648613266565b5b600083013567ffffffffffffffff81111561266757612666613261565b5b612673858286016123aa565b92509250509250929050565b60006020828403121561269557612694613266565b5b60006126a384828501612400565b91505092915050565b6126b581612fcf565b82525050565b6126c481612fe1565b82525050565b60006126d582612e77565b6126df8185612e8d565b93506126ef818560208601613052565b6126f88161326b565b840191505092915050565b600061270e82612e82565b6127188185612e9e565b9350612728818560208601613052565b6127318161326b565b840191505092915050565b600061274782612e82565b6127518185612eaf565b9350612761818560208601613052565b80840191505092915050565b600061277a603283612e9e565b91506127858261327c565b604082019050919050565b600061279d602683612e9e565b91506127a8826132cb565b604082019050919050565b60006127c0601c83612e9e565b91506127cb8261331a565b602082019050919050565b60006127e3600e83612e9e565b91506127ee82613343565b602082019050919050565b6000612806602483612e9e565b91506128118261336c565b604082019050919050565b6000612829601983612e9e565b9150612834826133bb565b602082019050919050565b600061284c601f83612e9e565b9150612857826133e4565b602082019050919050565b600061286f602c83612e9e565b915061287a8261340d565b604082019050919050565b6000612892603883612e9e565b915061289d8261345c565b604082019050919050565b60006128b5602a83612e9e565b91506128c0826134ab565b604082019050919050565b60006128d8602983612e9e565b91506128e3826134fa565b604082019050919050565b60006128fb601983612e9e565b915061290682613549565b602082019050919050565b600061291e602083612e9e565b915061292982613572565b602082019050919050565b6000612941602c83612e9e565b915061294c8261359b565b604082019050919050565b6000612964602083612e9e565b915061296f826135ea565b602082019050919050565b6000612987602983612e9e565b915061299282613613565b604082019050919050565b60006129aa602f83612e9e565b91506129b582613662565b604082019050919050565b60006129cd601383612e9e565b91506129d8826136b1565b602082019050919050565b60006129f0602183612e9e565b91506129fb826136da565b604082019050919050565b6000612a13603183612e9e565b9150612a1e82613729565b604082019050919050565b6000612a36601483612e9e565b9150612a4182613778565b602082019050919050565b6000612a59600f83612e9e565b9150612a64826137a1565b602082019050919050565b612a7881613039565b82525050565b6000612a8a828561273c565b9150612a96828461273c565b91508190509392505050565b6000602082019050612ab760008301846126ac565b92915050565b6000608082019050612ad260008301876126ac565b612adf60208301866126ac565b612aec6040830185612a6f565b8181036060830152612afe81846126ca565b905095945050505050565b6000602082019050612b1e60008301846126bb565b92915050565b60006020820190508181036000830152612b3e8184612703565b905092915050565b60006020820190508181036000830152612b5f8161276d565b9050919050565b60006020820190508181036000830152612b7f81612790565b9050919050565b60006020820190508181036000830152612b9f816127b3565b9050919050565b60006020820190508181036000830152612bbf816127d6565b9050919050565b60006020820190508181036000830152612bdf816127f9565b9050919050565b60006020820190508181036000830152612bff8161281c565b9050919050565b60006020820190508181036000830152612c1f8161283f565b9050919050565b60006020820190508181036000830152612c3f81612862565b9050919050565b60006020820190508181036000830152612c5f81612885565b9050919050565b60006020820190508181036000830152612c7f816128a8565b9050919050565b60006020820190508181036000830152612c9f816128cb565b9050919050565b60006020820190508181036000830152612cbf816128ee565b9050919050565b60006020820190508181036000830152612cdf81612911565b9050919050565b60006020820190508181036000830152612cff81612934565b9050919050565b60006020820190508181036000830152612d1f81612957565b9050919050565b60006020820190508181036000830152612d3f8161297a565b9050919050565b60006020820190508181036000830152612d5f8161299d565b9050919050565b60006020820190508181036000830152612d7f816129c0565b9050919050565b60006020820190508181036000830152612d9f816129e3565b9050919050565b60006020820190508181036000830152612dbf81612a06565b9050919050565b60006020820190508181036000830152612ddf81612a29565b9050919050565b60006020820190508181036000830152612dff81612a4c565b9050919050565b6000602082019050612e1b6000830184612a6f565b92915050565b6000612e2b612e3c565b9050612e3782826130b7565b919050565b6000604051905090565b600067ffffffffffffffff821115612e6157612e6061321e565b5b612e6a8261326b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ec582613039565b9150612ed083613039565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0557612f04613162565b5b828201905092915050565b6000612f1b82613039565b9150612f2683613039565b925082612f3657612f35613191565b5b828204905092915050565b6000612f4c82613039565b9150612f5783613039565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9057612f8f613162565b5b828202905092915050565b6000612fa682613039565b9150612fb183613039565b925082821015612fc457612fc3613162565b5b828203905092915050565b6000612fda82613019565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613070578082015181840152602081019050613055565b8381111561307f576000848401525b50505050565b6000600282049050600182168061309d57607f821691505b602082108114156130b1576130b06131c0565b5b50919050565b6130c08261326b565b810181811067ffffffffffffffff821117156130df576130de61321e565b5b80604052505050565b60006130f382613039565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561312657613125613162565b5b600182019050919050565b600061313c82613039565b915061314783613039565b92508261315757613156613191565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f737570706c792072656163686564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820706572207472616e73616374696f6e2100000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f696e76616c696420746f6b656e20636f756e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4672656520737570706c79206973206f76657221000000000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6137d381612fcf565b81146137de57600080fd5b50565b6137ea81612fe1565b81146137f557600080fd5b50565b61380181612fed565b811461380c57600080fd5b50565b61381881613039565b811461382357600080fd5b5056fea264697066735822122092ce99b18d397286ea00cb42693c527fadbd172997eea4581d85ebab769138c464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4f7264696e61727950756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4f5244494e41525950554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d625267643854526d6d6463483943546b484b434458344657316b734e533168765478675a6755565a327645572f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): OrdinaryPunks
Arg [1] : symbol (string): ORDINARYPUNKS
Arg [2] : baseURIinput (string): https://gateway.pinata.cloud/ipfs/QmbRgd8TRmmdcH9CTkHKCDX4FW1ksNS1hvTxgZgUVZ2vEW/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4f7264696e61727950756e6b7300000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 4f5244494e41525950554e4b5300000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d625267643854526d6d6463483943546b484b434458344657316b734e
Arg [10] : 533168765478675a6755565a327645572f000000000000000000000000000000


Deployed Bytecode Sourcemap

42655:1947:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30463:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31408:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32967:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32490:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43376:102;;;;;;;;;;;;;:::i;:::-;;42907:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42798:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33857:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42833:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44456:143;;;;;;;;;;;;;:::i;:::-;;34267:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42737:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43270:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31102:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42938:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30832:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11727:94;;;;;;;;;;;;;:::i;:::-;;44007:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42964:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11076:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31577:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33260:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34523:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42867:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31752:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43486:515;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33626:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11976:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30463:305;30565:4;30617:25;30602:40;;;:11;:40;;;;:105;;;;30674:33;30659:48;;;:11;:48;;;;30602:105;:158;;;;30724:36;30748:11;30724:23;:36::i;:::-;30602:158;30582:178;;30463:305;;;:::o;31408:100::-;31462:13;31495:5;31488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31408:100;:::o;32967:221::-;33043:7;33071:16;33079:7;33071;:16::i;:::-;33063:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33156:15;:24;33172:7;33156:24;;;;;;;;;;;;;;;;;;;;;33149:31;;32967:221;;;:::o;32490:411::-;32571:13;32587:23;32602:7;32587:14;:23::i;:::-;32571:39;;32635:5;32629:11;;:2;:11;;;;32621:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32729:5;32713:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32738:37;32755:5;32762:12;:10;:12::i;:::-;32738:16;:37::i;:::-;32713:62;32691:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32872:21;32881:2;32885:7;32872:8;:21::i;:::-;32560:341;32490:411;;:::o;43376:102::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43456:16:::1;;;;;;;;;;;43455:17;43436:16;;:36;;;;;;;;;;;;;;;;;;43376:102::o:0;42907:26::-;;;;:::o;42798:30::-;;;;:::o;33857:339::-;34052:41;34071:12;:10;:12::i;:::-;34085:7;34052:18;:41::i;:::-;34044:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34160:28;34170:4;34176:2;34180:7;34160:9;:28::i;:::-;33857:339;;;:::o;42833:29::-;;;;:::o;44456:143::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44504:15:::1;44522:21;44504:39;;44562:10;44554:28;;:37;44583:7;44554:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44493:106;44456:143::o:0;34267:185::-;34405:39;34422:4;34428:2;34432:7;34405:39;;;;;;;;;;;;:16;:39::i;:::-;34267:185;;;:::o;42737:34::-;;;;:::o;43270:100::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43354:10:::1;;43344:7;:20;;;;;;;:::i;:::-;;43270:100:::0;;:::o;31102:239::-;31174:7;31194:13;31210:7;:16;31218:7;31210:16;;;;;;;;;;;;;;;;;;;;;31194:32;;31262:1;31245:19;;:5;:19;;;;31237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31328:5;31321:12;;;31102:239;;;:::o;42938:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30832:208::-;30904:7;30949:1;30932:19;;:5;:19;;;;30924:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:9;:16;31026:5;31016:16;;;;;;;;;;;;;;;;31009:23;;30832:208;;;:::o;11727:94::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11792:21:::1;11810:1;11792:9;:21::i;:::-;11727:94::o:0;44007:443::-;44086:10;;44071:11;;:25;;44063:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44156:4;44136:24;;:16;;;;;;;;;;;:24;;;44128:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44213:17;;44195:14;:35;;44187:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44269:13;44285:11;;44269:27;;44312:6;44307:112;44328:14;44324:1;:18;44307:112;;;44367:1;44360:8;;;;;:::i;:::-;;;44379:28;44389:10;44401:5;44379:9;:28::i;:::-;44344:3;;;;;:::i;:::-;;;;44307:112;;;;44439:5;44425:11;:19;;;;44056:394;44007:443;:::o;42964:45::-;;;;:::o;11076:87::-;11122:7;11149:6;;;;;;;;;;;11142:13;;11076:87;:::o;31577:104::-;31633:13;31666:7;31659:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31577:104;:::o;33260:295::-;33375:12;:10;:12::i;:::-;33363:24;;:8;:24;;;;33355:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33475:8;33430:18;:32;33449:12;:10;:12::i;:::-;33430:32;;;;;;;;;;;;;;;:42;33463:8;33430:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33528:8;33499:48;;33514:12;:10;:12::i;:::-;33499:48;;;33538:8;33499:48;;;;;;:::i;:::-;;;;;;;;33260:295;;:::o;34523:328::-;34698:41;34717:12;:10;:12::i;:::-;34731:7;34698:18;:41::i;:::-;34690:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:39;34818:4;34824:2;34828:7;34837:5;34804:13;:39::i;:::-;34523:328;;;;:::o;42867:35::-;;;;;;;;;;;;;:::o;31752:334::-;31825:13;31859:16;31867:7;31859;:16::i;:::-;31851:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31940:21;31964:10;:8;:10::i;:::-;31940:34;;32016:1;31998:7;31992:21;:25;:86;;;;;;;;;;;;;;;;;32044:7;32053:18;:7;:16;:18::i;:::-;32027:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31992:86;31985:93;;;31752:334;;;:::o;43486:515::-;43551:17;;43541:6;:27;;43533:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;43633:9;43607:22;43622:6;43607:10;;:14;;:22;;;;:::i;:::-;:35;;43599:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;43712:4;43692:24;;:16;;;;;;;;;;;:24;;;43684:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;43777:11;;43766:6;43752:11;;:20;;;;:::i;:::-;43751:37;;43743:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43816:13;43832:11;;43816:27;;43860:6;43856:110;43876:6;43872:1;:10;43856:110;;;43910:1;43903:8;;;;;:::i;:::-;;;43926:28;43936:10;43948:5;43926:9;:28::i;:::-;43884:3;;;;;:::i;:::-;;;;43856:110;;;;43988:5;43974:11;:19;;;;43526:475;43486:515;:::o;33626:164::-;33723:4;33747:18;:25;33766:5;33747:25;;;;;;;;;;;;;;;:35;33773:8;33747:35;;;;;;;;;;;;;;;;;;;;;;;;;33740:42;;33626:164;;;;:::o;11976:192::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12085:1:::1;12065:22;;:8;:22;;;;12057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12141:19;12151:8;12141:9;:19::i;:::-;11976:192:::0;:::o;23274:157::-;23359:4;23398:25;23383:40;;;:11;:40;;;;23376:47;;23274:157;;;:::o;36361:127::-;36426:4;36478:1;36450:30;;:7;:16;36458:7;36450:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36443:37;;36361:127;;;:::o;9811:98::-;9864:7;9891:10;9884:17;;9811:98;:::o;40343:174::-;40445:2;40418:15;:24;40434:7;40418:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40501:7;40497:2;40463:46;;40472:23;40487:7;40472:14;:23::i;:::-;40463:46;;;;;;;;;;;;40343:174;;:::o;36655:348::-;36748:4;36773:16;36781:7;36773;:16::i;:::-;36765:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36849:13;36865:23;36880:7;36865:14;:23::i;:::-;36849:39;;36918:5;36907:16;;:7;:16;;;:51;;;;36951:7;36927:31;;:20;36939:7;36927:11;:20::i;:::-;:31;;;36907:51;:87;;;;36962:32;36979:5;36986:7;36962:16;:32::i;:::-;36907:87;36899:96;;;36655:348;;;;:::o;39647:578::-;39806:4;39779:31;;:23;39794:7;39779:14;:23::i;:::-;:31;;;39771:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39889:1;39875:16;;:2;:16;;;;39867:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39945:39;39966:4;39972:2;39976:7;39945:20;:39::i;:::-;40049:29;40066:1;40070:7;40049:8;:29::i;:::-;40110:1;40091:9;:15;40101:4;40091:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40139:1;40122:9;:13;40132:2;40122:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40170:2;40151:7;:16;40159:7;40151:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40209:7;40205:2;40190:27;;40199:4;40190:27;;;;;;;;;;;;39647:578;;;:::o;12176:173::-;12232:16;12251:6;;;;;;;;;;;12232:25;;12277:8;12268:6;;:17;;;;;;;;;;;;;;;;;;12332:8;12301:40;;12322:8;12301:40;;;;;;;;;;;;12221:128;12176:173;:::o;37345:110::-;37421:26;37431:2;37435:7;37421:26;;;;;;;;;;;;:9;:26::i;:::-;37345:110;;:::o;35733:315::-;35890:28;35900:4;35906:2;35910:7;35890:9;:28::i;:::-;35937:48;35960:4;35966:2;35970:7;35979:5;35937:22;:48::i;:::-;35929:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35733:315;;;;:::o;43170:94::-;43222:13;43251:7;43244:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43170:94;:::o;7374:723::-;7430:13;7660:1;7651:5;:10;7647:53;;;7678:10;;;;;;;;;;;;;;;;;;;;;7647:53;7710:12;7725:5;7710:20;;7741:14;7766:78;7781:1;7773:4;:9;7766:78;;7799:8;;;;;:::i;:::-;;;;7830:2;7822:10;;;;;:::i;:::-;;;7766:78;;;7854:19;7886:6;7876:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7854:39;;7904:154;7920:1;7911:5;:10;7904:154;;7948:1;7938:11;;;;;:::i;:::-;;;8015:2;8007:5;:10;;;;:::i;:::-;7994:2;:24;;;;:::i;:::-;7981:39;;7964:6;7971;7964:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8044:2;8035:11;;;;;:::i;:::-;;;7904:154;;;8082:6;8068:21;;;;;7374:723;;;;:::o;3583:98::-;3641:7;3672:1;3668;:5;;;;:::i;:::-;3661:12;;3583:98;;;;:::o;42453:126::-;;;;:::o;37682:321::-;37812:18;37818:2;37822:7;37812:5;:18::i;:::-;37863:54;37894:1;37898:2;37902:7;37911:5;37863:22;:54::i;:::-;37841:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37682:321;;;:::o;41082:799::-;41237:4;41258:15;:2;:13;;;:15::i;:::-;41254:620;;;41310:2;41294:36;;;41331:12;:10;:12::i;:::-;41345:4;41351:7;41360:5;41294:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41290:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41553:1;41536:6;:13;:18;41532:272;;;41579:60;;;;;;;;;;:::i;:::-;;;;;;;;41532:272;41754:6;41748:13;41739:6;41735:2;41731:15;41724:38;41290:529;41427:41;;;41417:51;;;:6;:51;;;;41410:58;;;;;41254:620;41858:4;41851:11;;41082:799;;;;;;;:::o;38339:382::-;38433:1;38419:16;;:2;:16;;;;38411:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38492:16;38500:7;38492;:16::i;:::-;38491:17;38483:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38554:45;38583:1;38587:2;38591:7;38554:20;:45::i;:::-;38629:1;38612:9;:13;38622:2;38612:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38660:2;38641:7;:16;38649:7;38641:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38705:7;38701:2;38680:33;;38697:1;38680:33;;;;;;;;;;;;38339:382;;:::o;13175:387::-;13235:4;13443:12;13510:7;13498:20;13490:28;;13553:1;13546:4;:8;13539:15;;;13175:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:::-;15169:3;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15266:93;15355:3;15266:93;:::i;:::-;15384:2;15379:3;15375:12;15368:19;;15027:366;;;:::o;15399:::-;15541:3;15562:67;15626:2;15621:3;15562:67;:::i;:::-;15555:74;;15638:93;15727:3;15638:93;:::i;:::-;15756:2;15751:3;15747:12;15740:19;;15399:366;;;:::o;15771:::-;15913:3;15934:67;15998:2;15993:3;15934:67;:::i;:::-;15927:74;;16010:93;16099:3;16010:93;:::i;:::-;16128:2;16123:3;16119:12;16112:19;;15771:366;;;:::o;16143:::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:118::-;16602:24;16620:5;16602:24;:::i;:::-;16597:3;16590:37;16515:118;;:::o;16639:435::-;16819:3;16841:95;16932:3;16923:6;16841:95;:::i;:::-;16834:102;;16953:95;17044:3;17035:6;16953:95;:::i;:::-;16946:102;;17065:3;17058:10;;16639:435;;;;;:::o;17080:222::-;17173:4;17211:2;17200:9;17196:18;17188:26;;17224:71;17292:1;17281:9;17277:17;17268:6;17224:71;:::i;:::-;17080:222;;;;:::o;17308:640::-;17503:4;17541:3;17530:9;17526:19;17518:27;;17555:71;17623:1;17612:9;17608:17;17599:6;17555:71;:::i;:::-;17636:72;17704:2;17693:9;17689:18;17680:6;17636:72;:::i;:::-;17718;17786:2;17775:9;17771:18;17762:6;17718:72;:::i;:::-;17837:9;17831:4;17827:20;17822:2;17811:9;17807:18;17800:48;17865:76;17936:4;17927:6;17865:76;:::i;:::-;17857:84;;17308:640;;;;;;;:::o;17954:210::-;18041:4;18079:2;18068:9;18064:18;18056:26;;18092:65;18154:1;18143:9;18139:17;18130:6;18092:65;:::i;:::-;17954:210;;;;:::o;18170:313::-;18283:4;18321:2;18310:9;18306:18;18298:26;;18370:9;18364:4;18360:20;18356:1;18345:9;18341:17;18334:47;18398:78;18471:4;18462:6;18398:78;:::i;:::-;18390:86;;18170:313;;;;:::o;18489:419::-;18655:4;18693:2;18682:9;18678:18;18670:26;;18742:9;18736:4;18732:20;18728:1;18717:9;18713:17;18706:47;18770:131;18896:4;18770:131;:::i;:::-;18762:139;;18489:419;;;:::o;18914:::-;19080:4;19118:2;19107:9;19103:18;19095:26;;19167:9;19161:4;19157:20;19153:1;19142:9;19138:17;19131:47;19195:131;19321:4;19195:131;:::i;:::-;19187:139;;18914:419;;;:::o;19339:::-;19505:4;19543:2;19532:9;19528:18;19520:26;;19592:9;19586:4;19582:20;19578:1;19567:9;19563:17;19556:47;19620:131;19746:4;19620:131;:::i;:::-;19612:139;;19339:419;;;:::o;19764:::-;19930:4;19968:2;19957:9;19953:18;19945:26;;20017:9;20011:4;20007:20;20003:1;19992:9;19988:17;19981:47;20045:131;20171:4;20045:131;:::i;:::-;20037:139;;19764:419;;;:::o;20189:::-;20355:4;20393:2;20382:9;20378:18;20370:26;;20442:9;20436:4;20432:20;20428:1;20417:9;20413:17;20406:47;20470:131;20596:4;20470:131;:::i;:::-;20462:139;;20189:419;;;:::o;20614:::-;20780:4;20818:2;20807:9;20803:18;20795:26;;20867:9;20861:4;20857:20;20853:1;20842:9;20838:17;20831:47;20895:131;21021:4;20895:131;:::i;:::-;20887:139;;20614:419;;;:::o;21039:::-;21205:4;21243:2;21232:9;21228:18;21220:26;;21292:9;21286:4;21282:20;21278:1;21267:9;21263:17;21256:47;21320:131;21446:4;21320:131;:::i;:::-;21312:139;;21039:419;;;:::o;21464:::-;21630:4;21668:2;21657:9;21653:18;21645:26;;21717:9;21711:4;21707:20;21703:1;21692:9;21688:17;21681:47;21745:131;21871:4;21745:131;:::i;:::-;21737:139;;21464:419;;;:::o;21889:::-;22055:4;22093:2;22082:9;22078:18;22070:26;;22142:9;22136:4;22132:20;22128:1;22117:9;22113:17;22106:47;22170:131;22296:4;22170:131;:::i;:::-;22162:139;;21889:419;;;:::o;22314:::-;22480:4;22518:2;22507:9;22503:18;22495:26;;22567:9;22561:4;22557:20;22553:1;22542:9;22538:17;22531:47;22595:131;22721:4;22595:131;:::i;:::-;22587:139;;22314:419;;;:::o;22739:::-;22905:4;22943:2;22932:9;22928:18;22920:26;;22992:9;22986:4;22982:20;22978:1;22967:9;22963:17;22956:47;23020:131;23146:4;23020:131;:::i;:::-;23012:139;;22739:419;;;:::o;23164:::-;23330:4;23368:2;23357:9;23353:18;23345:26;;23417:9;23411:4;23407:20;23403:1;23392:9;23388:17;23381:47;23445:131;23571:4;23445:131;:::i;:::-;23437:139;;23164:419;;;:::o;23589:::-;23755:4;23793:2;23782:9;23778:18;23770:26;;23842:9;23836:4;23832:20;23828:1;23817:9;23813:17;23806:47;23870:131;23996:4;23870:131;:::i;:::-;23862:139;;23589:419;;;:::o;24014:::-;24180:4;24218:2;24207:9;24203:18;24195:26;;24267:9;24261:4;24257:20;24253:1;24242:9;24238:17;24231:47;24295:131;24421:4;24295:131;:::i;:::-;24287:139;;24014:419;;;:::o;24439:::-;24605:4;24643:2;24632:9;24628:18;24620:26;;24692:9;24686:4;24682:20;24678:1;24667:9;24663:17;24656:47;24720:131;24846:4;24720:131;:::i;:::-;24712:139;;24439:419;;;:::o;24864:::-;25030:4;25068:2;25057:9;25053:18;25045:26;;25117:9;25111:4;25107:20;25103:1;25092:9;25088:17;25081:47;25145:131;25271:4;25145:131;:::i;:::-;25137:139;;24864:419;;;:::o;25289:::-;25455:4;25493:2;25482:9;25478:18;25470:26;;25542:9;25536:4;25532:20;25528:1;25517:9;25513:17;25506:47;25570:131;25696:4;25570:131;:::i;:::-;25562:139;;25289:419;;;:::o;25714:::-;25880:4;25918:2;25907:9;25903:18;25895:26;;25967:9;25961:4;25957:20;25953:1;25942:9;25938:17;25931:47;25995:131;26121:4;25995:131;:::i;:::-;25987:139;;25714:419;;;:::o;26139:::-;26305:4;26343:2;26332:9;26328:18;26320:26;;26392:9;26386:4;26382:20;26378:1;26367:9;26363:17;26356:47;26420:131;26546:4;26420:131;:::i;:::-;26412:139;;26139:419;;;:::o;26564:::-;26730:4;26768:2;26757:9;26753:18;26745:26;;26817:9;26811:4;26807:20;26803:1;26792:9;26788:17;26781:47;26845:131;26971:4;26845:131;:::i;:::-;26837:139;;26564:419;;;:::o;26989:::-;27155:4;27193:2;27182:9;27178:18;27170:26;;27242:9;27236:4;27232:20;27228:1;27217:9;27213:17;27206:47;27270:131;27396:4;27270:131;:::i;:::-;27262:139;;26989:419;;;:::o;27414:::-;27580:4;27618:2;27607:9;27603:18;27595:26;;27667:9;27661:4;27657:20;27653:1;27642:9;27638:17;27631:47;27695:131;27821:4;27695:131;:::i;:::-;27687:139;;27414:419;;;:::o;27839:222::-;27932:4;27970:2;27959:9;27955:18;27947:26;;27983:71;28051:1;28040:9;28036:17;28027:6;27983:71;:::i;:::-;27839:222;;;;:::o;28067:129::-;28101:6;28128:20;;:::i;:::-;28118:30;;28157:33;28185:4;28177:6;28157:33;:::i;:::-;28067:129;;;:::o;28202:75::-;28235:6;28268:2;28262:9;28252:19;;28202:75;:::o;28283:307::-;28344:4;28434:18;28426:6;28423:30;28420:56;;;28456:18;;:::i;:::-;28420:56;28494:29;28516:6;28494:29;:::i;:::-;28486:37;;28578:4;28572;28568:15;28560:23;;28283:307;;;:::o;28596:98::-;28647:6;28681:5;28675:12;28665:22;;28596:98;;;:::o;28700:99::-;28752:6;28786:5;28780:12;28770:22;;28700:99;;;:::o;28805:168::-;28888:11;28922:6;28917:3;28910:19;28962:4;28957:3;28953:14;28938:29;;28805:168;;;;:::o;28979:169::-;29063:11;29097:6;29092:3;29085:19;29137:4;29132:3;29128:14;29113:29;;28979:169;;;;:::o;29154:148::-;29256:11;29293:3;29278:18;;29154:148;;;;:::o;29308:305::-;29348:3;29367:20;29385:1;29367:20;:::i;:::-;29362:25;;29401:20;29419:1;29401:20;:::i;:::-;29396:25;;29555:1;29487:66;29483:74;29480:1;29477:81;29474:107;;;29561:18;;:::i;:::-;29474:107;29605:1;29602;29598:9;29591:16;;29308:305;;;;:::o;29619:185::-;29659:1;29676:20;29694:1;29676:20;:::i;:::-;29671:25;;29710:20;29728:1;29710:20;:::i;:::-;29705:25;;29749:1;29739:35;;29754:18;;:::i;:::-;29739:35;29796:1;29793;29789:9;29784:14;;29619:185;;;;:::o;29810:348::-;29850:7;29873:20;29891:1;29873:20;:::i;:::-;29868:25;;29907:20;29925:1;29907:20;:::i;:::-;29902:25;;30095:1;30027:66;30023:74;30020:1;30017:81;30012:1;30005:9;29998:17;29994:105;29991:131;;;30102:18;;:::i;:::-;29991:131;30150:1;30147;30143:9;30132:20;;29810:348;;;;:::o;30164:191::-;30204:4;30224:20;30242:1;30224:20;:::i;:::-;30219:25;;30258:20;30276:1;30258:20;:::i;:::-;30253:25;;30297:1;30294;30291:8;30288:34;;;30302:18;;:::i;:::-;30288:34;30347:1;30344;30340:9;30332:17;;30164:191;;;;:::o;30361:96::-;30398:7;30427:24;30445:5;30427:24;:::i;:::-;30416:35;;30361:96;;;:::o;30463:90::-;30497:7;30540:5;30533:13;30526:21;30515:32;;30463:90;;;:::o;30559:149::-;30595:7;30635:66;30628:5;30624:78;30613:89;;30559:149;;;:::o;30714:126::-;30751:7;30791:42;30784:5;30780:54;30769:65;;30714:126;;;:::o;30846:77::-;30883:7;30912:5;30901:16;;30846:77;;;:::o;30929:154::-;31013:6;31008:3;31003;30990:30;31075:1;31066:6;31061:3;31057:16;31050:27;30929:154;;;:::o;31089:307::-;31157:1;31167:113;31181:6;31178:1;31175:13;31167:113;;;31266:1;31261:3;31257:11;31251:18;31247:1;31242:3;31238:11;31231:39;31203:2;31200:1;31196:10;31191:15;;31167:113;;;31298:6;31295:1;31292:13;31289:101;;;31378:1;31369:6;31364:3;31360:16;31353:27;31289:101;31138:258;31089:307;;;:::o;31402:320::-;31446:6;31483:1;31477:4;31473:12;31463:22;;31530:1;31524:4;31520:12;31551:18;31541:81;;31607:4;31599:6;31595:17;31585:27;;31541:81;31669:2;31661:6;31658:14;31638:18;31635:38;31632:84;;;31688:18;;:::i;:::-;31632:84;31453:269;31402:320;;;:::o;31728:281::-;31811:27;31833:4;31811:27;:::i;:::-;31803:6;31799:40;31941:6;31929:10;31926:22;31905:18;31893:10;31890:34;31887:62;31884:88;;;31952:18;;:::i;:::-;31884:88;31992:10;31988:2;31981:22;31771:238;31728:281;;:::o;32015:233::-;32054:3;32077:24;32095:5;32077:24;:::i;:::-;32068:33;;32123:66;32116:5;32113:77;32110:103;;;32193:18;;:::i;:::-;32110:103;32240:1;32233:5;32229:13;32222:20;;32015:233;;;:::o;32254:176::-;32286:1;32303:20;32321:1;32303:20;:::i;:::-;32298:25;;32337:20;32355:1;32337:20;:::i;:::-;32332:25;;32376:1;32366:35;;32381:18;;:::i;:::-;32366:35;32422:1;32419;32415:9;32410:14;;32254:176;;;;:::o;32436:180::-;32484:77;32481:1;32474:88;32581:4;32578:1;32571:15;32605:4;32602:1;32595:15;32622:180;32670:77;32667:1;32660:88;32767:4;32764:1;32757:15;32791:4;32788:1;32781:15;32808:180;32856:77;32853:1;32846:88;32953:4;32950:1;32943:15;32977:4;32974:1;32967:15;32994:180;33042:77;33039:1;33032:88;33139:4;33136:1;33129:15;33163:4;33160:1;33153:15;33180:180;33228:77;33225:1;33218:88;33325:4;33322:1;33315:15;33349:4;33346:1;33339:15;33366:117;33475:1;33472;33465:12;33489:117;33598:1;33595;33588:12;33612:117;33721:1;33718;33711:12;33735:117;33844:1;33841;33834:12;33858:117;33967:1;33964;33957:12;33981:117;34090:1;34087;34080:12;34104:102;34145:6;34196:2;34192:7;34187:2;34180:5;34176:14;34172:28;34162:38;;34104:102;;;:::o;34212:237::-;34352:34;34348:1;34340:6;34336:14;34329:58;34421:20;34416:2;34408:6;34404:15;34397:45;34212:237;:::o;34455:225::-;34595:34;34591:1;34583:6;34579:14;34572:58;34664:8;34659:2;34651:6;34647:15;34640:33;34455:225;:::o;34686:178::-;34826:30;34822:1;34814:6;34810:14;34803:54;34686:178;:::o;34870:164::-;35010:16;35006:1;34998:6;34994:14;34987:40;34870:164;:::o;35040:223::-;35180:34;35176:1;35168:6;35164:14;35157:58;35249:6;35244:2;35236:6;35232:15;35225:31;35040:223;:::o;35269:175::-;35409:27;35405:1;35397:6;35393:14;35386:51;35269:175;:::o;35450:181::-;35590:33;35586:1;35578:6;35574:14;35567:57;35450:181;:::o;35637:231::-;35777:34;35773:1;35765:6;35761:14;35754:58;35846:14;35841:2;35833:6;35829:15;35822:39;35637:231;:::o;35874:243::-;36014:34;36010:1;36002:6;35998:14;35991:58;36083:26;36078:2;36070:6;36066:15;36059:51;35874:243;:::o;36123:229::-;36263:34;36259:1;36251:6;36247:14;36240:58;36332:12;36327:2;36319:6;36315:15;36308:37;36123:229;:::o;36358:228::-;36498:34;36494:1;36486:6;36482:14;36475:58;36567:11;36562:2;36554:6;36550:15;36543:36;36358:228;:::o;36592:175::-;36732:27;36728:1;36720:6;36716:14;36709:51;36592:175;:::o;36773:182::-;36913:34;36909:1;36901:6;36897:14;36890:58;36773:182;:::o;36961:231::-;37101:34;37097:1;37089:6;37085:14;37078:58;37170:14;37165:2;37157:6;37153:15;37146:39;36961:231;:::o;37198:182::-;37338:34;37334:1;37326:6;37322:14;37315:58;37198:182;:::o;37386:228::-;37526:34;37522:1;37514:6;37510:14;37503:58;37595:11;37590:2;37582:6;37578:15;37571:36;37386:228;:::o;37620:234::-;37760:34;37756:1;37748:6;37744:14;37737:58;37829:17;37824:2;37816:6;37812:15;37805:42;37620:234;:::o;37860:169::-;38000:21;37996:1;37988:6;37984:14;37977:45;37860:169;:::o;38035:220::-;38175:34;38171:1;38163:6;38159:14;38152:58;38244:3;38239:2;38231:6;38227:15;38220:28;38035:220;:::o;38261:236::-;38401:34;38397:1;38389:6;38385:14;38378:58;38470:19;38465:2;38457:6;38453:15;38446:44;38261:236;:::o;38503:170::-;38643:22;38639:1;38631:6;38627:14;38620:46;38503:170;:::o;38679:165::-;38819:17;38815:1;38807:6;38803:14;38796:41;38679:165;:::o;38850:122::-;38923:24;38941:5;38923:24;:::i;:::-;38916:5;38913:35;38903:63;;38962:1;38959;38952:12;38903:63;38850:122;:::o;38978:116::-;39048:21;39063:5;39048:21;:::i;:::-;39041:5;39038:32;39028:60;;39084:1;39081;39074:12;39028:60;38978:116;:::o;39100:120::-;39172:23;39189:5;39172:23;:::i;:::-;39165:5;39162:34;39152:62;;39210:1;39207;39200:12;39152:62;39100:120;:::o;39226:122::-;39299:24;39317:5;39299:24;:::i;:::-;39292:5;39289:35;39279:63;;39338:1;39335;39328:12;39279:63;39226:122;:::o

Swarm Source

ipfs://92ce99b18d397286ea00cb42693c527fadbd172997eea4581d85ebab769138c4
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.