ETH Price: $2,287.15 (+1.01%)

Classic Pepes (CPS)
 

Overview

TokenID

543

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
ClassicPepes

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/ClassicPepes.sol



// Amended by BoldLeonidas

pragma solidity >=0.7.0 <0.9.0;




contract ClassicPepes is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 1069;
  uint256 public maxMintAmountPerTx = 3;

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("Classic Pepes", "CPS") {
    setHiddenMetadataUri("ipfs://QmbrpA7wcQKqKC1DcpKpVFLHLWc6hau4FrKF2KA7GLLqDd/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

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

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000379565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000379565b5066038d7ea4c68000600b5561042d600c556003600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280600d81526020017f436c6173736963205065706573000000000000000000000000000000000000008152506040518060400160405280600381526020017f435053000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015892919062000379565b5080600190805190602001906200017192919062000379565b5050506200019462000188620001c460201b60201c565b620001cc60201b60201c565b620001be60405180608001604052806041815260200162004117604191396200029260201b60201c565b62000511565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a2620002be60201b60201c565b80600a9080519060200190620002ba92919062000379565b5050565b620002ce620001c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f46200034f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000344906200048a565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038790620004db565b90600052602060002090601f016020900481019282620003ab5760008555620003f7565b82601f10620003c657805160ff1916838001178555620003f7565b82800160010185558215620003f7579182015b82811115620003f6578251825591602001919060010190620003d9565b5b5090506200040691906200040a565b5090565b5b80821115620004255760008160009055506001016200040b565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200047260208362000429565b91506200047f826200043a565b602082019050919050565b60006020820190508181036000830152620004a58162000463565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f457607f821691505b602082108114156200050b576200050a620004ac565b5b50919050565b613bf680620005216000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061269d565b61084b565b60405161024891906126e5565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612799565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906127f1565b6109bf565b6040516102b0919061285f565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906128a6565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b60405161030491906128f5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612a45565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612aba565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b60405161038191906128f5565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ae7565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612ae7565b610c63565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612b3a565b610c83565b6040516104279190612c25565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906127f1565b610d8e565b005b34801561046557600080fd5b50610480600480360381019061047b9190612a45565b610da0565b005b34801561048e57600080fd5b50610497610dc2565b6040516104a491906126e5565b60405180910390f35b3480156104b957600080fd5b506104c2610dd5565b6040516104cf9190612799565b60405180910390f35b3480156104e457600080fd5b506104ed610e63565b6040516104fa91906126e5565b60405180910390f35b34801561050f57600080fd5b50610518610e76565b6040516105259190612799565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906127f1565b610f04565b604051610562919061285f565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612b3a565b610fb6565b60405161059f91906128f5565b60405180910390f35b3480156105b457600080fd5b506105bd61106e565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612a45565b611082565b005b3480156105f457600080fd5b506105fd6110a4565b60405161060a919061285f565b60405180910390f35b34801561061f57600080fd5b506106286110ce565b60405161063591906128f5565b60405180910390f35b34801561064a57600080fd5b506106536110d4565b6040516106609190612799565b60405180910390f35b610683600480360381019061067e91906127f1565b611166565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612c47565b6112bf565b005b3480156106ba57600080fd5b506106c36112d5565b6040516106d09190612799565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb91906127f1565b611363565b005b34801561070e57600080fd5b5061072960048036038101906107249190612d28565b611375565b005b34801561073757600080fd5b50610752600480360381019061074d91906127f1565b6113d7565b60405161075f9190612799565b60405180910390f35b34801561077457600080fd5b5061077d611530565b60405161078a91906128f5565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612aba565b611536565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612dab565b61155b565b6040516107f091906126e5565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612deb565b6115ef565b005b34801561082e57600080fd5b5061084960048036038101906108449190612b3a565b6116b1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611735565b5b9050919050565b60606000805461093c90612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461096890612e5a565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca8261179f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612efe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa06117ea565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac96117ea565b61155b565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590612f90565b60405180910390fd5b610b1883836117f2565b505050565b600b5481565b610b2b6118ab565b8060099080519060200190610b4192919061258e565b5050565b610b4d6118ab565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b766007611929565b905090565b610b8c610b866117ea565b82611937565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613022565b60405180910390fd5b610bd68383836119cc565b505050565b610be36118ab565b6000610bed6110a4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c1090613073565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e83838360405180602001604052806000815250611375565b505050565b60606000610c9083610fb6565b905060008167ffffffffffffffff811115610cae57610cad61291a565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600c548211155b15610d82576000610d0983610f04565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d52613088565b5b6020026020010181815250508180610d6a906130e6565b9250505b8280610d79906130e6565b93505050610ce8565b82945050505050919050565b610d966118ab565b80600b8190555050565b610da86118ab565b80600a9080519060200190610dbe92919061258e565b5050565b600e60019054906101000a900460ff1681565b60098054610de290612e5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90612e5a565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e8390612e5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90612e5a565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa49061317b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061320d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110766118ab565b6110806000611c33565b565b61108a6118ab565b80600890805190602001906110a092919061258e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546110e390612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90612e5a565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b806000811180156111795750600d548111155b6111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613279565b60405180910390fd5b600c54816111c66007611929565b6111d09190613299565b1115611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061333b565b60405180910390fd5b600e60009054906101000a900460ff1615611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906133a7565b60405180910390fd5b81600b5461126f91906133c7565b3410156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061346d565b60405180910390fd5b6112bb3383611cf9565b5050565b6112d16112ca6117ea565b8383611d39565b5050565b600a80546112e290612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461130e90612e5a565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b505050505081565b61136b6118ab565b80600d8190555050565b6113866113806117ea565b83611937565b6113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613022565b60405180910390fd5b6113d184848484611ea6565b50505050565b60606113e282611f02565b611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906134ff565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114cf57600a805461144a90612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461147690612e5a565b80156114c35780601f10611498576101008083540402835291602001916114c3565b820191906000526020600020905b8154815290600101906020018083116114a657829003601f168201915b5050505050905061152b565b60006114d9611f6e565b905060008151116114f95760405180602001604052806000815250611527565b8061150384612000565b6009604051602001611517939291906135ef565b6040516020818303038152906040525b9150505b919050565b600c5481565b61153e6118ab565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116025750600d548111155b611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613279565b60405180910390fd5b600c548161164f6007611929565b6116599190613299565b111561169a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116919061333b565b60405180910390fd5b6116a26118ab565b6116ac8284611cf9565b505050565b6116b96118ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613692565b60405180910390fd5b61173281611c33565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117a881611f02565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de9061317b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661186583610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118b36117ea565b73ffffffffffffffffffffffffffffffffffffffff166118d16110a4565b73ffffffffffffffffffffffffffffffffffffffff1614611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906136fe565b60405180910390fd5b565b600081600001549050919050565b60008061194383610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119855750611984818561155b565b5b806119c357508373ffffffffffffffffffffffffffffffffffffffff166119ab846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119ec82610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613790565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa990613822565b60405180910390fd5b611abd838383612161565b611ac86000826117f2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b189190613842565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6f9190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c2e838383612166565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611d3457611d0e600761216b565b611d2183611d1c6007611929565b612181565b8080611d2c906130e6565b915050611cfc565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f906138c2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e9991906126e5565b60405180910390a3505050565b611eb18484846119cc565b611ebd8484848461219f565b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390613954565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611f7d90612e5a565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa990612e5a565b8015611ff65780601f10611fcb57610100808354040283529160200191611ff6565b820191906000526020600020905b815481529060010190602001808311611fd957829003601f168201915b5050505050905090565b60606000821415612048576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061215c565b600082905060005b6000821461207a578080612063906130e6565b915050600a8261207391906139a3565b9150612050565b60008167ffffffffffffffff8111156120965761209561291a565b5b6040519080825280601f01601f1916602001820160405280156120c85781602001600182028036833780820191505090505b5090505b60008514612155576001826120e19190613842565b9150600a856120f091906139d4565b60306120fc9190613299565b60f81b81838151811061211257612111613088565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561214e91906139a3565b94506120cc565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61219b828260405180602001604052806000815250612336565b5050565b60006121c08473ffffffffffffffffffffffffffffffffffffffff16612391565b15612329578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e96117ea565b8786866040518563ffffffff1660e01b815260040161220b9493929190613a5a565b602060405180830381600087803b15801561222557600080fd5b505af192505050801561225657506040513d601f19601f820116820180604052508101906122539190613abb565b60015b6122d9573d8060008114612286576040519150601f19603f3d011682016040523d82523d6000602084013e61228b565b606091505b506000815114156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890613954565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061232e565b600190505b949350505050565b61234083836123b4565b61234d600084848461219f565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613954565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90613b34565b60405180910390fd5b61242d81611f02565b1561246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490613ba0565b60405180910390fd5b61247960008383612161565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124c99190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258a60008383612166565b5050565b82805461259a90612e5a565b90600052602060002090601f0160209004810192826125bc5760008555612603565b82601f106125d557805160ff1916838001178555612603565b82800160010185558215612603579182015b828111156126025782518255916020019190600101906125e7565b5b5090506126109190612614565b5090565b5b8082111561262d576000816000905550600101612615565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61267a81612645565b811461268557600080fd5b50565b60008135905061269781612671565b92915050565b6000602082840312156126b3576126b261263b565b5b60006126c184828501612688565b91505092915050565b60008115159050919050565b6126df816126ca565b82525050565b60006020820190506126fa60008301846126d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561273a57808201518184015260208101905061271f565b83811115612749576000848401525b50505050565b6000601f19601f8301169050919050565b600061276b82612700565b612775818561270b565b935061278581856020860161271c565b61278e8161274f565b840191505092915050565b600060208201905081810360008301526127b38184612760565b905092915050565b6000819050919050565b6127ce816127bb565b81146127d957600080fd5b50565b6000813590506127eb816127c5565b92915050565b6000602082840312156128075761280661263b565b5b6000612815848285016127dc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128498261281e565b9050919050565b6128598161283e565b82525050565b60006020820190506128746000830184612850565b92915050565b6128838161283e565b811461288e57600080fd5b50565b6000813590506128a08161287a565b92915050565b600080604083850312156128bd576128bc61263b565b5b60006128cb85828601612891565b92505060206128dc858286016127dc565b9150509250929050565b6128ef816127bb565b82525050565b600060208201905061290a60008301846128e6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129528261274f565b810181811067ffffffffffffffff821117156129715761297061291a565b5b80604052505050565b6000612984612631565b90506129908282612949565b919050565b600067ffffffffffffffff8211156129b0576129af61291a565b5b6129b98261274f565b9050602081019050919050565b82818337600083830152505050565b60006129e86129e384612995565b61297a565b905082815260208101848484011115612a0457612a03612915565b5b612a0f8482856129c6565b509392505050565b600082601f830112612a2c57612a2b612910565b5b8135612a3c8482602086016129d5565b91505092915050565b600060208284031215612a5b57612a5a61263b565b5b600082013567ffffffffffffffff811115612a7957612a78612640565b5b612a8584828501612a17565b91505092915050565b612a97816126ca565b8114612aa257600080fd5b50565b600081359050612ab481612a8e565b92915050565b600060208284031215612ad057612acf61263b565b5b6000612ade84828501612aa5565b91505092915050565b600080600060608486031215612b0057612aff61263b565b5b6000612b0e86828701612891565b9350506020612b1f86828701612891565b9250506040612b30868287016127dc565b9150509250925092565b600060208284031215612b5057612b4f61263b565b5b6000612b5e84828501612891565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b9c816127bb565b82525050565b6000612bae8383612b93565b60208301905092915050565b6000602082019050919050565b6000612bd282612b67565b612bdc8185612b72565b9350612be783612b83565b8060005b83811015612c18578151612bff8882612ba2565b9750612c0a83612bba565b925050600181019050612beb565b5085935050505092915050565b60006020820190508181036000830152612c3f8184612bc7565b905092915050565b60008060408385031215612c5e57612c5d61263b565b5b6000612c6c85828601612891565b9250506020612c7d85828601612aa5565b9150509250929050565b600067ffffffffffffffff821115612ca257612ca161291a565b5b612cab8261274f565b9050602081019050919050565b6000612ccb612cc684612c87565b61297a565b905082815260208101848484011115612ce757612ce6612915565b5b612cf28482856129c6565b509392505050565b600082601f830112612d0f57612d0e612910565b5b8135612d1f848260208601612cb8565b91505092915050565b60008060008060808587031215612d4257612d4161263b565b5b6000612d5087828801612891565b9450506020612d6187828801612891565b9350506040612d72878288016127dc565b925050606085013567ffffffffffffffff811115612d9357612d92612640565b5b612d9f87828801612cfa565b91505092959194509250565b60008060408385031215612dc257612dc161263b565b5b6000612dd085828601612891565b9250506020612de185828601612891565b9150509250929050565b60008060408385031215612e0257612e0161263b565b5b6000612e10858286016127dc565b9250506020612e2185828601612891565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e7257607f821691505b60208210811415612e8657612e85612e2b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee860218361270b565b9150612ef382612e8c565b604082019050919050565b60006020820190508181036000830152612f1781612edb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f7a603e8361270b565b9150612f8582612f1e565b604082019050919050565b60006020820190508181036000830152612fa981612f6d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061300c602e8361270b565b915061301782612fb0565b604082019050919050565b6000602082019050818103600083015261303b81612fff565b9050919050565b600081905092915050565b50565b600061305d600083613042565b91506130688261304d565b600082019050919050565b600061307e82613050565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f1826127bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613124576131236130b7565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061316560188361270b565b91506131708261312f565b602082019050919050565b6000602082019050818103600083015261319481613158565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006131f760298361270b565b91506132028261319b565b604082019050919050565b60006020820190508181036000830152613226816131ea565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061326360148361270b565b915061326e8261322d565b602082019050919050565b6000602082019050818103600083015261329281613256565b9050919050565b60006132a4826127bb565b91506132af836127bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e4576132e36130b7565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061332560148361270b565b9150613330826132ef565b602082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061339160178361270b565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b60006133d2826127bb565b91506133dd836127bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613416576134156130b7565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061345760138361270b565b915061346282613421565b602082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134e9602f8361270b565b91506134f48261348d565b604082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b600081905092915050565b600061353582612700565b61353f818561351f565b935061354f81856020860161271c565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461357d81612e5a565b613587818661351f565b945060018216600081146135a257600181146135b3576135e6565b60ff198316865281860193506135e6565b6135bc8561355b565b60005b838110156135de578154818901526001820191506020810190506135bf565b838801955050505b50505092915050565b60006135fb828661352a565b9150613607828561352a565b91506136138284613570565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061367c60268361270b565b915061368782613620565b604082019050919050565b600060208201905081810360008301526136ab8161366f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136e860208361270b565b91506136f3826136b2565b602082019050919050565b60006020820190508181036000830152613717816136db565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061377a60258361270b565b91506137858261371e565b604082019050919050565b600060208201905081810360008301526137a98161376d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061380c60248361270b565b9150613817826137b0565b604082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b600061384d826127bb565b9150613858836127bb565b92508282101561386b5761386a6130b7565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006138ac60198361270b565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061393e60328361270b565b9150613949826138e2565b604082019050919050565b6000602082019050818103600083015261396d81613931565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139ae826127bb565b91506139b9836127bb565b9250826139c9576139c8613974565b5b828204905092915050565b60006139df826127bb565b91506139ea836127bb565b9250826139fa576139f9613974565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613a2c82613a05565b613a368185613a10565b9350613a4681856020860161271c565b613a4f8161274f565b840191505092915050565b6000608082019050613a6f6000830187612850565b613a7c6020830186612850565b613a8960408301856128e6565b8181036060830152613a9b8184613a21565b905095945050505050565b600081519050613ab581612671565b92915050565b600060208284031215613ad157613ad061263b565b5b6000613adf84828501613aa6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613b1e60208361270b565b9150613b2982613ae8565b602082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b8a601c8361270b565b9150613b9582613b54565b602082019050919050565b60006020820190508181036000830152613bb981613b7d565b905091905056fea26469706673582212200a13426ff63bb35888f31465f66fc440194bb747036bac6bab0db2e57190230264736f6c63430008090033697066733a2f2f516d62727041377763514b714b43314463704b7056464c484c5763366861753446724b46324b4137474c4c7144642f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061269d565b61084b565b60405161024891906126e5565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612799565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906127f1565b6109bf565b6040516102b0919061285f565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906128a6565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b60405161030491906128f5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612a45565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612aba565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b60405161038191906128f5565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ae7565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612ae7565b610c63565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612b3a565b610c83565b6040516104279190612c25565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906127f1565b610d8e565b005b34801561046557600080fd5b50610480600480360381019061047b9190612a45565b610da0565b005b34801561048e57600080fd5b50610497610dc2565b6040516104a491906126e5565b60405180910390f35b3480156104b957600080fd5b506104c2610dd5565b6040516104cf9190612799565b60405180910390f35b3480156104e457600080fd5b506104ed610e63565b6040516104fa91906126e5565b60405180910390f35b34801561050f57600080fd5b50610518610e76565b6040516105259190612799565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906127f1565b610f04565b604051610562919061285f565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612b3a565b610fb6565b60405161059f91906128f5565b60405180910390f35b3480156105b457600080fd5b506105bd61106e565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612a45565b611082565b005b3480156105f457600080fd5b506105fd6110a4565b60405161060a919061285f565b60405180910390f35b34801561061f57600080fd5b506106286110ce565b60405161063591906128f5565b60405180910390f35b34801561064a57600080fd5b506106536110d4565b6040516106609190612799565b60405180910390f35b610683600480360381019061067e91906127f1565b611166565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612c47565b6112bf565b005b3480156106ba57600080fd5b506106c36112d5565b6040516106d09190612799565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb91906127f1565b611363565b005b34801561070e57600080fd5b5061072960048036038101906107249190612d28565b611375565b005b34801561073757600080fd5b50610752600480360381019061074d91906127f1565b6113d7565b60405161075f9190612799565b60405180910390f35b34801561077457600080fd5b5061077d611530565b60405161078a91906128f5565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612aba565b611536565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612dab565b61155b565b6040516107f091906126e5565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612deb565b6115ef565b005b34801561082e57600080fd5b5061084960048036038101906108449190612b3a565b6116b1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611735565b5b9050919050565b60606000805461093c90612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461096890612e5a565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca8261179f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612efe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa06117ea565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac96117ea565b61155b565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590612f90565b60405180910390fd5b610b1883836117f2565b505050565b600b5481565b610b2b6118ab565b8060099080519060200190610b4192919061258e565b5050565b610b4d6118ab565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b766007611929565b905090565b610b8c610b866117ea565b82611937565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613022565b60405180910390fd5b610bd68383836119cc565b505050565b610be36118ab565b6000610bed6110a4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c1090613073565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e83838360405180602001604052806000815250611375565b505050565b60606000610c9083610fb6565b905060008167ffffffffffffffff811115610cae57610cad61291a565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600c548211155b15610d82576000610d0983610f04565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d52613088565b5b6020026020010181815250508180610d6a906130e6565b9250505b8280610d79906130e6565b93505050610ce8565b82945050505050919050565b610d966118ab565b80600b8190555050565b610da86118ab565b80600a9080519060200190610dbe92919061258e565b5050565b600e60019054906101000a900460ff1681565b60098054610de290612e5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90612e5a565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e8390612e5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90612e5a565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa49061317b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061320d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110766118ab565b6110806000611c33565b565b61108a6118ab565b80600890805190602001906110a092919061258e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546110e390612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90612e5a565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b806000811180156111795750600d548111155b6111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613279565b60405180910390fd5b600c54816111c66007611929565b6111d09190613299565b1115611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061333b565b60405180910390fd5b600e60009054906101000a900460ff1615611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906133a7565b60405180910390fd5b81600b5461126f91906133c7565b3410156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061346d565b60405180910390fd5b6112bb3383611cf9565b5050565b6112d16112ca6117ea565b8383611d39565b5050565b600a80546112e290612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461130e90612e5a565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b505050505081565b61136b6118ab565b80600d8190555050565b6113866113806117ea565b83611937565b6113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613022565b60405180910390fd5b6113d184848484611ea6565b50505050565b60606113e282611f02565b611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906134ff565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114cf57600a805461144a90612e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461147690612e5a565b80156114c35780601f10611498576101008083540402835291602001916114c3565b820191906000526020600020905b8154815290600101906020018083116114a657829003601f168201915b5050505050905061152b565b60006114d9611f6e565b905060008151116114f95760405180602001604052806000815250611527565b8061150384612000565b6009604051602001611517939291906135ef565b6040516020818303038152906040525b9150505b919050565b600c5481565b61153e6118ab565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116025750600d548111155b611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613279565b60405180910390fd5b600c548161164f6007611929565b6116599190613299565b111561169a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116919061333b565b60405180910390fd5b6116a26118ab565b6116ac8284611cf9565b505050565b6116b96118ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613692565b60405180910390fd5b61173281611c33565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117a881611f02565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de9061317b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661186583610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118b36117ea565b73ffffffffffffffffffffffffffffffffffffffff166118d16110a4565b73ffffffffffffffffffffffffffffffffffffffff1614611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906136fe565b60405180910390fd5b565b600081600001549050919050565b60008061194383610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119855750611984818561155b565b5b806119c357508373ffffffffffffffffffffffffffffffffffffffff166119ab846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119ec82610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613790565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa990613822565b60405180910390fd5b611abd838383612161565b611ac86000826117f2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b189190613842565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6f9190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c2e838383612166565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611d3457611d0e600761216b565b611d2183611d1c6007611929565b612181565b8080611d2c906130e6565b915050611cfc565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f906138c2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e9991906126e5565b60405180910390a3505050565b611eb18484846119cc565b611ebd8484848461219f565b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390613954565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611f7d90612e5a565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa990612e5a565b8015611ff65780601f10611fcb57610100808354040283529160200191611ff6565b820191906000526020600020905b815481529060010190602001808311611fd957829003601f168201915b5050505050905090565b60606000821415612048576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061215c565b600082905060005b6000821461207a578080612063906130e6565b915050600a8261207391906139a3565b9150612050565b60008167ffffffffffffffff8111156120965761209561291a565b5b6040519080825280601f01601f1916602001820160405280156120c85781602001600182028036833780820191505090505b5090505b60008514612155576001826120e19190613842565b9150600a856120f091906139d4565b60306120fc9190613299565b60f81b81838151811061211257612111613088565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561214e91906139a3565b94506120cc565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61219b828260405180602001604052806000815250612336565b5050565b60006121c08473ffffffffffffffffffffffffffffffffffffffff16612391565b15612329578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e96117ea565b8786866040518563ffffffff1660e01b815260040161220b9493929190613a5a565b602060405180830381600087803b15801561222557600080fd5b505af192505050801561225657506040513d601f19601f820116820180604052508101906122539190613abb565b60015b6122d9573d8060008114612286576040519150601f19603f3d011682016040523d82523d6000602084013e61228b565b606091505b506000815114156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890613954565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061232e565b600190505b949350505050565b61234083836123b4565b61234d600084848461219f565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613954565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90613b34565b60405180910390fd5b61242d81611f02565b1561246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490613ba0565b60405180910390fd5b61247960008383612161565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124c99190613299565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258a60008383612166565b5050565b82805461259a90612e5a565b90600052602060002090601f0160209004810192826125bc5760008555612603565b82601f106125d557805160ff1916838001178555612603565b82800160010185558215612603579182015b828111156126025782518255916020019190600101906125e7565b5b5090506126109190612614565b5090565b5b8082111561262d576000816000905550600101612615565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61267a81612645565b811461268557600080fd5b50565b60008135905061269781612671565b92915050565b6000602082840312156126b3576126b261263b565b5b60006126c184828501612688565b91505092915050565b60008115159050919050565b6126df816126ca565b82525050565b60006020820190506126fa60008301846126d6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561273a57808201518184015260208101905061271f565b83811115612749576000848401525b50505050565b6000601f19601f8301169050919050565b600061276b82612700565b612775818561270b565b935061278581856020860161271c565b61278e8161274f565b840191505092915050565b600060208201905081810360008301526127b38184612760565b905092915050565b6000819050919050565b6127ce816127bb565b81146127d957600080fd5b50565b6000813590506127eb816127c5565b92915050565b6000602082840312156128075761280661263b565b5b6000612815848285016127dc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128498261281e565b9050919050565b6128598161283e565b82525050565b60006020820190506128746000830184612850565b92915050565b6128838161283e565b811461288e57600080fd5b50565b6000813590506128a08161287a565b92915050565b600080604083850312156128bd576128bc61263b565b5b60006128cb85828601612891565b92505060206128dc858286016127dc565b9150509250929050565b6128ef816127bb565b82525050565b600060208201905061290a60008301846128e6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129528261274f565b810181811067ffffffffffffffff821117156129715761297061291a565b5b80604052505050565b6000612984612631565b90506129908282612949565b919050565b600067ffffffffffffffff8211156129b0576129af61291a565b5b6129b98261274f565b9050602081019050919050565b82818337600083830152505050565b60006129e86129e384612995565b61297a565b905082815260208101848484011115612a0457612a03612915565b5b612a0f8482856129c6565b509392505050565b600082601f830112612a2c57612a2b612910565b5b8135612a3c8482602086016129d5565b91505092915050565b600060208284031215612a5b57612a5a61263b565b5b600082013567ffffffffffffffff811115612a7957612a78612640565b5b612a8584828501612a17565b91505092915050565b612a97816126ca565b8114612aa257600080fd5b50565b600081359050612ab481612a8e565b92915050565b600060208284031215612ad057612acf61263b565b5b6000612ade84828501612aa5565b91505092915050565b600080600060608486031215612b0057612aff61263b565b5b6000612b0e86828701612891565b9350506020612b1f86828701612891565b9250506040612b30868287016127dc565b9150509250925092565b600060208284031215612b5057612b4f61263b565b5b6000612b5e84828501612891565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b9c816127bb565b82525050565b6000612bae8383612b93565b60208301905092915050565b6000602082019050919050565b6000612bd282612b67565b612bdc8185612b72565b9350612be783612b83565b8060005b83811015612c18578151612bff8882612ba2565b9750612c0a83612bba565b925050600181019050612beb565b5085935050505092915050565b60006020820190508181036000830152612c3f8184612bc7565b905092915050565b60008060408385031215612c5e57612c5d61263b565b5b6000612c6c85828601612891565b9250506020612c7d85828601612aa5565b9150509250929050565b600067ffffffffffffffff821115612ca257612ca161291a565b5b612cab8261274f565b9050602081019050919050565b6000612ccb612cc684612c87565b61297a565b905082815260208101848484011115612ce757612ce6612915565b5b612cf28482856129c6565b509392505050565b600082601f830112612d0f57612d0e612910565b5b8135612d1f848260208601612cb8565b91505092915050565b60008060008060808587031215612d4257612d4161263b565b5b6000612d5087828801612891565b9450506020612d6187828801612891565b9350506040612d72878288016127dc565b925050606085013567ffffffffffffffff811115612d9357612d92612640565b5b612d9f87828801612cfa565b91505092959194509250565b60008060408385031215612dc257612dc161263b565b5b6000612dd085828601612891565b9250506020612de185828601612891565b9150509250929050565b60008060408385031215612e0257612e0161263b565b5b6000612e10858286016127dc565b9250506020612e2185828601612891565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e7257607f821691505b60208210811415612e8657612e85612e2b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee860218361270b565b9150612ef382612e8c565b604082019050919050565b60006020820190508181036000830152612f1781612edb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f7a603e8361270b565b9150612f8582612f1e565b604082019050919050565b60006020820190508181036000830152612fa981612f6d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061300c602e8361270b565b915061301782612fb0565b604082019050919050565b6000602082019050818103600083015261303b81612fff565b9050919050565b600081905092915050565b50565b600061305d600083613042565b91506130688261304d565b600082019050919050565b600061307e82613050565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f1826127bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613124576131236130b7565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061316560188361270b565b91506131708261312f565b602082019050919050565b6000602082019050818103600083015261319481613158565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006131f760298361270b565b91506132028261319b565b604082019050919050565b60006020820190508181036000830152613226816131ea565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061326360148361270b565b915061326e8261322d565b602082019050919050565b6000602082019050818103600083015261329281613256565b9050919050565b60006132a4826127bb565b91506132af836127bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e4576132e36130b7565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061332560148361270b565b9150613330826132ef565b602082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061339160178361270b565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b60006133d2826127bb565b91506133dd836127bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613416576134156130b7565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061345760138361270b565b915061346282613421565b602082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134e9602f8361270b565b91506134f48261348d565b604082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b600081905092915050565b600061353582612700565b61353f818561351f565b935061354f81856020860161271c565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461357d81612e5a565b613587818661351f565b945060018216600081146135a257600181146135b3576135e6565b60ff198316865281860193506135e6565b6135bc8561355b565b60005b838110156135de578154818901526001820191506020810190506135bf565b838801955050505b50505092915050565b60006135fb828661352a565b9150613607828561352a565b91506136138284613570565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061367c60268361270b565b915061368782613620565b604082019050919050565b600060208201905081810360008301526136ab8161366f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136e860208361270b565b91506136f3826136b2565b602082019050919050565b60006020820190508181036000830152613717816136db565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061377a60258361270b565b91506137858261371e565b604082019050919050565b600060208201905081810360008301526137a98161376d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061380c60248361270b565b9150613817826137b0565b604082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b600061384d826127bb565b9150613858836127bb565b92508282101561386b5761386a6130b7565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006138ac60198361270b565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061393e60328361270b565b9150613949826138e2565b604082019050919050565b6000602082019050818103600083015261396d81613931565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139ae826127bb565b91506139b9836127bb565b9250826139c9576139c8613974565b5b828204905092915050565b60006139df826127bb565b91506139ea836127bb565b9250826139fa576139f9613974565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613a2c82613a05565b613a368185613a10565b9350613a4681856020860161271c565b613a4f8161274f565b840191505092915050565b6000608082019050613a6f6000830187612850565b613a7c6020830186612850565b613a8960408301856128e6565b8181036060830152613a9b8184613a21565b905095945050505050565b600081519050613ab581612671565b92915050565b600060208284031215613ad157613ad061263b565b5b6000613adf84828501613aa6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613b1e60208361270b565b9150613b2982613ae8565b602082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b8a601c8361270b565b9150613b9582613b54565b602082019050919050565b60006020820190508181036000830152613bb981613b7d565b905091905056fea26469706673582212200a13426ff63bb35888f31465f66fc440194bb747036bac6bab0db2e57190230264736f6c63430008090033

Deployed Bytecode Sourcemap

39533:3863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26237:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27164:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28677:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28194:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39800:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42575:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42681:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40376:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29377:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42764:309;;;;;;;;;;;;;:::i;:::-;;29784:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40887:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42115:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42331:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39948:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39722:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39918:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39689:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26875:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26606:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6773:103;;;;;;;;;;;;;:::i;:::-;;42469:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6125:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39874:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27333:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40471:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28920:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39760:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42195:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30040:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41528:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39838:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42028:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29146:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40726:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7031:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26237:305;26339:4;26391:25;26376:40;;;:11;:40;;;;:105;;;;26448:33;26433:48;;;:11;:48;;;;26376:105;:158;;;;26498:36;26522:11;26498:23;:36::i;:::-;26376:158;26356:178;;26237:305;;;:::o;27164:100::-;27218:13;27251:5;27244:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27164:100;:::o;28677:171::-;28753:7;28773:23;28788:7;28773:14;:23::i;:::-;28816:15;:24;28832:7;28816:24;;;;;;;;;;;;;;;;;;;;;28809:31;;28677:171;;;:::o;28194:417::-;28275:13;28291:23;28306:7;28291:14;:23::i;:::-;28275:39;;28339:5;28333:11;;:2;:11;;;;28325:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28433:5;28417:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28442:37;28459:5;28466:12;:10;:12::i;:::-;28442:16;:37::i;:::-;28417:62;28395:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28582:21;28591:2;28595:7;28582:8;:21::i;:::-;28264:347;28194:417;;:::o;39800:33::-;;;;:::o;42575:100::-;6011:13;:11;:13::i;:::-;42659:10:::1;42647:9;:22;;;;;;;;;;;;:::i;:::-;;42575:100:::0;:::o;42681:77::-;6011:13;:11;:13::i;:::-;42746:6:::1;42737;;:15;;;;;;;;;;;;;;;;;;42681:77:::0;:::o;40376:89::-;40420:7;40443:16;:6;:14;:16::i;:::-;40436:23;;40376:89;:::o;29377:336::-;29572:41;29591:12;:10;:12::i;:::-;29605:7;29572:18;:41::i;:::-;29564:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29677:28;29687:4;29693:2;29697:7;29677:9;:28::i;:::-;29377:336;;;:::o;42764:309::-;6011:13;:11;:13::i;:::-;42895:7:::1;42916;:5;:7::i;:::-;42908:21;;42937;42908:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42894:69;;;42978:2;42970:11;;;::::0;::::1;;42801:272;42764:309::o:0;29784:185::-;29922:39;29939:4;29945:2;29949:7;29922:39;;;;;;;;;;;;:16;:39::i;:::-;29784:185;;;:::o;40887:635::-;40962:16;40990:23;41016:17;41026:6;41016:9;:17::i;:::-;40990:43;;41040:30;41087:15;41073:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41040:63;;41110:22;41135:1;41110:26;;41143:23;41179:309;41204:15;41186;:33;:64;;;;;41241:9;;41223:14;:27;;41186:64;41179:309;;;41261:25;41289:23;41297:14;41289:7;:23::i;:::-;41261:51;;41348:6;41327:27;;:17;:27;;;41323:131;;;41400:14;41367:13;41381:15;41367:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41427:17;;;;;:::i;:::-;;;;41323:131;41464:16;;;;;:::i;:::-;;;;41252:236;41179:309;;;41503:13;41496:20;;;;;;40887:635;;;:::o;42115:74::-;6011:13;:11;:13::i;:::-;42178:5:::1;42171:4;:12;;;;42115:74:::0;:::o;42331:132::-;6011:13;:11;:13::i;:::-;42439:18:::1;42419:17;:38;;;;;;;;;;;;:::i;:::-;;42331:132:::0;:::o;39948:28::-;;;;;;;;;;;;;:::o;39722:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39918:25::-;;;;;;;;;;;;;:::o;39689:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26875:222::-;26947:7;26967:13;26983:7;:16;26991:7;26983:16;;;;;;;;;;;;;;;;;;;;;26967:32;;27035:1;27018:19;;:5;:19;;;;27010:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27084:5;27077:12;;;26875:222;;;:::o;26606:207::-;26678:7;26723:1;26706:19;;:5;:19;;;;26698:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26789:9;:16;26799:5;26789:16;;;;;;;;;;;;;;;;26782:23;;26606:207;;;:::o;6773:103::-;6011:13;:11;:13::i;:::-;6838:30:::1;6865:1;6838:18;:30::i;:::-;6773:103::o:0;42469:100::-;6011:13;:11;:13::i;:::-;42553:10:::1;42541:9;:22;;;;;;;;;;;;:::i;:::-;;42469:100:::0;:::o;6125:87::-;6171:7;6198:6;;;;;;;;;;;6191:13;;6125:87;:::o;39874:37::-;;;;:::o;27333:104::-;27389:13;27422:7;27415:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27333:104;:::o;40471:247::-;40536:11;40210:1;40196:11;:15;:52;;;;;40230:18;;40215:11;:33;;40196:52;40188:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40322:9;;40307:11;40288:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40280:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:6:::1;;;;;;;;;;;40564:7;40556:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40634:11;40627:4;;:18;;;;:::i;:::-;40614:9;:31;;40606:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40678:34;40688:10;40700:11;40678:9;:34::i;:::-;40471:247:::0;;:::o;28920:155::-;29015:52;29034:12;:10;:12::i;:::-;29048:8;29058;29015:18;:52::i;:::-;28920:155;;:::o;39760:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42195:130::-;6011:13;:11;:13::i;:::-;42300:19:::1;42279:18;:40;;;;42195:130:::0;:::o;30040:323::-;30214:41;30233:12;:10;:12::i;:::-;30247:7;30214:18;:41::i;:::-;30206:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30317:38;30331:4;30337:2;30341:7;30350:4;30317:13;:38::i;:::-;30040:323;;;;:::o;41528:494::-;41627:13;41668:17;41676:8;41668:7;:17::i;:::-;41652:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41775:5;41763:17;;:8;;;;;;;;;;;:17;;;41759:64;;;41798:17;41791:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41759:64;41831:28;41862:10;:8;:10::i;:::-;41831:41;;41917:1;41892:14;41886:28;:32;:130;;;;;;;;;;;;;;;;;41954:14;41970:19;:8;:17;:19::i;:::-;41991:9;41937:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41886:130;41879:137;;;41528:494;;;;:::o;39838:31::-;;;;:::o;42028:81::-;6011:13;:11;:13::i;:::-;42097:6:::1;42086:8;;:17;;;;;;;;;;;;;;;;;;42028:81:::0;:::o;29146:164::-;29243:4;29267:18;:25;29286:5;29267:25;;;;;;;;;;;;;;;:35;29293:8;29267:35;;;;;;;;;;;;;;;;;;;;;;;;;29260:42;;29146:164;;;;:::o;40726:155::-;40812:11;40210:1;40196:11;:15;:52;;;;;40230:18;;40215:11;:33;;40196:52;40188:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40322:9;;40307:11;40288:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40280:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6011:13:::1;:11;:13::i;:::-;40842:33:::2;40852:9;40863:11;40842:9;:33::i;:::-;40726:155:::0;;;:::o;7031:201::-;6011:13;:11;:13::i;:::-;7140:1:::1;7120:22;;:8;:22;;;;7112:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7196:28;7215:8;7196:18;:28::i;:::-;7031:201:::0;:::o;18979:157::-;19064:4;19103:25;19088:40;;;:11;:40;;;;19081:47;;18979:157;;;:::o;36652:135::-;36734:16;36742:7;36734;:16::i;:::-;36726:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36652:135;:::o;4676:98::-;4729:7;4756:10;4749:17;;4676:98;:::o;35931:174::-;36033:2;36006:15;:24;36022:7;36006:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36089:7;36085:2;36051:46;;36060:23;36075:7;36060:14;:23::i;:::-;36051:46;;;;;;;;;;;;35931:174;;:::o;6290:132::-;6365:12;:10;:12::i;:::-;6354:23;;:7;:5;:7::i;:::-;:23;;;6346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6290:132::o;907:114::-;972:7;999;:14;;;992:21;;907:114;;;:::o;32164:264::-;32257:4;32274:13;32290:23;32305:7;32290:14;:23::i;:::-;32274:39;;32343:5;32332:16;;:7;:16;;;:52;;;;32352:32;32369:5;32376:7;32352:16;:32::i;:::-;32332:52;:87;;;;32412:7;32388:31;;:20;32400:7;32388:11;:20::i;:::-;:31;;;32332:87;32324:96;;;32164:264;;;;:::o;35187:625::-;35346:4;35319:31;;:23;35334:7;35319:14;:23::i;:::-;:31;;;35311:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35425:1;35411:16;;:2;:16;;;;35403:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35481:39;35502:4;35508:2;35512:7;35481:20;:39::i;:::-;35585:29;35602:1;35606:7;35585:8;:29::i;:::-;35646:1;35627:9;:15;35637:4;35627:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35675:1;35658:9;:13;35668:2;35658:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35706:2;35687:7;:16;35695:7;35687:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35745:7;35741:2;35726:27;;35735:4;35726:27;;;;;;;;;;;;35766:38;35786:4;35792:2;35796:7;35766:19;:38::i;:::-;35187:625;;;:::o;7392:191::-;7466:16;7485:6;;;;;;;;;;;7466:25;;7511:8;7502:6;;:17;;;;;;;;;;;;;;;;;;7566:8;7535:40;;7556:8;7535:40;;;;;;;;;;;;7455:128;7392:191;:::o;43079:204::-;43159:9;43154:124;43178:11;43174:1;:15;43154:124;;;43205:18;:6;:16;:18::i;:::-;43232:38;43242:9;43253:16;:6;:14;:16::i;:::-;43232:9;:38::i;:::-;43191:3;;;;;:::i;:::-;;;;43154:124;;;;43079:204;;:::o;36248:315::-;36403:8;36394:17;;:5;:17;;;;36386:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36490:8;36452:18;:25;36471:5;36452:25;;;;;;;;;;;;;;;:35;36478:8;36452:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36536:8;36514:41;;36529:5;36514:41;;;36546:8;36514:41;;;;;;:::i;:::-;;;;;;;;36248:315;;;:::o;31244:313::-;31400:28;31410:4;31416:2;31420:7;31400:9;:28::i;:::-;31447:47;31470:4;31476:2;31480:7;31489:4;31447:22;:47::i;:::-;31439:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31244:313;;;;:::o;31870:127::-;31935:4;31987:1;31959:30;;:7;:16;31967:7;31959:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31952:37;;31870:127;;;:::o;43289:104::-;43349:13;43378:9;43371:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43289:104;:::o;1930:723::-;1986:13;2216:1;2207:5;:10;2203:53;;;2234:10;;;;;;;;;;;;;;;;;;;;;2203:53;2266:12;2281:5;2266:20;;2297:14;2322:78;2337:1;2329:4;:9;2322:78;;2355:8;;;;;:::i;:::-;;;;2386:2;2378:10;;;;;:::i;:::-;;;2322:78;;;2410:19;2442:6;2432:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2410:39;;2460:154;2476:1;2467:5;:10;2460:154;;2504:1;2494:11;;;;;:::i;:::-;;;2571:2;2563:5;:10;;;;:::i;:::-;2550:2;:24;;;;:::i;:::-;2537:39;;2520:6;2527;2520:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2600:2;2591:11;;;;;:::i;:::-;;;2460:154;;;2638:6;2624:21;;;;;1930:723;;;;:::o;38776:126::-;;;;:::o;39287:125::-;;;;:::o;1029:127::-;1136:1;1118:7;:14;;;:19;;;;;;;;;;;1029:127;:::o;32770:110::-;32846:26;32856:2;32860:7;32846:26;;;;;;;;;;;;:9;:26::i;:::-;32770:110;;:::o;37351:853::-;37505:4;37526:15;:2;:13;;;:15::i;:::-;37522:675;;;37578:2;37562:36;;;37599:12;:10;:12::i;:::-;37613:4;37619:7;37628:4;37562:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37558:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37820:1;37803:6;:13;:18;37799:328;;;37846:60;;;;;;;;;;:::i;:::-;;;;;;;;37799:328;38077:6;38071:13;38062:6;38058:2;38054:15;38047:38;37558:584;37694:41;;;37684:51;;;:6;:51;;;;37677:58;;;;;37522:675;38181:4;38174:11;;37351:853;;;;;;;:::o;33107:319::-;33236:18;33242:2;33246:7;33236:5;:18::i;:::-;33287:53;33318:1;33322:2;33326:7;33335:4;33287:22;:53::i;:::-;33265:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33107:319;;;:::o;8823:326::-;8883:4;9140:1;9118:7;:19;;;:23;9111:30;;8823:326;;;:::o;33762:439::-;33856:1;33842:16;;:2;:16;;;;33834:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33915:16;33923:7;33915;:16::i;:::-;33914:17;33906:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33977:45;34006:1;34010:2;34014:7;33977:20;:45::i;:::-;34052:1;34035:9;:13;34045:2;34035:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34083:2;34064:7;:16;34072:7;34064:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34128:7;34124:2;34103:33;;34120:1;34103:33;;;;;;;;;;;;34149:44;34177:1;34181:2;34185:7;34149:19;:44::i;:::-;33762:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;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:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:220::-;15595:34;15591:1;15583:6;15579:14;15572:58;15664:3;15659:2;15651:6;15647:15;15640:28;15455:220;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:249::-;16618:34;16614:1;16606:6;16602:14;16595:58;16687:32;16682:2;16674:6;16670:15;16663:57;16478:249;:::o;16733:366::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:419::-;17271:4;17309:2;17298:9;17294:18;17286:26;;17358:9;17352:4;17348:20;17344:1;17333:9;17329:17;17322:47;17386:131;17512:4;17386:131;:::i;:::-;17378:139;;17105:419;;;:::o;17530:233::-;17670:34;17666:1;17658:6;17654:14;17647:58;17739:16;17734:2;17726:6;17722:15;17715:41;17530:233;:::o;17769:366::-;17911:3;17932:67;17996:2;17991:3;17932:67;:::i;:::-;17925:74;;18008:93;18097:3;18008:93;:::i;:::-;18126:2;18121:3;18117:12;18110:19;;17769:366;;;:::o;18141:419::-;18307:4;18345:2;18334:9;18330:18;18322:26;;18394:9;18388:4;18384:20;18380:1;18369:9;18365:17;18358:47;18422:131;18548:4;18422:131;:::i;:::-;18414:139;;18141:419;;;:::o;18566:147::-;18667:11;18704:3;18689:18;;18566:147;;;;:::o;18719:114::-;;:::o;18839:398::-;18998:3;19019:83;19100:1;19095:3;19019:83;:::i;:::-;19012:90;;19111:93;19200:3;19111:93;:::i;:::-;19229:1;19224:3;19220:11;19213:18;;18839:398;;;:::o;19243:379::-;19427:3;19449:147;19592:3;19449:147;:::i;:::-;19442:154;;19613:3;19606:10;;19243:379;;;:::o;19628:180::-;19676:77;19673:1;19666:88;19773:4;19770:1;19763:15;19797:4;19794:1;19787:15;19814:180;19862:77;19859:1;19852:88;19959:4;19956:1;19949:15;19983:4;19980:1;19973:15;20000:233;20039:3;20062:24;20080:5;20062:24;:::i;:::-;20053:33;;20108:66;20101:5;20098:77;20095:103;;;20178:18;;:::i;:::-;20095:103;20225:1;20218:5;20214:13;20207:20;;20000:233;;;:::o;20239:174::-;20379:26;20375:1;20367:6;20363:14;20356:50;20239:174;:::o;20419:366::-;20561:3;20582:67;20646:2;20641:3;20582:67;:::i;:::-;20575:74;;20658:93;20747:3;20658:93;:::i;:::-;20776:2;20771:3;20767:12;20760:19;;20419:366;;;:::o;20791:419::-;20957:4;20995:2;20984:9;20980:18;20972:26;;21044:9;21038:4;21034:20;21030:1;21019:9;21015:17;21008:47;21072:131;21198:4;21072:131;:::i;:::-;21064:139;;20791:419;;;:::o;21216:228::-;21356:34;21352:1;21344:6;21340:14;21333:58;21425:11;21420:2;21412:6;21408:15;21401:36;21216:228;:::o;21450:366::-;21592:3;21613:67;21677:2;21672:3;21613:67;:::i;:::-;21606:74;;21689:93;21778:3;21689:93;:::i;:::-;21807:2;21802:3;21798:12;21791:19;;21450:366;;;:::o;21822:419::-;21988:4;22026:2;22015:9;22011:18;22003:26;;22075:9;22069:4;22065:20;22061:1;22050:9;22046:17;22039:47;22103:131;22229:4;22103:131;:::i;:::-;22095:139;;21822:419;;;:::o;22247:170::-;22387:22;22383:1;22375:6;22371:14;22364:46;22247:170;:::o;22423:366::-;22565:3;22586:67;22650:2;22645:3;22586:67;:::i;:::-;22579:74;;22662:93;22751:3;22662:93;:::i;:::-;22780:2;22775:3;22771:12;22764:19;;22423:366;;;:::o;22795:419::-;22961:4;22999:2;22988:9;22984:18;22976:26;;23048:9;23042:4;23038:20;23034:1;23023:9;23019:17;23012:47;23076:131;23202:4;23076:131;:::i;:::-;23068:139;;22795:419;;;:::o;23220:305::-;23260:3;23279:20;23297:1;23279:20;:::i;:::-;23274:25;;23313:20;23331:1;23313:20;:::i;:::-;23308:25;;23467:1;23399:66;23395:74;23392:1;23389:81;23386:107;;;23473:18;;:::i;:::-;23386:107;23517:1;23514;23510:9;23503:16;;23220:305;;;;:::o;23531:170::-;23671:22;23667:1;23659:6;23655:14;23648:46;23531:170;:::o;23707:366::-;23849:3;23870:67;23934:2;23929:3;23870:67;:::i;:::-;23863:74;;23946:93;24035:3;23946:93;:::i;:::-;24064:2;24059:3;24055:12;24048:19;;23707:366;;;:::o;24079:419::-;24245:4;24283:2;24272:9;24268:18;24260:26;;24332:9;24326:4;24322:20;24318:1;24307:9;24303:17;24296:47;24360:131;24486:4;24360:131;:::i;:::-;24352:139;;24079:419;;;:::o;24504:173::-;24644:25;24640:1;24632:6;24628:14;24621:49;24504:173;:::o;24683:366::-;24825:3;24846:67;24910:2;24905:3;24846:67;:::i;:::-;24839:74;;24922:93;25011:3;24922:93;:::i;:::-;25040:2;25035:3;25031:12;25024:19;;24683:366;;;:::o;25055:419::-;25221:4;25259:2;25248:9;25244:18;25236:26;;25308:9;25302:4;25298:20;25294:1;25283:9;25279:17;25272:47;25336:131;25462:4;25336:131;:::i;:::-;25328:139;;25055:419;;;:::o;25480:348::-;25520:7;25543:20;25561:1;25543:20;:::i;:::-;25538:25;;25577:20;25595:1;25577:20;:::i;:::-;25572:25;;25765:1;25697:66;25693:74;25690:1;25687:81;25682:1;25675:9;25668:17;25664:105;25661:131;;;25772:18;;:::i;:::-;25661:131;25820:1;25817;25813:9;25802:20;;25480:348;;;;:::o;25834:169::-;25974:21;25970:1;25962:6;25958:14;25951:45;25834:169;:::o;26009:366::-;26151:3;26172:67;26236:2;26231:3;26172:67;:::i;:::-;26165:74;;26248:93;26337:3;26248:93;:::i;:::-;26366:2;26361:3;26357:12;26350:19;;26009:366;;;:::o;26381:419::-;26547:4;26585:2;26574:9;26570:18;26562:26;;26634:9;26628:4;26624:20;26620:1;26609:9;26605:17;26598:47;26662:131;26788:4;26662:131;:::i;:::-;26654:139;;26381:419;;;:::o;26806:234::-;26946:34;26942:1;26934:6;26930:14;26923:58;27015:17;27010:2;27002:6;26998:15;26991:42;26806:234;:::o;27046:366::-;27188:3;27209:67;27273:2;27268:3;27209:67;:::i;:::-;27202:74;;27285:93;27374:3;27285:93;:::i;:::-;27403:2;27398:3;27394:12;27387:19;;27046:366;;;:::o;27418:419::-;27584:4;27622:2;27611:9;27607:18;27599:26;;27671:9;27665:4;27661:20;27657:1;27646:9;27642:17;27635:47;27699:131;27825:4;27699:131;:::i;:::-;27691:139;;27418:419;;;:::o;27843:148::-;27945:11;27982:3;27967:18;;27843:148;;;;:::o;27997:377::-;28103:3;28131:39;28164:5;28131:39;:::i;:::-;28186:89;28268:6;28263:3;28186:89;:::i;:::-;28179:96;;28284:52;28329:6;28324:3;28317:4;28310:5;28306:16;28284:52;:::i;:::-;28361:6;28356:3;28352:16;28345:23;;28107:267;27997:377;;;;:::o;28380:141::-;28429:4;28452:3;28444:11;;28475:3;28472:1;28465:14;28509:4;28506:1;28496:18;28488:26;;28380:141;;;:::o;28551:845::-;28654:3;28691:5;28685:12;28720:36;28746:9;28720:36;:::i;:::-;28772:89;28854:6;28849:3;28772:89;:::i;:::-;28765:96;;28892:1;28881:9;28877:17;28908:1;28903:137;;;;29054:1;29049:341;;;;28870:520;;28903:137;28987:4;28983:9;28972;28968:25;28963:3;28956:38;29023:6;29018:3;29014:16;29007:23;;28903:137;;29049:341;29116:38;29148:5;29116:38;:::i;:::-;29176:1;29190:154;29204:6;29201:1;29198:13;29190:154;;;29278:7;29272:14;29268:1;29263:3;29259:11;29252:35;29328:1;29319:7;29315:15;29304:26;;29226:4;29223:1;29219:12;29214:17;;29190:154;;;29373:6;29368:3;29364:16;29357:23;;29056:334;;28870:520;;28658:738;;28551:845;;;;:::o;29402:589::-;29627:3;29649:95;29740:3;29731:6;29649:95;:::i;:::-;29642:102;;29761:95;29852:3;29843:6;29761:95;:::i;:::-;29754:102;;29873:92;29961:3;29952:6;29873:92;:::i;:::-;29866:99;;29982:3;29975:10;;29402:589;;;;;;:::o;29997:225::-;30137:34;30133:1;30125:6;30121:14;30114:58;30206:8;30201:2;30193:6;30189:15;30182:33;29997:225;:::o;30228:366::-;30370:3;30391:67;30455:2;30450:3;30391:67;:::i;:::-;30384:74;;30467:93;30556:3;30467:93;:::i;:::-;30585:2;30580:3;30576:12;30569:19;;30228:366;;;:::o;30600:419::-;30766:4;30804:2;30793:9;30789:18;30781:26;;30853:9;30847:4;30843:20;30839:1;30828:9;30824:17;30817:47;30881:131;31007:4;30881:131;:::i;:::-;30873:139;;30600:419;;;:::o;31025:182::-;31165:34;31161:1;31153:6;31149:14;31142:58;31025:182;:::o;31213:366::-;31355:3;31376:67;31440:2;31435:3;31376:67;:::i;:::-;31369:74;;31452:93;31541:3;31452:93;:::i;:::-;31570:2;31565:3;31561:12;31554:19;;31213:366;;;:::o;31585:419::-;31751:4;31789:2;31778:9;31774:18;31766:26;;31838:9;31832:4;31828:20;31824:1;31813:9;31809:17;31802:47;31866:131;31992:4;31866:131;:::i;:::-;31858:139;;31585:419;;;:::o;32010:224::-;32150:34;32146:1;32138:6;32134:14;32127:58;32219:7;32214:2;32206:6;32202:15;32195:32;32010:224;:::o;32240:366::-;32382:3;32403:67;32467:2;32462:3;32403:67;:::i;:::-;32396:74;;32479:93;32568:3;32479:93;:::i;:::-;32597:2;32592:3;32588:12;32581:19;;32240:366;;;:::o;32612:419::-;32778:4;32816:2;32805:9;32801:18;32793:26;;32865:9;32859:4;32855:20;32851:1;32840:9;32836:17;32829:47;32893:131;33019:4;32893:131;:::i;:::-;32885:139;;32612:419;;;:::o;33037:223::-;33177:34;33173:1;33165:6;33161:14;33154:58;33246:6;33241:2;33233:6;33229:15;33222:31;33037:223;:::o;33266:366::-;33408:3;33429:67;33493:2;33488:3;33429:67;:::i;:::-;33422:74;;33505:93;33594:3;33505:93;:::i;:::-;33623:2;33618:3;33614:12;33607:19;;33266:366;;;:::o;33638:419::-;33804:4;33842:2;33831:9;33827:18;33819:26;;33891:9;33885:4;33881:20;33877:1;33866:9;33862:17;33855:47;33919:131;34045:4;33919:131;:::i;:::-;33911:139;;33638:419;;;:::o;34063:191::-;34103:4;34123:20;34141:1;34123:20;:::i;:::-;34118:25;;34157:20;34175:1;34157:20;:::i;:::-;34152:25;;34196:1;34193;34190:8;34187:34;;;34201:18;;:::i;:::-;34187:34;34246:1;34243;34239:9;34231:17;;34063:191;;;;:::o;34260:175::-;34400:27;34396:1;34388:6;34384:14;34377:51;34260:175;:::o;34441:366::-;34583:3;34604:67;34668:2;34663:3;34604:67;:::i;:::-;34597:74;;34680:93;34769:3;34680:93;:::i;:::-;34798:2;34793:3;34789:12;34782:19;;34441:366;;;:::o;34813:419::-;34979:4;35017:2;35006:9;35002:18;34994:26;;35066:9;35060:4;35056:20;35052:1;35041:9;35037:17;35030:47;35094:131;35220:4;35094:131;:::i;:::-;35086:139;;34813:419;;;:::o;35238:237::-;35378:34;35374:1;35366:6;35362:14;35355:58;35447:20;35442:2;35434:6;35430:15;35423:45;35238:237;:::o;35481:366::-;35623:3;35644:67;35708:2;35703:3;35644:67;:::i;:::-;35637:74;;35720:93;35809:3;35720:93;:::i;:::-;35838:2;35833:3;35829:12;35822:19;;35481:366;;;:::o;35853:419::-;36019:4;36057:2;36046:9;36042:18;36034:26;;36106:9;36100:4;36096:20;36092:1;36081:9;36077:17;36070:47;36134:131;36260:4;36134:131;:::i;:::-;36126:139;;35853:419;;;:::o;36278:180::-;36326:77;36323:1;36316:88;36423:4;36420:1;36413:15;36447:4;36444:1;36437:15;36464:185;36504:1;36521:20;36539:1;36521:20;:::i;:::-;36516:25;;36555:20;36573:1;36555:20;:::i;:::-;36550:25;;36594:1;36584:35;;36599:18;;:::i;:::-;36584:35;36641:1;36638;36634:9;36629:14;;36464:185;;;;:::o;36655:176::-;36687:1;36704:20;36722:1;36704:20;:::i;:::-;36699:25;;36738:20;36756:1;36738:20;:::i;:::-;36733:25;;36777:1;36767:35;;36782:18;;:::i;:::-;36767:35;36823:1;36820;36816:9;36811:14;;36655:176;;;;:::o;36837:98::-;36888:6;36922:5;36916:12;36906:22;;36837:98;;;:::o;36941:168::-;37024:11;37058:6;37053:3;37046:19;37098:4;37093:3;37089:14;37074:29;;36941:168;;;;:::o;37115:360::-;37201:3;37229:38;37261:5;37229:38;:::i;:::-;37283:70;37346:6;37341:3;37283:70;:::i;:::-;37276:77;;37362:52;37407:6;37402:3;37395:4;37388:5;37384:16;37362:52;:::i;:::-;37439:29;37461:6;37439:29;:::i;:::-;37434:3;37430:39;37423:46;;37205:270;37115:360;;;;:::o;37481:640::-;37676:4;37714:3;37703:9;37699:19;37691:27;;37728:71;37796:1;37785:9;37781:17;37772:6;37728:71;:::i;:::-;37809:72;37877:2;37866:9;37862:18;37853:6;37809:72;:::i;:::-;37891;37959:2;37948:9;37944:18;37935:6;37891:72;:::i;:::-;38010:9;38004:4;38000:20;37995:2;37984:9;37980:18;37973:48;38038:76;38109:4;38100:6;38038:76;:::i;:::-;38030:84;;37481:640;;;;;;;:::o;38127:141::-;38183:5;38214:6;38208:13;38199:22;;38230:32;38256:5;38230:32;:::i;:::-;38127:141;;;;:::o;38274:349::-;38343:6;38392:2;38380:9;38371:7;38367:23;38363:32;38360:119;;;38398:79;;:::i;:::-;38360:119;38518:1;38543:63;38598:7;38589:6;38578:9;38574:22;38543:63;:::i;:::-;38533:73;;38489:127;38274:349;;;;:::o;38629:182::-;38769:34;38765:1;38757:6;38753:14;38746:58;38629:182;:::o;38817:366::-;38959:3;38980:67;39044:2;39039:3;38980:67;:::i;:::-;38973:74;;39056:93;39145:3;39056:93;:::i;:::-;39174:2;39169:3;39165:12;39158:19;;38817:366;;;:::o;39189:419::-;39355:4;39393:2;39382:9;39378:18;39370:26;;39442:9;39436:4;39432:20;39428:1;39417:9;39413:17;39406:47;39470:131;39596:4;39470:131;:::i;:::-;39462:139;;39189:419;;;:::o;39614:178::-;39754:30;39750:1;39742:6;39738:14;39731:54;39614:178;:::o;39798:366::-;39940:3;39961:67;40025:2;40020:3;39961:67;:::i;:::-;39954:74;;40037:93;40126:3;40037:93;:::i;:::-;40155:2;40150:3;40146:12;40139:19;;39798:366;;;:::o;40170:419::-;40336:4;40374:2;40363:9;40359:18;40351:26;;40423:9;40417:4;40413:20;40409:1;40398:9;40394:17;40387:47;40451:131;40577:4;40451:131;:::i;:::-;40443:139;;40170:419;;;:::o

Swarm Source

ipfs://0a13426ff63bb35888f31465f66fc440194bb747036bac6bab0db2e571902302
Loading...
Loading
Loading...
Loading
[ 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.