ETH Price: $2,267.41 (+2.28%)

Token

KhalifaDAO (KhalifaDAO)
 

Overview

Max Total Supply

81 KhalifaDAO

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KhalifaDAO
0xdd5c448b26a94254ed03775a7f535c7db15dabb8
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:
KhalifaDAO

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-18
*/

// IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// ERC165.sol


pragma solidity ^0.8.0;


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

// IERC721.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// IERC721Metadata.sol


pragma solidity ^0.8.0;


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

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

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

// IERC721Receiver.sol


pragma solidity ^0.8.0;

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



// IERC721Enumerable.sol


pragma solidity ^0.8.0;


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

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


// Context.sol


pragma solidity ^0.8.0;

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

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

// ERC721S.sol

pragma solidity ^0.8.10;


abstract contract ERC721S is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721S.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721S.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721S.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721S.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721S.ownerOf(tokenId), to, tokenId);
    }
	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;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// SafeMath.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// Address.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// ERC721Enum.sol

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721S, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

// ReentrancyGuard.sol


pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// PaymentSplitter.sol


pragma solidity ^0.8.0;


/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

//  Pausable.sol


pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// Strings.sol


pragma solidity ^0.8.0;

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

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

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

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

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

// Ownable.sol


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// KhalifaDAO.sol

pragma solidity ^0.8.10;


