ETH Price: $2,667.51 (+1.23%)

Token

Punk Pups NFT (Punk Pups NFT)
 

Overview

Max Total Supply

5,286 Punk Pups NFT

Holders

196

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 Punk Pups NFT
0xea7bc80227cb804fdba5d46fa982d0265e848c35
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:
PunkPupsNFT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

//  ____  _     _      _  __   ____  _     ____  ____    _      _____ _____ 
// /  __\/ \ /\/ \  /|/ |/ /  /  __\/ \ /\/  __\/ ___\  / \  /|/    //__ __\
// |  \/|| | ||| |\ |||   /   |  \/|| | |||  \/||    \  | |\ |||  __\  / \  
// |  __/| \_/|| | \|||   \   |  __/| \_/||  __/\___ |  | | \||| |     | |  
// \_/   \____/\_/  \|\_|\_\  \_/   \____/\_/   \____/  \_/  \|\_/     \_/  
                                                                         

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.10;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 public immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

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

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

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

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

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


pragma solidity >=0.7.0 <0.9.0;





contract PunkPupsNFT is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.00 ether;
  uint256 public maxSupply = 7777;
  uint256 public maxsize = 20 ; // max mint per tx
  bool public paused = false;

  constructor() ERC721A("Punk Pups NFT", "Punk Pups NFT", maxsize) {
    setBaseURI("ipfs://QmSxP9arhuFHkSmzVK5QFKMBFuiwVxss7NN96xWfpmynAW/");
  }

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

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "Punk Pups: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "Punk Pups: need to mint at least 1 NFT");
    require(tokens <= maxsize, "Punk Pups: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "Punk Pups: We Sold Out!!");
    if (supply < 500) {
      require(msg.value >= 0 * tokens, "Punk Pups: It's Free Mint");
    } else {

    require(msg.value >= cost * tokens, "Punk Pups: insufficient funds");
    }

      _safeMint(_msgSender(), tokens);
    
  }



  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner

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

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner {
    (bool success, ) = payable(owner()).call{value: address(this).balance}("");
    require(success);
  }

  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600160005560006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005b9291906200037a565b506000600b55611e61600c556014600d556000600e60006101000a81548160ff0219169083151502179055503480156200009457600080fd5b506040518060400160405280600d81526020017f50756e6b2050757073204e4654000000000000000000000000000000000000008152506040518060400160405280600d81526020017f50756e6b2050757073204e465400000000000000000000000000000000000000815250600d54600081116200014a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014190620004b1565b60405180910390fd5b8260019080519060200190620001629291906200037a565b5081600290805190602001906200017b9291906200037a565b508060808181525050505050620001a76200019b620001d760201b60201c565b620001df60201b60201c565b620001d16040518060600160405280603681526020016200535360369139620002a560201b60201c565b620005aa565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b5620001d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002db6200035060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032b9062000523565b60405180910390fd5b80600990805190602001906200034c9291906200037a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003889062000574565b90600052602060002090601f016020900481019282620003ac5760008555620003f8565b82601f10620003c757805160ff1916838001178555620003f8565b82800160010185558215620003f8579182015b82811115620003f7578251825591602001919060010190620003da565b5b5090506200040791906200040b565b5090565b5b80821115620004265760008160009055506001016200040c565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620004996027836200042a565b9150620004a6826200043b565b604082019050919050565b60006020820190508181036000830152620004cc816200048a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200050b6020836200042a565b91506200051882620004d3565b602082019050919050565b600060208201905081810360008301526200053e81620004fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058d57607f821691505b60208210811415620005a457620005a362000545565b5b50919050565b608051614d78620005db60003960008181610d3a01528181612520015281816125490152612bfb0152614d786000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461078e578063d7224ba0146107b9578063da3ef23f146107e4578063e985e9c51461080d578063f2fde38b1461084a5761020f565b8063a22cb465146106d4578063b88d4fde146106fd578063c668286214610726578063c87b56dd146107515761020f565b8063715018a6116100e7578063715018a61461062257806383a076be146106395780638da5cb5b1461066257806395d89b411461068d578063a0712d68146106b85761020f565b80636352211e146105525780636c0360eb1461058f5780636c6e927e146105ba57806370a08231146105e55761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461045b57806344a0d68a146104985780634f6ccce7146104c157806355f804b3146104fe5780635c975abb146105275761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613185565b610873565b60405161024891906131cd565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613214565b6109bd565b005b34801561028657600080fd5b5061028f610a56565b60405161029c91906132da565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613332565b610ae8565b6040516102d991906133a0565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133e7565b610b6d565b005b34801561031757600080fd5b50610320610c86565b60405161032d9190613436565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613332565b610c8c565b005b34801561036b57600080fd5b50610374610d12565b6040516103819190613436565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613451565b610d28565b005b3480156103bf57600080fd5b506103c8610d38565b6040516103d59190613436565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133e7565b610d5c565b6040516104129190613436565b60405180910390f35b34801561042757600080fd5b50610430610f5a565b005b34801561043e57600080fd5b5061045960048036038101906104549190613451565b611056565b005b34801561046757600080fd5b50610482600480360381019061047d91906134a4565b611076565b60405161048f919061358f565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613332565b611124565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613332565b6111aa565b6040516104f59190613436565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906136e6565b6111fd565b005b34801561053357600080fd5b5061053c611293565b60405161054991906131cd565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613332565b6112a6565b60405161058691906133a0565b60405180910390f35b34801561059b57600080fd5b506105a46112bc565b6040516105b191906132da565b60405180910390f35b3480156105c657600080fd5b506105cf61134a565b6040516105dc9190613436565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906134a4565b611350565b6040516106199190613436565b60405180910390f35b34801561062e57600080fd5b50610637611439565b005b34801561064557600080fd5b50610660600480360381019061065b919061372f565b6114c1565b005b34801561066e57600080fd5b506106776115eb565b60405161068491906133a0565b60405180910390f35b34801561069957600080fd5b506106a2611615565b6040516106af91906132da565b60405180910390f35b6106d260048036038101906106cd9190613332565b6116a7565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061376f565b61189f565b005b34801561070957600080fd5b50610724600480360381019061071f9190613850565b611a20565b005b34801561073257600080fd5b5061073b611a7c565b60405161074891906132da565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190613332565b611b0a565b60405161078591906132da565b60405180910390f35b34801561079a57600080fd5b506107a3611bb4565b6040516107b09190613436565b60405180910390f35b3480156107c557600080fd5b506107ce611bba565b6040516107db9190613436565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906136e6565b611bc0565b005b34801561081957600080fd5b50610834600480360381019061082f91906138d3565b611c56565b60405161084191906131cd565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906134a4565b611cea565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657506109b582611de2565b5b9050919050565b6109c5611e4c565b73ffffffffffffffffffffffffffffffffffffffff166109e36115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a309061395f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a65906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610a91906139ae565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611e54565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990613a52565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b78826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090613ae4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c08611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480610c375750610c3681610c31611e4c565b611c56565b5b610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613b76565b60405180910390fd5b610c81838383611e61565b505050565b600b5481565b610c94611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610cb26115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061395f565b60405180910390fd5b80600c8190555050565b60006001600054610d239190613bc5565b905090565b610d33838383611f13565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d6783611350565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613c6b565b60405180910390fd5b6000610db2610d12565b905060008060005b83811015610f18576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f045786841415610ef5578195505050505050610f54565b8380610f0090613c8b565b9450505b508080610f1090613c8b565b915050610dba565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613d46565b60405180910390fd5b92915050565b610f62611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610f806115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd9061395f565b60405180910390fd5b6000610fe06115eb565b73ffffffffffffffffffffffffffffffffffffffff164760405161100390613d97565b60006040518083038185875af1925050503d8060008114611040576040519150601f19603f3d011682016040523d82523d6000602084013e611045565b606091505b505090508061105357600080fd5b50565b61107183838360405180602001604052806000815250611a20565b505050565b6060600061108383611350565b905060008167ffffffffffffffff8111156110a1576110a06135bb565b5b6040519080825280602002602001820160405280156110cf5781602001602082028036833780820191505090505b50905060005b82811015611119576110e78582610d5c565b8282815181106110fa576110f9613dac565b5b602002602001018181525050808061111190613c8b565b9150506110d5565b508092505050919050565b61112c611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661114a6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061395f565b60405180910390fd5b80600b8190555050565b60006111b4610d12565b82106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613e4d565b60405180910390fd5b819050919050565b611205611e4c565b73ffffffffffffffffffffffffffffffffffffffff166112236115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061395f565b60405180910390fd5b806009908051906020019061128f92919061303c565b5050565b600e60009054906101000a900460ff1681565b60006112b1826124cc565b600001519050919050565b600980546112c9906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546112f5906139ae565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613edf565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611441611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661145f6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061395f565b60405180910390fd5b6114bf60006126cf565b565b6114c9611e4c565b73ffffffffffffffffffffffffffffffffffffffff166114e76115eb565b73ffffffffffffffffffffffffffffffffffffffff161461153d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115349061395f565b60405180910390fd5b60008211611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613f4b565b60405180910390fd5b600061158a610d12565b9050600c54838261159b9190613f6b565b11156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061400d565b60405180910390fd5b6115e68284612795565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611624906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611650906139ae565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061409f565b60405180910390fd5b6000611701610d12565b905060008211611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90614131565b60405180910390fd5b600d5482111561178b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611782906141c3565b60405180910390fd5b600c54828261179a9190613f6b565b11156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061422f565b60405180910390fd5b6101f4811015611839578160006117f2919061424f565b341015611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906142f5565b60405180910390fd5b61188a565b81600b54611847919061424f565b341015611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090614361565b60405180910390fd5b5b61189b611895611e4c565b83612795565b5050565b6118a7611e4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c906143cd565b60405180910390fd5b8060066000611922611e4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cf611e4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a1491906131cd565b60405180910390a35050565b611a2b848484611f13565b611a37848484846127b3565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061445f565b60405180910390fd5b50505050565b600a8054611a89906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906139ae565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505081565b6060611b1582611e54565b611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b906144f1565b60405180910390fd5b6000611b5e61293b565b90506000815111611b7e5760405180602001604052806000815250611bac565b80611b88846129cd565b600a604051602001611b9c939291906145e1565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bc8611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611be66115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061395f565b60405180910390fd5b80600a9080519060200190611c5292919061303c565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf2611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611d106115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d9061395f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614684565b60405180910390fd5b611ddf816126cf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f1e826124cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f45611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480611fa15750611f6a611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611f8984610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fbd5750611fbc8260000151611fb7611e4c565b611c56565b5b905080611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614716565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612068906147a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d89061483a565b60405180910390fd5b6120ee8585856001612b2e565b6120fe6000848460000151611e61565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661216c9190614876565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661221091906148aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123169190613f6b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561245c5761238c81611e54565b1561245b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c48686866001612b34565b505050505050565b6124d46130c2565b6124dd82611e54565b61251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614962565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125805760017f0000000000000000000000000000000000000000000000000000000000000000846125739190613bc5565b61257d9190613f6b565b90505b60008390505b81811061268e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461267a578093505050506126ca565b50808061268690614982565b915050612586565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190614a1e565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127af828260405180602001604052806000815250612b3a565b5050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16613019565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611e4c565b8786866040518563ffffffff1660e01b815260040161281f9493929190614a93565b6020604051808303816000875af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190614af4565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd9061445f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b60606009805461294a906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612976906139ae565b80156129c35780601f10612998576101008083540402835291602001916129c3565b820191906000526020600020905b8154815290600101906020018083116129a657829003601f168201915b5050505050905090565b60606000821415612a15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b29565b600082905060005b60008214612a47578080612a3090613c8b565b915050600a82612a409190614b50565b9150612a1d565b60008167ffffffffffffffff811115612a6357612a626135bb565b5b6040519080825280601f01601f191660200182016040528015612a955781602001600182028036833780820191505090505b5090505b60008514612b2257600182612aae9190613bc5565b9150600a85612abd9190614b81565b6030612ac99190613f6b565b60f81b818381518110612adf57612ade613dac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1b9190614b50565b9450612a99565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba790614c24565b60405180910390fd5b612bb981611e54565b15612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090614c90565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614d22565b60405180910390fd5b612c696000858386612b2e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d6691906148aa565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d8d91906148aa565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ffc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f9c60008884886127b3565b612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd29061445f565b60405180910390fd5b8180612fe690613c8b565b9250508080612ff490613c8b565b915050612f2b565b50806000819055506130116000878588612b34565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613048906139ae565b90600052602060002090601f01602090048101928261306a57600085556130b1565b82601f1061308357805160ff19168380011785556130b1565b828001600101855582156130b1579182015b828111156130b0578251825591602001919060010190613095565b5b5090506130be91906130fc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131155760008160009055506001016130fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131628161312d565b811461316d57600080fd5b50565b60008135905061317f81613159565b92915050565b60006020828403121561319b5761319a613123565b5b60006131a984828501613170565b91505092915050565b60008115159050919050565b6131c7816131b2565b82525050565b60006020820190506131e260008301846131be565b92915050565b6131f1816131b2565b81146131fc57600080fd5b50565b60008135905061320e816131e8565b92915050565b60006020828403121561322a57613229613123565b5b6000613238848285016131ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327b578082015181840152602081019050613260565b8381111561328a576000848401525b50505050565b6000601f19601f8301169050919050565b60006132ac82613241565b6132b6818561324c565b93506132c681856020860161325d565b6132cf81613290565b840191505092915050565b600060208201905081810360008301526132f481846132a1565b905092915050565b6000819050919050565b61330f816132fc565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b60006020828403121561334857613347613123565b5b60006133568482850161331d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338a8261335f565b9050919050565b61339a8161337f565b82525050565b60006020820190506133b56000830184613391565b92915050565b6133c48161337f565b81146133cf57600080fd5b50565b6000813590506133e1816133bb565b92915050565b600080604083850312156133fe576133fd613123565b5b600061340c858286016133d2565b925050602061341d8582860161331d565b9150509250929050565b613430816132fc565b82525050565b600060208201905061344b6000830184613427565b92915050565b60008060006060848603121561346a57613469613123565b5b6000613478868287016133d2565b9350506020613489868287016133d2565b925050604061349a8682870161331d565b9150509250925092565b6000602082840312156134ba576134b9613123565b5b60006134c8848285016133d2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613506816132fc565b82525050565b600061351883836134fd565b60208301905092915050565b6000602082019050919050565b600061353c826134d1565b61354681856134dc565b9350613551836134ed565b8060005b83811015613582578151613569888261350c565b975061357483613524565b925050600181019050613555565b5085935050505092915050565b600060208201905081810360008301526135a98184613531565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135f382613290565b810181811067ffffffffffffffff82111715613612576136116135bb565b5b80604052505050565b6000613625613119565b905061363182826135ea565b919050565b600067ffffffffffffffff821115613651576136506135bb565b5b61365a82613290565b9050602081019050919050565b82818337600083830152505050565b600061368961368484613636565b61361b565b9050828152602081018484840111156136a5576136a46135b6565b5b6136b0848285613667565b509392505050565b600082601f8301126136cd576136cc6135b1565b5b81356136dd848260208601613676565b91505092915050565b6000602082840312156136fc576136fb613123565b5b600082013567ffffffffffffffff81111561371a57613719613128565b5b613726848285016136b8565b91505092915050565b6000806040838503121561374657613745613123565b5b60006137548582860161331d565b9250506020613765858286016133d2565b9150509250929050565b6000806040838503121561378657613785613123565b5b6000613794858286016133d2565b92505060206137a5858286016131ff565b9150509250929050565b600067ffffffffffffffff8211156137ca576137c96135bb565b5b6137d382613290565b9050602081019050919050565b60006137f36137ee846137af565b61361b565b90508281526020810184848401111561380f5761380e6135b6565b5b61381a848285613667565b509392505050565b600082601f830112613837576138366135b1565b5b81356138478482602086016137e0565b91505092915050565b6000806000806080858703121561386a57613869613123565b5b6000613878878288016133d2565b9450506020613889878288016133d2565b935050604061389a8782880161331d565b925050606085013567ffffffffffffffff8111156138bb576138ba613128565b5b6138c787828801613822565b91505092959194509250565b600080604083850312156138ea576138e9613123565b5b60006138f8858286016133d2565b9250506020613909858286016133d2565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394960208361324c565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139c657607f821691505b602082108114156139da576139d961397f565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a3c602d8361324c565b9150613a47826139e0565b604082019050919050565b60006020820190508181036000830152613a6b81613a2f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ace60228361324c565b9150613ad982613a72565b604082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b6060398361324c565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd0826132fc565b9150613bdb836132fc565b925082821015613bee57613bed613b96565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c5560228361324c565b9150613c6082613bf9565b604082019050919050565b60006020820190508181036000830152613c8481613c48565b9050919050565b6000613c96826132fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc957613cc8613b96565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d30602e8361324c565b9150613d3b82613cd4565b604082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b600081905092915050565b50565b6000613d81600083613d66565b9150613d8c82613d71565b600082019050919050565b6000613da282613d74565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e3760238361324c565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ec9602b8361324c565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f35601b8361324c565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b6000613f76826132fc565b9150613f81836132fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb657613fb5613b96565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613ff760168361324c565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f50756e6b20507570733a206f6f707320636f6e7472616374206973207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061408960228361324c565b91506140948261402d565b604082019050919050565b600060208201905081810360008301526140b88161407c565b9050919050565b7f50756e6b20507570733a206e65656420746f206d696e74206174206c6561737460008201527f2031204e46540000000000000000000000000000000000000000000000000000602082015250565b600061411b60268361324c565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f50756e6b20507570733a206d6178206d696e7420616d6f756e7420706572207460008201527f7820657863656564656400000000000000000000000000000000000000000000602082015250565b60006141ad602a8361324c565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f50756e6b20507570733a20576520536f6c64204f757421210000000000000000600082015250565b600061421960188361324c565b9150614224826141e3565b602082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b600061425a826132fc565b9150614265836132fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561429e5761429d613b96565b5b828202905092915050565b7f50756e6b20507570733a20497427732046726565204d696e7400000000000000600082015250565b60006142df60198361324c565b91506142ea826142a9565b602082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f50756e6b20507570733a20696e73756666696369656e742066756e6473000000600082015250565b600061434b601d8361324c565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006143b7601a8361324c565b91506143c282614381565b602082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061444960338361324c565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006144db60308361324c565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b600081905092915050565b600061452782613241565b6145318185614511565b935061454181856020860161325d565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461456f816139ae565b6145798186614511565b9450600182166000811461459457600181146145a5576145d8565b60ff198316865281860193506145d8565b6145ae8561454d565b60005b838110156145d0578154818901526001820191506020810190506145b1565b838801955050505b50505092915050565b60006145ed828661451c565b91506145f9828561451c565b91506146058284614562565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061466e60268361324c565b915061467982614612565b604082019050919050565b6000602082019050818103600083015261469d81614661565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061470060328361324c565b915061470b826146a4565b604082019050919050565b6000602082019050818103600083015261472f816146f3565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061479260268361324c565b915061479d82614736565b604082019050919050565b600060208201905081810360008301526147c181614785565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061482460258361324c565b915061482f826147c8565b604082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006148818261485a565b915061488c8361485a565b92508282101561489f5761489e613b96565b5b828203905092915050565b60006148b58261485a565b91506148c08361485a565b9250826fffffffffffffffffffffffffffffffff038211156148e5576148e4613b96565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061494c602a8361324c565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b600061498d826132fc565b915060008214156149a1576149a0613b96565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a08602f8361324c565b9150614a13826149ac565b604082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a6582614a3e565b614a6f8185614a49565b9350614a7f81856020860161325d565b614a8881613290565b840191505092915050565b6000608082019050614aa86000830187613391565b614ab56020830186613391565b614ac26040830185613427565b8181036060830152614ad48184614a5a565b905095945050505050565b600081519050614aee81613159565b92915050565b600060208284031215614b0a57614b09613123565b5b6000614b1884828501614adf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b5b826132fc565b9150614b66836132fc565b925082614b7657614b75614b21565b5b828204905092915050565b6000614b8c826132fc565b9150614b97836132fc565b925082614ba757614ba6614b21565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0e60218361324c565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614c7a601d8361324c565b9150614c8582614c44565b602082019050919050565b60006020820190508181036000830152614ca981614c6d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d0c60228361324c565b9150614d1782614cb0565b604082019050919050565b60006020820190508181036000830152614d3b81614cff565b905091905056fea2646970667358221220c4ee0edd482dc6be8e4066d8860c2f0dfd4622f3b679b723f4f55c6be50cf1f964736f6c634300080a0033697066733a2f2f516d537850396172687546486b536d7a564b3551464b4d424675697756787373374e4e3936785766706d796e41572f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461078e578063d7224ba0146107b9578063da3ef23f146107e4578063e985e9c51461080d578063f2fde38b1461084a5761020f565b8063a22cb465146106d4578063b88d4fde146106fd578063c668286214610726578063c87b56dd146107515761020f565b8063715018a6116100e7578063715018a61461062257806383a076be146106395780638da5cb5b1461066257806395d89b411461068d578063a0712d68146106b85761020f565b80636352211e146105525780636c0360eb1461058f5780636c6e927e146105ba57806370a08231146105e55761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461045b57806344a0d68a146104985780634f6ccce7146104c157806355f804b3146104fe5780635c975abb146105275761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613185565b610873565b60405161024891906131cd565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613214565b6109bd565b005b34801561028657600080fd5b5061028f610a56565b60405161029c91906132da565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613332565b610ae8565b6040516102d991906133a0565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133e7565b610b6d565b005b34801561031757600080fd5b50610320610c86565b60405161032d9190613436565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613332565b610c8c565b005b34801561036b57600080fd5b50610374610d12565b6040516103819190613436565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613451565b610d28565b005b3480156103bf57600080fd5b506103c8610d38565b6040516103d59190613436565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133e7565b610d5c565b6040516104129190613436565b60405180910390f35b34801561042757600080fd5b50610430610f5a565b005b34801561043e57600080fd5b5061045960048036038101906104549190613451565b611056565b005b34801561046757600080fd5b50610482600480360381019061047d91906134a4565b611076565b60405161048f919061358f565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613332565b611124565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613332565b6111aa565b6040516104f59190613436565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906136e6565b6111fd565b005b34801561053357600080fd5b5061053c611293565b60405161054991906131cd565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613332565b6112a6565b60405161058691906133a0565b60405180910390f35b34801561059b57600080fd5b506105a46112bc565b6040516105b191906132da565b60405180910390f35b3480156105c657600080fd5b506105cf61134a565b6040516105dc9190613436565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906134a4565b611350565b6040516106199190613436565b60405180910390f35b34801561062e57600080fd5b50610637611439565b005b34801561064557600080fd5b50610660600480360381019061065b919061372f565b6114c1565b005b34801561066e57600080fd5b506106776115eb565b60405161068491906133a0565b60405180910390f35b34801561069957600080fd5b506106a2611615565b6040516106af91906132da565b60405180910390f35b6106d260048036038101906106cd9190613332565b6116a7565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061376f565b61189f565b005b34801561070957600080fd5b50610724600480360381019061071f9190613850565b611a20565b005b34801561073257600080fd5b5061073b611a7c565b60405161074891906132da565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190613332565b611b0a565b60405161078591906132da565b60405180910390f35b34801561079a57600080fd5b506107a3611bb4565b6040516107b09190613436565b60405180910390f35b3480156107c557600080fd5b506107ce611bba565b6040516107db9190613436565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906136e6565b611bc0565b005b34801561081957600080fd5b50610834600480360381019061082f91906138d3565b611c56565b60405161084191906131cd565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906134a4565b611cea565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657506109b582611de2565b5b9050919050565b6109c5611e4c565b73ffffffffffffffffffffffffffffffffffffffff166109e36115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a309061395f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a65906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610a91906139ae565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611e54565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990613a52565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b78826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090613ae4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c08611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480610c375750610c3681610c31611e4c565b611c56565b5b610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613b76565b60405180910390fd5b610c81838383611e61565b505050565b600b5481565b610c94611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610cb26115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061395f565b60405180910390fd5b80600c8190555050565b60006001600054610d239190613bc5565b905090565b610d33838383611f13565b505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000610d6783611350565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613c6b565b60405180910390fd5b6000610db2610d12565b905060008060005b83811015610f18576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f045786841415610ef5578195505050505050610f54565b8380610f0090613c8b565b9450505b508080610f1090613c8b565b915050610dba565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613d46565b60405180910390fd5b92915050565b610f62611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610f806115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd9061395f565b60405180910390fd5b6000610fe06115eb565b73ffffffffffffffffffffffffffffffffffffffff164760405161100390613d97565b60006040518083038185875af1925050503d8060008114611040576040519150601f19603f3d011682016040523d82523d6000602084013e611045565b606091505b505090508061105357600080fd5b50565b61107183838360405180602001604052806000815250611a20565b505050565b6060600061108383611350565b905060008167ffffffffffffffff8111156110a1576110a06135bb565b5b6040519080825280602002602001820160405280156110cf5781602001602082028036833780820191505090505b50905060005b82811015611119576110e78582610d5c565b8282815181106110fa576110f9613dac565b5b602002602001018181525050808061111190613c8b565b9150506110d5565b508092505050919050565b61112c611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661114a6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061395f565b60405180910390fd5b80600b8190555050565b60006111b4610d12565b82106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613e4d565b60405180910390fd5b819050919050565b611205611e4c565b73ffffffffffffffffffffffffffffffffffffffff166112236115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061395f565b60405180910390fd5b806009908051906020019061128f92919061303c565b5050565b600e60009054906101000a900460ff1681565b60006112b1826124cc565b600001519050919050565b600980546112c9906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546112f5906139ae565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613edf565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611441611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661145f6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061395f565b60405180910390fd5b6114bf60006126cf565b565b6114c9611e4c565b73ffffffffffffffffffffffffffffffffffffffff166114e76115eb565b73ffffffffffffffffffffffffffffffffffffffff161461153d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115349061395f565b60405180910390fd5b60008211611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613f4b565b60405180910390fd5b600061158a610d12565b9050600c54838261159b9190613f6b565b11156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061400d565b60405180910390fd5b6115e68284612795565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611624906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611650906139ae565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061409f565b60405180910390fd5b6000611701610d12565b905060008211611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90614131565b60405180910390fd5b600d5482111561178b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611782906141c3565b60405180910390fd5b600c54828261179a9190613f6b565b11156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061422f565b60405180910390fd5b6101f4811015611839578160006117f2919061424f565b341015611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906142f5565b60405180910390fd5b61188a565b81600b54611847919061424f565b341015611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090614361565b60405180910390fd5b5b61189b611895611e4c565b83612795565b5050565b6118a7611e4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c906143cd565b60405180910390fd5b8060066000611922611e4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cf611e4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a1491906131cd565b60405180910390a35050565b611a2b848484611f13565b611a37848484846127b3565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061445f565b60405180910390fd5b50505050565b600a8054611a89906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906139ae565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505081565b6060611b1582611e54565b611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b906144f1565b60405180910390fd5b6000611b5e61293b565b90506000815111611b7e5760405180602001604052806000815250611bac565b80611b88846129cd565b600a604051602001611b9c939291906145e1565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bc8611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611be66115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061395f565b60405180910390fd5b80600a9080519060200190611c5292919061303c565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf2611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611d106115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d9061395f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614684565b60405180910390fd5b611ddf816126cf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f1e826124cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f45611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480611fa15750611f6a611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611f8984610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fbd5750611fbc8260000151611fb7611e4c565b611c56565b5b905080611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614716565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612068906147a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d89061483a565b60405180910390fd5b6120ee8585856001612b2e565b6120fe6000848460000151611e61565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661216c9190614876565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661221091906148aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123169190613f6b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561245c5761238c81611e54565b1561245b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c48686866001612b34565b505050505050565b6124d46130c2565b6124dd82611e54565b61251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614962565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106125805760017f0000000000000000000000000000000000000000000000000000000000000014846125739190613bc5565b61257d9190613f6b565b90505b60008390505b81811061268e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461267a578093505050506126ca565b50808061268690614982565b915050612586565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190614a1e565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127af828260405180602001604052806000815250612b3a565b5050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16613019565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611e4c565b8786866040518563ffffffff1660e01b815260040161281f9493929190614a93565b6020604051808303816000875af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190614af4565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd9061445f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b60606009805461294a906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612976906139ae565b80156129c35780601f10612998576101008083540402835291602001916129c3565b820191906000526020600020905b8154815290600101906020018083116129a657829003601f168201915b5050505050905090565b60606000821415612a15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b29565b600082905060005b60008214612a47578080612a3090613c8b565b915050600a82612a409190614b50565b9150612a1d565b60008167ffffffffffffffff811115612a6357612a626135bb565b5b6040519080825280601f01601f191660200182016040528015612a955781602001600182028036833780820191505090505b5090505b60008514612b2257600182612aae9190613bc5565b9150600a85612abd9190614b81565b6030612ac99190613f6b565b60f81b818381518110612adf57612ade613dac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1b9190614b50565b9450612a99565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba790614c24565b60405180910390fd5b612bb981611e54565b15612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090614c90565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614d22565b60405180910390fd5b612c696000858386612b2e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d6691906148aa565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d8d91906148aa565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ffc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f9c60008884886127b3565b612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd29061445f565b60405180910390fd5b8180612fe690613c8b565b9250508080612ff490613c8b565b915050612f2b565b50806000819055506130116000878588612b34565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613048906139ae565b90600052602060002090601f01602090048101928261306a57600085556130b1565b82601f1061308357805160ff19168380011785556130b1565b828001600101855582156130b1579182015b828111156130b0578251825591602001919060010190613095565b5b5090506130be91906130fc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131155760008160009055506001016130fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131628161312d565b811461316d57600080fd5b50565b60008135905061317f81613159565b92915050565b60006020828403121561319b5761319a613123565b5b60006131a984828501613170565b91505092915050565b60008115159050919050565b6131c7816131b2565b82525050565b60006020820190506131e260008301846131be565b92915050565b6131f1816131b2565b81146131fc57600080fd5b50565b60008135905061320e816131e8565b92915050565b60006020828403121561322a57613229613123565b5b6000613238848285016131ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327b578082015181840152602081019050613260565b8381111561328a576000848401525b50505050565b6000601f19601f8301169050919050565b60006132ac82613241565b6132b6818561324c565b93506132c681856020860161325d565b6132cf81613290565b840191505092915050565b600060208201905081810360008301526132f481846132a1565b905092915050565b6000819050919050565b61330f816132fc565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b60006020828403121561334857613347613123565b5b60006133568482850161331d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338a8261335f565b9050919050565b61339a8161337f565b82525050565b60006020820190506133b56000830184613391565b92915050565b6133c48161337f565b81146133cf57600080fd5b50565b6000813590506133e1816133bb565b92915050565b600080604083850312156133fe576133fd613123565b5b600061340c858286016133d2565b925050602061341d8582860161331d565b9150509250929050565b613430816132fc565b82525050565b600060208201905061344b6000830184613427565b92915050565b60008060006060848603121561346a57613469613123565b5b6000613478868287016133d2565b9350506020613489868287016133d2565b925050604061349a8682870161331d565b9150509250925092565b6000602082840312156134ba576134b9613123565b5b60006134c8848285016133d2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613506816132fc565b82525050565b600061351883836134fd565b60208301905092915050565b6000602082019050919050565b600061353c826134d1565b61354681856134dc565b9350613551836134ed565b8060005b83811015613582578151613569888261350c565b975061357483613524565b925050600181019050613555565b5085935050505092915050565b600060208201905081810360008301526135a98184613531565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135f382613290565b810181811067ffffffffffffffff82111715613612576136116135bb565b5b80604052505050565b6000613625613119565b905061363182826135ea565b919050565b600067ffffffffffffffff821115613651576136506135bb565b5b61365a82613290565b9050602081019050919050565b82818337600083830152505050565b600061368961368484613636565b61361b565b9050828152602081018484840111156136a5576136a46135b6565b5b6136b0848285613667565b509392505050565b600082601f8301126136cd576136cc6135b1565b5b81356136dd848260208601613676565b91505092915050565b6000602082840312156136fc576136fb613123565b5b600082013567ffffffffffffffff81111561371a57613719613128565b5b613726848285016136b8565b91505092915050565b6000806040838503121561374657613745613123565b5b60006137548582860161331d565b9250506020613765858286016133d2565b9150509250929050565b6000806040838503121561378657613785613123565b5b6000613794858286016133d2565b92505060206137a5858286016131ff565b9150509250929050565b600067ffffffffffffffff8211156137ca576137c96135bb565b5b6137d382613290565b9050602081019050919050565b60006137f36137ee846137af565b61361b565b90508281526020810184848401111561380f5761380e6135b6565b5b61381a848285613667565b509392505050565b600082601f830112613837576138366135b1565b5b81356138478482602086016137e0565b91505092915050565b6000806000806080858703121561386a57613869613123565b5b6000613878878288016133d2565b9450506020613889878288016133d2565b935050604061389a8782880161331d565b925050606085013567ffffffffffffffff8111156138bb576138ba613128565b5b6138c787828801613822565b91505092959194509250565b600080604083850312156138ea576138e9613123565b5b60006138f8858286016133d2565b9250506020613909858286016133d2565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394960208361324c565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139c657607f821691505b602082108114156139da576139d961397f565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a3c602d8361324c565b9150613a47826139e0565b604082019050919050565b60006020820190508181036000830152613a6b81613a2f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ace60228361324c565b9150613ad982613a72565b604082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b6060398361324c565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd0826132fc565b9150613bdb836132fc565b925082821015613bee57613bed613b96565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c5560228361324c565b9150613c6082613bf9565b604082019050919050565b60006020820190508181036000830152613c8481613c48565b9050919050565b6000613c96826132fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc957613cc8613b96565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d30602e8361324c565b9150613d3b82613cd4565b604082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b600081905092915050565b50565b6000613d81600083613d66565b9150613d8c82613d71565b600082019050919050565b6000613da282613d74565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e3760238361324c565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ec9602b8361324c565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f35601b8361324c565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b6000613f76826132fc565b9150613f81836132fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb657613fb5613b96565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613ff760168361324c565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f50756e6b20507570733a206f6f707320636f6e7472616374206973207061757360008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061408960228361324c565b91506140948261402d565b604082019050919050565b600060208201905081810360008301526140b88161407c565b9050919050565b7f50756e6b20507570733a206e65656420746f206d696e74206174206c6561737460008201527f2031204e46540000000000000000000000000000000000000000000000000000602082015250565b600061411b60268361324c565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f50756e6b20507570733a206d6178206d696e7420616d6f756e7420706572207460008201527f7820657863656564656400000000000000000000000000000000000000000000602082015250565b60006141ad602a8361324c565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f50756e6b20507570733a20576520536f6c64204f757421210000000000000000600082015250565b600061421960188361324c565b9150614224826141e3565b602082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b600061425a826132fc565b9150614265836132fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561429e5761429d613b96565b5b828202905092915050565b7f50756e6b20507570733a20497427732046726565204d696e7400000000000000600082015250565b60006142df60198361324c565b91506142ea826142a9565b602082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f50756e6b20507570733a20696e73756666696369656e742066756e6473000000600082015250565b600061434b601d8361324c565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006143b7601a8361324c565b91506143c282614381565b602082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061444960338361324c565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006144db60308361324c565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b600081905092915050565b600061452782613241565b6145318185614511565b935061454181856020860161325d565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461456f816139ae565b6145798186614511565b9450600182166000811461459457600181146145a5576145d8565b60ff198316865281860193506145d8565b6145ae8561454d565b60005b838110156145d0578154818901526001820191506020810190506145b1565b838801955050505b50505092915050565b60006145ed828661451c565b91506145f9828561451c565b91506146058284614562565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061466e60268361324c565b915061467982614612565b604082019050919050565b6000602082019050818103600083015261469d81614661565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061470060328361324c565b915061470b826146a4565b604082019050919050565b6000602082019050818103600083015261472f816146f3565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061479260268361324c565b915061479d82614736565b604082019050919050565b600060208201905081810360008301526147c181614785565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061482460258361324c565b915061482f826147c8565b604082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006148818261485a565b915061488c8361485a565b92508282101561489f5761489e613b96565b5b828203905092915050565b60006148b58261485a565b91506148c08361485a565b9250826fffffffffffffffffffffffffffffffff038211156148e5576148e4613b96565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061494c602a8361324c565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b600061498d826132fc565b915060008214156149a1576149a0613b96565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a08602f8361324c565b9150614a13826149ac565b604082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a6582614a3e565b614a6f8185614a49565b9350614a7f81856020860161325d565b614a8881613290565b840191505092915050565b6000608082019050614aa86000830187613391565b614ab56020830186613391565b614ac26040830185613427565b8181036060830152614ad48184614a5a565b905095945050505050565b600081519050614aee81613159565b92915050565b600060208284031215614b0a57614b09613123565b5b6000614b1884828501614adf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b5b826132fc565b9150614b66836132fc565b925082614b7657614b75614b21565b5b828204905092915050565b6000614b8c826132fc565b9150614b97836132fc565b925082614ba757614ba6614b21565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0e60218361324c565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614c7a601d8361324c565b9150614c8582614c44565b602082019050919050565b60006020820190508181036000830152614ca981614c6d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d0c60228361324c565b9150614d1782614cb0565b604082019050919050565b60006020820190508181036000830152614d3b81614cff565b905091905056fea2646970667358221220c4ee0edd482dc6be8e4066d8860c2f0dfd4622f3b679b723f4f55c6be50cf1f964736f6c634300080a0033

