ETH Price: $2,343.63 (-1.20%)

Token

Doodle Penguins (DP)
 

Overview

Max Total Supply

426 DP

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DP
0xE355f8018a5f2b1F7d3d04Bec8dDC2c0E12d4A64
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:
DoodlePenguins

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity 0.8.11;

// SPDX-License-Identifier: MIT

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


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

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

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

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

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

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

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

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

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

contract DoodlePenguins is ERC721Enumerable, Ownable {
  using Strings for uint256;

  address public constant devWallet = address(0xBb6da379Ed680839c4E1Eb7fE49814cD6e7Cbf8a); // UPDATE!!!!!
  address public constant ethHolderWallet1 = address(0xE3dC50d13B29D072A75c138936f797f2D5b332fA); // UPDATE!!!!!
  address public constant ethHolderWallet2 = address(0xA47568E414183404a1d2677Ec5A7736099D3b15F); // UPDATE!!!!!
  address public constant ethHolderWallet3 = address(0x380A06f0435419122D744399E76D8Cb2051DC499); // UPDATE!!!!!
  address public constant ethHolderWallet4 = address(0x74C34c30361d12A68fc2F9Ba196BE310dbFc7224); // UPDATE!!!!!
  address public constant ethHolderWallet5 = address(0x82bF2b2D851d42ea7f885D325F97F4478977278D); // UPDATE!!!!!
  string baseURI;
  string public baseExtension = "";
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 500;
  uint256 public maxMintAmount = 1;
  uint256 public whitelistMintAmount = 1;
  uint256 public maximumWalletHoldings = 20;
  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;
  bool public whitelistEnforced = false;
  mapping (address => bool) public isWhitelisted;
  mapping (address => uint256) public whitelistedMintAmount;
  uint256 public constant privateMintAmount = 100;

  constructor() ERC721("Doodle Penguins", "DP"){
    setBaseURI("");
    setNotRevealedURI("");
  }

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

  // private mint for marketing only.
  function privateMint(uint256 _mintAmount, address destination) public onlyOwner {
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "cannot mint 0");
    require(supply + _mintAmount <= maxSupply + privateMintAmount, "Cannot mint above max supply");
    require(supply + _mintAmount <= 5500, "Cannot mint above 5500");

    for (uint256 i = 1; i <= _mintAmount; i++) {
        _safeMint(destination, supply + i);
    }
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused, "Minting is paused");

    if(whitelistEnforced){
        require(isWhitelisted[msg.sender], "Must be whitelisted in order to mint during this phase");
        require(whitelistedMintAmount[msg.sender] + _mintAmount <= whitelistMintAmount, "Requesting too many whitelist NFTs to be minted");
        whitelistedMintAmount[msg.sender] += _mintAmount;
    }

    require(_mintAmount > 0, "cannot mint 0");
    require(_mintAmount <= maxMintAmount, "cannot exceed max mint");
    require(supply + _mintAmount <= maxSupply, "Cannot mint above max supply");
    require(balanceOf(msg.sender) + _mintAmount <= maximumWalletHoldings, "Cannot mint more than the maximum per wallet");

    require(msg.value >= cost * _mintAmount, "Must send enough ETH to cover mint fee");
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }

    uint256 balance = address(this).balance;

    if(balance > 0){
        (bool os, ) = payable(devWallet).call{value: balance * 5 / 100}("");
        (os, ) = payable(address(ethHolderWallet1)).call{value: balance * 26 / 100}("");
        (os, ) = payable(address(ethHolderWallet2)).call{value: balance * 26 / 100}("");
        (os, ) = payable(address(ethHolderWallet3)).call{value: balance * 26 / 100}("");
        (os, ) = payable(address(ethHolderWallet4)).call{value: balance * 10 / 100}("");
        (os, ) = payable(address(ethHolderWallet5)).call{value: address(this).balance}("");
    }

  }
  
  function startWhitelist() external onlyOwner {
      whitelistEnforced = true;
  }
  
  function startPublicSale() external onlyOwner {
      whitelistEnforced = false;
  }
  
  function whitelistAddresses(address[] calldata wallets, bool whitelistEnabled) external onlyOwner {
      for (uint256 i = 0; i < wallets.length; i++){
          isWhitelisted[wallets[i]] = whitelistEnabled;
      }
  }

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    require(_newCost <= 3 ether, "Cost must be below 3 ether");
    cost = _newCost;
  }

  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    require(_newmaxMintAmount <= 20, "Cannot set higher than 20");
    maxMintAmount = _newmaxMintAmount;
  }

  function setWhiteListMintAmount(uint256 _newAmount) public onlyOwner {
    require(_newAmount <= 3, "Cannot set higher than 3");
    whitelistMintAmount = _newAmount;
  }

  function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
    require(_newMaxSupply <= 5500, "Cannot set higher than 5500");
    maxSupply = _newMaxSupply;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  // recover any stuck ETH (if someone sends ETH directly to the contract only)

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethHolderWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethHolderWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethHolderWallet3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethHolderWallet4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethHolderWallet5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumWalletHoldings","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"privateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setWhiteListMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"whitelistEnabled","type":"bool"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEnforced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600c9162000236565b506000600d556101f4600e556001600f8190556010819055601460118190556012805461ffff1916909217909155805460ff191690553480156200005e57600080fd5b50604080518082018252600f81526e446f6f646c652050656e6775696e7360881b602080830191825283518085019094526002845261044560f41b908401528151919291620000b09160009162000236565b508051620000c690600190602084019062000236565b505050620000e3620000dd6200011d60201b60201c565b62000121565b604080516020810190915260008152620000fd9062000173565b6040805160208101909152600081526200011790620001db565b62000319565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c25760405162461bcd60e51b81526020600482018190526024820152600080516020620034b983398151915260448201526064015b60405180910390fd5b8051620001d790600b90602084019062000236565b5050565b600a546001600160a01b03163314620002265760405162461bcd60e51b81526020600482018190526024820152600080516020620034b98339815191526044820152606401620001b9565b8051620001d79060139060208401905b8280546200024490620002dc565b90600052602060002090601f016020900481019282620002685760008555620002b3565b82601f106200028357805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b357825182559160200191906001019062000296565b50620002c1929150620002c5565b5090565b5b80821115620002c15760008155600101620002c6565b600181811c90821680620002f157607f821691505b602082108114156200031357634e487b7160e01b600052602260045260246000fd5b50919050565b61319080620003296000396000f3fe6080604052600436106103355760003560e01c80636f8b44b0116101ab578063a9ae26fe116100f7578063cfb89aba11610095578063ddb07b861161006f578063ddb07b8614610942578063e985e9c51461096a578063f2c4ce1e146109b3578063f2fde38b146109d357600080fd5b8063cfb89aba146108f6578063d5abeb011461090c578063da3ef23f1461092257600080fd5b8063beb73b31116100d1578063beb73b3114610874578063bef870ca146108a1578063c6682862146108c1578063c87b56dd146108d657600080fd5b8063a9ae26fe14610816578063b88d4fde1461083e578063b90dec1d1461085e57600080fd5b80638c4c8cb91161016457806395d89b411161013e57806395d89b41146107b9578063a0712d68146107ce578063a22cb465146107e1578063a475b5dd1461080157600080fd5b80638c4c8cb91461074b5780638da5cb5b146107735780638ea5220f1461079157600080fd5b80636f8b44b01461069f57806370a08231146106bf578063715018a6146106df5780637f19c412146106f4578063881b27aa1461070957806389f91ece1461073157600080fd5b80632f745c591161028557806351830227116102235780635c975abb116101fd5780635c975abb1461061d5780635ebdfdca1461063757806362e7707e1461065f5780636352211e1461067f57600080fd5b806351830227146105be578063555503b1146105dd57806355f804b3146105fd57600080fd5b806342842e0e1161025f57806342842e0e14610531578063438b63001461055157806344a0d68a1461057e5780634f6ccce71461059e57600080fd5b80632f745c59146104d95780633af32abf146104f95780633ccfd60b1461052957600080fd5b8063095ea7b3116102f257806317301004116102cc578063173010041461047957806318160ddd1461048e578063239c70ae146104a357806323b872dd146104b957600080fd5b8063095ea7b3146104205780630c1c972a1461044057806313faede61461045557600080fd5b806301ffc9a71461033a57806302329a291461036f57806306fdde0314610391578063081812fc146103b3578063081c8c44146103eb578063088a4ed014610400575b600080fd5b34801561034657600080fd5b5061035a610355366004612a3e565b6109f3565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b5061038f61038a366004612a70565b610a1e565b005b34801561039d57600080fd5b506103a6610a64565b6040516103669190612ae3565b3480156103bf57600080fd5b506103d36103ce366004612af6565b610af6565b6040516001600160a01b039091168152602001610366565b3480156103f757600080fd5b506103a6610b8b565b34801561040c57600080fd5b5061038f61041b366004612af6565b610c19565b34801561042c57600080fd5b5061038f61043b366004612b26565b610c99565b34801561044c57600080fd5b5061038f610daf565b34801561046157600080fd5b5061046b600d5481565b604051908152602001610366565b34801561048557600080fd5b5061046b606481565b34801561049a57600080fd5b5060085461046b565b3480156104af57600080fd5b5061046b600f5481565b3480156104c557600080fd5b5061038f6104d4366004612b50565b610de5565b3480156104e557600080fd5b5061046b6104f4366004612b26565b610e16565b34801561050557600080fd5b5061035a610514366004612b8c565b60156020526000908152604090205460ff1681565b61038f610eac565b34801561053d57600080fd5b5061038f61054c366004612b50565b610f2e565b34801561055d57600080fd5b5061057161056c366004612b8c565b610f49565b6040516103669190612ba7565b34801561058a57600080fd5b5061038f610599366004612af6565b610feb565b3480156105aa57600080fd5b5061046b6105b9366004612af6565b611072565b3480156105ca57600080fd5b5060125461035a90610100900460ff1681565b3480156105e957600080fd5b5061038f6105f8366004612af6565b611105565b34801561060957600080fd5b5061038f610618366004612c77565b611185565b34801561062957600080fd5b5060125461035a9060ff1681565b34801561064357600080fd5b506103d373e3dc50d13b29d072a75c138936f797f2d5b332fa81565b34801561066b57600080fd5b5061038f61067a366004612cc0565b6111c6565b34801561068b57600080fd5b506103d361069a366004612af6565b611267565b3480156106ab57600080fd5b5061038f6106ba366004612af6565b6112de565b3480156106cb57600080fd5b5061046b6106da366004612b8c565b61135f565b3480156106eb57600080fd5b5061038f6113e6565b34801561070057600080fd5b5061038f61141c565b34801561071557600080fd5b506103d373380a06f0435419122d744399e76d8cb2051dc49981565b34801561073d57600080fd5b5060145461035a9060ff1681565b34801561075757600080fd5b506103d373a47568e414183404a1d2677ec5a7736099d3b15f81565b34801561077f57600080fd5b50600a546001600160a01b03166103d3565b34801561079d57600080fd5b506103d373bb6da379ed680839c4e1eb7fe49814cd6e7cbf8a81565b3480156107c557600080fd5b506103a6611455565b61038f6107dc366004612af6565b611464565b3480156107ed57600080fd5b5061038f6107fc366004612d44565b611a90565b34801561080d57600080fd5b5061038f611b55565b34801561082257600080fd5b506103d37382bf2b2d851d42ea7f885d325f97f4478977278d81565b34801561084a57600080fd5b5061038f610859366004612d77565b611b90565b34801561086a57600080fd5b5061046b60115481565b34801561088057600080fd5b5061046b61088f366004612b8c565b60166020526000908152604090205481565b3480156108ad57600080fd5b5061038f6108bc366004612df3565b611bc2565b3480156108cd57600080fd5b506103a6611d1e565b3480156108e257600080fd5b506103a66108f1366004612af6565b611d2b565b34801561090257600080fd5b5061046b60105481565b34801561091857600080fd5b5061046b600e5481565b34801561092e57600080fd5b5061038f61093d366004612c77565b611eaa565b34801561094e57600080fd5b506103d37374c34c30361d12a68fc2f9ba196be310dbfc722481565b34801561097657600080fd5b5061035a610985366004612e16565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109bf57600080fd5b5061038f6109ce366004612c77565b611ee7565b3480156109df57600080fd5b5061038f6109ee366004612b8c565b611f24565b60006001600160e01b0319821663780e9d6360e01b1480610a185750610a1882611fbc565b92915050565b600a546001600160a01b03163314610a515760405162461bcd60e51b8152600401610a4890612e40565b60405180910390fd5b6012805460ff1916911515919091179055565b606060008054610a7390612e75565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f90612e75565b8015610aec5780601f10610ac157610100808354040283529160200191610aec565b820191906000526020600020905b815481529060010190602001808311610acf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a48565b506000908152600460205260409020546001600160a01b031690565b60138054610b9890612e75565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490612e75565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b505050505081565b600a546001600160a01b03163314610c435760405162461bcd60e51b8152600401610a4890612e40565b6014811115610c945760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f742073657420686967686572207468616e203230000000000000006044820152606401610a48565b600f55565b6000610ca482611267565b9050806001600160a01b0316836001600160a01b03161415610d125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a48565b336001600160a01b0382161480610d2e5750610d2e8133610985565b610da05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a48565b610daa838361200c565b505050565b600a546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610a4890612e40565b6014805460ff19169055565b610def338261207a565b610e0b5760405162461bcd60e51b8152600401610a4890612eb0565b610daa838383612171565b6000610e218361135f565b8210610e835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a48565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610a4890612e40565b604051600090339047908381818185875af1925050503d8060008114610f18576040519150601f19603f3d011682016040523d82523d6000602084013e610f1d565b606091505b5050905080610f2b57600080fd5b50565b610daa83838360405180602001604052806000815250611b90565b60606000610f568361135f565b905060008167ffffffffffffffff811115610f7357610f73612beb565b604051908082528060200260200182016040528015610f9c578160200160208202803683370190505b50905060005b82811015610fe357610fb48582610e16565b828281518110610fc657610fc6612f01565b602090810291909101015280610fdb81612f2d565b915050610fa2565b509392505050565b600a546001600160a01b031633146110155760405162461bcd60e51b8152600401610a4890612e40565b6729a2241af62c000081111561106d5760405162461bcd60e51b815260206004820152601a60248201527f436f7374206d7573742062652062656c6f7720332065746865720000000000006044820152606401610a48565b600d55565b600061107d60085490565b82106110e05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a48565b600882815481106110f3576110f3612f01565b90600052602060002001549050919050565b600a546001600160a01b0316331461112f5760405162461bcd60e51b8152600401610a4890612e40565b60038111156111805760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742073657420686967686572207468616e203300000000000000006044820152606401610a48565b601055565b600a546001600160a01b031633146111af5760405162461bcd60e51b8152600401610a4890612e40565b80516111c290600b90602084019061298f565b5050565b600a546001600160a01b031633146111f05760405162461bcd60e51b8152600401610a4890612e40565b60005b8281101561126157816015600086868581811061121257611212612f01565b90506020020160208101906112279190612b8c565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061125981612f2d565b9150506111f3565b50505050565b6000818152600260205260408120546001600160a01b031680610a185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a48565b600a546001600160a01b031633146113085760405162461bcd60e51b8152600401610a4890612e40565b61157c81111561135a5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742073657420686967686572207468616e203535303000000000006044820152606401610a48565b600e55565b60006001600160a01b0382166113ca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a48565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114105760405162461bcd60e51b8152600401610a4890612e40565b61141a600061231c565b565b600a546001600160a01b031633146114465760405162461bcd60e51b8152600401610a4890612e40565b6014805460ff19166001179055565b606060018054610a7390612e75565b600061146f60085490565b60125490915060ff16156114b95760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610a48565b60145460ff16156115eb573360009081526015602052604090205460ff166115425760405162461bcd60e51b815260206004820152603660248201527f4d7573742062652077686974656c697374656420696e206f7264657220746f206044820152756d696e7420647572696e67207468697320706861736560501b6064820152608401610a48565b60105433600090815260166020526040902054611560908490612f48565b11156115c65760405162461bcd60e51b815260206004820152602f60248201527f52657175657374696e6720746f6f206d616e792077686974656c697374204e4660448201526e151cc81d1bc81899481b5a5b9d1959608a1b6064820152608401610a48565b33600090815260166020526040812080548492906115e5908490612f48565b90915550505b6000821161162b5760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b6044820152606401610a48565b600f548211156116765760405162461bcd60e51b815260206004820152601660248201527518d85b9b9bdd08195e18d95959081b585e081b5a5b9d60521b6044820152606401610a48565b600e546116838383612f48565b11156116d15760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742061626f7665206d617820737570706c79000000006044820152606401610a48565b601154826116de3361135f565b6116e89190612f48565b111561174b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d6178696d7560448201526b1b481c195c881dd85b1b195d60a21b6064820152608401610a48565b81600d546117599190612f60565b3410156117b75760405162461bcd60e51b815260206004820152602660248201527f4d7573742073656e6420656e6f7567682045544820746f20636f766572206d696044820152656e742066656560d01b6064820152608401610a48565b60015b8281116117e6576117d4336117cf8385612f48565b61236e565b806117de81612f2d565b9150506117ba565b50478015610daa57600073bb6da379ed680839c4e1eb7fe49814cd6e7cbf8a6064611812846005612f60565b61181c9190612f95565b604051600081818185875af1925050503d8060008114611858576040519150601f19603f3d011682016040523d82523d6000602084013e61185d565b606091505b5090915073e3dc50d13b29d072a75c138936f797f2d5b332fa9050606461188584601a612f60565b61188f9190612f95565b604051600081818185875af1925050503d80600081146118cb576040519150601f19603f3d011682016040523d82523d6000602084013e6118d0565b606091505b5090915073a47568e414183404a1d2677ec5a7736099d3b15f905060646118f884601a612f60565b6119029190612f95565b604051600081818185875af1925050503d806000811461193e576040519150601f19603f3d011682016040523d82523d6000602084013e611943565b606091505b5090915073380a06f0435419122d744399e76d8cb2051dc4999050606461196b84601a612f60565b6119759190612f95565b604051600081818185875af1925050503d80600081146119b1576040519150601f19603f3d011682016040523d82523d6000602084013e6119b6565b606091505b509091507374c34c30361d12a68fc2f9ba196be310dbfc7224905060646119de84600a612f60565b6119e89190612f95565b604051600081818185875af1925050503d8060008114611a24576040519150601f19603f3d011682016040523d82523d6000602084013e611a29565b606091505b50506040519091507382bf2b2d851d42ea7f885d325f97f4478977278d904790600081818185875af1925050503d8060008114611a82576040519150601f19603f3d011682016040523d82523d6000602084013e611a87565b606091505b50505050505050565b6001600160a01b038216331415611ae95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a48565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b7f5760405162461bcd60e51b8152600401610a4890612e40565b6012805461ff001916610100179055565b611b9a338361207a565b611bb65760405162461bcd60e51b8152600401610a4890612eb0565b61126184848484612388565b600a546001600160a01b03163314611bec5760405162461bcd60e51b8152600401610a4890612e40565b6000611bf760085490565b905060008311611c395760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b6044820152606401610a48565b6064600e54611c489190612f48565b611c528483612f48565b1115611ca05760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742061626f7665206d617820737570706c79000000006044820152606401610a48565b61157c611cad8483612f48565b1115611cf45760405162461bcd60e51b8152602060048201526016602482015275043616e6e6f74206d696e742061626f766520353530360541b6044820152606401610a48565b60015b83811161126157611d0c836117cf8385612f48565b80611d1681612f2d565b915050611cf7565b600c8054610b9890612e75565b6000818152600260205260409020546060906001600160a01b0316611daa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a48565b601254610100900460ff16611e4b5760138054611dc690612e75565b80601f0160208091040260200160405190810160405280929190818152602001828054611df290612e75565b8015611e3f5780601f10611e1457610100808354040283529160200191611e3f565b820191906000526020600020905b815481529060010190602001808311611e2257829003601f168201915b50505050509050919050565b6000611e556123bb565b90506000815111611e755760405180602001604052806000815250611ea3565b80611e7f846123ca565b600c604051602001611e9393929190612fa9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611ed45760405162461bcd60e51b8152600401610a4890612e40565b80516111c290600c90602084019061298f565b600a546001600160a01b03163314611f115760405162461bcd60e51b8152600401610a4890612e40565b80516111c290601390602084019061298f565b600a546001600160a01b03163314611f4e5760405162461bcd60e51b8152600401610a4890612e40565b6001600160a01b038116611fb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a48565b610f2b8161231c565b60006001600160e01b031982166380ac58cd60e01b1480611fed57506001600160e01b03198216635b5e139f60e01b145b80610a1857506301ffc9a760e01b6001600160e01b0319831614610a18565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061204182611267565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120f35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a48565b60006120fe83611267565b9050806001600160a01b0316846001600160a01b031614806121395750836001600160a01b031661212e84610af6565b6001600160a01b0316145b8061216957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661218482611267565b6001600160a01b0316146121ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a48565b6001600160a01b03821661224e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a48565b6122598383836124c8565b61226460008261200c565b6001600160a01b038316600090815260036020526040812080546001929061228d90849061306d565b90915550506001600160a01b03821660009081526003602052604081208054600192906122bb908490612f48565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111c2828260405180602001604052806000815250612580565b612393848484612171565b61239f848484846125b3565b6112615760405162461bcd60e51b8152600401610a4890613084565b6060600b8054610a7390612e75565b6060816123ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612418578061240281612f2d565b91506124119050600a83612f95565b91506123f2565b60008167ffffffffffffffff81111561243357612433612beb565b6040519080825280601f01601f19166020018201604052801561245d576020820181803683370190505b5090505b84156121695761247260018361306d565b915061247f600a866130d6565b61248a906030612f48565b60f81b81838151811061249f5761249f612f01565b60200101906001600160f81b031916908160001a9053506124c1600a86612f95565b9450612461565b6001600160a01b0383166125235761251e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612546565b816001600160a01b0316836001600160a01b0316146125465761254683826126b1565b6001600160a01b03821661255d57610daa8161274e565b826001600160a01b0316826001600160a01b031614610daa57610daa82826127fd565b61258a8383612841565b61259760008484846125b3565b610daa5760405162461bcd60e51b8152600401610a4890613084565b60006001600160a01b0384163b156126a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125f79033908990889088906004016130ea565b6020604051808303816000875af1925050508015612632575060408051601f3d908101601f1916820190925261262f91810190613127565b60015b61268c573d808015612660576040519150601f19603f3d011682016040523d82523d6000602084013e612665565b606091505b5080516126845760405162461bcd60e51b8152600401610a4890613084565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612169565b506001949350505050565b600060016126be8461135f565b6126c8919061306d565b60008381526007602052604090205490915080821461271b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127609060019061306d565b6000838152600960205260408120546008805493945090928490811061278857612788612f01565b9060005260206000200154905080600883815481106127a9576127a9612f01565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127e1576127e1613144565b6001900381819060005260206000200160009055905550505050565b60006128088361135f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a48565b6000818152600260205260409020546001600160a01b0316156128fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a48565b612908600083836124c8565b6001600160a01b0382166000908152600360205260408120805460019290612931908490612f48565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461299b90612e75565b90600052602060002090601f0160209004810192826129bd5760008555612a03565b82601f106129d657805160ff1916838001178555612a03565b82800160010185558215612a03579182015b82811115612a035782518255916020019190600101906129e8565b50612a0f929150612a13565b5090565b5b80821115612a0f5760008155600101612a14565b6001600160e01b031981168114610f2b57600080fd5b600060208284031215612a5057600080fd5b8135611ea381612a28565b80358015158114612a6b57600080fd5b919050565b600060208284031215612a8257600080fd5b611ea382612a5b565b60005b83811015612aa6578181015183820152602001612a8e565b838111156112615750506000910152565b60008151808452612acf816020860160208601612a8b565b601f01601f19169290920160200192915050565b602081526000611ea36020830184612ab7565b600060208284031215612b0857600080fd5b5035919050565b80356001600160a01b0381168114612a6b57600080fd5b60008060408385031215612b3957600080fd5b612b4283612b0f565b946020939093013593505050565b600080600060608486031215612b6557600080fd5b612b6e84612b0f565b9250612b7c60208501612b0f565b9150604084013590509250925092565b600060208284031215612b9e57600080fd5b611ea382612b0f565b6020808252825182820181905260009190848201906040850190845b81811015612bdf57835183529284019291840191600101612bc3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c1c57612c1c612beb565b604051601f8501601f19908116603f01168101908282118183101715612c4457612c44612beb565b81604052809350858152868686011115612c5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c8957600080fd5b813567ffffffffffffffff811115612ca057600080fd5b8201601f81018413612cb157600080fd5b61216984823560208401612c01565b600080600060408486031215612cd557600080fd5b833567ffffffffffffffff80821115612ced57600080fd5b818601915086601f830112612d0157600080fd5b813581811115612d1057600080fd5b8760208260051b8501011115612d2557600080fd5b602092830195509350612d3b9186019050612a5b565b90509250925092565b60008060408385031215612d5757600080fd5b612d6083612b0f565b9150612d6e60208401612a5b565b90509250929050565b60008060008060808587031215612d8d57600080fd5b612d9685612b0f565b9350612da460208601612b0f565b925060408501359150606085013567ffffffffffffffff811115612dc757600080fd5b8501601f81018713612dd857600080fd5b612de787823560208401612c01565b91505092959194509250565b60008060408385031215612e0657600080fd5b82359150612d6e60208401612b0f565b60008060408385031215612e2957600080fd5b612e3283612b0f565b9150612d6e60208401612b0f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612e8957607f821691505b60208210811415612eaa57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612f4157612f41612f17565b5060010190565b60008219821115612f5b57612f5b612f17565b500190565b6000816000190483118215151615612f7a57612f7a612f17565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612fa457612fa4612f7f565b500490565b600084516020612fbc8285838a01612a8b565b855191840191612fcf8184848a01612a8b565b8554920191600090600181811c9080831680612fec57607f831692505b85831081141561300a57634e487b7160e01b85526022600452602485fd5b80801561301e576001811461302f5761305c565b60ff1985168852838801955061305c565b60008b81526020902060005b858110156130545781548a82015290840190880161303b565b505083880195505b50939b9a5050505050505050505050565b60008282101561307f5761307f612f17565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826130e5576130e5612f7f565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061311d90830184612ab7565b9695505050505050565b60006020828403121561313957600080fd5b8151611ea381612a28565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201c833fbf3aea599d7008da670508f65fd2793585b70fa075418ede0439aab58964736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103355760003560e01c80636f8b44b0116101ab578063a9ae26fe116100f7578063cfb89aba11610095578063ddb07b861161006f578063ddb07b8614610942578063e985e9c51461096a578063f2c4ce1e146109b3578063f2fde38b146109d357600080fd5b8063cfb89aba146108f6578063d5abeb011461090c578063da3ef23f1461092257600080fd5b8063beb73b31116100d1578063beb73b3114610874578063bef870ca146108a1578063c6682862146108c1578063c87b56dd146108d657600080fd5b8063a9ae26fe14610816578063b88d4fde1461083e578063b90dec1d1461085e57600080fd5b80638c4c8cb91161016457806395d89b411161013e57806395d89b41146107b9578063a0712d68146107ce578063a22cb465146107e1578063a475b5dd1461080157600080fd5b80638c4c8cb91461074b5780638da5cb5b146107735780638ea5220f1461079157600080fd5b80636f8b44b01461069f57806370a08231146106bf578063715018a6146106df5780637f19c412146106f4578063881b27aa1461070957806389f91ece1461073157600080fd5b80632f745c591161028557806351830227116102235780635c975abb116101fd5780635c975abb1461061d5780635ebdfdca1461063757806362e7707e1461065f5780636352211e1461067f57600080fd5b806351830227146105be578063555503b1146105dd57806355f804b3146105fd57600080fd5b806342842e0e1161025f57806342842e0e14610531578063438b63001461055157806344a0d68a1461057e5780634f6ccce71461059e57600080fd5b80632f745c59146104d95780633af32abf146104f95780633ccfd60b1461052957600080fd5b8063095ea7b3116102f257806317301004116102cc578063173010041461047957806318160ddd1461048e578063239c70ae146104a357806323b872dd146104b957600080fd5b8063095ea7b3146104205780630c1c972a1461044057806313faede61461045557600080fd5b806301ffc9a71461033a57806302329a291461036f57806306fdde0314610391578063081812fc146103b3578063081c8c44146103eb578063088a4ed014610400575b600080fd5b34801561034657600080fd5b5061035a610355366004612a3e565b6109f3565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b5061038f61038a366004612a70565b610a1e565b005b34801561039d57600080fd5b506103a6610a64565b6040516103669190612ae3565b3480156103bf57600080fd5b506103d36103ce366004612af6565b610af6565b6040516001600160a01b039091168152602001610366565b3480156103f757600080fd5b506103a6610b8b565b34801561040c57600080fd5b5061038f61041b366004612af6565b610c19565b34801561042c57600080fd5b5061038f61043b366004612b26565b610c99565b34801561044c57600080fd5b5061038f610daf565b34801561046157600080fd5b5061046b600d5481565b604051908152602001610366565b34801561048557600080fd5b5061046b606481565b34801561049a57600080fd5b5060085461046b565b3480156104af57600080fd5b5061046b600f5481565b3480156104c557600080fd5b5061038f6104d4366004612b50565b610de5565b3480156104e557600080fd5b5061046b6104f4366004612b26565b610e16565b34801561050557600080fd5b5061035a610514366004612b8c565b60156020526000908152604090205460ff1681565b61038f610eac565b34801561053d57600080fd5b5061038f61054c366004612b50565b610f2e565b34801561055d57600080fd5b5061057161056c366004612b8c565b610f49565b6040516103669190612ba7565b34801561058a57600080fd5b5061038f610599366004612af6565b610feb565b3480156105aa57600080fd5b5061046b6105b9366004612af6565b611072565b3480156105ca57600080fd5b5060125461035a90610100900460ff1681565b3480156105e957600080fd5b5061038f6105f8366004612af6565b611105565b34801561060957600080fd5b5061038f610618366004612c77565b611185565b34801561062957600080fd5b5060125461035a9060ff1681565b34801561064357600080fd5b506103d373e3dc50d13b29d072a75c138936f797f2d5b332fa81565b34801561066b57600080fd5b5061038f61067a366004612cc0565b6111c6565b34801561068b57600080fd5b506103d361069a366004612af6565b611267565b3480156106ab57600080fd5b5061038f6106ba366004612af6565b6112de565b3480156106cb57600080fd5b5061046b6106da366004612b8c565b61135f565b3480156106eb57600080fd5b5061038f6113e6565b34801561070057600080fd5b5061038f61141c565b34801561071557600080fd5b506103d373380a06f0435419122d744399e76d8cb2051dc49981565b34801561073d57600080fd5b5060145461035a9060ff1681565b34801561075757600080fd5b506103d373a47568e414183404a1d2677ec5a7736099d3b15f81565b34801561077f57600080fd5b50600a546001600160a01b03166103d3565b34801561079d57600080fd5b506103d373bb6da379ed680839c4e1eb7fe49814cd6e7cbf8a81565b3480156107c557600080fd5b506103a6611455565b61038f6107dc366004612af6565b611464565b3480156107ed57600080fd5b5061038f6107fc366004612d44565b611a90565b34801561080d57600080fd5b5061038f611b55565b34801561082257600080fd5b506103d37382bf2b2d851d42ea7f885d325f97f4478977278d81565b34801561084a57600080fd5b5061038f610859366004612d77565b611b90565b34801561086a57600080fd5b5061046b60115481565b34801561088057600080fd5b5061046b61088f366004612b8c565b60166020526000908152604090205481565b3480156108ad57600080fd5b5061038f6108bc366004612df3565b611bc2565b3480156108cd57600080fd5b506103a6611d1e565b3480156108e257600080fd5b506103a66108f1366004612af6565b611d2b565b34801561090257600080fd5b5061046b60105481565b34801561091857600080fd5b5061046b600e5481565b34801561092e57600080fd5b5061038f61093d366004612c77565b611eaa565b34801561094e57600080fd5b506103d37374c34c30361d12a68fc2f9ba196be310dbfc722481565b34801561097657600080fd5b5061035a610985366004612e16565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109bf57600080fd5b5061038f6109ce366004612c77565b611ee7565b3480156109df57600080fd5b5061038f6109ee366004612b8c565b611f24565b60006001600160e01b0319821663780e9d6360e01b1480610a185750610a1882611fbc565b92915050565b600a546001600160a01b03163314610a515760405162461bcd60e51b8152600401610a4890612e40565b60405180910390fd5b6012805460ff1916911515919091179055565b606060008054610a7390612e75565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f90612e75565b8015610aec5780601f10610ac157610100808354040283529160200191610aec565b820191906000526020600020905b815481529060010190602001808311610acf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a48565b506000908152600460205260409020546001600160a01b031690565b60138054610b9890612e75565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490612e75565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b505050505081565b600a546001600160a01b03163314610c435760405162461bcd60e51b8152600401610a4890612e40565b6014811115610c945760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f742073657420686967686572207468616e203230000000000000006044820152606401610a48565b600f55565b6000610ca482611267565b9050806001600160a01b0316836001600160a01b03161415610d125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a48565b336001600160a01b0382161480610d2e5750610d2e8133610985565b610da05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a48565b610daa838361200c565b505050565b600a546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610a4890612e40565b6014805460ff19169055565b610def338261207a565b610e0b5760405162461bcd60e51b8152600401610a4890612eb0565b610daa838383612171565b6000610e218361135f565b8210610e835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a48565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610a4890612e40565b604051600090339047908381818185875af1925050503d8060008114610f18576040519150601f19603f3d011682016040523d82523d6000602084013e610f1d565b606091505b5050905080610f2b57600080fd5b50565b610daa83838360405180602001604052806000815250611b90565b60606000610f568361135f565b905060008167ffffffffffffffff811115610f7357610f73612beb565b604051908082528060200260200182016040528015610f9c578160200160208202803683370190505b50905060005b82811015610fe357610fb48582610e16565b828281518110610fc657610fc6612f01565b602090810291909101015280610fdb81612f2d565b915050610fa2565b509392505050565b600a546001600160a01b031633146110155760405162461bcd60e51b8152600401610a4890612e40565b6729a2241af62c000081111561106d5760405162461bcd60e51b815260206004820152601a60248201527f436f7374206d7573742062652062656c6f7720332065746865720000000000006044820152606401610a48565b600d55565b600061107d60085490565b82106110e05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a48565b600882815481106110f3576110f3612f01565b90600052602060002001549050919050565b600a546001600160a01b0316331461112f5760405162461bcd60e51b8152600401610a4890612e40565b60038111156111805760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742073657420686967686572207468616e203300000000000000006044820152606401610a48565b601055565b600a546001600160a01b031633146111af5760405162461bcd60e51b8152600401610a4890612e40565b80516111c290600b90602084019061298f565b5050565b600a546001600160a01b031633146111f05760405162461bcd60e51b8152600401610a4890612e40565b60005b8281101561126157816015600086868581811061121257611212612f01565b90506020020160208101906112279190612b8c565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061125981612f2d565b9150506111f3565b50505050565b6000818152600260205260408120546001600160a01b031680610a185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a48565b600a546001600160a01b031633146113085760405162461bcd60e51b8152600401610a4890612e40565b61157c81111561135a5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742073657420686967686572207468616e203535303000000000006044820152606401610a48565b600e55565b60006001600160a01b0382166113ca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a48565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114105760405162461bcd60e51b8152600401610a4890612e40565b61141a600061231c565b565b600a546001600160a01b031633146114465760405162461bcd60e51b8152600401610a4890612e40565b6014805460ff19166001179055565b606060018054610a7390612e75565b600061146f60085490565b60125490915060ff16156114b95760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610a48565b60145460ff16156115eb573360009081526015602052604090205460ff166115425760405162461bcd60e51b815260206004820152603660248201527f4d7573742062652077686974656c697374656420696e206f7264657220746f206044820152756d696e7420647572696e67207468697320706861736560501b6064820152608401610a48565b60105433600090815260166020526040902054611560908490612f48565b11156115c65760405162461bcd60e51b815260206004820152602f60248201527f52657175657374696e6720746f6f206d616e792077686974656c697374204e4660448201526e151cc81d1bc81899481b5a5b9d1959608a1b6064820152608401610a48565b33600090815260166020526040812080548492906115e5908490612f48565b90915550505b6000821161162b5760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b6044820152606401610a48565b600f548211156116765760405162461bcd60e51b815260206004820152601660248201527518d85b9b9bdd08195e18d95959081b585e081b5a5b9d60521b6044820152606401610a48565b600e546116838383612f48565b11156116d15760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742061626f7665206d617820737570706c79000000006044820152606401610a48565b601154826116de3361135f565b6116e89190612f48565b111561174b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d6178696d7560448201526b1b481c195c881dd85b1b195d60a21b6064820152608401610a48565b81600d546117599190612f60565b3410156117b75760405162461bcd60e51b815260206004820152602660248201527f4d7573742073656e6420656e6f7567682045544820746f20636f766572206d696044820152656e742066656560d01b6064820152608401610a48565b60015b8281116117e6576117d4336117cf8385612f48565b61236e565b806117de81612f2d565b9150506117ba565b50478015610daa57600073bb6da379ed680839c4e1eb7fe49814cd6e7cbf8a6064611812846005612f60565b61181c9190612f95565b604051600081818185875af1925050503d8060008114611858576040519150601f19603f3d011682016040523d82523d6000602084013e61185d565b606091505b5090915073e3dc50d13b29d072a75c138936f797f2d5b332fa9050606461188584601a612f60565b61188f9190612f95565b604051600081818185875af1925050503d80600081146118cb576040519150601f19603f3d011682016040523d82523d6000602084013e6118d0565b606091505b5090915073a47568e414183404a1d2677ec5a7736099d3b15f905060646118f884601a612f60565b6119029190612f95565b604051600081818185875af1925050503d806000811461193e576040519150601f19603f3d011682016040523d82523d6000602084013e611943565b606091505b5090915073380a06f0435419122d744399e76d8cb2051dc4999050606461196b84601a612f60565b6119759190612f95565b604051600081818185875af1925050503d80600081146119b1576040519150601f19603f3d011682016040523d82523d6000602084013e6119b6565b606091505b509091507374c34c30361d12a68fc2f9ba196be310dbfc7224905060646119de84600a612f60565b6119e89190612f95565b604051600081818185875af1925050503d8060008114611a24576040519150601f19603f3d011682016040523d82523d6000602084013e611a29565b606091505b50506040519091507382bf2b2d851d42ea7f885d325f97f4478977278d904790600081818185875af1925050503d8060008114611a82576040519150601f19603f3d011682016040523d82523d6000602084013e611a87565b606091505b50505050505050565b6001600160a01b038216331415611ae95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a48565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b7f5760405162461bcd60e51b8152600401610a4890612e40565b6012805461ff001916610100179055565b611b9a338361207a565b611bb65760405162461bcd60e51b8152600401610a4890612eb0565b61126184848484612388565b600a546001600160a01b03163314611bec5760405162461bcd60e51b8152600401610a4890612e40565b6000611bf760085490565b905060008311611c395760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b6044820152606401610a48565b6064600e54611c489190612f48565b611c528483612f48565b1115611ca05760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742061626f7665206d617820737570706c79000000006044820152606401610a48565b61157c611cad8483612f48565b1115611cf45760405162461bcd60e51b8152602060048201526016602482015275043616e6e6f74206d696e742061626f766520353530360541b6044820152606401610a48565b60015b83811161126157611d0c836117cf8385612f48565b80611d1681612f2d565b915050611cf7565b600c8054610b9890612e75565b6000818152600260205260409020546060906001600160a01b0316611daa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a48565b601254610100900460ff16611e4b5760138054611dc690612e75565b80601f0160208091040260200160405190810160405280929190818152602001828054611df290612e75565b8015611e3f5780601f10611e1457610100808354040283529160200191611e3f565b820191906000526020600020905b815481529060010190602001808311611e2257829003601f168201915b50505050509050919050565b6000611e556123bb565b90506000815111611e755760405180602001604052806000815250611ea3565b80611e7f846123ca565b600c604051602001611e9393929190612fa9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611ed45760405162461bcd60e51b8152600401610a4890612e40565b80516111c290600c90602084019061298f565b600a546001600160a01b03163314611f115760405162461bcd60e51b8152600401610a4890612e40565b80516111c290601390602084019061298f565b600a546001600160a01b03163314611f4e5760405162461bcd60e51b8152600401610a4890612e40565b6001600160a01b038116611fb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a48565b610f2b8161231c565b60006001600160e01b031982166380ac58cd60e01b1480611fed57506001600160e01b03198216635b5e139f60e01b145b80610a1857506301ffc9a760e01b6001600160e01b0319831614610a18565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061204182611267565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120f35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a48565b60006120fe83611267565b9050806001600160a01b0316846001600160a01b031614806121395750836001600160a01b031661212e84610af6565b6001600160a01b0316145b8061216957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661218482611267565b6001600160a01b0316146121ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a48565b6001600160a01b03821661224e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a48565b6122598383836124c8565b61226460008261200c565b6001600160a01b038316600090815260036020526040812080546001929061228d90849061306d565b90915550506001600160a01b03821660009081526003602052604081208054600192906122bb908490612f48565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111c2828260405180602001604052806000815250612580565b612393848484612171565b61239f848484846125b3565b6112615760405162461bcd60e51b8152600401610a4890613084565b6060600b8054610a7390612e75565b6060816123ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612418578061240281612f2d565b91506124119050600a83612f95565b91506123f2565b60008167ffffffffffffffff81111561243357612433612beb565b6040519080825280601f01601f19166020018201604052801561245d576020820181803683370190505b5090505b84156121695761247260018361306d565b915061247f600a866130d6565b61248a906030612f48565b60f81b81838151811061249f5761249f612f01565b60200101906001600160f81b031916908160001a9053506124c1600a86612f95565b9450612461565b6001600160a01b0383166125235761251e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612546565b816001600160a01b0316836001600160a01b0316146125465761254683826126b1565b6001600160a01b03821661255d57610daa8161274e565b826001600160a01b0316826001600160a01b031614610daa57610daa82826127fd565b61258a8383612841565b61259760008484846125b3565b610daa5760405162461bcd60e51b8152600401610a4890613084565b60006001600160a01b0384163b156126a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125f79033908990889088906004016130ea565b6020604051808303816000875af1925050508015612632575060408051601f3d908101601f1916820190925261262f91810190613127565b60015b61268c573d808015612660576040519150601f19603f3d011682016040523d82523d6000602084013e612665565b606091505b5080516126845760405162461bcd60e51b8152600401610a4890613084565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612169565b506001949350505050565b600060016126be8461135f565b6126c8919061306d565b60008381526007602052604090205490915080821461271b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127609060019061306d565b6000838152600960205260408120546008805493945090928490811061278857612788612f01565b9060005260206000200154905080600883815481106127a9576127a9612f01565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127e1576127e1613144565b6001900381819060005260206000200160009055905550505050565b60006128088361135f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a48565b6000818152600260205260409020546001600160a01b0316156128fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a48565b612908600083836124c8565b6001600160a01b0382166000908152600360205260408120805460019290612931908490612f48565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461299b90612e75565b90600052602060002090601f0160209004810192826129bd5760008555612a03565b82601f106129d657805160ff1916838001178555612a03565b82800160010185558215612a03579182015b82811115612a035782518255916020019190600101906129e8565b50612a0f929150612a13565b5090565b5b80821115612a0f5760008155600101612a14565b6001600160e01b031981168114610f2b57600080fd5b600060208284031215612a5057600080fd5b8135611ea381612a28565b80358015158114612a6b57600080fd5b919050565b600060208284031215612a8257600080fd5b611ea382612a5b565b60005b83811015612aa6578181015183820152602001612a8e565b838111156112615750506000910152565b60008151808452612acf816020860160208601612a8b565b601f01601f19169290920160200192915050565b602081526000611ea36020830184612ab7565b600060208284031215612b0857600080fd5b5035919050565b80356001600160a01b0381168114612a6b57600080fd5b60008060408385031215612b3957600080fd5b612b4283612b0f565b946020939093013593505050565b600080600060608486031215612b6557600080fd5b612b6e84612b0f565b9250612b7c60208501612b0f565b9150604084013590509250925092565b600060208284031215612b9e57600080fd5b611ea382612b0f565b6020808252825182820181905260009190848201906040850190845b81811015612bdf57835183529284019291840191600101612bc3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c1c57612c1c612beb565b604051601f8501601f19908116603f01168101908282118183101715612c4457612c44612beb565b81604052809350858152868686011115612c5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c8957600080fd5b813567ffffffffffffffff811115612ca057600080fd5b8201601f81018413612cb157600080fd5b61216984823560208401612c01565b600080600060408486031215612cd557600080fd5b833567ffffffffffffffff80821115612ced57600080fd5b818601915086601f830112612d0157600080fd5b813581811115612d1057600080fd5b8760208260051b8501011115612d2557600080fd5b602092830195509350612d3b9186019050612a5b565b90509250925092565b60008060408385031215612d5757600080fd5b612d6083612b0f565b9150612d6e60208401612a5b565b90509250929050565b60008060008060808587031215612d8d57600080fd5b612d9685612b0f565b9350612da460208601612b0f565b925060408501359150606085013567ffffffffffffffff811115612dc757600080fd5b8501601f81018713612dd857600080fd5b612de787823560208401612c01565b91505092959194509250565b60008060408385031215612e0657600080fd5b82359150612d6e60208401612b0f565b60008060408385031215612e2957600080fd5b612e3283612b0f565b9150612d6e60208401612b0f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612e8957607f821691505b60208210811415612eaa57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612f4157612f41612f17565b5060010190565b60008219821115612f5b57612f5b612f17565b500190565b6000816000190483118215151615612f7a57612f7a612f17565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612fa457612fa4612f7f565b500490565b600084516020612fbc8285838a01612a8b565b855191840191612fcf8184848a01612a8b565b8554920191600090600181811c9080831680612fec57607f831692505b85831081141561300a57634e487b7160e01b85526022600452602485fd5b80801561301e576001811461302f5761305c565b60ff1985168852838801955061305c565b60008b81526020902060005b858110156130545781548a82015290840190880161303b565b505083880195505b50939b9a5050505050505050505050565b60008282101561307f5761307f612f17565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826130e5576130e5612f7f565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061311d90830184612ab7565b9695505050505050565b60006020828403121561313957600080fd5b8151611ea381612a28565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201c833fbf3aea599d7008da670508f65fd2793585b70fa075418ede0439aab58964736f6c634300080b0033