contract KhalifaDAO is ERC721Enum, Ownable, Pausable,  ReentrancyGuard {

	using Strings for uint256;
	string public baseURI;
    uint256 private maxSupply = 10000;
	uint256 public cost = 0.02 ether;
    uint256 public maxFree = 250;  
	bool public status = false;
    mapping(address => uint256) public addressMintedBalance;

		
	constructor() ERC721S("KhalifaDAO", "KhalifaDAO"){
	    setBaseURI("");
	}

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

    	function mintfreemax3(uint256 _mintAmount) public payable nonReentrant{
		uint256 a = totalSupply();
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 3, "Cant mint more then maxmint" );
		require(a + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressMintedBalance[msg.sender]++;
			_safeMint(msg.sender, a + i, "");
		}
		delete a;
	}

	function mint(uint256 _mintAmount) public payable nonReentrant{
		uint256 a = totalSupply();
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 20, "Cant mint more then maxmint" );
		require(a + _mintAmount <= maxSupply, "Cant go over supply" );
		require(msg.value >= cost * _mintAmount);
		for (uint256 i = 0; i < _mintAmount; ++i) {
			_safeMint(msg.sender, a + i, "");
		}
		delete a;
	}

	
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	    require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}



	function setmaxFree(uint256 _newMaxFree) public onlyOwner {
	    maxFree = _newMaxFree;
	}
    	function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    maxSupply = _newMaxSupply;
	}
	function setBaseURI(string memory _newBaseURI) public onlyOwner {
	    baseURI = _newBaseURI;
	}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintfreemax3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setmaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261271060085566470de4df82000060095560fa600a55600b805460ff191690553480156200003157600080fd5b50604080518082018252600a808252694b68616c69666144414f60b01b6020808401828152855180870190965292855284015281519192916200007791600091620001aa565b5080516200008d906001906020840190620001aa565b505050620000aa620000a4620000dc60201b60201c565b620000e0565b6005805460ff60a01b191690556001600655604080516020810190915260008152620000d69062000132565b6200028d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a6906007906020840190620001aa565b5050565b828054620001b89062000250565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b600181811c908216806200026557607f821691505b602082108114156200028757634e487b7160e01b600052602260045260246000fd5b50919050565b612216806200029d6000396000f3fe6080604052600436106101f95760003560e01c80635c975abb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd1461057c578063d5034b741461059c578063d897833e146105bc578063e985e9c5146105dc578063f2fde38b1461062557600080fd5b806395d89b4114610514578063a0712d6814610529578063a22cb4651461053c578063b88d4fde1461055c57600080fd5b8063715018a6116100dc578063715018a6146104a15780638462151c146104b65780638da5cb5b146104e35780638ef2db391461050157600080fd5b80635c975abb1461042d5780636352211e1461044c5780636c0360eb1461046c57806370a082311461048157600080fd5b8063228025e81161019057806342842e0e1161015f57806342842e0e1461039757806344a0d68a146103b7578063485a68a3146103d75780634f6ccce7146103ed57806355f804b31461040d57600080fd5b8063228025e81461032f57806323b872dd1461034f5780632f745c591461036f5780633ccfd60b1461038f57600080fd5b806313faede6116101cc57806313faede6146102af57806318160ddd146102d357806318cae269146102e8578063200d2ed21461031557600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611be6565b610645565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610670565b60405161022a9190611c5b565b34801561026157600080fd5b50610275610270366004611c6e565b610702565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611ca3565b61078f565b005b3480156102bb57600080fd5b506102c560095481565b60405190815260200161022a565b3480156102df57600080fd5b506002546102c5565b3480156102f457600080fd5b506102c5610303366004611ccd565b600c6020526000908152604090205481565b34801561032157600080fd5b50600b5461021e9060ff1681565b34801561033b57600080fd5b506102ad61034a366004611c6e565b6108a5565b34801561035b57600080fd5b506102ad61036a366004611ce8565b6108d4565b34801561037b57600080fd5b506102c561038a366004611ca3565b610905565b6102ad6109b4565b3480156103a357600080fd5b506102ad6103b2366004611ce8565b610a36565b3480156103c357600080fd5b506102ad6103d2366004611c6e565b610a51565b3480156103e357600080fd5b506102c5600a5481565b3480156103f957600080fd5b506102c5610408366004611c6e565b610a80565b34801561041957600080fd5b506102ad610428366004611db0565b610add565b34801561043957600080fd5b50600554600160a01b900460ff1661021e565b34801561045857600080fd5b50610275610467366004611c6e565b610b1e565b34801561047857600080fd5b50610248610baa565b34801561048d57600080fd5b506102c561049c366004611ccd565b610c38565b3480156104ad57600080fd5b506102ad610d0a565b3480156104c257600080fd5b506104d66104d1366004611ccd565b610d40565b60405161022a9190611df9565b3480156104ef57600080fd5b506005546001600160a01b0316610275565b6102ad61050f366004611c6e565b610e0a565b34801561052057600080fd5b50610248610fb8565b6102ad610537366004611c6e565b610fc7565b34801561054857600080fd5b506102ad610557366004611e4d565b61114f565b34801561056857600080fd5b506102ad610577366004611e80565b611214565b34801561058857600080fd5b50610248610597366004611c6e565b61124c565b3480156105a857600080fd5b506102ad6105b7366004611c6e565b611309565b3480156105c857600080fd5b506102ad6105d7366004611efc565b611338565b3480156105e857600080fd5b5061021e6105f7366004611f17565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561063157600080fd5b506102ad610640366004611ccd565b611375565b60006001600160e01b0319821663780e9d6360e01b148061066a575061066a8261140d565b92915050565b60606000805461067f90611f41565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611f41565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b600061070d8261145d565b6107735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061079a82610b1e565b9050806001600160a01b0316836001600160a01b031614156108085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076a565b336001600160a01b0382161480610824575061082481336105f7565b6108965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076a565b6108a083836114a7565b505050565b6005546001600160a01b031633146108cf5760405162461bcd60e51b815260040161076a90611f7c565b600855565b6108de3382611515565b6108fa5760405162461bcd60e51b815260040161076a90611fb1565b6108a08383836115ff565b600061091083610c38565b821061092e5760405162461bcd60e51b815260040161076a90612002565b6000805b60025481101561099b576002818154811061094f5761094f612032565b6000918252602090912001546001600160a01b038681169116141561098b578382141561097f57915061066a9050565b6109888261205e565b91505b6109948161205e565b9050610932565b5060405162461bcd60e51b815260040161076a90612002565b6005546001600160a01b031633146109de5760405162461bcd60e51b815260040161076a90611f7c565b604051600090339047908381818185875af1925050503d8060008114610a20576040519150601f19603f3d011682016040523d82523d6000602084013e610a25565b606091505b5050905080610a3357600080fd5b50565b6108a083838360405180602001604052806000815250611214565b6005546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161076a90611f7c565b600955565b6000610a8b60025490565b8210610ad95760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161076a565b5090565b6005546001600160a01b03163314610b075760405162461bcd60e51b815260040161076a90611f7c565b8051610b1a906007906020840190611b40565b5050565b60008060028381548110610b3457610b34612032565b6000918252602090912001546001600160a01b031690508061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076a565b60078054610bb790611f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390611f41565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b505050505081565b60006001600160a01b038216610ca35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076a565b600254600090815b81811015610d015760028181548110610cc657610cc6612032565b6000918252602090912001546001600160a01b0386811691161415610cf157610cee8361205e565b92505b610cfa8161205e565b9050610cab565b50909392505050565b6005546001600160a01b03163314610d345760405162461bcd60e51b815260040161076a90611f7c565b610d3e6000611755565b565b6060610d4b82610c38565b600010610d6a5760405162461bcd60e51b815260040161076a90612002565b6000610d7583610c38565b905060008167ffffffffffffffff811115610d9257610d92611d24565b604051908082528060200260200182016040528015610dbb578160200160208202803683370190505b50905060005b82811015610e0257610dd38582610905565b828281518110610de557610de5612032565b602090810291909101015280610dfa8161205e565b915050610dc1565b509392505050565b60026006541415610e5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076a565b60026006556000610e6d60025490565b905060008211610ead5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161076a565b6003821115610efe5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604482015260640161076a565b600a54610f0b8383612079565b1115610f4f5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b604482015260640161076a565b60005b82811015610fae57336000908152600c60205260408120805491610f758361205e565b90915550610f9e905033610f898385612079565b604051806020016040528060008152506117a7565b610fa78161205e565b9050610f52565b5050600160065550565b60606001805461067f90611f41565b6002600654141561101a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076a565b6002600655600061102a60025490565b90506000821161106a5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161076a565b60148211156110bb5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604482015260640161076a565b6008546110c88383612079565b111561110c5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b604482015260640161076a565b8160095461111a9190612091565b34101561112657600080fd5b60005b82811015610fae5761113f33610f898385612079565b6111488161205e565b9050611129565b6001600160a01b0382163314156111a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076a565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121e3383611515565b61123a5760405162461bcd60e51b815260040161076a90611fb1565b611246848484846117da565b50505050565b60606112578261145d565b6112ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161076a565b60006112b761180d565b905060008151116112d75760405180602001604052806000815250611302565b806112e18461181c565b6040516020016112f29291906120b0565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146113335760405162461bcd60e51b815260040161076a90611f7c565b600a55565b6005546001600160a01b031633146113625760405162461bcd60e51b815260040161076a90611f7c565b600b805460ff1916911515919091179055565b6005546001600160a01b0316331461139f5760405162461bcd60e51b815260040161076a90611f7c565b6001600160a01b0381166114045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076a565b610a3381611755565b60006001600160e01b031982166380ac58cd60e01b148061143e57506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b6002546000908210801561066a575060006001600160a01b03166002838154811061148a5761148a612032565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114dc82610b1e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115208261145d565b6115815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076a565b600061158c83610b1e565b9050806001600160a01b0316846001600160a01b031614806115c75750836001600160a01b03166115bc84610702565b6001600160a01b0316145b806115f757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661161282610b1e565b6001600160a01b03161461167a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076a565b6001600160a01b0382166116dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076a565b6116e76000826114a7565b81600282815481106116fb576116fb612032565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117b1838361191a565b6117be6000848484611a42565b6108a05760405162461bcd60e51b815260040161076a906120df565b6117e58484846115ff565b6117f184848484611a42565b6112465760405162461bcd60e51b815260040161076a906120df565b60606007805461067f90611f41565b6060816118405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561186a57806118548161205e565b91506118639050600a83612147565b9150611844565b60008167ffffffffffffffff81111561188557611885611d24565b6040519080825280601f01601f1916602001820160405280156118af576020820181803683370190505b5090505b84156115f7576118c460018361215b565b91506118d1600a86612172565b6118dc906030612079565b60f81b8183815181106118f1576118f1612032565b60200101906001600160f81b031916908160001a905350611913600a86612147565b94506118b3565b6001600160a01b0382166119705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076a565b6119798161145d565b156119c65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076a565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611b3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a86903390899088908890600401612186565b6020604051808303816000875af1925050508015611ac1575060408051601f3d908101601f19168201909252611abe918101906121c3565b60015b611b1b573d808015611aef576040519150601f19603f3d011682016040523d82523d6000602084013e611af4565b606091505b508051611b135760405162461bcd60e51b815260040161076a906120df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f7565b506001949350505050565b828054611b4c90611f41565b90600052602060002090601f016020900481019282611b6e5760008555611bb4565b82601f10611b8757805160ff1916838001178555611bb4565b82800160010185558215611bb4579182015b82811115611bb4578251825591602001919060010190611b99565b50610ad99291505b80821115610ad95760008155600101611bbc565b6001600160e01b031981168114610a3357600080fd5b600060208284031215611bf857600080fd5b813561130281611bd0565b60005b83811015611c1e578181015183820152602001611c06565b838111156112465750506000910152565b60008151808452611c47816020860160208601611c03565b601f01601f19169290920160200192915050565b6020815260006113026020830184611c2f565b600060208284031215611c8057600080fd5b5035919050565b80356001600160a01b0381168114611c9e57600080fd5b919050565b60008060408385031215611cb657600080fd5b611cbf83611c87565b946020939093013593505050565b600060208284031215611cdf57600080fd5b61130282611c87565b600080600060608486031215611cfd57600080fd5b611d0684611c87565b9250611d1460208501611c87565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d5557611d55611d24565b604051601f8501601f19908116603f01168101908282118183101715611d7d57611d7d611d24565b81604052809350858152868686011115611d9657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dc257600080fd5b813567ffffffffffffffff811115611dd957600080fd5b8201601f81018413611dea57600080fd5b6115f784823560208401611d3a565b6020808252825182820181905260009190848201906040850190845b81811015611e3157835183529284019291840191600101611e15565b50909695505050505050565b80358015158114611c9e57600080fd5b60008060408385031215611e6057600080fd5b611e6983611c87565b9150611e7760208401611e3d565b90509250929050565b60008060008060808587031215611e9657600080fd5b611e9f85611c87565b9350611ead60208601611c87565b925060408501359150606085013567ffffffffffffffff811115611ed057600080fd5b8501601f81018713611ee157600080fd5b611ef087823560208401611d3a565b91505092959194509250565b600060208284031215611f0e57600080fd5b61130282611e3d565b60008060408385031215611f2a57600080fd5b611f3383611c87565b9150611e7760208401611c87565b600181811c90821680611f5557607f821691505b60208210811415611f7657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561207257612072612048565b5060010190565b6000821982111561208c5761208c612048565b500190565b60008160001904831182151516156120ab576120ab612048565b500290565b600083516120c2818460208801611c03565b8351908301906120d6818360208801611c03565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261215657612156612131565b500490565b60008282101561216d5761216d612048565b500390565b60008261218157612181612131565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b990830184611c2f565b9695505050505050565b6000602082840312156121d557600080fd5b815161130281611bd056fea26469706673582212201f68fd79cd14663cd0aa1241c66980646138505302e6856365baa122b69c8b7e64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635c975abb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd1461057c578063d5034b741461059c578063d897833e146105bc578063e985e9c5146105dc578063f2fde38b1461062557600080fd5b806395d89b4114610514578063a0712d6814610529578063a22cb4651461053c578063b88d4fde1461055c57600080fd5b8063715018a6116100dc578063715018a6146104a15780638462151c146104b65780638da5cb5b146104e35780638ef2db391461050157600080fd5b80635c975abb1461042d5780636352211e1461044c5780636c0360eb1461046c57806370a082311461048157600080fd5b8063228025e81161019057806342842e0e1161015f57806342842e0e1461039757806344a0d68a146103b7578063485a68a3146103d75780634f6ccce7146103ed57806355f804b31461040d57600080fd5b8063228025e81461032f57806323b872dd1461034f5780632f745c591461036f5780633ccfd60b1461038f57600080fd5b806313faede6116101cc57806313faede6146102af57806318160ddd146102d357806318cae269146102e8578063200d2ed21461031557600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611be6565b610645565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610670565b60405161022a9190611c5b565b34801561026157600080fd5b50610275610270366004611c6e565b610702565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611ca3565b61078f565b005b3480156102bb57600080fd5b506102c560095481565b60405190815260200161022a565b3480156102df57600080fd5b506002546102c5565b3480156102f457600080fd5b506102c5610303366004611ccd565b600c6020526000908152604090205481565b34801561032157600080fd5b50600b5461021e9060ff1681565b34801561033b57600080fd5b506102ad61034a366004611c6e565b6108a5565b34801561035b57600080fd5b506102ad61036a366004611ce8565b6108d4565b34801561037b57600080fd5b506102c561038a366004611ca3565b610905565b6102ad6109b4565b3480156103a357600080fd5b506102ad6103b2366004611ce8565b610a36565b3480156103c357600080fd5b506102ad6103d2366004611c6e565b610a51565b3480156103e357600080fd5b506102c5600a5481565b3480156103f957600080fd5b506102c5610408366004611c6e565b610a80565b34801561041957600080fd5b506102ad610428366004611db0565b610add565b34801561043957600080fd5b50600554600160a01b900460ff1661021e565b34801561045857600080fd5b50610275610467366004611c6e565b610b1e565b34801561047857600080fd5b50610248610baa565b34801561048d57600080fd5b506102c561049c366004611ccd565b610c38565b3480156104ad57600080fd5b506102ad610d0a565b3480156104c257600080fd5b506104d66104d1366004611ccd565b610d40565b60405161022a9190611df9565b3480156104ef57600080fd5b506005546001600160a01b0316610275565b6102ad61050f366004611c6e565b610e0a565b34801561052057600080fd5b50610248610fb8565b6102ad610537366004611c6e565b610fc7565b34801561054857600080fd5b506102ad610557366004611e4d565b61114f565b34801561056857600080fd5b506102ad610577366004611e80565b611214565b34801561058857600080fd5b50610248610597366004611c6e565b61124c565b3480156105a857600080fd5b506102ad6105b7366004611c6e565b611309565b3480156105c857600080fd5b506102ad6105d7366004611efc565b611338565b3480156105e857600080fd5b5061021e6105f7366004611f17565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561063157600080fd5b506102ad610640366004611ccd565b611375565b60006001600160e01b0319821663780e9d6360e01b148061066a575061066a8261140d565b92915050565b60606000805461067f90611f41565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611f41565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b600061070d8261145d565b6107735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061079a82610b1e565b9050806001600160a01b0316836001600160a01b031614156108085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076a565b336001600160a01b0382161480610824575061082481336105f7565b6108965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076a565b6108a083836114a7565b505050565b6005546001600160a01b031633146108cf5760405162461bcd60e51b815260040161076a90611f7c565b600855565b6108de3382611515565b6108fa5760405162461bcd60e51b815260040161076a90611fb1565b6108a08383836115ff565b600061091083610c38565b821061092e5760405162461bcd60e51b815260040161076a90612002565b6000805b60025481101561099b576002818154811061094f5761094f612032565b6000918252602090912001546001600160a01b038681169116141561098b578382141561097f57915061066a9050565b6109888261205e565b91505b6109948161205e565b9050610932565b5060405162461bcd60e51b815260040161076a90612002565b6005546001600160a01b031633146109de5760405162461bcd60e51b815260040161076a90611f7c565b604051600090339047908381818185875af1925050503d8060008114610a20576040519150601f19603f3d011682016040523d82523d6000602084013e610a25565b606091505b5050905080610a3357600080fd5b50565b6108a083838360405180602001604052806000815250611214565b6005546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161076a90611f7c565b600955565b6000610a8b60025490565b8210610ad95760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161076a565b5090565b6005546001600160a01b03163314610b075760405162461bcd60e51b815260040161076a90611f7c565b8051610b1a906007906020840190611b40565b5050565b60008060028381548110610b3457610b34612032565b6000918252602090912001546001600160a01b031690508061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076a565b60078054610bb790611f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390611f41565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b505050505081565b60006001600160a01b038216610ca35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076a565b600254600090815b81811015610d015760028181548110610cc657610cc6612032565b6000918252602090912001546001600160a01b0386811691161415610cf157610cee8361205e565b92505b610cfa8161205e565b9050610cab565b50909392505050565b6005546001600160a01b03163314610d345760405162461bcd60e51b815260040161076a90611f7c565b610d3e6000611755565b565b6060610d4b82610c38565b600010610d6a5760405162461bcd60e51b815260040161076a90612002565b6000610d7583610c38565b905060008167ffffffffffffffff811115610d9257610d92611d24565b604051908082528060200260200182016040528015610dbb578160200160208202803683370190505b50905060005b82811015610e0257610dd38582610905565b828281518110610de557610de5612032565b602090810291909101015280610dfa8161205e565b915050610dc1565b509392505050565b60026006541415610e5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076a565b60026006556000610e6d60025490565b905060008211610ead5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161076a565b6003821115610efe5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604482015260640161076a565b600a54610f0b8383612079565b1115610f4f5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b604482015260640161076a565b60005b82811015610fae57336000908152600c60205260408120805491610f758361205e565b90915550610f9e905033610f898385612079565b604051806020016040528060008152506117a7565b610fa78161205e565b9050610f52565b5050600160065550565b60606001805461067f90611f41565b6002600654141561101a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076a565b6002600655600061102a60025490565b90506000821161106a5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161076a565b60148211156110bb5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604482015260640161076a565b6008546110c88383612079565b111561110c5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b604482015260640161076a565b8160095461111a9190612091565b34101561112657600080fd5b60005b82811015610fae5761113f33610f898385612079565b6111488161205e565b9050611129565b6001600160a01b0382163314156111a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076a565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121e3383611515565b61123a5760405162461bcd60e51b815260040161076a90611fb1565b611246848484846117da565b50505050565b60606112578261145d565b6112ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161076a565b60006112b761180d565b905060008151116112d75760405180602001604052806000815250611302565b806112e18461181c565b6040516020016112f29291906120b0565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146113335760405162461bcd60e51b815260040161076a90611f7c565b600a55565b6005546001600160a01b031633146113625760405162461bcd60e51b815260040161076a90611f7c565b600b805460ff1916911515919091179055565b6005546001600160a01b0316331461139f5760405162461bcd60e51b815260040161076a90611f7c565b6001600160a01b0381166114045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076a565b610a3381611755565b60006001600160e01b031982166380ac58cd60e01b148061143e57506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b6002546000908210801561066a575060006001600160a01b03166002838154811061148a5761148a612032565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114dc82610b1e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115208261145d565b6115815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076a565b600061158c83610b1e565b9050806001600160a01b0316846001600160a01b031614806115c75750836001600160a01b03166115bc84610702565b6001600160a01b0316145b806115f757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661161282610b1e565b6001600160a01b03161461167a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076a565b6001600160a01b0382166116dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076a565b6116e76000826114a7565b81600282815481106116fb576116fb612032565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117b1838361191a565b6117be6000848484611a42565b6108a05760405162461bcd60e51b815260040161076a906120df565b6117e58484846115ff565b6117f184848484611a42565b6112465760405162461bcd60e51b815260040161076a906120df565b60606007805461067f90611f41565b6060816118405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561186a57806118548161205e565b91506118639050600a83612147565b9150611844565b60008167ffffffffffffffff81111561188557611885611d24565b6040519080825280601f01601f1916602001820160405280156118af576020820181803683370190505b5090505b84156115f7576118c460018361215b565b91506118d1600a86612172565b6118dc906030612079565b60f81b8183815181106118f1576118f1612032565b60200101906001600160f81b031916908160001a905350611913600a86612147565b94506118b3565b6001600160a01b0382166119705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076a565b6119798161145d565b156119c65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076a565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611b3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a86903390899088908890600401612186565b6020604051808303816000875af1925050508015611ac1575060408051601f3d908101601f19168201909252611abe918101906121c3565b60015b611b1b573d808015611aef576040519150601f19603f3d011682016040523d82523d6000602084013e611af4565b606091505b508051611b135760405162461bcd60e51b815260040161076a906120df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f7565b506001949350505050565b828054611b4c90611f41565b90600052602060002090601f016020900481019282611b6e5760008555611bb4565b82601f10611b8757805160ff1916838001178555611bb4565b82800160010185558215611bb4579182015b82811115611bb4578251825591602001919060010190611b99565b50610ad99291505b80821115610ad95760008155600101611bbc565b6001600160e01b031981168114610a3357600080fd5b600060208284031215611bf857600080fd5b813561130281611bd0565b60005b83811015611c1e578181015183820152602001611c06565b838111156112465750506000910152565b60008151808452611c47816020860160208601611c03565b601f01601f19169290920160200192915050565b6020815260006113026020830184611c2f565b600060208284031215611c8057600080fd5b5035919050565b80356001600160a01b0381168114611c9e57600080fd5b919050565b60008060408385031215611cb657600080fd5b611cbf83611c87565b946020939093013593505050565b600060208284031215611cdf57600080fd5b61130282611c87565b600080600060608486031215611cfd57600080fd5b611d0684611c87565b9250611d1460208501611c87565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d5557611d55611d24565b604051601f8501601f19908116603f01168101908282118183101715611d7d57611d7d611d24565b81604052809350858152868686011115611d9657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dc257600080fd5b813567ffffffffffffffff811115611dd957600080fd5b8201601f81018413611dea57600080fd5b6115f784823560208401611d3a565b6020808252825182820181905260009190848201906040850190845b81811015611e3157835183529284019291840191600101611e15565b50909695505050505050565b80358015158114611c9e57600080fd5b60008060408385031215611e6057600080fd5b611e6983611c87565b9150611e7760208401611e3d565b90509250929050565b60008060008060808587031215611e9657600080fd5b611e9f85611c87565b9350611ead60208601611c87565b925060408501359150606085013567ffffffffffffffff811115611ed057600080fd5b8501601f81018713611ee157600080fd5b611ef087823560208401611d3a565b91505092959194509250565b600060208284031215611f0e57600080fd5b61130282611e3d565b60008060408385031215611f2a57600080fd5b611f3383611c87565b9150611e7760208401611c87565b600181811c90821680611f5557607f821691505b60208210811415611f7657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561207257612072612048565b5060010190565b6000821982111561208c5761208c612048565b500190565b60008160001904831182151516156120ab576120ab612048565b500290565b600083516120c2818460208801611c03565b8351908301906120d6818360208801611c03565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261215657612156612131565b500490565b60008282101561216d5761216d612048565b500390565b60008261218157612181612131565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b990830184611c2f565b9695505050505050565b6000602082840312156121d557600080fd5b815161130281611bd056fea26469706673582212201f68fd79cd14663cd0aa1241c66980646138505302e6856365baa122b69c8b7e64736f6c634300080b0033