Deployed Bytecode Sourcemap

47042:3057:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34748:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49863:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36474:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37999:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37562:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47188:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49525:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33308:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38849:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32186:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33940:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49943:147;;;;;;;;;;;;;:::i;:::-;;39054:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48629:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49437:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33475:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49627:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47313:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36297:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47120:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47261:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35174:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12332:103;;;;;;;;;;;;;:::i;:::-;;48310:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11681:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36629:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47634:609;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38267:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39274:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47146:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48983:430;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47225:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43605:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49731:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38604:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12590:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34748:370;34875:4;34920:25;34905:40;;;:11;:40;;;;:99;;;;34971:33;34956:48;;;:11;:48;;;;34905:99;:160;;;;35030:35;35015:50;;;:11;:50;;;;34905:160;:207;;;;35076:36;35100:11;35076:23;:36::i;:::-;34905:207;34891:221;;34748:370;;;:::o;49863:73::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49924:6:::1;49915;;:15;;;;;;;;;;;;;;;;;;49863:73:::0;:::o;36474:94::-;36528:13;36557:5;36550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36474:94;:::o;37999:204::-;38067:7;38091:16;38099:7;38091;:16::i;:::-;38083:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38173:15;:24;38189:7;38173:24;;;;;;;;;;;;;;;;;;;;;38166:31;;37999:204;;;:::o;37562:379::-;37631:13;37647:24;37663:7;37647:15;:24::i;:::-;37631:40;;37692:5;37686:11;;:2;:11;;;;37678:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37777:5;37761:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37786:37;37803:5;37810:12;:10;:12::i;:::-;37786:16;:37::i;:::-;37761:62;37745:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;37907:28;37916:2;37920:7;37929:5;37907:8;:28::i;:::-;37624:317;37562:379;;:::o;47188:32::-;;;;:::o;49525:94::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49603:10:::1;49591:9;:22;;;;49525:94:::0;:::o;33308:98::-;33361:7;33399:1;33384:12;;:16;;;;:::i;:::-;33377:23;;33308:98;:::o;38849:142::-;38957:28;38967:4;38973:2;38977:7;38957:9;:28::i;:::-;38849:142;;;:::o;32186:37::-;;;:::o;33940:744::-;34049:7;34084:16;34094:5;34084:9;:16::i;:::-;34076:5;:24;34068:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34146:22;34171:13;:11;:13::i;:::-;34146:38;;34191:19;34221:25;34271:9;34266:350;34290:14;34286:1;:18;34266:350;;;34320:31;34354:11;:14;34366:1;34354:14;;;;;;;;;;;34320:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34407:1;34381:28;;:9;:14;;;:28;;;34377:89;;34442:9;:14;;;34422:34;;34377:89;34499:5;34478:26;;:17;:26;;;34474:135;;;34536:5;34521:11;:20;34517:59;;;34563:1;34556:8;;;;;;;;;34517:59;34586:13;;;;;:::i;:::-;;;;34474:135;34311:305;34306:3;;;;;:::i;:::-;;;;34266:350;;;;34622:56;;;;;;;;;;:::i;:::-;;;;;;;;33940:744;;;;;:::o;49943:147::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49988:12:::1;50014:7;:5;:7::i;:::-;50006:21;;50035;50006:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49987:74;;;50076:7;50068:16;;;::::0;::::1;;49980:110;49943:147::o:0;39054:157::-;39166:39;39183:4;39189:2;39193:7;39166:39;;;;;;;;;;;;:16;:39::i;:::-;39054:157;;;:::o;48629:348::-;48704:16;48732:23;48758:17;48768:6;48758:9;:17::i;:::-;48732:43;;48782:25;48824:15;48810:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48782:58;;48852:9;48847:103;48867:15;48863:1;:19;48847:103;;;48912:30;48932:6;48940:1;48912:19;:30::i;:::-;48898:8;48907:1;48898:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48884:3;;;;;:::i;:::-;;;;48847:103;;;;48963:8;48956:15;;;;48629:348;;;:::o;49437:80::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49503:8:::1;49496:4;:15;;;;49437:80:::0;:::o;33475:177::-;33542:7;33574:13;:11;:13::i;:::-;33566:5;:21;33558:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33641:5;33634:12;;33475:177;;;:::o;49627:98::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49708:11:::1;49698:7;:21;;;;;;;;;;;;:::i;:::-;;49627:98:::0;:::o;47313:26::-;;;;;;;;;;;;;:::o;36297:118::-;36361:7;36384:20;36396:7;36384:11;:20::i;:::-;:25;;;36377:32;;36297:118;;;:::o;47120:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47261:27::-;;;;:::o;35174:211::-;35238:7;35279:1;35262:19;;:5;:19;;;;35254:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;35351:12;:19;35364:5;35351:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;35343:36;;35336:43;;35174:211;;;:::o;12332:103::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12397:30:::1;12424:1;12397:18;:30::i;:::-;12332:103::o:0;48310:305::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48412:1:::1;48398:11;:15;48390:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48452:14;48469:13;:11;:13::i;:::-;48452:30;;48521:9;;48506:11;48497:6;:20;;;;:::i;:::-;:33;;48489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48568:35;48578:11;48591;48568:9;:35::i;:::-;48383:232;48310:305:::0;;:::o;11681:87::-;11727:7;11754:6;;;;;;;;;;;11747:13;;11681:87;:::o;36629:98::-;36685:13;36714:7;36707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36629:98;:::o;47634:609::-;47695:6;;;;;;;;;;;47694:7;47686:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;47747:14;47764:13;:11;:13::i;:::-;47747:30;;47801:1;47792:6;:10;47784:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47870:7;;47860:6;:17;;47852:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;47958:9;;47948:6;47939;:15;;;;:::i;:::-;:28;;47931:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48016:3;48007:6;:12;48003:187;;;48055:6;48051:1;:10;;;;:::i;:::-;48038:9;:23;;48030:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48003:187;;;48142:6;48135:4;;:13;;;;:::i;:::-;48122:9;:26;;48114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48003:187;48200:31;48210:12;:10;:12::i;:::-;48224:6;48200:9;:31::i;:::-;47679:564;47634:609;:::o;38267:274::-;38370:12;:10;:12::i;:::-;38358:24;;:8;:24;;;;38350:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38467:8;38422:18;:32;38441:12;:10;:12::i;:::-;38422:32;;;;;;;;;;;;;;;:42;38455:8;38422:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38516:8;38487:48;;38502:12;:10;:12::i;:::-;38487:48;;;38526:8;38487:48;;;;;;:::i;:::-;;;;;;;;38267:274;;:::o;39274:311::-;39411:28;39421:4;39427:2;39431:7;39411:9;:28::i;:::-;39462:48;39485:4;39491:2;39495:7;39504:5;39462:22;:48::i;:::-;39446:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;39274:311;;;;:::o;47146:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48983:430::-;49081:13;49122:16;49130:7;49122;:16::i;:::-;49106:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49219:28;49250:10;:8;:10::i;:::-;49219:41;;49305:1;49280:14;49274:28;:32;:133;;;;;;;;;;;;;;;;;49342:14;49358:18;:7;:16;:18::i;:::-;49378:13;49325:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49274:133;49267:140;;;48983:430;;;:::o;47225:31::-;;;;:::o;43605:43::-;;;;:::o;49731:122::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49830:17:::1;49814:13;:33;;;;;;;;;;;;:::i;:::-;;49731:122:::0;:::o;38604:186::-;38726:4;38749:18;:25;38768:5;38749:25;;;;;;;;;;;;;;;:35;38775:8;38749:35;;;;;;;;;;;;;;;;;;;;;;;;;38742:42;;38604:186;;;;:::o;12590:201::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12699:1:::1;12679:22;;:8;:22;;;;12671:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12755:28;12774:8;12755:18;:28::i;:::-;12590:201:::0;:::o;24465:157::-;24550:4;24589:25;24574:40;;;:11;:40;;;;24567:47;;24465:157;;;:::o;10405:98::-;10458:7;10485:10;10478:17;;10405:98;:::o;39824:105::-;39881:4;39911:12;;39901:7;:22;39894:29;;39824:105;;;:::o;43427:172::-;43551:2;43524:15;:24;43540:7;43524:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43585:7;43581:2;43565:28;;43574:5;43565:28;;;;;;;;;;;;43427:172;;;:::o;41792:1529::-;41889:35;41927:20;41939:7;41927:11;:20::i;:::-;41889:58;;41956:22;41998:13;:18;;;41982:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;42051:12;:10;:12::i;:::-;42027:36;;:20;42039:7;42027:11;:20::i;:::-;:36;;;41982:81;:142;;;;42074:50;42091:13;:18;;;42111:12;:10;:12::i;:::-;42074:16;:50::i;:::-;41982:142;41956:169;;42150:17;42134:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;42282:4;42260:26;;:13;:18;;;:26;;;42244:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42371:1;42357:16;;:2;:16;;;;42349:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42424:43;42446:4;42452:2;42456:7;42465:1;42424:21;:43::i;:::-;42524:49;42541:1;42545:7;42554:13;:18;;;42524:8;:49::i;:::-;42612:1;42582:12;:18;42595:4;42582:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42648:1;42620:12;:16;42633:2;42620:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42679:43;;;;;;;;42694:2;42679:43;;;;;;42705:15;42679:43;;;;;42656:11;:20;42668:7;42656:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42950:19;42982:1;42972:7;:11;;;;:::i;:::-;42950:33;;43035:1;42994:43;;:11;:24;43006:11;42994:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42990:236;;;43052:20;43060:11;43052:7;:20::i;:::-;43048:171;;;43112:97;;;;;;;;43139:13;:18;;;43112:97;;;;;;43170:13;:28;;;43112:97;;;;;43085:11;:24;43097:11;43085:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43048:171;42990:236;43258:7;43254:2;43239:27;;43248:4;43239:27;;;;;;;;;;;;43273:42;43294:4;43300:2;43304:7;43313:1;43273:20;:42::i;:::-;41882:1439;;;41792:1529;;;:::o;35637:606::-;35713:21;;:::i;:::-;35754:16;35762:7;35754;:16::i;:::-;35746:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35826:26;35874:12;35863:7;:23;35859:93;;35943:1;35928:12;35918:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;35897:47;;35859:93;35965:12;35980:7;35965:22;;35960:212;35997:18;35989:4;:26;35960:212;;36034:31;36068:11;:17;36080:4;36068:17;;;;;;;;;;;36034:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36124:1;36098:28;;:9;:14;;;:28;;;36094:71;;36146:9;36139:16;;;;;;;36094:71;36025:147;36017:6;;;;;:::i;:::-;;;;35960:212;;;;36180:57;;;;;;;;;;:::i;:::-;;;;;;;;35637:606;;;;:::o;12951:191::-;13025:16;13044:6;;;;;;;;;;;13025:25;;13070:8;13061:6;;:17;;;;;;;;;;;;;;;;;;13125:8;13094:40;;13115:8;13094:40;;;;;;;;;;;;13014:128;12951:191;:::o;39935:98::-;40000:27;40010:2;40014:8;40000:27;;;;;;;;;;;;:9;:27::i;:::-;39935:98;;:::o;45138:690::-;45275:4;45292:15;:2;:13;;;:15::i;:::-;45288:535;;;45347:2;45331:36;;;45368:12;:10;:12::i;:::-;45382:4;45388:7;45397:5;45331:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45318:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45579:1;45562:6;:13;:18;45558:215;;;45595:61;;;;;;;;;;:::i;:::-;;;;;;;;45558:215;45741:6;45735:13;45726:6;45722:2;45718:15;45711:38;45318:464;45463:45;;;45453:55;;;:6;:55;;;;45446:62;;;;;45288:535;45811:4;45804:11;;45138:690;;;;;;;:::o;47513:102::-;47573:13;47602:7;47595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47513:102;:::o;7967:723::-;8023:13;8253:1;8244:5;:10;8240:53;;;8271:10;;;;;;;;;;;;;;;;;;;;;8240:53;8303:12;8318:5;8303:20;;8334:14;8359:78;8374:1;8366:4;:9;8359:78;;8392:8;;;;;:::i;:::-;;;;8423:2;8415:10;;;;;:::i;:::-;;;8359:78;;;8447:19;8479:6;8469:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8447:39;;8497:154;8513:1;8504:5;:10;8497:154;;8541:1;8531:11;;;;;:::i;:::-;;;8608:2;8600:5;:10;;;;:::i;:::-;8587:2;:24;;;;:::i;:::-;8574:39;;8557:6;8564;8557:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8637:2;8628:11;;;;;:::i;:::-;;;8497:154;;;8675:6;8661:21;;;;;7967:723;;;;:::o;46290:141::-;;;;;:::o;46817:140::-;;;;;:::o;40288:1272::-;40393:20;40416:12;;40393:35;;40457:1;40443:16;;:2;:16;;;;40435:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40634:21;40642:12;40634:7;:21::i;:::-;40633:22;40625:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40716:12;40704:8;:24;;40696:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40776:61;40806:1;40810:2;40814:12;40828:8;40776:21;:61::i;:::-;40846:30;40879:12;:16;40892:2;40879:16;;;;;;;;;;;;;;;40846:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40921:119;;;;;;;;40971:8;40941:11;:19;;;:39;;;;:::i;:::-;40921:119;;;;;;41024:8;40989:11;:24;;;:44;;;;:::i;:::-;40921:119;;;;;40902:12;:16;40915:2;40902:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41075:43;;;;;;;;41090:2;41075:43;;;;;;41101:15;41075:43;;;;;41047:11;:25;41059:12;41047:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41127:20;41150:12;41127:35;;41176:9;41171:281;41195:8;41191:1;:12;41171:281;;;41249:12;41245:2;41224:38;;41241:1;41224:38;;;;;;;;;;;;41289:59;41320:1;41324:2;41328:12;41342:5;41289:22;:59::i;:::-;41271:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;41430:14;;;;;:::i;:::-;;;;41205:3;;;;;:::i;:::-;;;;41171:281;;;;41475:12;41460;:27;;;;41494:60;41523:1;41527:2;41531:12;41545:8;41494:20;:60::i;:::-;40386:1174;;;40288:1272;;;:::o;14382:326::-;14442:4;14699:1;14677:7;:19;;;:23;14670:30;;14382:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:474::-;11542:6;11550;11599:2;11587:9;11578:7;11574:23;11570:32;11567:119;;;11605:79;;:::i;:::-;11567:119;11725:1;11750:53;11795:7;11786:6;11775:9;11771:22;11750:53;:::i;:::-;11740:63;;11696:117;11852:2;11878:53;11923:7;11914:6;11903:9;11899:22;11878:53;:::i;:::-;11868:63;;11823:118;11474:474;;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:182::-;15083:34;15079:1;15071:6;15067:14;15060:58;14943:182;:::o;15131:366::-;15273:3;15294:67;15358:2;15353:3;15294:67;:::i;:::-;15287:74;;15370:93;15459:3;15370:93;:::i;:::-;15488:2;15483:3;15479:12;15472:19;;15131:366;;;:::o;15503:419::-;15669:4;15707:2;15696:9;15692:18;15684:26;;15756:9;15750:4;15746:20;15742:1;15731:9;15727:17;15720:47;15784:131;15910:4;15784:131;:::i;:::-;15776:139;;15503:419;;;:::o;15928:180::-;15976:77;15973:1;15966:88;16073:4;16070:1;16063:15;16097:4;16094:1;16087:15;16114:320;16158:6;16195:1;16189:4;16185:12;16175:22;;16242:1;16236:4;16232:12;16263:18;16253:81;;16319:4;16311:6;16307:17;16297:27;;16253:81;16381:2;16373:6;16370:14;16350:18;16347:38;16344:84;;;16400:18;;:::i;:::-;16344:84;16165:269;16114:320;;;:::o;16440:232::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:15;16644:2;16636:6;16632:15;16625:40;16440:232;:::o;16678:366::-;16820:3;16841:67;16905:2;16900:3;16841:67;:::i;:::-;16834:74;;16917:93;17006:3;16917:93;:::i;:::-;17035:2;17030:3;17026:12;17019:19;;16678:366;;;:::o;17050:419::-;17216:4;17254:2;17243:9;17239:18;17231:26;;17303:9;17297:4;17293:20;17289:1;17278:9;17274:17;17267:47;17331:131;17457:4;17331:131;:::i;:::-;17323:139;;17050:419;;;:::o;17475:221::-;17615:34;17611:1;17603:6;17599:14;17592:58;17684:4;17679:2;17671:6;17667:15;17660:29;17475:221;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:244::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:27;18703:2;18695:6;18691:15;18684:52;18499:244;:::o;18749:366::-;18891:3;18912:67;18976:2;18971:3;18912:67;:::i;:::-;18905:74;;18988:93;19077:3;18988:93;:::i;:::-;19106:2;19101:3;19097:12;19090:19;;18749:366;;;:::o;19121:419::-;19287:4;19325:2;19314:9;19310:18;19302:26;;19374:9;19368:4;19364:20;19360:1;19349:9;19345:17;19338:47;19402:131;19528:4;19402:131;:::i;:::-;19394:139;;19121:419;;;:::o;19546:180::-;19594:77;19591:1;19584:88;19691:4;19688:1;19681:15;19715:4;19712:1;19705:15;19732:191;19772:4;19792:20;19810:1;19792:20;:::i;:::-;19787:25;;19826:20;19844:1;19826:20;:::i;:::-;19821:25;;19865:1;19862;19859:8;19856:34;;;19870:18;;:::i;:::-;19856:34;19915:1;19912;19908:9;19900:17;;19732:191;;;;:::o;19929:221::-;20069:34;20065:1;20057:6;20053:14;20046:58;20138:4;20133:2;20125:6;20121:15;20114:29;19929:221;:::o;20156:366::-;20298:3;20319:67;20383:2;20378:3;20319:67;:::i;:::-;20312:74;;20395:93;20484:3;20395:93;:::i;:::-;20513:2;20508:3;20504:12;20497:19;;20156:366;;;:::o;20528:419::-;20694:4;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:131;20935:4;20809:131;:::i;:::-;20801:139;;20528:419;;;:::o;20953:233::-;20992:3;21015:24;21033:5;21015:24;:::i;:::-;21006:33;;21061:66;21054:5;21051:77;21048:103;;;21131:18;;:::i;:::-;21048:103;21178:1;21171:5;21167:13;21160:20;;20953:233;;;:::o;21192:::-;21332:34;21328:1;21320:6;21316:14;21309:58;21401:16;21396:2;21388:6;21384:15;21377:41;21192:233;:::o;21431:366::-;21573:3;21594:67;21658:2;21653:3;21594:67;:::i;:::-;21587:74;;21670:93;21759:3;21670:93;:::i;:::-;21788:2;21783:3;21779:12;21772:19;;21431:366;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:147::-;22329:11;22366:3;22351:18;;22228:147;;;;:::o;22381:114::-;;:::o;22501:398::-;22660:3;22681:83;22762:1;22757:3;22681:83;:::i;:::-;22674:90;;22773:93;22862:3;22773:93;:::i;:::-;22891:1;22886:3;22882:11;22875:18;;22501:398;;;:::o;22905:379::-;23089:3;23111:147;23254:3;23111:147;:::i;:::-;23104:154;;23275:3;23268:10;;22905:379;;;:::o;23290:180::-;23338:77;23335:1;23328:88;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23476:222;23616:34;23612:1;23604:6;23600:14;23593:58;23685:5;23680:2;23672:6;23668:15;23661:30;23476:222;:::o;23704:366::-;23846:3;23867:67;23931:2;23926:3;23867:67;:::i;:::-;23860:74;;23943:93;24032:3;23943:93;:::i;:::-;24061:2;24056:3;24052:12;24045:19;;23704:366;;;:::o;24076:419::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:230::-;24641:34;24637:1;24629:6;24625:14;24618:58;24710:13;24705:2;24697:6;24693:15;24686:38;24501:230;:::o;24737:366::-;24879:3;24900:67;24964:2;24959:3;24900:67;:::i;:::-;24893:74;;24976:93;25065:3;24976:93;:::i;:::-;25094:2;25089:3;25085:12;25078:19;;24737:366;;;:::o;25109:419::-;25275:4;25313:2;25302:9;25298:18;25290:26;;25362:9;25356:4;25352:20;25348:1;25337:9;25333:17;25326:47;25390:131;25516:4;25390:131;:::i;:::-;25382:139;;25109:419;;;:::o;25534:177::-;25674:29;25670:1;25662:6;25658:14;25651:53;25534:177;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:305::-;26554:3;26573:20;26591:1;26573:20;:::i;:::-;26568:25;;26607:20;26625:1;26607:20;:::i;:::-;26602:25;;26761:1;26693:66;26689:74;26686:1;26683:81;26680:107;;;26767:18;;:::i;:::-;26680:107;26811:1;26808;26804:9;26797:16;;26514:305;;;;:::o;26825:172::-;26965:24;26961:1;26953:6;26949:14;26942:48;26825:172;:::o;27003:366::-;27145:3;27166:67;27230:2;27225:3;27166:67;:::i;:::-;27159:74;;27242:93;27331:3;27242:93;:::i;:::-;27360:2;27355:3;27351:12;27344:19;;27003:366;;;:::o;27375:419::-;27541:4;27579:2;27568:9;27564:18;27556:26;;27628:9;27622:4;27618:20;27614:1;27603:9;27599:17;27592:47;27656:131;27782:4;27656:131;:::i;:::-;27648:139;;27375:419;;;:::o;27800:221::-;27940:34;27936:1;27928:6;27924:14;27917:58;28009:4;28004:2;27996:6;27992:15;27985:29;27800:221;:::o;28027:366::-;28169:3;28190:67;28254:2;28249:3;28190:67;:::i;:::-;28183:74;;28266:93;28355:3;28266:93;:::i;:::-;28384:2;28379:3;28375:12;28368:19;;28027:366;;;:::o;28399:419::-;28565:4;28603:2;28592:9;28588:18;28580:26;;28652:9;28646:4;28642:20;28638:1;28627:9;28623:17;28616:47;28680:131;28806:4;28680:131;:::i;:::-;28672:139;;28399:419;;;:::o;28824:225::-;28964:34;28960:1;28952:6;28948:14;28941:58;29033:8;29028:2;29020:6;29016:15;29009:33;28824:225;:::o;29055:366::-;29197:3;29218:67;29282:2;29277:3;29218:67;:::i;:::-;29211:74;;29294:93;29383:3;29294:93;:::i;:::-;29412:2;29407:3;29403:12;29396:19;;29055:366;;;:::o;29427:419::-;29593:4;29631:2;29620:9;29616:18;29608:26;;29680:9;29674:4;29670:20;29666:1;29655:9;29651:17;29644:47;29708:131;29834:4;29708:131;:::i;:::-;29700:139;;29427:419;;;:::o;29852:229::-;29992:34;29988:1;29980:6;29976:14;29969:58;30061:12;30056:2;30048:6;30044:15;30037:37;29852:229;:::o;30087:366::-;30229:3;30250:67;30314:2;30309:3;30250:67;:::i;:::-;30243:74;;30326:93;30415:3;30326:93;:::i;:::-;30444:2;30439:3;30435:12;30428:19;;30087:366;;;:::o;30459:419::-;30625:4;30663:2;30652:9;30648:18;30640:26;;30712:9;30706:4;30702:20;30698:1;30687:9;30683:17;30676:47;30740:131;30866:4;30740:131;:::i;:::-;30732:139;;30459:419;;;:::o;30884:174::-;31024:26;31020:1;31012:6;31008:14;31001:50;30884:174;:::o;31064:366::-;31206:3;31227:67;31291:2;31286:3;31227:67;:::i;:::-;31220:74;;31303:93;31392:3;31303:93;:::i;:::-;31421:2;31416:3;31412:12;31405:19;;31064:366;;;:::o;31436:419::-;31602:4;31640:2;31629:9;31625:18;31617:26;;31689:9;31683:4;31679:20;31675:1;31664:9;31660:17;31653:47;31717:131;31843:4;31717:131;:::i;:::-;31709:139;;31436:419;;;:::o;31861:348::-;31901:7;31924:20;31942:1;31924:20;:::i;:::-;31919:25;;31958:20;31976:1;31958:20;:::i;:::-;31953:25;;32146:1;32078:66;32074:74;32071:1;32068:81;32063:1;32056:9;32049:17;32045:105;32042:131;;;32153:18;;:::i;:::-;32042:131;32201:1;32198;32194:9;32183:20;;31861:348;;;;:::o;32215:175::-;32355:27;32351:1;32343:6;32339:14;32332:51;32215:175;:::o;32396:366::-;32538:3;32559:67;32623:2;32618:3;32559:67;:::i;:::-;32552:74;;32635:93;32724:3;32635:93;:::i;:::-;32753:2;32748:3;32744:12;32737:19;;32396:366;;;:::o;32768:419::-;32934:4;32972:2;32961:9;32957:18;32949:26;;33021:9;33015:4;33011:20;33007:1;32996:9;32992:17;32985:47;33049:131;33175:4;33049:131;:::i;:::-;33041:139;;32768:419;;;:::o;33193:179::-;33333:31;33329:1;33321:6;33317:14;33310:55;33193:179;:::o;33378:366::-;33520:3;33541:67;33605:2;33600:3;33541:67;:::i;:::-;33534:74;;33617:93;33706:3;33617:93;:::i;:::-;33735:2;33730:3;33726:12;33719:19;;33378:366;;;:::o;33750:419::-;33916:4;33954:2;33943:9;33939:18;33931:26;;34003:9;33997:4;33993:20;33989:1;33978:9;33974:17;33967:47;34031:131;34157:4;34031:131;:::i;:::-;34023:139;;33750:419;;;:::o;34175:176::-;34315:28;34311:1;34303:6;34299:14;34292:52;34175:176;:::o;34357:366::-;34499:3;34520:67;34584:2;34579:3;34520:67;:::i;:::-;34513:74;;34596:93;34685:3;34596:93;:::i;:::-;34714:2;34709:3;34705:12;34698:19;;34357:366;;;:::o;34729:419::-;34895:4;34933:2;34922:9;34918:18;34910:26;;34982:9;34976:4;34972:20;34968:1;34957:9;34953:17;34946:47;35010:131;35136:4;35010:131;:::i;:::-;35002:139;;34729:419;;;:::o;35154:238::-;35294:34;35290:1;35282:6;35278:14;35271:58;35363:21;35358:2;35350:6;35346:15;35339:46;35154:238;:::o;35398:366::-;35540:3;35561:67;35625:2;35620:3;35561:67;:::i;:::-;35554:74;;35637:93;35726:3;35637:93;:::i;:::-;35755:2;35750:3;35746:12;35739:19;;35398:366;;;:::o;35770:419::-;35936:4;35974:2;35963:9;35959:18;35951:26;;36023:9;36017:4;36013:20;36009:1;35998:9;35994:17;35987:47;36051:131;36177:4;36051:131;:::i;:::-;36043:139;;35770:419;;;:::o;36195:235::-;36335:34;36331:1;36323:6;36319:14;36312:58;36404:18;36399:2;36391:6;36387:15;36380:43;36195:235;:::o;36436:366::-;36578:3;36599:67;36663:2;36658:3;36599:67;:::i;:::-;36592:74;;36675:93;36764:3;36675:93;:::i;:::-;36793:2;36788:3;36784:12;36777:19;;36436:366;;;:::o;36808:419::-;36974:4;37012:2;37001:9;36997:18;36989:26;;37061:9;37055:4;37051:20;37047:1;37036:9;37032:17;37025:47;37089:131;37215:4;37089:131;:::i;:::-;37081:139;;36808:419;;;:::o;37233:148::-;37335:11;37372:3;37357:18;;37233:148;;;;:::o;37387:377::-;37493:3;37521:39;37554:5;37521:39;:::i;:::-;37576:89;37658:6;37653:3;37576:89;:::i;:::-;37569:96;;37674:52;37719:6;37714:3;37707:4;37700:5;37696:16;37674:52;:::i;:::-;37751:6;37746:3;37742:16;37735:23;;37497:267;37387:377;;;;:::o;37770:141::-;37819:4;37842:3;37834:11;;37865:3;37862:1;37855:14;37899:4;37896:1;37886:18;37878:26;;37770:141;;;:::o;37941:845::-;38044:3;38081:5;38075:12;38110:36;38136:9;38110:36;:::i;:::-;38162:89;38244:6;38239:3;38162:89;:::i;:::-;38155:96;;38282:1;38271:9;38267:17;38298:1;38293:137;;;;38444:1;38439:341;;;;38260:520;;38293:137;38377:4;38373:9;38362;38358:25;38353:3;38346:38;38413:6;38408:3;38404:16;38397:23;;38293:137;;38439:341;38506:38;38538:5;38506:38;:::i;:::-;38566:1;38580:154;38594:6;38591:1;38588:13;38580:154;;;38668:7;38662:14;38658:1;38653:3;38649:11;38642:35;38718:1;38709:7;38705:15;38694:26;;38616:4;38613:1;38609:12;38604:17;;38580:154;;;38763:6;38758:3;38754:16;38747:23;;38446:334;;38260:520;;38048:738;;37941:845;;;;:::o;38792:589::-;39017:3;39039:95;39130:3;39121:6;39039:95;:::i;:::-;39032:102;;39151:95;39242:3;39233:6;39151:95;:::i;:::-;39144:102;;39263:92;39351:3;39342:6;39263:92;:::i;:::-;39256:99;;39372:3;39365:10;;38792:589;;;;;;:::o;39387:225::-;39527:34;39523:1;39515:6;39511:14;39504:58;39596:8;39591:2;39583:6;39579:15;39572:33;39387:225;:::o;39618:366::-;39760:3;39781:67;39845:2;39840:3;39781:67;:::i;:::-;39774:74;;39857:93;39946:3;39857:93;:::i;:::-;39975:2;39970:3;39966:12;39959:19;;39618:366;;;:::o;39990:419::-;40156:4;40194:2;40183:9;40179:18;40171:26;;40243:9;40237:4;40233:20;40229:1;40218:9;40214:17;40207:47;40271:131;40397:4;40271:131;:::i;:::-;40263:139;;39990:419;;;:::o;40415:237::-;40555:34;40551:1;40543:6;40539:14;40532:58;40624:20;40619:2;40611:6;40607:15;40600:45;40415:237;:::o;40658:366::-;40800:3;40821:67;40885:2;40880:3;40821:67;:::i;:::-;40814:74;;40897:93;40986:3;40897:93;:::i;:::-;41015:2;41010:3;41006:12;40999:19;;40658:366;;;:::o;41030:419::-;41196:4;41234:2;41223:9;41219:18;41211:26;;41283:9;41277:4;41273:20;41269:1;41258:9;41254:17;41247:47;41311:131;41437:4;41311:131;:::i;:::-;41303:139;;41030:419;;;:::o;41455:225::-;41595:34;41591:1;41583:6;41579:14;41572:58;41664:8;41659:2;41651:6;41647:15;41640:33;41455:225;:::o;41686:366::-;41828:3;41849:67;41913:2;41908:3;41849:67;:::i;:::-;41842:74;;41925:93;42014:3;41925:93;:::i;:::-;42043:2;42038:3;42034:12;42027:19;;41686:366;;;:::o;42058:419::-;42224:4;42262:2;42251:9;42247:18;42239:26;;42311:9;42305:4;42301:20;42297:1;42286:9;42282:17;42275:47;42339:131;42465:4;42339:131;:::i;:::-;42331:139;;42058:419;;;:::o;42483:224::-;42623:34;42619:1;42611:6;42607:14;42600:58;42692:7;42687:2;42679:6;42675:15;42668:32;42483:224;:::o;42713:366::-;42855:3;42876:67;42940:2;42935:3;42876:67;:::i;:::-;42869:74;;42952:93;43041:3;42952:93;:::i;:::-;43070:2;43065:3;43061:12;43054:19;;42713:366;;;:::o;43085:419::-;43251:4;43289:2;43278:9;43274:18;43266:26;;43338:9;43332:4;43328:20;43324:1;43313:9;43309:17;43302:47;43366:131;43492:4;43366:131;:::i;:::-;43358:139;;43085:419;;;:::o;43510:118::-;43547:7;43587:34;43580:5;43576:46;43565:57;;43510:118;;;:::o;43634:191::-;43674:4;43694:20;43712:1;43694:20;:::i;:::-;43689:25;;43728:20;43746:1;43728:20;:::i;:::-;43723:25;;43767:1;43764;43761:8;43758:34;;;43772:18;;:::i;:::-;43758:34;43817:1;43814;43810:9;43802:17;;43634:191;;;;:::o;43831:273::-;43871:3;43890:20;43908:1;43890:20;:::i;:::-;43885:25;;43924:20;43942:1;43924:20;:::i;:::-;43919:25;;44046:1;44010:34;44006:42;44003:1;44000:49;43997:75;;;44052:18;;:::i;:::-;43997:75;44096:1;44093;44089:9;44082:16;;43831:273;;;;:::o;44110:229::-;44250:34;44246:1;44238:6;44234:14;44227:58;44319:12;44314:2;44306:6;44302:15;44295:37;44110:229;:::o;44345:366::-;44487:3;44508:67;44572:2;44567:3;44508:67;:::i;:::-;44501:74;;44584:93;44673:3;44584:93;:::i;:::-;44702:2;44697:3;44693:12;44686:19;;44345:366;;;:::o;44717:419::-;44883:4;44921:2;44910:9;44906:18;44898:26;;44970:9;44964:4;44960:20;44956:1;44945:9;44941:17;44934:47;44998:131;45124:4;44998:131;:::i;:::-;44990:139;;44717:419;;;:::o;45142:171::-;45181:3;45204:24;45222:5;45204:24;:::i;:::-;45195:33;;45250:4;45243:5;45240:15;45237:41;;;45258:18;;:::i;:::-;45237:41;45305:1;45298:5;45294:13;45287:20;;45142:171;;;:::o;45319:234::-;45459:34;45455:1;45447:6;45443:14;45436:58;45528:17;45523:2;45515:6;45511:15;45504:42;45319:234;:::o;45559:366::-;45701:3;45722:67;45786:2;45781:3;45722:67;:::i;:::-;45715:74;;45798:93;45887:3;45798:93;:::i;:::-;45916:2;45911:3;45907:12;45900:19;;45559:366;;;:::o;45931:419::-;46097:4;46135:2;46124:9;46120:18;46112:26;;46184:9;46178:4;46174:20;46170:1;46159:9;46155:17;46148:47;46212:131;46338:4;46212:131;:::i;:::-;46204:139;;45931:419;;;:::o;46356:98::-;46407:6;46441:5;46435:12;46425:22;;46356:98;;;:::o;46460:168::-;46543:11;46577:6;46572:3;46565:19;46617:4;46612:3;46608:14;46593:29;;46460:168;;;;:::o;46634:360::-;46720:3;46748:38;46780:5;46748:38;:::i;:::-;46802:70;46865:6;46860:3;46802:70;:::i;:::-;46795:77;;46881:52;46926:6;46921:3;46914:4;46907:5;46903:16;46881:52;:::i;:::-;46958:29;46980:6;46958:29;:::i;:::-;46953:3;46949:39;46942:46;;46724:270;46634:360;;;;:::o;47000:640::-;47195:4;47233:3;47222:9;47218:19;47210:27;;47247:71;47315:1;47304:9;47300:17;47291:6;47247:71;:::i;:::-;47328:72;47396:2;47385:9;47381:18;47372:6;47328:72;:::i;:::-;47410;47478:2;47467:9;47463:18;47454:6;47410:72;:::i;:::-;47529:9;47523:4;47519:20;47514:2;47503:9;47499:18;47492:48;47557:76;47628:4;47619:6;47557:76;:::i;:::-;47549:84;;47000:640;;;;;;;:::o;47646:141::-;47702:5;47733:6;47727:13;47718:22;;47749:32;47775:5;47749:32;:::i;:::-;47646:141;;;;:::o;47793:349::-;47862:6;47911:2;47899:9;47890:7;47886:23;47882:32;47879:119;;;47917:79;;:::i;:::-;47879:119;48037:1;48062:63;48117:7;48108:6;48097:9;48093:22;48062:63;:::i;:::-;48052:73;;48008:127;47793:349;;;;:::o;48148:180::-;48196:77;48193:1;48186:88;48293:4;48290:1;48283:15;48317:4;48314:1;48307:15;48334:185;48374:1;48391:20;48409:1;48391:20;:::i;:::-;48386:25;;48425:20;48443:1;48425:20;:::i;:::-;48420:25;;48464:1;48454:35;;48469:18;;:::i;:::-;48454:35;48511:1;48508;48504:9;48499:14;;48334:185;;;;:::o;48525:176::-;48557:1;48574:20;48592:1;48574:20;:::i;:::-;48569:25;;48608:20;48626:1;48608:20;:::i;:::-;48603:25;;48647:1;48637:35;;48652:18;;:::i;:::-;48637:35;48693:1;48690;48686:9;48681:14;;48525:176;;;;:::o;48707:220::-;48847:34;48843:1;48835:6;48831:14;48824:58;48916:3;48911:2;48903:6;48899:15;48892:28;48707:220;:::o;48933:366::-;49075:3;49096:67;49160:2;49155:3;49096:67;:::i;:::-;49089:74;;49172:93;49261:3;49172:93;:::i;:::-;49290:2;49285:3;49281:12;49274:19;;48933:366;;;:::o;49305:419::-;49471:4;49509:2;49498:9;49494:18;49486:26;;49558:9;49552:4;49548:20;49544:1;49533:9;49529:17;49522:47;49586:131;49712:4;49586:131;:::i;:::-;49578:139;;49305:419;;;:::o;49730:179::-;49870:31;49866:1;49858:6;49854:14;49847:55;49730:179;:::o;49915:366::-;50057:3;50078:67;50142:2;50137:3;50078:67;:::i;:::-;50071:74;;50154:93;50243:3;50154:93;:::i;:::-;50272:2;50267:3;50263:12;50256:19;;49915:366;;;:::o;50287:419::-;50453:4;50491:2;50480:9;50476:18;50468:26;;50540:9;50534:4;50530:20;50526:1;50515:9;50511:17;50504:47;50568:131;50694:4;50568:131;:::i;:::-;50560:139;;50287:419;;;:::o;50712:221::-;50852:34;50848:1;50840:6;50836:14;50829:58;50921:4;50916:2;50908:6;50904:15;50897:29;50712:221;:::o;50939:366::-;51081:3;51102:67;51166:2;51161:3;51102:67;:::i;:::-;51095:74;;51178:93;51267:3;51178:93;:::i;:::-;51296:2;51291:3;51287:12;51280:19;;50939:366;;;:::o;51311:419::-;51477:4;51515:2;51504:9;51500:18;51492:26;;51564:9;51558:4;51554:20;51550:1;51539:9;51535:17;51528:47;51592:131;51718:4;51592:131;:::i;:::-;51584:139;;51311:419;;;:::o

Swarm Source

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