Deployed Bytecode Sourcemap

42501:6403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34106:224;;;;;;;;;;-1:-1:-1;34106:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34106:224:0;;;;;;;;48590:73;;;;;;;;;;-1:-1:-1;48590:73:0;;;;;:::i;:::-;;:::i;:::-;;22033:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23592:221::-;;;;;;;;;;-1:-1:-1;23592:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;23592:221:0;1878:203:1;43582:28:0;;;;;;;;;;;;;:::i;47687:184::-;;;;;;;;;;-1:-1:-1;47687:184:0;;;;;:::i;:::-;;:::i;23115:411::-;;;;;;;;;;-1:-1:-1;23115:411:0;;;;;:::i;:::-;;:::i;46267:86::-;;;;;;;;;;;;;:::i;43324:29::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;43324:29:0;2523:177:1;43770:47:0;;;;;;;;;;;;43814:3;43770:47;;34746:113;;;;;;;;;;-1:-1:-1;34834:10:0;:17;34746:113;;43393:32;;;;;;;;;;;;;;;;24482:339;;;;;;;;;;-1:-1:-1;24482:339:0;;;;;:::i;:::-;;:::i;34414:256::-;;;;;;;;;;-1:-1:-1;34414:256:0;;;;;:::i;:::-;;:::i;43657:46::-;;;;;;;;;;-1:-1:-1;43657:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48753:148;;;:::i;24892:185::-;;;;;;;;;;-1:-1:-1;24892:185:0;;;;;:::i;:::-;;:::i;46590:348::-;;;;;;;;;;-1:-1:-1;46590:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47536:145::-;;;;;;;;;;-1:-1:-1;47536:145:0;;;;;:::i;:::-;;:::i;34936:233::-;;;;;;;;;;-1:-1:-1;34936:233:0;;;;;:::i;:::-;;:::i;43549:28::-;;;;;;;;;;-1:-1:-1;43549:28:0;;;;;;;;;;;47877:173;;;;;;;;;;-1:-1:-1;47877:173:0;;;;;:::i;:::-;;:::i;48358:98::-;;;;;;;;;;-1:-1:-1;48358:98:0;;;;;:::i;:::-;;:::i;43519:25::-;;;;;;;;;;-1:-1:-1;43519:25:0;;;;;;;;42698:94;;;;;;;;;;;;42749:42;42698:94;;46361:223;;;;;;;;;;-1:-1:-1;46361:223:0;;;;;:::i;:::-;;:::i;21727:239::-;;;;;;;;;;-1:-1:-1;21727:239:0;;;;;:::i;:::-;;:::i;48056:168::-;;;;;;;;;;-1:-1:-1;48056:168:0;;;;;:::i;:::-;;:::i;21457:208::-;;;;;;;;;;-1:-1:-1;21457:208:0;;;;;:::i;:::-;;:::i;41872:94::-;;;;;;;;;;;;;:::i;46175:84::-;;;;;;;;;;;;;:::i;42926:94::-;;;;;;;;;;;;42977:42;42926:94;;43615:37;;;;;;;;;;-1:-1:-1;43615:37:0;;;;;;;;42812:94;;;;;;;;;;;;42863:42;42812:94;;41221:87;;;;;;;;;;-1:-1:-1;41294:6:0;;-1:-1:-1;;;;;41294:6:0;41221:87;;42591;;;;;;;;;;;;42635:42;42591:87;;22202:104;;;;;;;;;;;;;:::i;44557:1610::-;;;;;;:::i;:::-;;:::i;23885:295::-;;;;;;;;;;-1:-1:-1;23885:295:0;;;;;:::i;:::-;;:::i;47463:65::-;;;;;;;;;;;;;:::i;43154:94::-;;;;;;;;;;;;43205:42;43154:94;;25148:328;;;;;;;;;;-1:-1:-1;25148:328:0;;;;;:::i;:::-;;:::i;43473:41::-;;;;;;;;;;;;;;;;43708:57;;;;;;;;;;-1:-1:-1;43708:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;44092:446;;;;;;;;;;-1:-1:-1;44092:446:0;;;;;:::i;:::-;;:::i;43287:32::-;;;;;;;;;;;;;:::i;46944:497::-;;;;;;;;;;-1:-1:-1;46944:497:0;;;;;:::i;:::-;;:::i;43430:38::-;;;;;;;;;;;;;;;;43358:30;;;;;;;;;;;;;;;;48462:122;;;;;;;;;;-1:-1:-1;48462:122:0;;;;;:::i;:::-;;:::i;43040:94::-;;;;;;;;;;;;43091:42;43040:94;;24251:164;;;;;;;;;;-1:-1:-1;24251:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24372:25:0;;;24348:4;24372:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24251:164;48232:120;;;;;;;;;;-1:-1:-1;48232:120:0;;;;;:::i;:::-;;:::i;42121:192::-;;;;;;;;;;-1:-1:-1;42121:192:0;;;;;:::i;:::-;;:::i;34106:224::-;34208:4;-1:-1:-1;;;;;;34232:50:0;;-1:-1:-1;;;34232:50:0;;:90;;;34286:36;34310:11;34286:23;:36::i;:::-;34225:97;34106:224;-1:-1:-1;;34106:224:0:o;48590:73::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;;;;;;;;;48642:6:::1;:15:::0;;-1:-1:-1;;48642:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48590:73::o;22033:100::-;22087:13;22120:5;22113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22033:100;:::o;23592:221::-;23668:7;27075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27075:16:0;23688:73;;;;-1:-1:-1;;;23688:73:0;;8188:2:1;23688:73:0;;;8170:21:1;8227:2;8207:18;;;8200:30;8266:34;8246:18;;;8239:62;-1:-1:-1;;;8317:18:1;;;8310:42;8369:19;;23688:73:0;7986:408:1;23688:73:0;-1:-1:-1;23781:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23781:24:0;;23592:221::o;43582:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47687:184::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;47793:2:::1;47772:17;:23;;47764:61;;;::::0;-1:-1:-1;;;47764:61:0;;8601:2:1;47764:61:0::1;::::0;::::1;8583:21:1::0;8640:2;8620:18;;;8613:30;8679:27;8659:18;;;8652:55;8724:18;;47764:61:0::1;8399:349:1::0;47764:61:0::1;47832:13;:33:::0;47687:184::o;23115:411::-;23196:13;23212:23;23227:7;23212:14;:23::i;:::-;23196:39;;23260:5;-1:-1:-1;;;;;23254:11:0;:2;-1:-1:-1;;;;;23254:11:0;;;23246:57;;;;-1:-1:-1;;;23246:57:0;;8955:2:1;23246:57:0;;;8937:21:1;8994:2;8974:18;;;8967:30;9033:34;9013:18;;;9006:62;-1:-1:-1;;;9084:18:1;;;9077:31;9125:19;;23246:57:0;8753:397:1;23246:57:0;19667:10;-1:-1:-1;;;;;23338:21:0;;;;:62;;-1:-1:-1;23363:37:0;23380:5;19667:10;24251:164;:::i;23363:37::-;23316:168;;;;-1:-1:-1;;;23316:168:0;;9357:2:1;23316:168:0;;;9339:21:1;9396:2;9376:18;;;9369:30;9435:34;9415:18;;;9408:62;9506:26;9486:18;;;9479:54;9550:19;;23316:168:0;9155:420:1;23316:168:0;23497:21;23506:2;23510:7;23497:8;:21::i;:::-;23185:341;23115:411;;:::o;46267:86::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;46322:17:::1;:25:::0;;-1:-1:-1;;46322:25:0::1;::::0;;46267:86::o;24482:339::-;24677:41;19667:10;24710:7;24677:18;:41::i;:::-;24669:103;;;;-1:-1:-1;;;24669:103:0;;;;;;;:::i;:::-;24785:28;24795:4;24801:2;24805:7;24785:9;:28::i;34414:256::-;34511:7;34547:23;34564:5;34547:16;:23::i;:::-;34539:5;:31;34531:87;;;;-1:-1:-1;;;34531:87:0;;10200:2:1;34531:87:0;;;10182:21:1;10239:2;10219:18;;;10212:30;10278:34;10258:18;;;10251:62;-1:-1:-1;;;10329:18:1;;;10322:41;10380:19;;34531:87:0;9998:407:1;34531:87:0;-1:-1:-1;;;;;;34636:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34414:256::o;48753:148::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;48819:58:::1;::::0;48806:7:::1;::::0;48827:10:::1;::::0;48851:21:::1;::::0;48806:7;48819:58;48806:7;48819:58;48851:21;48827:10;48819:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48805:72;;;48892:2;48884:11;;;::::0;::::1;;48798:103;48753:148::o:0;24892:185::-;25030:39;25047:4;25053:2;25057:7;25030:39;;;;;;;;;;;;:16;:39::i;46590:348::-;46665:16;46693:23;46719:17;46729:6;46719:9;:17::i;:::-;46693:43;;46743:25;46785:15;46771:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46771:30:0;;46743:58;;46813:9;46808:103;46828:15;46824:1;:19;46808:103;;;46873:30;46893:6;46901:1;46873:19;:30::i;:::-;46859:8;46868:1;46859:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46845:3;;;;:::i;:::-;;;;46808:103;;;-1:-1:-1;46924:8:0;46590:348;-1:-1:-1;;;46590:348:0:o;47536:145::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;47615:7:::1;47603:8;:19;;47595:58;;;::::0;-1:-1:-1;;;47595:58:0;;11226:2:1;47595:58:0::1;::::0;::::1;11208:21:1::0;11265:2;11245:18;;;11238:30;11304:28;11284:18;;;11277:56;11350:18;;47595:58:0::1;11024:350:1::0;47595:58:0::1;47660:4;:15:::0;47536:145::o;34936:233::-;35011:7;35047:30;34834:10;:17;;34746:113;35047:30;35039:5;:38;35031:95;;;;-1:-1:-1;;;35031:95:0;;11581:2:1;35031:95:0;;;11563:21:1;11620:2;11600:18;;;11593:30;11659:34;11639:18;;;11632:62;-1:-1:-1;;;11710:18:1;;;11703:42;11762:19;;35031:95:0;11379:408:1;35031:95:0;35144:10;35155:5;35144:17;;;;;;;;:::i;:::-;;;;;;;;;35137:24;;34936:233;;;:::o;47877:173::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;47975:1:::1;47961:10;:15;;47953:52;;;::::0;-1:-1:-1;;;47953:52:0;;11994:2:1;47953:52:0::1;::::0;::::1;11976:21:1::0;12033:2;12013:18;;;12006:30;12072:26;12052:18;;;12045:54;12116:18;;47953:52:0::1;11792:348:1::0;47953:52:0::1;48012:19;:32:::0;47877:173::o;48358:98::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;48429:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48358:98:::0;:::o;46361:223::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;46473:9:::1;46468:111;46488:18:::0;;::::1;46468:111;;;46553:16;46525:13;:25;46539:7;;46547:1;46539:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46525:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46525:25:0;:44;;-1:-1:-1;;46525:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46508:3;::::1;::::0;::::1;:::i;:::-;;;;46468:111;;;;46361:223:::0;;;:::o;21727:239::-;21799:7;21835:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21835:16:0;21870:19;21862:73;;;;-1:-1:-1;;;21862:73:0;;12347:2:1;21862:73:0;;;12329:21:1;12386:2;12366:18;;;12359:30;12425:34;12405:18;;;12398:62;-1:-1:-1;;;12476:18:1;;;12469:39;12525:19;;21862:73:0;12145:405:1;48056:168:0;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;48150:4:::1;48133:13;:21;;48125:61;;;::::0;-1:-1:-1;;;48125:61:0;;12757:2:1;48125:61:0::1;::::0;::::1;12739:21:1::0;12796:2;12776:18;;;12769:30;12835:29;12815:18;;;12808:57;12882:18;;48125:61:0::1;12555:351:1::0;48125:61:0::1;48193:9;:25:::0;48056:168::o;21457:208::-;21529:7;-1:-1:-1;;;;;21557:19:0;;21549:74;;;;-1:-1:-1;;;21549:74:0;;13113:2:1;21549:74:0;;;13095:21:1;13152:2;13132:18;;;13125:30;13191:34;13171:18;;;13164:62;-1:-1:-1;;;13242:18:1;;;13235:40;13292:19;;21549:74:0;12911:406:1;21549:74:0;-1:-1:-1;;;;;;21641:16:0;;;;;:9;:16;;;;;;;21457:208::o;41872:94::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;41937:21:::1;41955:1;41937:9;:21::i;:::-;41872:94::o:0;46175:84::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;46229:17:::1;:24:::0;;-1:-1:-1;;46229:24:0::1;46249:4;46229:24;::::0;;46175:84::o;22202:104::-;22258:13;22291:7;22284:14;;;;;:::i;44557:1610::-;44614:14;44631:13;34834:10;:17;;34746:113;44631:13;44660:6;;44614:30;;-1:-1:-1;44660:6:0;;44659:7;44651:37;;;;-1:-1:-1;;;44651:37:0;;13524:2:1;44651:37:0;;;13506:21:1;13563:2;13543:18;;;13536:30;-1:-1:-1;;;13582:18:1;;;13575:47;13639:18;;44651:37:0;13322:341:1;44651:37:0;44700:17;;;;44697:332;;;44751:10;44737:25;;;;:13;:25;;;;;;;;44729:92;;;;-1:-1:-1;;;44729:92:0;;13870:2:1;44729:92:0;;;13852:21:1;13909:2;13889:18;;;13882:30;13948:34;13928:18;;;13921:62;-1:-1:-1;;;13999:18:1;;;13992:52;14061:19;;44729:92:0;13668:418:1;44729:92:0;44891:19;;44862:10;44840:33;;;;:21;:33;;;;;;:47;;44876:11;;44840:47;:::i;:::-;:70;;44832:130;;;;-1:-1:-1;;;44832:130:0;;14426:2:1;44832:130:0;;;14408:21:1;14465:2;14445:18;;;14438:30;14504:34;14484:18;;;14477:62;-1:-1:-1;;;14555:18:1;;;14548:45;14610:19;;44832:130:0;14224:411:1;44832:130:0;44995:10;44973:33;;;;:21;:33;;;;;:48;;45010:11;;44973:33;:48;;45010:11;;44973:48;:::i;:::-;;;;-1:-1:-1;;44697:332:0;45059:1;45045:11;:15;45037:41;;;;-1:-1:-1;;;45037:41:0;;14842:2:1;45037:41:0;;;14824:21:1;14881:2;14861:18;;;14854:30;-1:-1:-1;;;14900:18:1;;;14893:43;14953:18;;45037:41:0;14640:337:1;45037:41:0;45108:13;;45093:11;:28;;45085:63;;;;-1:-1:-1;;;45085:63:0;;15184:2:1;45085:63:0;;;15166:21:1;15223:2;15203:18;;;15196:30;-1:-1:-1;;;15242:18:1;;;15235:52;15304:18;;45085:63:0;14982:346:1;45085:63:0;45187:9;;45163:20;45172:11;45163:6;:20;:::i;:::-;:33;;45155:74;;;;-1:-1:-1;;;45155:74:0;;15535:2:1;45155:74:0;;;15517:21:1;15574:2;15554:18;;;15547:30;15613;15593:18;;;15586:58;15661:18;;45155:74:0;15333:352:1;45155:74:0;45283:21;;45268:11;45244:21;45254:10;45244:9;:21::i;:::-;:35;;;;:::i;:::-;:60;;45236:117;;;;-1:-1:-1;;;45236:117:0;;15892:2:1;45236:117:0;;;15874:21:1;15931:2;15911:18;;;15904:30;15970:34;15950:18;;;15943:62;-1:-1:-1;;;16021:18:1;;;16014:42;16073:19;;45236:117:0;15690:408:1;45236:117:0;45390:11;45383:4;;:18;;;;:::i;:::-;45370:9;:31;;45362:82;;;;-1:-1:-1;;;45362:82:0;;16478:2:1;45362:82:0;;;16460:21:1;16517:2;16497:18;;;16490:30;16556:34;16536:18;;;16529:62;-1:-1:-1;;;16607:18:1;;;16600:36;16653:19;;45362:82:0;16276:402:1;45362:82:0;45474:1;45457:93;45482:11;45477:1;:16;45457:93;;45509:33;45519:10;45531;45540:1;45531:6;:10;:::i;:::-;45509:9;:33::i;:::-;45495:3;;;;:::i;:::-;;;;45457:93;;;-1:-1:-1;45576:21:0;45609:11;;45606:554;;45633:7;42635:42;45691:3;45677:11;:7;45687:1;45677:11;:::i;:::-;:17;;;;:::i;:::-;45646:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45632:67:0;;-1:-1:-1;42749:42:0;;-1:-1:-1;45781:3:0;45766:12;:7;45776:2;45766:12;:::i;:::-;:18;;;;:::i;:::-;45719:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45710:79:0;;-1:-1:-1;42863:42:0;;-1:-1:-1;45871:3:0;45856:12;:7;45866:2;45856:12;:::i;:::-;:18;;;;:::i;:::-;45809:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45800:79:0;;-1:-1:-1;42977:42:0;;-1:-1:-1;45961:3:0;45946:12;:7;45956:2;45946:12;:::i;:::-;:18;;;;:::i;:::-;45899:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45890:79:0;;-1:-1:-1;43091:42:0;;-1:-1:-1;46051:3:0;46036:12;:7;46046:2;46036:12;:::i;:::-;:18;;;;:::i;:::-;45989:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46079:73:0;;45980:79;;-1:-1:-1;43205:42:0;;46126:21;;46079:73;;;;46126:21;43205:42;46079:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;44607:1560:0;;44557:1610;:::o;23885:295::-;-1:-1:-1;;;;;23988:24:0;;19667:10;23988:24;;23980:62;;;;-1:-1:-1;;;23980:62:0;;17142:2:1;23980:62:0;;;17124:21:1;17181:2;17161:18;;;17154:30;17220:27;17200:18;;;17193:55;17265:18;;23980:62:0;16940:349:1;23980:62:0;19667:10;24055:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24055:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24055:53:0;;;;;;;;;;24124:48;;540:41:1;;;24055:42:0;;19667:10;24124:48;;513:18:1;24124:48:0;;;;;;;23885:295;;:::o;47463:65::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;47507:8:::1;:15:::0;;-1:-1:-1;;47507:15:0::1;;;::::0;;47463:65::o;25148:328::-;25323:41;19667:10;25356:7;25323:18;:41::i;:::-;25315:103;;;;-1:-1:-1;;;25315:103:0;;;;;;;:::i;:::-;25429:39;25443:4;25449:2;25453:7;25462:5;25429:13;:39::i;44092:446::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;44179:14:::1;44196:13;34834:10:::0;:17;;34746:113;44196:13:::1;44179:30;;44238:1;44224:11;:15;44216:41;;;::::0;-1:-1:-1;;;44216:41:0;;14842:2:1;44216:41:0::1;::::0;::::1;14824:21:1::0;14881:2;14861:18;;;14854:30;-1:-1:-1;;;14900:18:1;;;14893:43;14953:18;;44216:41:0::1;14640:337:1::0;44216:41:0::1;43814:3;44296:9;;:29;;;;:::i;:::-;44272:20;44281:11:::0;44272:6;:20:::1;:::i;:::-;:53;;44264:94;;;::::0;-1:-1:-1;;;44264:94:0;;15535:2:1;44264:94:0::1;::::0;::::1;15517:21:1::0;15574:2;15554:18;;;15547:30;15613;15593:18;;;15586:58;15661:18;;44264:94:0::1;15333:352:1::0;44264:94:0::1;44397:4;44373:20;44382:11:::0;44373:6;:20:::1;:::i;:::-;:28;;44365:63;;;::::0;-1:-1:-1;;;44365:63:0;;17496:2:1;44365:63:0::1;::::0;::::1;17478:21:1::0;17535:2;17515:18;;;17508:30;-1:-1:-1;;;17554:18:1;;;17547:52;17616:18;;44365:63:0::1;17294:346:1::0;44365:63:0::1;44454:1;44437:96;44462:11;44457:1;:16;44437:96;;44491:34;44501:11:::0;44514:10:::1;44523:1:::0;44514:6;:10:::1;:::i;44491:34::-;44475:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44437:96;;43287:32:::0;;;;;;;:::i;46944:497::-;27051:4;27075:16;;;:7;:16;;;;;;47042:13;;-1:-1:-1;;;;;27075:16:0;47067:97;;;;-1:-1:-1;;;47067:97:0;;17847:2:1;47067:97:0;;;17829:21:1;17886:2;17866:18;;;17859:30;17925:34;17905:18;;;17898:62;-1:-1:-1;;;17976:18:1;;;17969:45;18031:19;;47067:97:0;17645:411:1;47067:97:0;47180:8;;;;;;;47177:62;;47217:14;47210:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46944:497;;;:::o;47177:62::-;47247:28;47278:10;:8;:10::i;:::-;47247:41;;47333:1;47308:14;47302:28;:32;:133;;;;;;;;;;;;;;;;;47370:14;47386:18;:7;:16;:18::i;:::-;47406:13;47353:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47302:133;47295:140;46944:497;-1:-1:-1;;;46944:497:0:o;48462:122::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;48545:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48232:120::-:0;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;48314:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42121:192::-:0;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42210:22:0;::::1;42202:73;;;::::0;-1:-1:-1;;;42202:73:0;;19921:2:1;42202:73:0::1;::::0;::::1;19903:21:1::0;19960:2;19940:18;;;19933:30;19999:34;19979:18;;;19972:62;-1:-1:-1;;;20050:18:1;;;20043:36;20096:19;;42202:73:0::1;19719:402:1::0;42202:73:0::1;42286:19;42296:8;42286:9;:19::i;21088:305::-:0;21190:4;-1:-1:-1;;;;;;21227:40:0;;-1:-1:-1;;;21227:40:0;;:105;;-1:-1:-1;;;;;;;21284:48:0;;-1:-1:-1;;;21284:48:0;21227:105;:158;;;-1:-1:-1;;;;;;;;;;7204:40:0;;;21349:36;7095:157;30968:174;31043:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31043:29:0;-1:-1:-1;;;;;31043:29:0;;;;;;;;:24;;31097:23;31043:24;31097:14;:23::i;:::-;-1:-1:-1;;;;;31088:46:0;;;;;;;;;;;30968:174;;:::o;27280:348::-;27373:4;27075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27075:16:0;27390:73;;;;-1:-1:-1;;;27390:73:0;;20328:2:1;27390:73:0;;;20310:21:1;20367:2;20347:18;;;20340:30;20406:34;20386:18;;;20379:62;-1:-1:-1;;;20457:18:1;;;20450:42;20509:19;;27390:73:0;20126:408:1;27390:73:0;27474:13;27490:23;27505:7;27490:14;:23::i;:::-;27474:39;;27543:5;-1:-1:-1;;;;;27532:16:0;:7;-1:-1:-1;;;;;27532:16:0;;:51;;;;27576:7;-1:-1:-1;;;;;27552:31:0;:20;27564:7;27552:11;:20::i;:::-;-1:-1:-1;;;;;27552:31:0;;27532:51;:87;;;-1:-1:-1;;;;;;24372:25:0;;;24348:4;24372:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27587:32;27524:96;27280:348;-1:-1:-1;;;;27280:348:0:o;30272:578::-;30431:4;-1:-1:-1;;;;;30404:31:0;:23;30419:7;30404:14;:23::i;:::-;-1:-1:-1;;;;;30404:31:0;;30396:85;;;;-1:-1:-1;;;30396:85:0;;20741:2:1;30396:85:0;;;20723:21:1;20780:2;20760:18;;;20753:30;20819:34;20799:18;;;20792:62;-1:-1:-1;;;20870:18:1;;;20863:39;20919:19;;30396:85:0;20539:405:1;30396:85:0;-1:-1:-1;;;;;30500:16:0;;30492:65;;;;-1:-1:-1;;;30492:65:0;;21151:2:1;30492:65:0;;;21133:21:1;21190:2;21170:18;;;21163:30;21229:34;21209:18;;;21202:62;-1:-1:-1;;;21280:18:1;;;21273:34;21324:19;;30492:65:0;20949:400:1;30492:65:0;30570:39;30591:4;30597:2;30601:7;30570:20;:39::i;:::-;30674:29;30691:1;30695:7;30674:8;:29::i;:::-;-1:-1:-1;;;;;30716:15:0;;;;;;:9;:15;;;;;:20;;30735:1;;30716:15;:20;;30735:1;;30716:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30747:13:0;;;;;;:9;:13;;;;;:18;;30764:1;;30747:13;:18;;30764:1;;30747:18;:::i;:::-;;;;-1:-1:-1;;30776:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30776:21:0;-1:-1:-1;;;;;30776:21:0;;;;;;;;;30815:27;;30776:16;;30815:27;;;;;;;30272:578;;;:::o;42321:173::-;42396:6;;;-1:-1:-1;;;;;42413:17:0;;;-1:-1:-1;;;;;;42413:17:0;;;;;;;42446:40;;42396:6;;;42413:17;42396:6;;42446:40;;42377:16;;42446:40;42366:128;42321:173;:::o;27970:110::-;28046:26;28056:2;28060:7;28046:26;;;;;;;;;;;;:9;:26::i;26358:315::-;26515:28;26525:4;26531:2;26535:7;26515:9;:28::i;:::-;26562:48;26585:4;26591:2;26595:7;26604:5;26562:22;:48::i;:::-;26554:111;;;;-1:-1:-1;;;26554:111:0;;;;;;;:::i;43945:102::-;44005:13;44034:7;44027:14;;;;;:::i;7539:723::-;7595:13;7816:10;7812:53;;-1:-1:-1;;7843:10:0;;;;;;;;;;;;-1:-1:-1;;;7843:10:0;;;;;7539:723::o;7812:53::-;7890:5;7875:12;7931:78;7938:9;;7931:78;;7964:8;;;;:::i;:::-;;-1:-1:-1;7987:10:0;;-1:-1:-1;7995:2:0;7987:10;;:::i;:::-;;;7931:78;;;8019:19;8051:6;8041:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8041:17:0;;8019:39;;8069:154;8076:10;;8069:154;;8103:11;8113:1;8103:11;;:::i;:::-;;-1:-1:-1;8172:10:0;8180:2;8172:5;:10;:::i;:::-;8159:24;;:2;:24;:::i;:::-;8146:39;;8129:6;8136;8129:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8129:56:0;;;;;;;;-1:-1:-1;8200:11:0;8209:2;8200:11;;:::i;:::-;;;8069:154;;35782:589;-1:-1:-1;;;;;35988:18:0;;35984:187;;36023:40;36055:7;37198:10;:17;;37171:24;;;;:15;:24;;;;;:44;;;37226:24;;;;;;;;;;;;37094:164;36023:40;35984:187;;;36093:2;-1:-1:-1;;;;;36085:10:0;:4;-1:-1:-1;;;;;36085:10:0;;36081:90;;36112:47;36145:4;36151:7;36112:32;:47::i;:::-;-1:-1:-1;;;;;36185:16:0;;36181:183;;36218:45;36255:7;36218:36;:45::i;36181:183::-;36291:4;-1:-1:-1;;;;;36285:10:0;:2;-1:-1:-1;;;;;36285:10:0;;36281:83;;36312:40;36340:2;36344:7;36312:27;:40::i;28307:321::-;28437:18;28443:2;28447:7;28437:5;:18::i;:::-;28488:54;28519:1;28523:2;28527:7;28536:5;28488:22;:54::i;:::-;28466:154;;;;-1:-1:-1;;;28466:154:0;;;;;;;:::i;31707:799::-;31862:4;-1:-1:-1;;;;;31883:13:0;;10356:20;10404:8;31879:620;;31919:72;;-1:-1:-1;;;31919:72:0;;-1:-1:-1;;;;;31919:36:0;;;;;:72;;19667:10;;31970:4;;31976:7;;31985:5;;31919:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31919:72:0;;;;;;;;-1:-1:-1;;31919:72:0;;;;;;;;;;;;:::i;:::-;;;31915:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32161:13:0;;32157:272;;32204:60;;-1:-1:-1;;;32204:60:0;;;;;;;:::i;32157:272::-;32379:6;32373:13;32364:6;32360:2;32356:15;32349:38;31915:529;-1:-1:-1;;;;;;32042:51:0;-1:-1:-1;;;32042:51:0;;-1:-1:-1;32035:58:0;;31879:620;-1:-1:-1;32483:4:0;31707:799;;;;;;:::o;37885:988::-;38151:22;38201:1;38176:22;38193:4;38176:16;:22::i;:::-;:26;;;;:::i;:::-;38213:18;38234:26;;;:17;:26;;;;;;38151:51;;-1:-1:-1;38367:28:0;;;38363:328;;-1:-1:-1;;;;;38434:18:0;;38412:19;38434:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38485:30;;;;;;:44;;;38602:30;;:17;:30;;;;;:43;;;38363:328;-1:-1:-1;38787:26:0;;;;:17;:26;;;;;;;;38780:33;;;-1:-1:-1;;;;;38831:18:0;;;;;:12;:18;;;;;:34;;;;;;;38824:41;37885:988::o;39168:1079::-;39446:10;:17;39421:22;;39446:21;;39466:1;;39446:21;:::i;:::-;39478:18;39499:24;;;:15;:24;;;;;;39872:10;:26;;39421:46;;-1:-1:-1;39499:24:0;;39421:46;;39872:26;;;;;;:::i;:::-;;;;;;;;;39850:48;;39936:11;39911:10;39922;39911:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40016:28;;;:15;:28;;;;;;;:41;;;40188:24;;;;;40181:31;40223:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39239:1008;;;39168:1079;:::o;36672:221::-;36757:14;36774:20;36791:2;36774:16;:20::i;:::-;-1:-1:-1;;;;;36805:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36850:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36672:221:0:o;28964:382::-;-1:-1:-1;;;;;29044:16:0;;29036:61;;;;-1:-1:-1;;;29036:61:0;;23102:2:1;29036:61:0;;;23084:21:1;;;23121:18;;;23114:30;23180:34;23160:18;;;23153:62;23232:18;;29036:61:0;22900:356:1;29036:61:0;27051:4;27075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27075:16:0;:30;29108:58;;;;-1:-1:-1;;;29108:58:0;;23463:2:1;29108:58:0;;;23445:21:1;23502:2;23482:18;;;23475:30;23541;23521:18;;;23514:58;23589:18;;29108:58:0;23261:352:1;29108:58:0;29179:45;29208:1;29212:2;29216:7;29179:20;:45::i;:::-;-1:-1:-1;;;;;29237:13:0;;;;;;:9;:13;;;;;:18;;29254:1;;29237:13;:18;;29254:1;;29237:18;:::i;:::-;;;;-1:-1:-1;;29266:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29266:21:0;-1:-1:-1;;;;;29266:21:0;;;;;;;;29305:33;;29266:16;;;29305:33;;29266:16;;29305:33;28964:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:689::-;5183:6;5191;5199;5252:2;5240:9;5231:7;5227:23;5223:32;5220:52;;;5268:1;5265;5258:12;5220:52;5308:9;5295:23;5337:18;5378:2;5370:6;5367:14;5364:34;;;5394:1;5391;5384:12;5364:34;5432:6;5421:9;5417:22;5407:32;;5477:7;5470:4;5466:2;5462:13;5458:27;5448:55;;5499:1;5496;5489:12;5448:55;5539:2;5526:16;5565:2;5557:6;5554:14;5551:34;;;5581:1;5578;5571:12;5551:34;5636:7;5629:4;5619:6;5616:1;5612:14;5608:2;5604:23;5600:34;5597:47;5594:67;;;5657:1;5654;5647:12;5594:67;5688:4;5680:13;;;;-1:-1:-1;5712:6:1;-1:-1:-1;5737:37:1;;5753:20;;;-1:-1:-1;5737:37:1;:::i;:::-;5727:47;;5091:689;;;;;:::o;5785:254::-;5850:6;5858;5911:2;5899:9;5890:7;5886:23;5882:32;5879:52;;;5927:1;5924;5917:12;5879:52;5950:29;5969:9;5950:29;:::i;:::-;5940:39;;5998:35;6029:2;6018:9;6014:18;5998:35;:::i;:::-;5988:45;;5785:254;;;;;:::o;6044:667::-;6139:6;6147;6155;6163;6216:3;6204:9;6195:7;6191:23;6187:33;6184:53;;;6233:1;6230;6223:12;6184:53;6256:29;6275:9;6256:29;:::i;:::-;6246:39;;6304:38;6338:2;6327:9;6323:18;6304:38;:::i;:::-;6294:48;;6389:2;6378:9;6374:18;6361:32;6351:42;;6444:2;6433:9;6429:18;6416:32;6471:18;6463:6;6460:30;6457:50;;;6503:1;6500;6493:12;6457:50;6526:22;;6579:4;6571:13;;6567:27;-1:-1:-1;6557:55:1;;6608:1;6605;6598:12;6557:55;6631:74;6697:7;6692:2;6679:16;6674:2;6670;6666:11;6631:74;:::i;:::-;6621:84;;;6044:667;;;;;;;:::o;6716:254::-;6784:6;6792;6845:2;6833:9;6824:7;6820:23;6816:32;6813:52;;;6861:1;6858;6851:12;6813:52;6897:9;6884:23;6874:33;;6926:38;6960:2;6949:9;6945:18;6926:38;:::i;6975:260::-;7043:6;7051;7104:2;7092:9;7083:7;7079:23;7075:32;7072:52;;;7120:1;7117;7110:12;7072:52;7143:29;7162:9;7143:29;:::i;:::-;7133:39;;7191:38;7225:2;7214:9;7210:18;7191:38;:::i;7240:356::-;7442:2;7424:21;;;7461:18;;;7454:30;7520:34;7515:2;7500:18;;7493:62;7587:2;7572:18;;7240:356::o;7601:380::-;7680:1;7676:12;;;;7723;;;7744:61;;7798:4;7790:6;7786:17;7776:27;;7744:61;7851:2;7843:6;7840:14;7820:18;7817:38;7814:161;;;7897:10;7892:3;7888:20;7885:1;7878:31;7932:4;7929:1;7922:15;7960:4;7957:1;7950:15;7814:161;;7601:380;;;:::o;9580:413::-;9782:2;9764:21;;;9821:2;9801:18;;;9794:30;9860:34;9855:2;9840:18;;9833:62;-1:-1:-1;;;9926:2:1;9911:18;;9904:47;9983:3;9968:19;;9580:413::o;10620:127::-;10681:10;10676:3;10672:20;10669:1;10662:31;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10752:127;10813:10;10808:3;10804:20;10801:1;10794:31;10844:4;10841:1;10834:15;10868:4;10865:1;10858:15;10884:135;10923:3;-1:-1:-1;;10944:17:1;;10941:43;;;10964:18;;:::i;:::-;-1:-1:-1;11011:1:1;11000:13;;10884:135::o;14091:128::-;14131:3;14162:1;14158:6;14155:1;14152:13;14149:39;;;14168:18;;:::i;:::-;-1:-1:-1;14204:9:1;;14091:128::o;16103:168::-;16143:7;16209:1;16205;16201:6;16197:14;16194:1;16191:21;16186:1;16179:9;16172:17;16168:45;16165:71;;;16216:18;;:::i;:::-;-1:-1:-1;16256:9:1;;16103:168::o;16683:127::-;16744:10;16739:3;16735:20;16732:1;16725:31;16775:4;16772:1;16765:15;16799:4;16796:1;16789:15;16815:120;16855:1;16881;16871:35;;16886:18;;:::i;:::-;-1:-1:-1;16920:9:1;;16815:120::o;18187:1527::-;18411:3;18449:6;18443:13;18475:4;18488:51;18532:6;18527:3;18522:2;18514:6;18510:15;18488:51;:::i;:::-;18602:13;;18561:16;;;;18624:55;18602:13;18561:16;18646:15;;;18624:55;:::i;:::-;18768:13;;18701:20;;;18741:1;;18828;18850:18;;;;18903;;;;18930:93;;19008:4;18998:8;18994:19;18982:31;;18930:93;19071:2;19061:8;19058:16;19038:18;19035:40;19032:167;;;-1:-1:-1;;;19098:33:1;;19154:4;19151:1;19144:15;19184:4;19105:3;19172:17;19032:167;19215:18;19242:110;;;;19366:1;19361:328;;;;19208:481;;19242:110;-1:-1:-1;;19277:24:1;;19263:39;;19322:20;;;;-1:-1:-1;19242:110:1;;19361:328;18134:1;18127:14;;;18171:4;18158:18;;19456:1;19470:169;19484:8;19481:1;19478:15;19470:169;;;19566:14;;19551:13;;;19544:37;19609:16;;;;19501:10;;19470:169;;;19474:3;;19670:8;19663:5;19659:20;19652:27;;19208:481;-1:-1:-1;19705:3:1;;18187:1527;-1:-1:-1;;;;;;;;;;;18187:1527:1:o;21354:125::-;21394:4;21422:1;21419;21416:8;21413:34;;;21427:18;;:::i;:::-;-1:-1:-1;21464:9:1;;21354:125::o;21484:414::-;21686:2;21668:21;;;21725:2;21705:18;;;21698:30;21764:34;21759:2;21744:18;;21737:62;-1:-1:-1;;;21830:2:1;21815:18;;21808:48;21888:3;21873:19;;21484:414::o;21903:112::-;21935:1;21961;21951:35;;21966:18;;:::i;:::-;-1:-1:-1;22000:9:1;;21903:112::o;22020:489::-;-1:-1:-1;;;;;22289:15:1;;;22271:34;;22341:15;;22336:2;22321:18;;22314:43;22388:2;22373:18;;22366:34;;;22436:3;22431:2;22416:18;;22409:31;;;22214:4;;22457:46;;22483:19;;22475:6;22457:46;:::i;:::-;22449:54;22020:489;-1:-1:-1;;;;;;22020:489:1:o;22514:249::-;22583:6;22636:2;22624:9;22615:7;22611:23;22607:32;22604:52;;;22652:1;22649;22642:12;22604:52;22684:9;22678:16;22703:30;22727:5;22703:30;:::i;22768:127::-;22829:10;22824:3;22820:20;22817:1;22810:31;22860:4;22857:1;22850:15;22884:4;22881:1;22874:15

Swarm Source

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