ETH Price: $2,960.83 (-1.97%)
Gas: 3 Gwei

Token

PepeMfers official (PepeMfers)
 

Overview

Max Total Supply

6,969 PepeMfers

Holders

523

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
15 PepeMfers
0x841251f4a7636eeab62b884f13fcfbf472cbef14
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:
PepeMfers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

    /**
     * @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/PepeMfers.sol





pragma solidity >=0.7.0 <0.9.0;




contract PepeMfers 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.01 ether;
  uint256 public maxSupply = 6969;
  uint256 public maxMintAmountPerTx = 10;

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

  constructor() ERC721("PepeMfers official", "PepeMfers") {
    setHiddenMetadataUri("ipfs://QmcDzyqYrzjVnP1DpbYaWTupEA4qz6UqXSwCao21n1uqpT/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 {
  
    // =============================================================================

    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (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"}]

60a06040819052600060808190526200001b9160089162000203565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000203565b50662386f26fc10000600b55611b39600c55600a600d55600e805461ffff191660011790553480156200007c57600080fd5b50604080518082018252601281527114195c195359995c9cc81bd9999a58da585b60721b602080830191825283518085019094526009845268506570654d6665727360b81b908401528151919291620000d89160009162000203565b508051620000ee90600190602084019062000203565b5050506200010b620001056200013560201b60201c565b62000139565b6200012f604051806080016040528060418152602001620027ec604191396200018b565b620002e6565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ff90600a90602084019062000203565b5050565b8280546200021190620002a9565b90600052602060002090601f01602090048101928262000235576000855562000280565b82601f106200025057805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200028057825182559160200191906001019062000263565b506200028e92915062000292565b5090565b5b808211156200028e576000815560010162000293565b600181811c90821680620002be57607f821691505b60208210811415620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b6124f680620002f66000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146105c9578063e0a80853146105df578063e985e9c5146105ff578063efbd73f414610648578063f2fde38b1461066857600080fd5b8063a45ba8e714610554578063b071401b14610569578063b88d4fde14610589578063c87b56dd146105a957600080fd5b80638da5cb5b116100e75780638da5cb5b146104d857806394354fd0146104f657806395d89b411461050c578063a0712d6814610521578063a22cb4651461053457600080fd5b80636352211e1461046357806370a0823114610483578063715018a6146104a35780637ec4a659146104b857600080fd5b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb146103e057806351830227146104005780635503a0e81461041f5780635c975abb1461043457806362b99ad41461044e57600080fd5b80633ccfd60b1461035e57806342842e0e14610373578063438b63001461039357806344a0d68a146103c057600080fd5b806313faede6116101e257806313faede6146102c557806316ba10e0146102e957806316c38b3c1461030957806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046120f8565b610688565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106da565b6040516102409190612327565b34801561027757600080fd5b5061028b61028636600461217b565b61076c565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046120b3565b610806565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004612132565b61091c565b34801561031557600080fd5b506102c36103243660046120dd565b61097b565b34801561033557600080fd5b506102db6109d6565b34801561034a57600080fd5b506102c3610359366004611fd1565b6109e6565b34801561036a57600080fd5b506102c3610a61565b34801561037f57600080fd5b506102c361038e366004611fd1565b610b1d565b34801561039f57600080fd5b506103b36103ae366004611f83565b610b38565b60405161024091906122e3565b3480156103cc57600080fd5b506102c36103db36600461217b565b610c19565b3480156103ec57600080fd5b506102c36103fb366004612132565b610c66565b34801561040c57600080fd5b50600e5461023490610100900460ff1681565b34801561042b57600080fd5b5061025e610cc1565b34801561044057600080fd5b50600e546102349060ff1681565b34801561045a57600080fd5b5061025e610d4f565b34801561046f57600080fd5b5061028b61047e36600461217b565b610d5c565b34801561048f57600080fd5b506102db61049e366004611f83565b610dd3565b3480156104af57600080fd5b506102c3610e5a565b3480156104c457600080fd5b506102c36104d3366004612132565b610eae565b3480156104e457600080fd5b506006546001600160a01b031661028b565b34801561050257600080fd5b506102db600d5481565b34801561051857600080fd5b5061025e610f09565b6102c361052f36600461217b565b610f18565b34801561054057600080fd5b506102c361054f366004612089565b611084565b34801561056057600080fd5b5061025e61108f565b34801561057557600080fd5b506102c361058436600461217b565b61109c565b34801561059557600080fd5b506102c36105a436600461200d565b6110e9565b3480156105b557600080fd5b5061025e6105c436600461217b565b61116b565b3480156105d557600080fd5b506102db600c5481565b3480156105eb57600080fd5b506102c36105fa3660046120dd565b6112f8565b34801561060b57600080fd5b5061023461061a366004611f9e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065457600080fd5b506102c3610663366004612194565b61135a565b34801561067457600080fd5b506102c3610683366004611f83565b61145e565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e9906123c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610715906123c8565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081182610d5c565b9050806001600160a01b0316836001600160a01b0316141561087f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e1565b336001600160a01b038216148061089b575061089b813361061a565b61090d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e1565b6109178383611514565b505050565b6006546001600160a01b031633146109645760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b8051610977906009906020840190611e48565b5050565b6006546001600160a01b031633146109c35760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600e805460ff1916911515919091179055565b60006109e160075490565b905090565b6109f03382611582565b610a565760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107e1565b610917838383611679565b6006546001600160a01b03163314610aa95760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b6000610abd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b1a57600080fd5b50565b610917838383604051806020016040528060008152506110e9565b60606000610b4583610dd3565b905060008167ffffffffffffffff811115610b6257610b62612474565b604051908082528060200260200182016040528015610b8b578160200160208202803683370190505b509050600160005b8381108015610ba45750600c548211155b15610c0f576000610bb483610d5c565b9050866001600160a01b0316816001600160a01b03161415610bfc5782848381518110610be357610be361245e565b602090810291909101015281610bf881612403565b9250505b82610c0681612403565b93505050610b93565b5090949350505050565b6006546001600160a01b03163314610c615760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600b55565b6006546001600160a01b03163314610cae5760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b805161097790600a906020840190611e48565b60098054610cce906123c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa906123c8565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b505050505081565b60088054610cce906123c8565b6000818152600260205260408120546001600160a01b0316806106d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e1565b60006001600160a01b038216610e3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e1565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ea25760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b610eac6000611815565b565b6006546001600160a01b03163314610ef65760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b8051610977906008906020840190611e48565b6060600180546106e9906123c8565b80600081118015610f2b5750600d548111155b610f6e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e1565b600c5481610f7b60075490565b610f85919061233a565b1115610fca5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107e1565b600e5460ff161561101d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107e1565b81600b5461102b9190612366565b34101561107a5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016107e1565b6109773383611867565b6109773383836118a4565b600a8054610cce906123c8565b6006546001600160a01b031633146110e45760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600d55565b6110f33383611582565b6111595760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107e1565b61116584848484611973565b50505050565b6000818152600260205260409020546060906001600160a01b03166111f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107e1565b600e54610100900460ff1661129957600a8054611214906123c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611240906123c8565b801561128d5780601f106112625761010080835404028352916020019161128d565b820191906000526020600020905b81548152906001019060200180831161127057829003601f168201915b50505050509050919050565b60006112a36119f1565b905060008151116112c357604051806020016040528060008152506112f1565b806112cd84611a00565b60096040516020016112e1939291906121e3565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113405760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600e80549115156101000261ff0019909216919091179055565b8160008111801561136d5750600d548111155b6113b05760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e1565b600c54816113bd60075490565b6113c7919061233a565b111561140c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107e1565b6006546001600160a01b031633146114545760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b6109178284611867565b6006546001600160a01b031633146114a65760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b6001600160a01b03811661150b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b610b1a81611815565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061154982610d5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e1565b600061160683610d5c565b9050806001600160a01b0316846001600160a01b031614806116415750836001600160a01b03166116368461076c565b6001600160a01b0316145b8061167157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661168c82610d5c565b6001600160a01b0316146116f05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107e1565b6001600160a01b0382166117525760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e1565b61175d600082611514565b6001600160a01b0383166000908152600360205260408120805460019290611786908490612385565b90915550506001600160a01b03821660009081526003602052604081208054600192906117b490849061233a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561091757611880600780546001019055565b6118928361188d60075490565b611b16565b8061189c81612403565b91505061186a565b816001600160a01b0316836001600160a01b031614156119065760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61197e848484611679565b61198a84848484611b30565b6111655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107e1565b6060600880546106e9906123c8565b606081611a245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a4e5780611a3881612403565b9150611a479050600a83612352565b9150611a28565b60008167ffffffffffffffff811115611a6957611a69612474565b6040519080825280601f01601f191660200182016040528015611a93576020820181803683370190505b5090505b841561167157611aa8600183612385565b9150611ab5600a8661241e565b611ac090603061233a565b60f81b818381518110611ad557611ad561245e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b0f600a86612352565b9450611a97565b610977828260405180602001604052806000815250611c88565b60006001600160a01b0384163b15611c7d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b749033908990889088906004016122a7565b602060405180830381600087803b158015611b8e57600080fd5b505af1925050508015611bbe575060408051601f3d908101601f19168201909252611bbb91810190612115565b60015b611c63573d808015611bec576040519150601f19603f3d011682016040523d82523d6000602084013e611bf1565b606091505b508051611c5b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107e1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611671565b506001949350505050565b611c928383611d06565b611c9f6000848484611b30565b6109175760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107e1565b6001600160a01b038216611d5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e1565b6000818152600260205260409020546001600160a01b031615611dc15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e1565b6001600160a01b0382166000908152600360205260408120805460019290611dea90849061233a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e54906123c8565b90600052602060002090601f016020900481019282611e765760008555611ebc565b82601f10611e8f57805160ff1916838001178555611ebc565b82800160010185558215611ebc579182015b82811115611ebc578251825591602001919060010190611ea1565b50611ec8929150611ecc565b5090565b5b80821115611ec85760008155600101611ecd565b600067ffffffffffffffff80841115611efc57611efc612474565b604051601f8501601f19908116603f01168101908282118183101715611f2457611f24612474565b81604052809350858152868686011115611f3d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6e57600080fd5b919050565b80358015158114611f6e57600080fd5b600060208284031215611f9557600080fd5b6112f182611f57565b60008060408385031215611fb157600080fd5b611fba83611f57565b9150611fc860208401611f57565b90509250929050565b600080600060608486031215611fe657600080fd5b611fef84611f57565b9250611ffd60208501611f57565b9150604084013590509250925092565b6000806000806080858703121561202357600080fd5b61202c85611f57565b935061203a60208601611f57565b925060408501359150606085013567ffffffffffffffff81111561205d57600080fd5b8501601f8101871361206e57600080fd5b61207d87823560208401611ee1565b91505092959194509250565b6000806040838503121561209c57600080fd5b6120a583611f57565b9150611fc860208401611f73565b600080604083850312156120c657600080fd5b6120cf83611f57565b946020939093013593505050565b6000602082840312156120ef57600080fd5b6112f182611f73565b60006020828403121561210a57600080fd5b81356112f18161248a565b60006020828403121561212757600080fd5b81516112f18161248a565b60006020828403121561214457600080fd5b813567ffffffffffffffff81111561215b57600080fd5b8201601f8101841361216c57600080fd5b61167184823560208401611ee1565b60006020828403121561218d57600080fd5b5035919050565b600080604083850312156121a757600080fd5b82359150611fc860208401611f57565b600081518084526121cf81602086016020860161239c565b601f01601f19169290920160200192915050565b6000845160206121f68285838a0161239c565b8551918401916122098184848a0161239c565b8554920191600090600181811c908083168061222657607f831692505b85831081141561224457634e487b7160e01b85526022600452602485fd5b808015612258576001811461226957612296565b60ff19851688528388019550612296565b60008b81526020902060005b8581101561228e5781548a820152908401908801612275565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122d960808301846121b7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561231b578351835292840192918401916001016122ff565b50909695505050505050565b6020815260006112f160208301846121b7565b6000821982111561234d5761234d612432565b500190565b60008261236157612361612448565b500490565b600081600019048311821515161561238057612380612432565b500290565b60008282101561239757612397612432565b500390565b60005b838110156123b757818101518382015260200161239f565b838111156111655750506000910152565b600181811c908216806123dc57607f821691505b602082108114156123fd57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561241757612417612432565b5060010190565b60008261242d5761242d612448565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1a57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b9403923668a87bc58443a612b747d1092455e1533a39f61b4b881501001cfff64736f6c63430008070033697066733a2f2f516d63447a797159727a6a566e5031447062596157547570454134717a36557158537743616f32316e31757170542f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146105c9578063e0a80853146105df578063e985e9c5146105ff578063efbd73f414610648578063f2fde38b1461066857600080fd5b8063a45ba8e714610554578063b071401b14610569578063b88d4fde14610589578063c87b56dd146105a957600080fd5b80638da5cb5b116100e75780638da5cb5b146104d857806394354fd0146104f657806395d89b411461050c578063a0712d6814610521578063a22cb4651461053457600080fd5b80636352211e1461046357806370a0823114610483578063715018a6146104a35780637ec4a659146104b857600080fd5b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb146103e057806351830227146104005780635503a0e81461041f5780635c975abb1461043457806362b99ad41461044e57600080fd5b80633ccfd60b1461035e57806342842e0e14610373578063438b63001461039357806344a0d68a146103c057600080fd5b806313faede6116101e257806313faede6146102c557806316ba10e0146102e957806316c38b3c1461030957806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046120f8565b610688565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106da565b6040516102409190612327565b34801561027757600080fd5b5061028b61028636600461217b565b61076c565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046120b3565b610806565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004612132565b61091c565b34801561031557600080fd5b506102c36103243660046120dd565b61097b565b34801561033557600080fd5b506102db6109d6565b34801561034a57600080fd5b506102c3610359366004611fd1565b6109e6565b34801561036a57600080fd5b506102c3610a61565b34801561037f57600080fd5b506102c361038e366004611fd1565b610b1d565b34801561039f57600080fd5b506103b36103ae366004611f83565b610b38565b60405161024091906122e3565b3480156103cc57600080fd5b506102c36103db36600461217b565b610c19565b3480156103ec57600080fd5b506102c36103fb366004612132565b610c66565b34801561040c57600080fd5b50600e5461023490610100900460ff1681565b34801561042b57600080fd5b5061025e610cc1565b34801561044057600080fd5b50600e546102349060ff1681565b34801561045a57600080fd5b5061025e610d4f565b34801561046f57600080fd5b5061028b61047e36600461217b565b610d5c565b34801561048f57600080fd5b506102db61049e366004611f83565b610dd3565b3480156104af57600080fd5b506102c3610e5a565b3480156104c457600080fd5b506102c36104d3366004612132565b610eae565b3480156104e457600080fd5b506006546001600160a01b031661028b565b34801561050257600080fd5b506102db600d5481565b34801561051857600080fd5b5061025e610f09565b6102c361052f36600461217b565b610f18565b34801561054057600080fd5b506102c361054f366004612089565b611084565b34801561056057600080fd5b5061025e61108f565b34801561057557600080fd5b506102c361058436600461217b565b61109c565b34801561059557600080fd5b506102c36105a436600461200d565b6110e9565b3480156105b557600080fd5b5061025e6105c436600461217b565b61116b565b3480156105d557600080fd5b506102db600c5481565b3480156105eb57600080fd5b506102c36105fa3660046120dd565b6112f8565b34801561060b57600080fd5b5061023461061a366004611f9e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065457600080fd5b506102c3610663366004612194565b61135a565b34801561067457600080fd5b506102c3610683366004611f83565b61145e565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e9906123c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610715906123c8565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081182610d5c565b9050806001600160a01b0316836001600160a01b0316141561087f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e1565b336001600160a01b038216148061089b575061089b813361061a565b61090d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e1565b6109178383611514565b505050565b6006546001600160a01b031633146109645760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b8051610977906009906020840190611e48565b5050565b6006546001600160a01b031633146109c35760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600e805460ff1916911515919091179055565b60006109e160075490565b905090565b6109f03382611582565b610a565760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107e1565b610917838383611679565b6006546001600160a01b03163314610aa95760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b6000610abd6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b1a57600080fd5b50565b610917838383604051806020016040528060008152506110e9565b60606000610b4583610dd3565b905060008167ffffffffffffffff811115610b6257610b62612474565b604051908082528060200260200182016040528015610b8b578160200160208202803683370190505b509050600160005b8381108015610ba45750600c548211155b15610c0f576000610bb483610d5c565b9050866001600160a01b0316816001600160a01b03161415610bfc5782848381518110610be357610be361245e565b602090810291909101015281610bf881612403565b9250505b82610c0681612403565b93505050610b93565b5090949350505050565b6006546001600160a01b03163314610c615760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600b55565b6006546001600160a01b03163314610cae5760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b805161097790600a906020840190611e48565b60098054610cce906123c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa906123c8565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b505050505081565b60088054610cce906123c8565b6000818152600260205260408120546001600160a01b0316806106d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e1565b60006001600160a01b038216610e3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e1565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ea25760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b610eac6000611815565b565b6006546001600160a01b03163314610ef65760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b8051610977906008906020840190611e48565b6060600180546106e9906123c8565b80600081118015610f2b5750600d548111155b610f6e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e1565b600c5481610f7b60075490565b610f85919061233a565b1115610fca5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107e1565b600e5460ff161561101d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107e1565b81600b5461102b9190612366565b34101561107a5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016107e1565b6109773383611867565b6109773383836118a4565b600a8054610cce906123c8565b6006546001600160a01b031633146110e45760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600d55565b6110f33383611582565b6111595760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107e1565b61116584848484611973565b50505050565b6000818152600260205260409020546060906001600160a01b03166111f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107e1565b600e54610100900460ff1661129957600a8054611214906123c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611240906123c8565b801561128d5780601f106112625761010080835404028352916020019161128d565b820191906000526020600020905b81548152906001019060200180831161127057829003601f168201915b50505050509050919050565b60006112a36119f1565b905060008151116112c357604051806020016040528060008152506112f1565b806112cd84611a00565b60096040516020016112e1939291906121e3565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113405760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b600e80549115156101000261ff0019909216919091179055565b8160008111801561136d5750600d548111155b6113b05760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107e1565b600c54816113bd60075490565b6113c7919061233a565b111561140c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107e1565b6006546001600160a01b031633146114545760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b6109178284611867565b6006546001600160a01b031633146114a65760405162461bcd60e51b815260206004820181905260248201526000805160206124a183398151915260448201526064016107e1565b6001600160a01b03811661150b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b610b1a81611815565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061154982610d5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e1565b600061160683610d5c565b9050806001600160a01b0316846001600160a01b031614806116415750836001600160a01b03166116368461076c565b6001600160a01b0316145b8061167157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661168c82610d5c565b6001600160a01b0316146116f05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107e1565b6001600160a01b0382166117525760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e1565b61175d600082611514565b6001600160a01b0383166000908152600360205260408120805460019290611786908490612385565b90915550506001600160a01b03821660009081526003602052604081208054600192906117b490849061233a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561091757611880600780546001019055565b6118928361188d60075490565b611b16565b8061189c81612403565b91505061186a565b816001600160a01b0316836001600160a01b031614156119065760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61197e848484611679565b61198a84848484611b30565b6111655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107e1565b6060600880546106e9906123c8565b606081611a245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a4e5780611a3881612403565b9150611a479050600a83612352565b9150611a28565b60008167ffffffffffffffff811115611a6957611a69612474565b6040519080825280601f01601f191660200182016040528015611a93576020820181803683370190505b5090505b841561167157611aa8600183612385565b9150611ab5600a8661241e565b611ac090603061233a565b60f81b818381518110611ad557611ad561245e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b0f600a86612352565b9450611a97565b610977828260405180602001604052806000815250611c88565b60006001600160a01b0384163b15611c7d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b749033908990889088906004016122a7565b602060405180830381600087803b158015611b8e57600080fd5b505af1925050508015611bbe575060408051601f3d908101601f19168201909252611bbb91810190612115565b60015b611c63573d808015611bec576040519150601f19603f3d011682016040523d82523d6000602084013e611bf1565b606091505b508051611c5b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107e1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611671565b506001949350505050565b611c928383611d06565b611c9f6000848484611b30565b6109175760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107e1565b6001600160a01b038216611d5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e1565b6000818152600260205260409020546001600160a01b031615611dc15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e1565b6001600160a01b0382166000908152600360205260408120805460019290611dea90849061233a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e54906123c8565b90600052602060002090601f016020900481019282611e765760008555611ebc565b82601f10611e8f57805160ff1916838001178555611ebc565b82800160010185558215611ebc579182015b82811115611ebc578251825591602001919060010190611ea1565b50611ec8929150611ecc565b5090565b5b80821115611ec85760008155600101611ecd565b600067ffffffffffffffff80841115611efc57611efc612474565b604051601f8501601f19908116603f01168101908282118183101715611f2457611f24612474565b81604052809350858152868686011115611f3d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6e57600080fd5b919050565b80358015158114611f6e57600080fd5b600060208284031215611f9557600080fd5b6112f182611f57565b60008060408385031215611fb157600080fd5b611fba83611f57565b9150611fc860208401611f57565b90509250929050565b600080600060608486031215611fe657600080fd5b611fef84611f57565b9250611ffd60208501611f57565b9150604084013590509250925092565b6000806000806080858703121561202357600080fd5b61202c85611f57565b935061203a60208601611f57565b925060408501359150606085013567ffffffffffffffff81111561205d57600080fd5b8501601f8101871361206e57600080fd5b61207d87823560208401611ee1565b91505092959194509250565b6000806040838503121561209c57600080fd5b6120a583611f57565b9150611fc860208401611f73565b600080604083850312156120c657600080fd5b6120cf83611f57565b946020939093013593505050565b6000602082840312156120ef57600080fd5b6112f182611f73565b60006020828403121561210a57600080fd5b81356112f18161248a565b60006020828403121561212757600080fd5b81516112f18161248a565b60006020828403121561214457600080fd5b813567ffffffffffffffff81111561215b57600080fd5b8201601f8101841361216c57600080fd5b61167184823560208401611ee1565b60006020828403121561218d57600080fd5b5035919050565b600080604083850312156121a757600080fd5b82359150611fc860208401611f57565b600081518084526121cf81602086016020860161239c565b601f01601f19169290920160200192915050565b6000845160206121f68285838a0161239c565b8551918401916122098184848a0161239c565b8554920191600090600181811c908083168061222657607f831692505b85831081141561224457634e487b7160e01b85526022600452602485fd5b808015612258576001811461226957612296565b60ff19851688528388019550612296565b60008b81526020902060005b8581101561228e5781548a820152908401908801612275565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122d960808301846121b7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561231b578351835292840192918401916001016122ff565b50909695505050505050565b6020815260006112f160208301846121b7565b6000821982111561234d5761234d612432565b500190565b60008261236157612361612448565b500490565b600081600019048311821515161561238057612380612432565b500290565b60008282101561239757612397612432565b500390565b60005b838110156123b757818101518382015260200161239f565b838111156111655750506000910152565b600181811c908216806123dc57607f821691505b602082108114156123fd57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561241757612417612432565b5060010190565b60008261242d5761242d612448565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1a57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b9403923668a87bc58443a612b747d1092455e1533a39f61b4b881501001cfff64736f6c63430008070033

Deployed Bytecode Sourcemap

38808:4116:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25609:305;;;;;;;;;;-1:-1:-1;25609:305:0;;;;;:::i;:::-;;:::i;:::-;;;8135:14:1;;8128:22;8110:41;;8098:2;8083:18;25609:305:0;;;;;;;;26554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28113:221::-;;;;;;;;;;-1:-1:-1;28113:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6750:55:1;;;6732:74;;6720:2;6705:18;28113:221:0;6586:226:1;27636:411:0;;;;;;;;;;-1:-1:-1;27636:411:0;;;;;:::i;:::-;;:::i;:::-;;39072:32;;;;;;;;;;;;;;;;;;;16308:25:1;;;16296:2;16281:18;39072:32:0;16162:177:1;41858:100:0;;;;;;;;;;-1:-1:-1;41858:100:0;;;;;:::i;:::-;;:::i;41964:77::-;;;;;;;;;;-1:-1:-1;41964:77:0;;;;;:::i;:::-;;:::i;39659:89::-;;;;;;;;;;;;;:::i;28863:339::-;;;;;;;;;;-1:-1:-1;28863:339:0;;;;;:::i;:::-;;:::i;42047:554::-;;;;;;;;;;;;;:::i;29273:185::-;;;;;;;;;;-1:-1:-1;29273:185:0;;;;;:::i;:::-;;:::i;40170:635::-;;;;;;;;;;-1:-1:-1;40170:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41398:74::-;;;;;;;;;;-1:-1:-1;41398:74:0;;;;;:::i;:::-;;:::i;41614:132::-;;;;;;;;;;-1:-1:-1;41614:132:0;;;;;:::i;:::-;;:::i;39220:28::-;;;;;;;;;;-1:-1:-1;39220:28:0;;;;;;;;;;;38994:33;;;;;;;;;;;;;:::i;39190:25::-;;;;;;;;;;-1:-1:-1;39190:25:0;;;;;;;;38961:28;;;;;;;;;;;;;:::i;26248:239::-;;;;;;;;;;-1:-1:-1;26248:239:0;;;;;:::i;:::-;;:::i;25978:208::-;;;;;;;;;;-1:-1:-1;25978:208:0;;;;;:::i;:::-;;:::i;6230:103::-;;;;;;;;;;;;;:::i;41752:100::-;;;;;;;;;;-1:-1:-1;41752:100:0;;;;;:::i;:::-;;:::i;5579:87::-;;;;;;;;;;-1:-1:-1;5652:6:0;;-1:-1:-1;;;;;5652:6:0;5579:87;;39145:38;;;;;;;;;;;;;;;;26723:104;;;;;;;;;;;;;:::i;39754:247::-;;;;;;:::i;:::-;;:::i;28406:155::-;;;;;;;;;;-1:-1:-1;28406:155:0;;;;;:::i;:::-;;:::i;39032:31::-;;;;;;;;;;;;;:::i;41478:130::-;;;;;;;;;;-1:-1:-1;41478:130:0;;;;;:::i;:::-;;:::i;29529:328::-;;;;;;;;;;-1:-1:-1;29529:328:0;;;;;:::i;:::-;;:::i;40811:494::-;;;;;;;;;;-1:-1:-1;40811:494:0;;;;;:::i;:::-;;:::i;39109:31::-;;;;;;;;;;;;;;;;41311:81;;;;;;;;;;-1:-1:-1;41311:81:0;;;;;:::i;:::-;;:::i;28632:164::-;;;;;;;;;;-1:-1:-1;28632:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28753:25:0;;;28729:4;28753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28632:164;40009:155;;;;;;;;;;-1:-1:-1;40009:155:0;;;;;:::i;:::-;;:::i;6488:201::-;;;;;;;;;;-1:-1:-1;6488:201:0;;;;;:::i;:::-;;:::i;25609:305::-;25711:4;-1:-1:-1;;;;;;25748:40:0;;-1:-1:-1;;;25748:40:0;;:105;;-1:-1:-1;;;;;;;25805:48:0;;-1:-1:-1;;;25805:48:0;25748:105;:158;;;-1:-1:-1;;;;;;;;;;18472:40:0;;;25870:36;25728:178;25609:305;-1:-1:-1;;25609:305:0:o;26554:100::-;26608:13;26641:5;26634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26554:100;:::o;28113:221::-;28189:7;31456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31456:16:0;28209:73;;;;-1:-1:-1;;;28209:73:0;;13305:2:1;28209:73:0;;;13287:21:1;13344:2;13324:18;;;13317:30;13383:34;13363:18;;;13356:62;-1:-1:-1;;;13434:18:1;;;13427:42;13486:19;;28209:73:0;;;;;;;;;-1:-1:-1;28302:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28302:24:0;;28113:221::o;27636:411::-;27717:13;27733:23;27748:7;27733:14;:23::i;:::-;27717:39;;27781:5;-1:-1:-1;;;;;27775:11:0;:2;-1:-1:-1;;;;;27775:11:0;;;27767:57;;;;-1:-1:-1;;;27767:57:0;;14847:2:1;27767:57:0;;;14829:21:1;14886:2;14866:18;;;14859:30;14925:34;14905:18;;;14898:62;-1:-1:-1;;;14976:18:1;;;14969:31;15017:19;;27767:57:0;14645:397:1;27767:57:0;4383:10;-1:-1:-1;;;;;27859:21:0;;;;:62;;-1:-1:-1;27884:37:0;27901:5;4383:10;28632:164;:::i;27884:37::-;27837:168;;;;-1:-1:-1;;;27837:168:0;;11698:2:1;27837:168:0;;;11680:21:1;11737:2;11717:18;;;11710:30;11776:34;11756:18;;;11749:62;11847:26;11827:18;;;11820:54;11891:19;;27837:168:0;11496:420:1;27837:168:0;28018:21;28027:2;28031:7;28018:8;:21::i;:::-;27706:341;27636:411;;:::o;41858:100::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;41930:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41858:100:::0;:::o;41964:77::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;42020:6:::1;:15:::0;;-1:-1:-1;;42020:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41964:77::o;39659:89::-;39703:7;39726:16;:6;999:14;;907:114;39726:16;39719:23;;39659:89;:::o;28863:339::-;29058:41;4383:10;29091:7;29058:18;:41::i;:::-;29050:103;;;;-1:-1:-1;;;29050:103:0;;15598:2:1;29050:103:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:18:1;;;15720:47;15784:19;;29050:103:0;15396:413:1;29050:103:0;29166:28;29176:4;29182:2;29186:7;29166:9;:28::i;42047:554::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;42423:7:::1;42444;5652:6:::0;;-1:-1:-1;;;;;5652:6:0;;5579:87;42444:7:::1;-1:-1:-1::0;;;;;42436:21:0::1;42465;42436:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42422:69;;;42506:2;42498:11;;;::::0;::::1;;42084:517;42047:554::o:0;29273:185::-;29411:39;29428:4;29434:2;29438:7;29411:39;;;;;;;;;;;;:16;:39::i;40170:635::-;40245:16;40273:23;40299:17;40309:6;40299:9;:17::i;:::-;40273:43;;40323:30;40370:15;40356:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40356:30:0;-1:-1:-1;40323:63:0;-1:-1:-1;40418:1:0;40393:22;40462:309;40487:15;40469;:33;:64;;;;;40524:9;;40506:14;:27;;40469:64;40462:309;;;40544:25;40572:23;40580:14;40572:7;:23::i;:::-;40544:51;;40631:6;-1:-1:-1;;;;;40610:27:0;:17;-1:-1:-1;;;;;40610:27:0;;40606:131;;;40683:14;40650:13;40664:15;40650:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40710:17;;;;:::i;:::-;;;;40606:131;40747:16;;;;:::i;:::-;;;;40535:236;40462:309;;;-1:-1:-1;40786:13:0;;40170:635;-1:-1:-1;;;;40170:635:0:o;41398:74::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;41454:4:::1;:12:::0;41398:74::o;41614:132::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;41702:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;38994:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38961:28::-;;;;;;;:::i;26248:239::-;26320:7;26356:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26356:16:0;26391:19;26383:73;;;;-1:-1:-1;;;26383:73:0;;12534:2:1;26383:73:0;;;12516:21:1;12573:2;12553:18;;;12546:30;12612:34;12592:18;;;12585:62;-1:-1:-1;;;12663:18:1;;;12656:39;12712:19;;26383:73:0;12332:405:1;25978:208:0;26050:7;-1:-1:-1;;;;;26078:19:0;;26070:74;;;;-1:-1:-1;;;26070:74:0;;12123:2:1;26070:74:0;;;12105:21:1;12162:2;12142:18;;;12135:30;12201:34;12181:18;;;12174:62;-1:-1:-1;;;12252:18:1;;;12245:40;12302:19;;26070:74:0;11921:406:1;26070:74:0;-1:-1:-1;;;;;;26162:16:0;;;;;:9;:16;;;;;;;25978:208::o;6230:103::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;41752:100::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;41824:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26723:104::-:0;26779:13;26812:7;26805:14;;;;;:::i;39754:247::-;39819:11;39493:1;39479:11;:15;:52;;;;;39513:18;;39498:11;:33;;39479:52;39471:85;;;;-1:-1:-1;;;39471:85:0;;10177:2:1;39471:85:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:50;10295:18;;39471:85:0;9975:344:1;39471:85:0;39605:9;;39590:11;39571:16;:6;999:14;;907:114;39571:16;:30;;;;:::i;:::-;:43;;39563:76;;;;-1:-1:-1;;;39563:76:0;;15249:2:1;39563:76:0;;;15231:21:1;15288:2;15268:18;;;15261:30;-1:-1:-1;;;15307:18:1;;;15300:50;15367:18;;39563:76:0;15047:344:1;39563:76:0;39848:6:::1;::::0;::::1;;39847:7;39839:43;;;::::0;-1:-1:-1;;;39839:43:0;;14079:2:1;39839:43:0::1;::::0;::::1;14061:21:1::0;14118:2;14098:18;;;14091:30;14157:25;14137:18;;;14130:53;14200:18;;39839:43:0::1;13877:347:1::0;39839:43:0::1;39917:11;39910:4;;:18;;;;:::i;:::-;39897:9;:31;;39889:63;;;::::0;-1:-1:-1;;;39889:63:0;;16016:2:1;39889:63:0::1;::::0;::::1;15998:21:1::0;16055:2;16035:18;;;16028:30;16094:21;16074:18;;;16067:49;16133:18;;39889:63:0::1;15814:343:1::0;39889:63:0::1;39961:34;39971:10;39983:11;39961:9;:34::i;28406:155::-:0;28501:52;4383:10;28534:8;28544;28501:18;:52::i;39032:31::-;;;;;;;:::i;41478:130::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;41562:18:::1;:40:::0;41478:130::o;29529:328::-;29704:41;4383:10;29737:7;29704:18;:41::i;:::-;29696:103;;;;-1:-1:-1;;;29696:103:0;;15598:2:1;29696:103:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:18:1;;;15720:47;15784:19;;29696:103:0;15396:413:1;29696:103:0;29810:39;29824:4;29830:2;29834:7;29843:5;29810:13;:39::i;:::-;29529:328;;;;:::o;40811:494::-;31432:4;31456:16;;;:7;:16;;;;;;40910:13;;-1:-1:-1;;;;;31456:16:0;40935:98;;;;-1:-1:-1;;;40935:98:0;;14431:2:1;40935:98:0;;;14413:21:1;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;14580:17;14560:18;;;14553:45;14615:19;;40935:98:0;14229:411:1;40935:98:0;41046:8;;;;;;;41042:64;;41081:17;41074:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40811:494;;;:::o;41042:64::-;41114:28;41145:10;:8;:10::i;:::-;41114:41;;41200:1;41175:14;41169:28;:32;:130;;;;;;;;;;;;;;;;;41237:14;41253:19;:8;:17;:19::i;:::-;41274:9;41220:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41169:130;41162:137;40811:494;-1:-1:-1;;;40811:494:0:o;41311:81::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;41369:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;41369:17:0;;::::1;::::0;;;::::1;::::0;;41311:81::o;40009:155::-;40095:11;39493:1;39479:11;:15;:52;;;;;39513:18;;39498:11;:33;;39479:52;39471:85;;;;-1:-1:-1;;;39471:85:0;;10177:2:1;39471:85:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:50;10295:18;;39471:85:0;9975:344:1;39471:85:0;39605:9;;39590:11;39571:16;:6;999:14;;907:114;39571:16;:30;;;;:::i;:::-;:43;;39563:76;;;;-1:-1:-1;;;39563:76:0;;15249:2:1;39563:76:0;;;15231:21:1;15288:2;15268:18;;;15261:30;-1:-1:-1;;;15307:18:1;;;15300:50;15367:18;;39563:76:0;15047:344:1;39563:76:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23:::1;5791:68;;;::::0;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0::1;::::0;::::1;13700:21:1::0;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0::1;13516:356:1::0;5791:68:0::1;40125:33:::2;40135:9;40146:11;40125:9;:33::i;6488:201::-:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;13718:2:1;5791:68:0;;;13700:21:1;;;13737:18;;;13730:30;-1:-1:-1;;;;;;;;;;;13776:18:1;;;13769:62;13848:18;;5791:68:0;13516:356:1;5791:68:0;-1:-1:-1;;;;;6577:22:0;::::1;6569:73;;;::::0;-1:-1:-1;;;6569:73:0;;9007:2:1;6569:73:0::1;::::0;::::1;8989:21:1::0;9046:2;9026:18;;;9019:30;9085:34;9065:18;;;9058:62;-1:-1:-1;;;9136:18:1;;;9129:36;9182:19;;6569:73:0::1;8805:402:1::0;6569:73:0::1;6653:28;6672:8;6653:18;:28::i;35513:174::-:0;35588:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35588:29:0;-1:-1:-1;;;;;35588:29:0;;;;;;;;:24;;35642:23;35588:24;35642:14;:23::i;:::-;-1:-1:-1;;;;;35633:46:0;;;;;;;;;;;35513:174;;:::o;31661:348::-;31754:4;31456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31456:16:0;31771:73;;;;-1:-1:-1;;;31771:73:0;;11285:2:1;31771:73:0;;;11267:21:1;11324:2;11304:18;;;11297:30;11363:34;11343:18;;;11336:62;-1:-1:-1;;;11414:18:1;;;11407:42;11466:19;;31771:73:0;11083:408:1;31771:73:0;31855:13;31871:23;31886:7;31871:14;:23::i;:::-;31855:39;;31924:5;-1:-1:-1;;;;;31913:16:0;:7;-1:-1:-1;;;;;31913:16:0;;:51;;;;31957:7;-1:-1:-1;;;;;31933:31:0;:20;31945:7;31933:11;:20::i;:::-;-1:-1:-1;;;;;31933:31:0;;31913:51;:87;;;-1:-1:-1;;;;;;28753:25:0;;;28729:4;28753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31968:32;31905:96;31661:348;-1:-1:-1;;;;31661:348:0:o;34770:625::-;34929:4;-1:-1:-1;;;;;34902:31:0;:23;34917:7;34902:14;:23::i;:::-;-1:-1:-1;;;;;34902:31:0;;34894:81;;;;-1:-1:-1;;;34894:81:0;;9414:2:1;34894:81:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492:34;9472:18;;;9465:62;-1:-1:-1;;;9543:18:1;;;9536:35;9588:19;;34894:81:0;9212:401:1;34894:81:0;-1:-1:-1;;;;;34994:16:0;;34986:65;;;;-1:-1:-1;;;34986:65:0;;10526:2:1;34986:65:0;;;10508:21:1;10565:2;10545:18;;;10538:30;10604:34;10584:18;;;10577:62;-1:-1:-1;;;10655:18:1;;;10648:34;10699:19;;34986:65:0;10324:400:1;34986:65:0;35168:29;35185:1;35189:7;35168:8;:29::i;:::-;-1:-1:-1;;;;;35210:15:0;;;;;;:9;:15;;;;;:20;;35229:1;;35210:15;:20;;35229:1;;35210:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35241:13:0;;;;;;:9;:13;;;;;:18;;35258:1;;35241:13;:18;;35258:1;;35241:18;:::i;:::-;;;;-1:-1:-1;;35270:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35270:21:0;-1:-1:-1;;;;;35270:21:0;;;;;;;;;35309:27;;35270:16;;35309:27;;;;;;;27706:341;27636:411;;:::o;6849:191::-;6942:6;;;-1:-1:-1;;;;;6959:17:0;;;-1:-1:-1;;;;;;6959:17:0;;;;;;;6992:40;;6942:6;;;6959:17;6942:6;;6992:40;;6923:16;;6992:40;6912:128;6849:191;:::o;42607:204::-;42687:9;42682:124;42706:11;42702:1;:15;42682:124;;;42733:18;:6;1118:19;;1136:1;1118:19;;;1029:127;42733:18;42760:38;42770:9;42781:16;:6;999:14;;907:114;42781:16;42760:9;:38::i;:::-;42719:3;;;;:::i;:::-;;;;42682:124;;35829:315;35984:8;-1:-1:-1;;;;;35975:17:0;:5;-1:-1:-1;;;;;35975:17:0;;;35967:55;;;;-1:-1:-1;;;35967:55:0;;10931:2:1;35967:55:0;;;10913:21:1;10970:2;10950:18;;;10943:30;11009:27;10989:18;;;10982:55;11054:18;;35967:55:0;10729:349:1;35967:55:0;-1:-1:-1;;;;;36033:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36033:46:0;;;;;;;;;;36095:41;;8110::1;;;36095::0;;8083:18:1;36095:41:0;;;;;;;35829:315;;;:::o;30739:::-;30896:28;30906:4;30912:2;30916:7;30896:9;:28::i;:::-;30943:48;30966:4;30972:2;30976:7;30985:5;30943:22;:48::i;:::-;30935:111;;;;-1:-1:-1;;;30935:111:0;;8588:2:1;30935:111:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;-1:-1:-1;;;8717:18:1;;;8710:48;8775:19;;30935:111:0;8386:414:1;42817:104:0;42877:13;42906:9;42899:16;;;;;:::i;1865:723::-;1921:13;2142:10;2138:53;;-1:-1:-1;;2169:10:0;;;;;;;;;;;;-1:-1:-1;;;2169:10:0;;;;;1865:723::o;2138:53::-;2216:5;2201:12;2257:78;2264:9;;2257:78;;2290:8;;;;:::i;:::-;;-1:-1:-1;2313:10:0;;-1:-1:-1;2321:2:0;2313:10;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2367:17:0;;2345:39;;2395:154;2402:10;;2395:154;;2429:11;2439:1;2429:11;;:::i;:::-;;-1:-1:-1;2498:10:0;2506:2;2498:5;:10;:::i;:::-;2485:24;;:2;:24;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2526:11:0;2535:2;2526:11;;:::i;:::-;;;2395:154;;32351:110;32427:26;32437:2;32441:7;32427:26;;;;;;;;;;;;:9;:26::i;36709:799::-;36864:4;-1:-1:-1;;;;;36885:13:0;;8575:19;:23;36881:620;;36921:72;;-1:-1:-1;;;36921:72:0;;-1:-1:-1;;;;;36921:36:0;;;;;:72;;4383:10;;36972:4;;36978:7;;36987:5;;36921:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36921:72:0;;;;;;;;-1:-1:-1;;36921:72:0;;;;;;;;;;;;:::i;:::-;;;36917:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37163:13:0;;37159:272;;37206:60;;-1:-1:-1;;;37206:60:0;;8588:2:1;37206:60:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;-1:-1:-1;;;8717:18:1;;;8710:48;8775:19;;37206:60:0;8386:414:1;37159:272:0;37381:6;37375:13;37366:6;37362:2;37358:15;37351:38;36917:529;-1:-1:-1;;;;;;37044:51:0;-1:-1:-1;;;37044:51:0;;-1:-1:-1;37037:58:0;;36881:620;-1:-1:-1;37485:4:0;36709:799;;;;;;:::o;32688:321::-;32818:18;32824:2;32828:7;32818:5;:18::i;:::-;32869:54;32900:1;32904:2;32908:7;32917:5;32869:22;:54::i;:::-;32847:154;;;;-1:-1:-1;;;32847:154:0;;8588:2:1;32847:154:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;-1:-1:-1;;;8717:18:1;;;8710:48;8775:19;;32847:154:0;8386:414:1;33345:439:0;-1:-1:-1;;;;;33425:16:0;;33417:61;;;;-1:-1:-1;;;33417:61:0;;12944:2:1;33417:61:0;;;12926:21:1;;;12963:18;;;12956:30;13022:34;13002:18;;;12995:62;13074:18;;33417:61:0;12742:356:1;33417:61:0;31432:4;31456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31456:16:0;:30;33489:58;;;;-1:-1:-1;;;33489:58:0;;9820:2:1;33489:58:0;;;9802:21:1;9859:2;9839:18;;;9832:30;9898;9878:18;;;9871:58;9946:18;;33489:58:0;9618:352:1;33489:58:0;-1:-1:-1;;;;;33618:13:0;;;;;;:9;:13;;;;;:18;;33635:1;;33618:13;:18;;33635:1;;33618:18;:::i;:::-;;;;-1:-1:-1;;33647:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33647:21:0;-1:-1:-1;;;;;33647:21:0;;;;;;;;33686:33;;33647:16;;;33686:33;;33647:16;;33686:33;41930:22:::1;41858:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:1;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:1;;4138:180;-1:-1:-1;4138:180:1:o;4323:254::-;4391:6;4399;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4504:9;4491:23;4481:33;;4533:38;4567:2;4556:9;4552:18;4533:38;:::i;4582:257::-;4623:3;4661:5;4655:12;4688:6;4683:3;4676:19;4704:63;4760:6;4753:4;4748:3;4744:14;4737:4;4730:5;4726:16;4704:63;:::i;:::-;4821:2;4800:15;-1:-1:-1;;4796:29:1;4787:39;;;;4828:4;4783:50;;4582:257;-1:-1:-1;;4582:257:1:o;4844:1527::-;5068:3;5106:6;5100:13;5132:4;5145:51;5189:6;5184:3;5179:2;5171:6;5167:15;5145:51;:::i;:::-;5259:13;;5218:16;;;;5281:55;5259:13;5218:16;5303:15;;;5281:55;:::i;:::-;5425:13;;5358:20;;;5398:1;;5485;5507:18;;;;5560;;;;5587:93;;5665:4;5655:8;5651:19;5639:31;;5587:93;5728:2;5718:8;5715:16;5695:18;5692:40;5689:167;;;-1:-1:-1;;;5755:33:1;;5811:4;5808:1;5801:15;5841:4;5762:3;5829:17;5689:167;5872:18;5899:110;;;;6023:1;6018:328;;;;5865:481;;5899:110;-1:-1:-1;;5934:24:1;;5920:39;;5979:20;;;;-1:-1:-1;5899:110:1;;6018:328;16417:1;16410:14;;;16454:4;16441:18;;6113:1;6127:169;6141:8;6138:1;6135:15;6127:169;;;6223:14;;6208:13;;;6201:37;6266:16;;;;6158:10;;6127:169;;;6131:3;;6327:8;6320:5;6316:20;6309:27;;5865:481;-1:-1:-1;6362:3:1;;4844:1527;-1:-1:-1;;;;;;;;;;;4844:1527:1:o;6817:511::-;7011:4;-1:-1:-1;;;;;7121:2:1;7113:6;7109:15;7098:9;7091:34;7173:2;7165:6;7161:15;7156:2;7145:9;7141:18;7134:43;;7213:6;7208:2;7197:9;7193:18;7186:34;7256:3;7251:2;7240:9;7236:18;7229:31;7277:45;7317:3;7306:9;7302:19;7294:6;7277:45;:::i;:::-;7269:53;6817:511;-1:-1:-1;;;;;;6817:511:1:o;7333:632::-;7504:2;7556:21;;;7626:13;;7529:18;;;7648:22;;;7475:4;;7504:2;7727:15;;;;7701:2;7686:18;;;7475:4;7770:169;7784:6;7781:1;7778:13;7770:169;;;7845:13;;7833:26;;7914:15;;;;7879:12;;;;7806:1;7799:9;7770:169;;;-1:-1:-1;7956:3:1;;7333:632;-1:-1:-1;;;;;;7333:632:1:o;8162:219::-;8311:2;8300:9;8293:21;8274:4;8331:44;8371:2;8360:9;8356:18;8348:6;8331:44;:::i;16470:128::-;16510:3;16541:1;16537:6;16534:1;16531:13;16528:39;;;16547:18;;:::i;:::-;-1:-1:-1;16583:9:1;;16470:128::o;16603:120::-;16643:1;16669;16659:35;;16674:18;;:::i;:::-;-1:-1:-1;16708:9:1;;16603:120::o;16728:168::-;16768:7;16834:1;16830;16826:6;16822:14;16819:1;16816:21;16811:1;16804:9;16797:17;16793:45;16790:71;;;16841:18;;:::i;:::-;-1:-1:-1;16881:9:1;;16728:168::o;16901:125::-;16941:4;16969:1;16966;16963:8;16960:34;;;16974:18;;:::i;:::-;-1:-1:-1;17011:9:1;;16901:125::o;17031:258::-;17103:1;17113:113;17127:6;17124:1;17121:13;17113:113;;;17203:11;;;17197:18;17184:11;;;17177:39;17149:2;17142:10;17113:113;;;17244:6;17241:1;17238:13;17235:48;;;-1:-1:-1;;17279:1:1;17261:16;;17254:27;17031:258::o;17294:380::-;17373:1;17369:12;;;;17416;;;17437:61;;17491:4;17483:6;17479:17;17469:27;;17437:61;17544:2;17536:6;17533:14;17513:18;17510:38;17507:161;;;17590:10;17585:3;17581:20;17578:1;17571:31;17625:4;17622:1;17615:15;17653:4;17650:1;17643:15;17507:161;;17294:380;;;:::o;17679:135::-;17718:3;-1:-1:-1;;17739:17:1;;17736:43;;;17759:18;;:::i;:::-;-1:-1:-1;17806:1:1;17795:13;;17679:135::o;17819:112::-;17851:1;17877;17867:35;;17882:18;;:::i;:::-;-1:-1:-1;17916:9:1;;17819:112::o;17936:127::-;17997:10;17992:3;17988:20;17985:1;17978:31;18028:4;18025:1;18018:15;18052:4;18049:1;18042:15;18068:127;18129:10;18124:3;18120:20;18117:1;18110:31;18160:4;18157:1;18150:15;18184:4;18181:1;18174:15;18200:127;18261:10;18256:3;18252:20;18249:1;18242:31;18292:4;18289:1;18282:15;18316:4;18313:1;18306:15;18332:127;18393:10;18388:3;18384:20;18381:1;18374:31;18424:4;18421:1;18414:15;18448:4;18445:1;18438:15;18464:131;-1:-1:-1;;;;;;18538:32:1;;18528:43;;18518:71;;18585:1;18582;18575:12

Swarm Source

ipfs://b9403923668a87bc58443a612b747d1092455e1533a39f61b4b881501001cfff
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.