Deployed Bytecode Sourcemap

47976:2361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32203:225;;;;;;;;;;-1:-1:-1;32203:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32203:225:0;;;;;;;;11321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11955:221::-;;;;;;;;;;-1:-1:-1;11955:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;11955:221:0;1528:203:1;11537:412:0;;;;;;;;;;-1:-1:-1;11537:412:0;;;;;:::i;:::-;;:::i;:::-;;48147:32;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48147:32:0;2173:177:1;33364:110:0;;;;;;;;;;-1:-1:-1;33452:7:0;:14;33364:110;;48253:55;;;;;;;;;;-1:-1:-1;48253:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48220:26;;;;;;;;;;-1:-1:-1;48220:26:0;;;;;;;;49796:100;;;;;;;;;;-1:-1:-1;49796:100:0;;;;;:::i;:::-;;:::i;12653:339::-;;;;;;;;;;-1:-1:-1;12653:339:0;;;;;:::i;:::-;;:::i;32434:500::-;;;;;;;;;;-1:-1:-1;32434:500:0;;;;;:::i;:::-;;:::i;50177:151::-;;;:::i;12998:185::-;;;;;;;;;;-1:-1:-1;12998:185:0;;;;;:::i;:::-;;:::i;50006:80::-;;;;;;;;;;-1:-1:-1;50006:80:0;;;;;:::i;:::-;;:::i;48186:28::-;;;;;;;;;;;;;;;;33480:194;;;;;;;;;;-1:-1:-1;33480:194:0;;;;;:::i;:::-;;:::i;49899:98::-;;;;;;;;;;-1:-1:-1;49899:98:0;;;;;:::i;:::-;;:::i;42468:86::-;;;;;;;;;;-1:-1:-1;42539:7:0;;-1:-1:-1;;;42539:7:0;;;;42468:86;;11076:239;;;;;;;;;;-1:-1:-1;11076:239:0;;;;;:::i;:::-;;:::i;48082:21::-;;;;;;;;;;;;;:::i;10656:414::-;;;;;;;;;;-1:-1:-1;10656:414:0;;;;;:::i;:::-;;:::i;47296:94::-;;;;;;;;;;;;;:::i;32940:418::-;;;;;;;;;;-1:-1:-1;32940:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46645:87::-;;;;;;;;;;-1:-1:-1;46718:6:0;;-1:-1:-1;;;;;46718:6:0;46645:87;;48501:428;;;;;;:::i;:::-;;:::i;11427:104::-;;;;;;;;;;;;;:::i;48934:419::-;;;;;;:::i;:::-;;:::i;12182:295::-;;;;;;;;;;-1:-1:-1;12182:295:0;;;;;:::i;:::-;;:::i;13189:328::-;;;;;;;;;;-1:-1:-1;13189:328:0;;;;;:::i;:::-;;:::i;49361:327::-;;;;;;;;;;-1:-1:-1;49361:327:0;;;;;:::i;:::-;;:::i;49697:92::-;;;;;;;;;;-1:-1:-1;49697:92:0;;;;;:::i;:::-;;:::i;50091:83::-;;;;;;;;;;-1:-1:-1;50091:83:0;;;;;:::i;:::-;;:::i;12483:164::-;;;;;;;;;;-1:-1:-1;12483:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;12604:25:0;;;12580:4;12604:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12483:164;47545:192;;;;;;;;;;-1:-1:-1;47545:192:0;;;;;:::i;:::-;;:::i;32203:225::-;32306:4;-1:-1:-1;;;;;;32330:50:0;;-1:-1:-1;;;32330:50:0;;:90;;;32384:36;32408:11;32384:23;:36::i;:::-;32323:97;32203:225;-1:-1:-1;;32203:225:0:o;11321:100::-;11375:13;11408:5;11401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11321:100;:::o;11955:221::-;12031:7;12059:16;12067:7;12059;:16::i;:::-;12051:73;;;;-1:-1:-1;;;12051:73:0;;6874:2:1;12051:73:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:42;7055:19;;12051:73:0;;;;;;;;;-1:-1:-1;12144:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12144:24:0;;11955:221::o;11537:412::-;11618:13;11634:24;11650:7;11634:15;:24::i;:::-;11618:40;;11683:5;-1:-1:-1;;;;;11677:11:0;:2;-1:-1:-1;;;;;11677:11:0;;;11669:57;;;;-1:-1:-1;;;11669:57:0;;7287:2:1;11669:57:0;;;7269:21:1;7326:2;7306:18;;;7299:30;7365:34;7345:18;;;7338:62;-1:-1:-1;;;7416:18:1;;;7409:31;7457:19;;11669:57:0;7085:397:1;11669:57:0;9696:10;-1:-1:-1;;;;;11761:21:0;;;;:62;;-1:-1:-1;11786:37:0;11803:5;9696:10;12483:164;:::i;11786:37::-;11739:168;;;;-1:-1:-1;;;11739:168:0;;7689:2:1;11739:168:0;;;7671:21:1;7728:2;7708:18;;;7701:30;7767:34;7747:18;;;7740:62;7838:26;7818:18;;;7811:54;7882:19;;11739:168:0;7487:420:1;11739:168:0;11920:21;11929:2;11933:7;11920:8;:21::i;:::-;11607:342;11537:412;;:::o;49796:100::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;49866:9:::1;:25:::0;49796:100::o;12653:339::-;12848:41;9696:10;12881:7;12848:18;:41::i;:::-;12840:103;;;;-1:-1:-1;;;12840:103:0;;;;;;;:::i;:::-;12956:28;12966:4;12972:2;12976:7;12956:9;:28::i;32434:500::-;32523:15;32567:24;32585:5;32567:17;:24::i;:::-;32559:5;:32;32551:67;;;;-1:-1:-1;;;32551:67:0;;;;;;;:::i;:::-;32629:10;32655:6;32650:226;32667:7;:14;32663:18;;32650:226;;;32716:7;32724:1;32716:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32707:19:0;;;32716:10;;32707:19;32703:162;;;32760:5;32751;:14;32747:102;;;32796:1;-1:-1:-1;32789:8:0;;-1:-1:-1;32789:8:0;32747:102;32842:7;;;:::i;:::-;;;32747:102;32683:3;;;:::i;:::-;;;32650:226;;;-1:-1:-1;32886:40:0;;-1:-1:-1;;;32886:40:0;;;;;;;:::i;50177:151::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50245:58:::1;::::0;50227:12:::1;::::0;50253:10:::1;::::0;50277:21:::1;::::0;50227:12;50245:58;50227:12;50245:58;50277:21;50253:10;50245:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50226:77;;;50315:7;50307:16;;;::::0;::::1;;50222:106;50177:151::o:0;12998:185::-;13136:39;13153:4;13159:2;13163:7;13136:39;;;;;;;;;;;;:16;:39::i;50006:80::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50066:4:::1;:15:::0;50006:80::o;33480:194::-;33555:7;33591:24;33452:7;:14;;33364:110;33591:24;33583:5;:32;33575:68;;;;-1:-1:-1;;;33575:68:0;;9858:2:1;33575:68:0;;;9840:21:1;9897:2;9877:18;;;9870:30;9936:25;9916:18;;;9909:53;9979:18;;33575:68:0;9656:347:1;33575:68:0;-1:-1:-1;33661:5:0;33480:194::o;49899:98::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;49971:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49899:98:::0;:::o;11076:239::-;11148:7;11168:13;11184:7;11192;11184:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11184:16:0;;-1:-1:-1;11219:19:0;11211:73;;;;-1:-1:-1;;;11211:73:0;;10210:2:1;11211:73:0;;;10192:21:1;10249:2;10229:18;;;10222:30;10288:34;10268:18;;;10261:62;-1:-1:-1;;;10339:18:1;;;10332:39;10388:19;;11211:73:0;10008:405:1;48082:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10656:414::-;10728:7;-1:-1:-1;;;;;10756:19:0;;10748:74;;;;-1:-1:-1;;;10748:74:0;;10620:2:1;10748:74:0;;;10602:21:1;10659:2;10639:18;;;10632:30;10698:34;10678:18;;;10671:62;-1:-1:-1;;;10749:18:1;;;10742:40;10799:19;;10748:74:0;10418:406:1;10748:74:0;10872:7;:14;10833:10;;;10897:119;10918:6;10914:1;:10;10897:119;;;10957:7;10965:1;10957:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;10948:19:0;;;10957:10;;10948:19;10944:61;;;10984:7;;;:::i;:::-;;;10944:61;10926:3;;;:::i;:::-;;;10897:119;;;-1:-1:-1;11057:5:0;;10656:414;-1:-1:-1;;;10656:414:0:o;47296:94::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;47361:21:::1;47379:1;47361:9;:21::i;:::-;47296:94::o:0;32940:418::-;32999:16;33040:24;33058:5;33040:17;:24::i;:::-;33036:1;:28;33028:63;;;;-1:-1:-1;;;33028:63:0;;;;;;;:::i;:::-;33102:18;33123:16;33133:5;33123:9;:16::i;:::-;33102:37;;33150:25;33192:10;33178:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33178:25:0;;33150:53;;33219:9;33214:111;33238:10;33234:1;:14;33214:111;;;33284:29;33304:5;33311:1;33284:19;:29::i;:::-;33270:8;33279:1;33270:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33250:3;;;;:::i;:::-;;;;33214:111;;;-1:-1:-1;33342:8:0;32940:418;-1:-1:-1;;;32940:418:0:o;48501:428::-;35387:1;35983:7;;:19;;35975:63;;;;-1:-1:-1;;;35975:63:0;;11031:2:1;35975:63:0;;;11013:21:1;11070:2;11050:18;;;11043:30;11109:33;11089:18;;;11082:61;11160:18;;35975:63:0;10829:355:1;35975:63:0;35387:1;36116:7;:18;48576:9:::1;48588:13;33452:7:::0;:14;;33364:110;48588:13:::1;48576:25;;48628:1;48614:11;:15;48606:40;;;::::0;-1:-1:-1;;;48606:40:0;;11391:2:1;48606:40:0::1;::::0;::::1;11373:21:1::0;11430:2;11410:18;;;11403:30;-1:-1:-1;;;11449:18:1;;;11442:41;11500:18;;48606:40:0::1;11189:335:1::0;48606:40:0::1;48674:1;48659:11;:16;;48651:57;;;::::0;-1:-1:-1;;;48651:57:0;;11731:2:1;48651:57:0::1;::::0;::::1;11713:21:1::0;11770:2;11750:18;;;11743:30;11809:29;11789:18;;;11782:57;11856:18;;48651:57:0::1;11529:351:1::0;48651:57:0::1;48740:7;::::0;48721:15:::1;48725:11:::0;48721:1;:15:::1;:::i;:::-;:26;;48713:59;;;::::0;-1:-1:-1;;;48713:59:0;;12220:2:1;48713:59:0::1;::::0;::::1;12202:21:1::0;12259:2;12239:18;;;12232:30;-1:-1:-1;;;12278:18:1;;;12271:49;12337:18;;48713:59:0::1;12018:343:1::0;48713:59:0::1;48782:9;48777:135;48801:11;48797:1;:15;48777:135;;;48855:10;48834:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;48874:32:0::1;::::0;-1:-1:-1;48884:10:0::1;48896:5;48900:1:::0;48896;:5:::1;:::i;:::-;48874:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;48814:3;::::0;::::1;:::i;:::-;;;48777:135;;;-1:-1:-1::0;;35343:1:0;36295:7;:22;-1:-1:-1;48501:428:0:o;11427:104::-;11483:13;11516:7;11509:14;;;;;:::i;48934:419::-;35387:1;35983:7;;:19;;35975:63;;;;-1:-1:-1;;;35975:63:0;;11031:2:1;35975:63:0;;;11013:21:1;11070:2;11050:18;;;11043:30;11109:33;11089:18;;;11082:61;11160:18;;35975:63:0;10829:355:1;35975:63:0;35387:1;36116:7;:18;49001:9:::1;49013:13;33452:7:::0;:14;;33364:110;49013:13:::1;49001:25;;49053:1;49039:11;:15;49031:40;;;::::0;-1:-1:-1;;;49031:40:0;;11391:2:1;49031:40:0::1;::::0;::::1;11373:21:1::0;11430:2;11410:18;;;11403:30;-1:-1:-1;;;11449:18:1;;;11442:41;11500:18;;49031:40:0::1;11189:335:1::0;49031:40:0::1;49099:2;49084:11;:17;;49076:58;;;::::0;-1:-1:-1;;;49076:58:0;;11731:2:1;49076:58:0::1;::::0;::::1;11713:21:1::0;11770:2;11750:18;;;11743:30;11809:29;11789:18;;;11782:57;11856:18;;49076:58:0::1;11529:351:1::0;49076:58:0::1;49166:9;::::0;49147:15:::1;49151:11:::0;49147:1;:15:::1;:::i;:::-;:28;;49139:61;;;::::0;-1:-1:-1;;;49139:61:0;;12220:2:1;49139:61:0::1;::::0;::::1;12202:21:1::0;12259:2;12239:18;;;12232:30;-1:-1:-1;;;12278:18:1;;;12271:49;12337:18;;49139:61:0::1;12018:343:1::0;49139:61:0::1;49233:11;49226:4;;:18;;;;:::i;:::-;49213:9;:31;;49205:40;;;::::0;::::1;;49255:9;49250:86;49274:11;49270:1;:15;49250:86;;;49298:32;49308:10;49320:5;49324:1:::0;49320;:5:::1;:::i;49298:32::-;49287:3;::::0;::::1;:::i;:::-;;;49250:86;;12182:295:::0;-1:-1:-1;;;;;12285:24:0;;9696:10;12285:24;;12277:62;;;;-1:-1:-1;;;12277:62:0;;12741:2:1;12277:62:0;;;12723:21:1;12780:2;12760:18;;;12753:30;12819:27;12799:18;;;12792:55;12864:18;;12277:62:0;12539:349:1;12277:62:0;9696:10;12352:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12352:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12352:53:0;;;;;;;;;;12421:48;;540:41:1;;;12352:42:0;;9696:10;12421:48;;513:18:1;12421:48:0;;;;;;;12182:295;;:::o;13189:328::-;13364:41;9696:10;13397:7;13364:18;:41::i;:::-;13356:103;;;;-1:-1:-1;;;13356:103:0;;;;;;;:::i;:::-;13470:39;13484:4;13490:2;13494:7;13503:5;13470:13;:39::i;:::-;13189:328;;;;:::o;49361:327::-;49434:13;49465:16;49473:7;49465;:16::i;:::-;49457:62;;;;-1:-1:-1;;;49457:62:0;;13095:2:1;49457:62:0;;;13077:21:1;13134:2;13114:18;;;13107:30;13173:34;13153:18;;;13146:62;-1:-1:-1;;;13224:18:1;;;13217:31;13265:19;;49457:62:0;12893:397:1;49457:62:0;49527:28;49558:10;:8;:10::i;:::-;49527:41;;49614:1;49589:14;49583:28;:32;:100;;;;;;;;;;;;;;;;;49642:14;49658:18;:7;:16;:18::i;:::-;49625:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49583:100;49576:107;49361:327;-1:-1:-1;;;49361:327:0:o;49697:92::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;49763:7:::1;:21:::0;49697:92::o;50091:83::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50153:6:::1;:16:::0;;-1:-1:-1;;50153:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50091:83::o;47545:192::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47634:22:0;::::1;47626:73;;;::::0;-1:-1:-1;;;47626:73:0;;13972:2:1;47626:73:0::1;::::0;::::1;13954:21:1::0;14011:2;13991:18;;;13984:30;14050:34;14030:18;;;14023:62;-1:-1:-1;;;14101:18:1;;;14094:36;14147:19;;47626:73:0::1;13770:402:1::0;47626:73:0::1;47710:19;47720:8;47710:9;:19::i;10345:305::-:0;10447:4;-1:-1:-1;;;;;;10484:40:0;;-1:-1:-1;;;10484:40:0;;:105;;-1:-1:-1;;;;;;;10541:48:0;;-1:-1:-1;;;10541:48:0;10484:105;:158;;;-1:-1:-1;;;;;;;;;;1683:40:0;;;10606:36;1574:157;13846:155;13945:7;:14;13911:4;;13935:24;;:58;;;;;13991:1;-1:-1:-1;;;;;13963:30:0;:7;13971;13963:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;13963:16:0;:30;;13928:65;13846:155;-1:-1:-1;;13846:155:0:o;15998:175::-;16073:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16073:29:0;-1:-1:-1;;;;;16073:29:0;;;;;;;;:24;;16127;16073;16127:15;:24::i;:::-;-1:-1:-1;;;;;16118:47:0;;;;;;;;;;;15998:175;;:::o;14004:349::-;14097:4;14122:16;14130:7;14122;:16::i;:::-;14114:73;;;;-1:-1:-1;;;14114:73:0;;14379:2:1;14114:73:0;;;14361:21:1;14418:2;14398:18;;;14391:30;14457:34;14437:18;;;14430:62;-1:-1:-1;;;14508:18:1;;;14501:42;14560:19;;14114:73:0;14177:408:1;14114:73:0;14198:13;14214:24;14230:7;14214:15;:24::i;:::-;14198:40;;14268:5;-1:-1:-1;;;;;14257:16:0;:7;-1:-1:-1;;;;;14257:16:0;;:51;;;;14301:7;-1:-1:-1;;;;;14277:31:0;:20;14289:7;14277:11;:20::i;:::-;-1:-1:-1;;;;;14277:31:0;;14257:51;:87;;;-1:-1:-1;;;;;;12604:25:0;;;12580:4;12604:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14312:32;14249:96;14004:349;-1:-1:-1;;;;14004:349:0:o;15478:517::-;15638:4;-1:-1:-1;;;;;15610:32:0;:24;15626:7;15610:15;:24::i;:::-;-1:-1:-1;;;;;15610:32:0;;15602:86;;;;-1:-1:-1;;;15602:86:0;;14792:2:1;15602:86:0;;;14774:21:1;14831:2;14811:18;;;14804:30;14870:34;14850:18;;;14843:62;-1:-1:-1;;;14921:18:1;;;14914:39;14970:19;;15602:86:0;14590:405:1;15602:86:0;-1:-1:-1;;;;;15707:16:0;;15699:65;;;;-1:-1:-1;;;15699:65:0;;15202:2:1;15699:65:0;;;15184:21:1;15241:2;15221:18;;;15214:30;15280:34;15260:18;;;15253:62;-1:-1:-1;;;15331:18:1;;;15324:34;15375:19;;15699:65:0;15000:400:1;15699:65:0;15881:29;15898:1;15902:7;15881:8;:29::i;:::-;15940:2;15921:7;15929;15921:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;15921:21:0;-1:-1:-1;;;;;15921:21:0;;;;;;15960:27;;15979:7;;15960:27;;;;;;;;;;15921:16;15960:27;15478:517;;;:::o;47745:173::-;47820:6;;;-1:-1:-1;;;;;47837:17:0;;;-1:-1:-1;;;;;;47837:17:0;;;;;;;47870:40;;47820:6;;;47837:17;47820:6;;47870:40;;47801:16;;47870:40;47790:128;47745:173;:::o;14469:321::-;14599:18;14605:2;14609:7;14599:5;:18::i;:::-;14650:54;14681:1;14685:2;14689:7;14698:5;14650:22;:54::i;:::-;14628:154;;;;-1:-1:-1;;;14628:154:0;;;;;;;:::i;13528:315::-;13685:28;13695:4;13701:2;13705:7;13685:9;:28::i;:::-;13732:48;13755:4;13761:2;13765:7;13774:5;13732:22;:48::i;:::-;13724:111;;;;-1:-1:-1;;;13724:111:0;;;;;;;:::i;48399:93::-;48450:13;48480:7;48473:14;;;;;:::i;43927:723::-;43983:13;44204:10;44200:53;;-1:-1:-1;;44231:10:0;;;;;;;;;;;;-1:-1:-1;;;44231:10:0;;;;;43927:723::o;44200:53::-;44278:5;44263:12;44319:78;44326:9;;44319:78;;44352:8;;;;:::i;:::-;;-1:-1:-1;44375:10:0;;-1:-1:-1;44383:2:0;44375:10;;:::i;:::-;;;44319:78;;;44407:19;44439:6;44429:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44429:17:0;;44407:39;;44457:154;44464:10;;44457:154;;44491:11;44501:1;44491:11;;:::i;:::-;;-1:-1:-1;44560:10:0;44568:2;44560:5;:10;:::i;:::-;44547:24;;:2;:24;:::i;:::-;44534:39;;44517:6;44524;44517:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44517:56:0;;;;;;;;-1:-1:-1;44588:11:0;44597:2;44588:11;;:::i;:::-;;;44457:154;;14793:346;-1:-1:-1;;;;;14873:16:0;;14865:61;;;;-1:-1:-1;;;14865:61:0;;16530:2:1;14865:61:0;;;16512:21:1;;;16549:18;;;16542:30;16608:34;16588:18;;;16581:62;16660:18;;14865:61:0;16328:356:1;14865:61:0;14946:16;14954:7;14946;:16::i;:::-;14945:17;14937:58;;;;-1:-1:-1;;;14937:58:0;;16891:2:1;14937:58:0;;;16873:21:1;16930:2;16910:18;;;16903:30;16969;16949:18;;;16942:58;17017:18;;14937:58:0;16689:352:1;14937:58:0;15064:7;:16;;;;;;;-1:-1:-1;15064:16:0;;;;;;;-1:-1:-1;;;;;;15064:16:0;-1:-1:-1;;;;;15064:16:0;;;;;;;;15098:33;;15123:7;;-1:-1:-1;15098:33:0;;-1:-1:-1;;15098:33:0;14793:346;;:::o;16176:799::-;16331:4;-1:-1:-1;;;;;16352:13:0;;25076:20;25124:8;16348:620;;16388:72;;-1:-1:-1;;;16388:72:0;;-1:-1:-1;;;;;16388:36:0;;;;;:72;;9696:10;;16439:4;;16445:7;;16454:5;;16388:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16388:72:0;;;;;;;;-1:-1:-1;;16388:72:0;;;;;;;;;;;;:::i;:::-;;;16384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16630:13:0;;16626:272;;16673:60;;-1:-1:-1;;;16673:60:0;;;;;;;:::i;16626:272::-;16848:6;16842:13;16833:6;16829:2;16825:15;16818:38;16384:529;-1:-1:-1;;;;;;16511:51:0;-1:-1:-1;;;16511:51:0;;-1:-1:-1;16504:58:0;;16348:620;-1:-1:-1;16952:4:0;16176:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:160::-;4806:20;;4862:13;;4855:21;4845:32;;4835:60;;4891:1;4888;4881:12;4906:254;4971:6;4979;5032:2;5020:9;5011:7;5007:23;5003:32;5000:52;;;5048:1;5045;5038:12;5000:52;5071:29;5090:9;5071:29;:::i;:::-;5061:39;;5119:35;5150:2;5139:9;5135:18;5119:35;:::i;:::-;5109:45;;4906:254;;;;;:::o;5165:667::-;5260:6;5268;5276;5284;5337:3;5325:9;5316:7;5312:23;5308:33;5305:53;;;5354:1;5351;5344:12;5305:53;5377:29;5396:9;5377:29;:::i;:::-;5367:39;;5425:38;5459:2;5448:9;5444:18;5425:38;:::i;:::-;5415:48;;5510:2;5499:9;5495:18;5482:32;5472:42;;5565:2;5554:9;5550:18;5537:32;5592:18;5584:6;5581:30;5578:50;;;5624:1;5621;5614:12;5578:50;5647:22;;5700:4;5692:13;;5688:27;-1:-1:-1;5678:55:1;;5729:1;5726;5719:12;5678:55;5752:74;5818:7;5813:2;5800:16;5795:2;5791;5787:11;5752:74;:::i;:::-;5742:84;;;5165:667;;;;;;;:::o;5837:180::-;5893:6;5946:2;5934:9;5925:7;5921:23;5917:32;5914:52;;;5962:1;5959;5952:12;5914:52;5985:26;6001:9;5985:26;:::i;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7912:356::-;8114:2;8096:21;;;8133:18;;;8126:30;8192:34;8187:2;8172:18;;8165:62;8259:2;8244:18;;7912:356::o;8273:413::-;8475:2;8457:21;;;8514:2;8494:18;;;8487:30;8553:34;8548:2;8533:18;;8526:62;-1:-1:-1;;;8619:2:1;8604:18;;8597:47;8676:3;8661:19;;8273:413::o;8691:346::-;8893:2;8875:21;;;8932:2;8912:18;;;8905:30;-1:-1:-1;;;8966:2:1;8951:18;;8944:52;9028:2;9013:18;;8691:346::o;9042:127::-;9103:10;9098:3;9094:20;9091:1;9084:31;9134:4;9131:1;9124:15;9158:4;9155:1;9148:15;9174:127;9235:10;9230:3;9226:20;9223:1;9216:31;9266:4;9263:1;9256:15;9290:4;9287:1;9280:15;9306:135;9345:3;-1:-1:-1;;9366:17:1;;9363:43;;;9386:18;;:::i;:::-;-1:-1:-1;9433:1:1;9422:13;;9306:135::o;11885:128::-;11925:3;11956:1;11952:6;11949:1;11946:13;11943:39;;;11962:18;;:::i;:::-;-1:-1:-1;11998:9:1;;11885:128::o;12366:168::-;12406:7;12472:1;12468;12464:6;12460:14;12457:1;12454:21;12449:1;12442:9;12435:17;12431:45;12428:71;;;12479:18;;:::i;:::-;-1:-1:-1;12519:9:1;;12366:168::o;13295:470::-;13474:3;13512:6;13506:13;13528:53;13574:6;13569:3;13562:4;13554:6;13550:17;13528:53;:::i;:::-;13644:13;;13603:16;;;;13666:57;13644:13;13603:16;13700:4;13688:17;;13666:57;:::i;:::-;13739:20;;13295:470;-1:-1:-1;;;;13295:470:1:o;15405:414::-;15607:2;15589:21;;;15646:2;15626:18;;;15619:30;15685:34;15680:2;15665:18;;15658:62;-1:-1:-1;;;15751:2:1;15736:18;;15729:48;15809:3;15794:19;;15405:414::o;15824:127::-;15885:10;15880:3;15876:20;15873:1;15866:31;15916:4;15913:1;15906:15;15940:4;15937:1;15930:15;15956:120;15996:1;16022;16012:35;;16027:18;;:::i;:::-;-1:-1:-1;16061:9:1;;15956:120::o;16081:125::-;16121:4;16149:1;16146;16143:8;16140:34;;;16154:18;;:::i;:::-;-1:-1:-1;16191:9:1;;16081:125::o;16211:112::-;16243:1;16269;16259:35;;16274:18;;:::i;:::-;-1:-1:-1;16308:9:1;;16211:112::o;17046:489::-;-1:-1:-1;;;;;17315:15:1;;;17297:34;;17367:15;;17362:2;17347:18;;17340:43;17414:2;17399:18;;17392:34;;;17462:3;17457:2;17442:18;;17435:31;;;17240:4;;17483:46;;17509:19;;17501:6;17483:46;:::i;:::-;17475:54;17046:489;-1:-1:-1;;;;;;17046:489:1:o;17540:249::-;17609:6;17662:2;17650:9;17641:7;17637:23;17633:32;17630:52;;;17678:1;17675;17668:12;17630:52;17710:9;17704:16;17729:30;17753:5;17729:30;:::i

Swarm Source

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