ETH Price: $3,106.69 (+1.24%)
Gas: 6 Gwei

Token

ApeNounsWTF (ANT)
 

Overview

Max Total Supply

9,102 ANT

Holders

796

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jiujiteiro10.eth
Balance
4 ANT
0xc8635d35a26d1943c6a6e0ae6aa4c52f15869cc8
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:
ApeNounsWTF

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File: contracts\ERC721A.sol

pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

        _ownerships[startTokenId].addr = to;
        _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

        uint256 updatedIndex = startTokenId;

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

            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
    unchecked {
        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin\contracts\security\ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/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 making 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;
    }
}

// File: contracts\ApeNounsWTF.sol


//////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////█▀▀█ █▀▀█ █▀▀ █▀▀▄ █▀▀█ █░░█ █▀▀▄ █▀▀ █░░░█ ▀▀█▀▀ █▀▀////////////////////////////
/////////////////////////█▄▄█ █░░█ █▀▀ █░░█ █░░█ █░░█ █░░█ ▀▀█ █▄█▄█ ░░█░░ █▀▀////////////////////////////
/////////////////////////▀░░▀ █▀▀▀ ▀▀▀ ▀░░▀ ▀▀▀▀ ░▀▀▀ ▀░░▀ ▀▀▀ ░▀░▀░ ░░▀░░ ▀░░////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////

pragma solidity ^0.8.2;
contract ApeNounsWTF is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string private BASE_URI = '';

    uint256 public PRICE = 0 ether; // Free mint ( ^^)Y

    constructor() ERC721A("ApeNounsWTF", "ANT") {
    }

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

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

    modifier mintCompliance(uint256 _howManyMint) {
        // max 10 mints per txn
        require(_howManyMint > 0 && _howManyMint < 11, "Invalid mint amount!");
        // max supply is 15000
        require(currentIndex + _howManyMint < 15000, "Max supply exceeded!");
        _;
    }

    // for minters
    function mint(uint256 _howManyMint) public payable mintCompliance(_howManyMint) {
        uint256 _totalMintAmount = currentIndex + _howManyMint;
        if(_totalMintAmount >= 9000) {
            PRICE = 0.00123 ether;
        }

        uint256 price = PRICE * _howManyMint;
        require(msg.value >= price, "You have Insufficient funds!");
        
        _safeMint(msg.sender, _howManyMint);
    }

    // official use only - airdrops & giveaways
    function mintOwner(address _to, uint256 _howManyMint) public mintCompliance(_howManyMint) onlyOwner {
        _safeMint(_to, _howManyMint);
    }

    address private constant payoutAdd =
    0x311819c3509D9D59A6d2e29810263C358e8A1773;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAdd), balance);
    }
    
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Non-existent token!");
        string memory baseURI = BASE_URI;
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howManyMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_howManyMint","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160099162000111565b506000600a553480156200002e57600080fd5b50604080518082018252600b81526a20b832a737bab739abaa2360a91b60208083019182528351808501909452600384526210539560ea1b9084015281519192916200007d9160019162000111565b5080516200009390600290602084019062000111565b505050620000b0620000aa620000bb60201b60201c565b620000bf565b6001600855620001f4565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011f90620001b7565b90600052602060002090601f0160209004810192826200014357600085556200018e565b82601f106200015e57805160ff19168380011785556200018e565b828001600101855582156200018e579182015b828111156200018e57825182559160200191906001019062000171565b506200019c929150620001a0565b5090565b5b808211156200019c5760008155600101620001a1565b600281046001821680620001cc57607f821691505b60208210811415620001ee57634e487b7160e01b600052602260045260246000fd5b50919050565b611c9a80620002046000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a0712d681161006f578063a0712d681461033d578063a22cb46514610350578063b88d4fde14610370578063c87b56dd14610390578063e985e9c5146103b0578063f2fde38b146103f957610135565b806370a08231146102bf578063715018a6146102df5780638d859f3e146102f45780638da5cb5b1461030a57806395d89b411461032857610135565b806323b872dd116100fd57806323b872dd1461020a5780633ccfd60b1461022a578063408cbf941461023f57806342842e0e1461025f57806355f804b31461027f5780636352211e1461029f57610135565b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101eb575b600080fd5b34801561014657600080fd5b5061015a610155366004611970565b610419565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5061018461046d565b6040516101669190611aae565b34801561019d57600080fd5b506101b16101ac3660046119ee565b6104ff565b6040516001600160a01b039091168152602001610166565b3480156101d557600080fd5b506101e96101e4366004611947565b61058f565b005b3480156101f757600080fd5b506000545b604051908152602001610166565b34801561021657600080fd5b506101e9610225366004611859565b6106a7565b34801561023657600080fd5b506101e96106b2565b34801561024b57600080fd5b506101e961025a366004611947565b610739565b34801561026b57600080fd5b506101e961027a366004611859565b6107f4565b34801561028b57600080fd5b506101e961029a3660046119a8565b61080f565b3480156102ab57600080fd5b506101b16102ba3660046119ee565b61082e565b3480156102cb57600080fd5b506101fc6102da366004611806565b610840565b3480156102eb57600080fd5b506101e96108d1565b34801561030057600080fd5b506101fc600a5481565b34801561031657600080fd5b506007546001600160a01b03166101b1565b34801561033457600080fd5b506101846108e5565b6101e961034b3660046119ee565b6108f4565b34801561035c57600080fd5b506101e961036b36600461190d565b610a36565b34801561037c57600080fd5b506101e961038b366004611894565b610b08565b34801561039c57600080fd5b506101846103ab3660046119ee565b610b3b565b3480156103bc57600080fd5b5061015a6103cb366004611827565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561040557600080fd5b506101e9610414366004611806565b610c4b565b60006001600160e01b031982166380ac58cd60e01b148061044a57506001600160e01b03198216635b5e139f60e01b145b8061046557506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606001805461047c90611ba2565b80601f01602080910402602001604051908101604052809291908181526020018280546104a890611ba2565b80156104f55780601f106104ca576101008083540402835291602001916104f5565b820191906000526020600020905b8154815290600101906020018083116104d857829003601f168201915b5050505050905090565b600061050c826000541190565b6105735760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061059a8261082e565b9050806001600160a01b0316836001600160a01b031614156106095760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161056a565b336001600160a01b0382161480610625575061062581336103cb565b6106975760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161056a565b6106a2838383610cc4565b505050565b6106a2838383610d20565b6106ba611024565b6002600854141561070d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056a565b60026008554761073173311819c3509d9d59a6d2e29810263c358e8a17738261107e565b506001600855565b8060008111801561074a5750600b81105b61078d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161056a565b613a988160005461079e9190611b14565b106107e25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161056a565b6107ea611024565b6106a28383611197565b6106a283838360405180602001604052806000815250610b08565b610817611024565b805161082a9060099060208401906116e0565b5050565b6000610839826111b1565b5192915050565b60006001600160a01b0382166108ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161056a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6108d9611024565b6108e3600061128a565b565b60606002805461047c90611ba2565b806000811180156109055750600b81105b6109485760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161056a565b613a98816000546109599190611b14565b1061099d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161056a565b6000826000546109ad9190611b14565b905061232881106109c45766045eadb112e000600a555b600083600a546109d49190611b40565b905080341015610a265760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520496e73756666696369656e742066756e64732100000000604482015260640161056a565b610a303385611197565b50505050565b6001600160a01b038216331415610a8f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161056a565b3360008181526006602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610afc911515815260200190565b60405180910390a35050565b610b13848484610d20565b610b1f848484846112dc565b610a305760405162461bcd60e51b815260040161056a90611ac1565b6060610b48826000541190565b610b8a5760405162461bcd60e51b81526020600482015260136024820152724e6f6e2d6578697374656e7420746f6b656e2160681b604482015260640161056a565b600060098054610b9990611ba2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590611ba2565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905080610c23846113ea565b604051602001610c34929190611a32565b604051602081830303815290604052915050919050565b610c53611024565b6001600160a01b038116610cb85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b610cc18161128a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d2b826111b1565b80519091506000906001600160a01b0316336001600160a01b03161480610d62575033610d57846104ff565b6001600160a01b0316145b80610d7457508151610d7490336103cb565b905080610dde5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161056a565b846001600160a01b031682600001516001600160a01b031614610e525760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161056a565b6001600160a01b038416610eb65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161056a565b610ec66000848460000151610cc4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116610fda57610f7c816000541190565b15610fda578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b031633146108e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056a565b804710156110ce5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161056a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461111b576040519150601f19603f3d011682016040523d82523d6000602084013e611120565b606091505b50509050806106a25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161056a565b61082a828260405180602001604052806000815250611505565b60408051808201909152600080825260208201526111d0826000541190565b61122f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161056a565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112805791506104689050565b5060001901611231565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156113de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611320903390899088908890600401611a71565b602060405180830381600087803b15801561133a57600080fd5b505af192505050801561136a575060408051601f3d908101601f191682019092526113679181019061198c565b60015b6113c4573d808015611398576040519150601f19603f3d011682016040523d82523d6000602084013e61139d565b606091505b5080516113bc5760405162461bcd60e51b815260040161056a90611ac1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113e2565b5060015b949350505050565b60608161140f57506040805180820190915260018152600360fc1b6020820152610468565b8160005b8115611439578061142381611bdd565b91506114329050600a83611b2c565b9150611413565b60008167ffffffffffffffff81111561146257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561148c576020820181803683370190505b5090505b84156113e2576114a1600183611b5f565b91506114ae600a86611bf8565b6114b9906030611b14565b60f81b8183815181106114dc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114fe600a86611b2c565b9450611490565b6106a283838360016000546001600160a01b0385166115705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161056a565b836115ce5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161056a565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156116d75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156116cb576116af60008884886112dc565b6116cb5760405162461bcd60e51b815260040161056a90611ac1565b6001918201910161165c565b5060005561101d565b8280546116ec90611ba2565b90600052602060002090601f01602090048101928261170e5760008555611754565b82601f1061172757805160ff1916838001178555611754565b82800160010185558215611754579182015b82811115611754578251825591602001919060010190611739565b50611760929150611764565b5090565b5b808211156117605760008155600101611765565b600067ffffffffffffffff8084111561179457611794611c38565b604051601f8501601f19908116603f011681019082821181831017156117bc576117bc611c38565b816040528093508581528686860111156117d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461046857600080fd5b600060208284031215611817578081fd5b611820826117ef565b9392505050565b60008060408385031215611839578081fd5b611842836117ef565b9150611850602084016117ef565b90509250929050565b60008060006060848603121561186d578081fd5b611876846117ef565b9250611884602085016117ef565b9150604084013590509250925092565b600080600080608085870312156118a9578081fd5b6118b2856117ef565b93506118c0602086016117ef565b925060408501359150606085013567ffffffffffffffff8111156118e2578182fd5b8501601f810187136118f2578182fd5b61190187823560208401611779565b91505092959194509250565b6000806040838503121561191f578182fd5b611928836117ef565b91506020830135801515811461193c578182fd5b809150509250929050565b60008060408385031215611959578182fd5b611962836117ef565b946020939093013593505050565b600060208284031215611981578081fd5b813561182081611c4e565b60006020828403121561199d578081fd5b815161182081611c4e565b6000602082840312156119b9578081fd5b813567ffffffffffffffff8111156119cf578182fd5b8201601f810184136119df578182fd5b6113e284823560208401611779565b6000602082840312156119ff578081fd5b5035919050565b60008151808452611a1e816020860160208601611b76565b601f01601f19169290920160200192915050565b60008351611a44818460208801611b76565b835190830190611a58818360208801611b76565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611aa490830184611a06565b9695505050505050565b6000602082526118206020830184611a06565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611b2757611b27611c0c565b500190565b600082611b3b57611b3b611c22565b500490565b6000816000190483118215151615611b5a57611b5a611c0c565b500290565b600082821015611b7157611b71611c0c565b500390565b60005b83811015611b91578181015183820152602001611b79565b83811115610a305750506000910152565b600281046001821680611bb657607f821691505b60208210811415611bd757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bf157611bf1611c0c565b5060010190565b600082611c0757611c07611c22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cc157600080fdfea264697066735822122015c7e393fe65d37dc03ca87e33e02c38f400864e5fca4ffe66208deea6fc994164736f6c63430008020033

Deployed Bytecode

0x6080604052600436106101355760003560e01c806370a08231116100ab578063a0712d681161006f578063a0712d681461033d578063a22cb46514610350578063b88d4fde14610370578063c87b56dd14610390578063e985e9c5146103b0578063f2fde38b146103f957610135565b806370a08231146102bf578063715018a6146102df5780638d859f3e146102f45780638da5cb5b1461030a57806395d89b411461032857610135565b806323b872dd116100fd57806323b872dd1461020a5780633ccfd60b1461022a578063408cbf941461023f57806342842e0e1461025f57806355f804b31461027f5780636352211e1461029f57610135565b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101eb575b600080fd5b34801561014657600080fd5b5061015a610155366004611970565b610419565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5061018461046d565b6040516101669190611aae565b34801561019d57600080fd5b506101b16101ac3660046119ee565b6104ff565b6040516001600160a01b039091168152602001610166565b3480156101d557600080fd5b506101e96101e4366004611947565b61058f565b005b3480156101f757600080fd5b506000545b604051908152602001610166565b34801561021657600080fd5b506101e9610225366004611859565b6106a7565b34801561023657600080fd5b506101e96106b2565b34801561024b57600080fd5b506101e961025a366004611947565b610739565b34801561026b57600080fd5b506101e961027a366004611859565b6107f4565b34801561028b57600080fd5b506101e961029a3660046119a8565b61080f565b3480156102ab57600080fd5b506101b16102ba3660046119ee565b61082e565b3480156102cb57600080fd5b506101fc6102da366004611806565b610840565b3480156102eb57600080fd5b506101e96108d1565b34801561030057600080fd5b506101fc600a5481565b34801561031657600080fd5b506007546001600160a01b03166101b1565b34801561033457600080fd5b506101846108e5565b6101e961034b3660046119ee565b6108f4565b34801561035c57600080fd5b506101e961036b36600461190d565b610a36565b34801561037c57600080fd5b506101e961038b366004611894565b610b08565b34801561039c57600080fd5b506101846103ab3660046119ee565b610b3b565b3480156103bc57600080fd5b5061015a6103cb366004611827565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561040557600080fd5b506101e9610414366004611806565b610c4b565b60006001600160e01b031982166380ac58cd60e01b148061044a57506001600160e01b03198216635b5e139f60e01b145b8061046557506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606001805461047c90611ba2565b80601f01602080910402602001604051908101604052809291908181526020018280546104a890611ba2565b80156104f55780601f106104ca576101008083540402835291602001916104f5565b820191906000526020600020905b8154815290600101906020018083116104d857829003601f168201915b5050505050905090565b600061050c826000541190565b6105735760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061059a8261082e565b9050806001600160a01b0316836001600160a01b031614156106095760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161056a565b336001600160a01b0382161480610625575061062581336103cb565b6106975760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161056a565b6106a2838383610cc4565b505050565b6106a2838383610d20565b6106ba611024565b6002600854141561070d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056a565b60026008554761073173311819c3509d9d59a6d2e29810263c358e8a17738261107e565b506001600855565b8060008111801561074a5750600b81105b61078d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161056a565b613a988160005461079e9190611b14565b106107e25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161056a565b6107ea611024565b6106a28383611197565b6106a283838360405180602001604052806000815250610b08565b610817611024565b805161082a9060099060208401906116e0565b5050565b6000610839826111b1565b5192915050565b60006001600160a01b0382166108ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161056a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6108d9611024565b6108e3600061128a565b565b60606002805461047c90611ba2565b806000811180156109055750600b81105b6109485760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161056a565b613a98816000546109599190611b14565b1061099d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161056a565b6000826000546109ad9190611b14565b905061232881106109c45766045eadb112e000600a555b600083600a546109d49190611b40565b905080341015610a265760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520496e73756666696369656e742066756e64732100000000604482015260640161056a565b610a303385611197565b50505050565b6001600160a01b038216331415610a8f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161056a565b3360008181526006602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610afc911515815260200190565b60405180910390a35050565b610b13848484610d20565b610b1f848484846112dc565b610a305760405162461bcd60e51b815260040161056a90611ac1565b6060610b48826000541190565b610b8a5760405162461bcd60e51b81526020600482015260136024820152724e6f6e2d6578697374656e7420746f6b656e2160681b604482015260640161056a565b600060098054610b9990611ba2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590611ba2565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905080610c23846113ea565b604051602001610c34929190611a32565b604051602081830303815290604052915050919050565b610c53611024565b6001600160a01b038116610cb85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b610cc18161128a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d2b826111b1565b80519091506000906001600160a01b0316336001600160a01b03161480610d62575033610d57846104ff565b6001600160a01b0316145b80610d7457508151610d7490336103cb565b905080610dde5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161056a565b846001600160a01b031682600001516001600160a01b031614610e525760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161056a565b6001600160a01b038416610eb65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161056a565b610ec66000848460000151610cc4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116610fda57610f7c816000541190565b15610fda578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b031633146108e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056a565b804710156110ce5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161056a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461111b576040519150601f19603f3d011682016040523d82523d6000602084013e611120565b606091505b50509050806106a25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161056a565b61082a828260405180602001604052806000815250611505565b60408051808201909152600080825260208201526111d0826000541190565b61122f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161056a565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112805791506104689050565b5060001901611231565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156113de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611320903390899088908890600401611a71565b602060405180830381600087803b15801561133a57600080fd5b505af192505050801561136a575060408051601f3d908101601f191682019092526113679181019061198c565b60015b6113c4573d808015611398576040519150601f19603f3d011682016040523d82523d6000602084013e61139d565b606091505b5080516113bc5760405162461bcd60e51b815260040161056a90611ac1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113e2565b5060015b949350505050565b60608161140f57506040805180820190915260018152600360fc1b6020820152610468565b8160005b8115611439578061142381611bdd565b91506114329050600a83611b2c565b9150611413565b60008167ffffffffffffffff81111561146257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561148c576020820181803683370190505b5090505b84156113e2576114a1600183611b5f565b91506114ae600a86611bf8565b6114b9906030611b14565b60f81b8183815181106114dc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114fe600a86611b2c565b9450611490565b6106a283838360016000546001600160a01b0385166115705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161056a565b836115ce5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161056a565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156116d75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156116cb576116af60008884886112dc565b6116cb5760405162461bcd60e51b815260040161056a90611ac1565b6001918201910161165c565b5060005561101d565b8280546116ec90611ba2565b90600052602060002090601f01602090048101928261170e5760008555611754565b82601f1061172757805160ff1916838001178555611754565b82800160010185558215611754579182015b82811115611754578251825591602001919060010190611739565b50611760929150611764565b5090565b5b808211156117605760008155600101611765565b600067ffffffffffffffff8084111561179457611794611c38565b604051601f8501601f19908116603f011681019082821181831017156117bc576117bc611c38565b816040528093508581528686860111156117d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461046857600080fd5b600060208284031215611817578081fd5b611820826117ef565b9392505050565b60008060408385031215611839578081fd5b611842836117ef565b9150611850602084016117ef565b90509250929050565b60008060006060848603121561186d578081fd5b611876846117ef565b9250611884602085016117ef565b9150604084013590509250925092565b600080600080608085870312156118a9578081fd5b6118b2856117ef565b93506118c0602086016117ef565b925060408501359150606085013567ffffffffffffffff8111156118e2578182fd5b8501601f810187136118f2578182fd5b61190187823560208401611779565b91505092959194509250565b6000806040838503121561191f578182fd5b611928836117ef565b91506020830135801515811461193c578182fd5b809150509250929050565b60008060408385031215611959578182fd5b611962836117ef565b946020939093013593505050565b600060208284031215611981578081fd5b813561182081611c4e565b60006020828403121561199d578081fd5b815161182081611c4e565b6000602082840312156119b9578081fd5b813567ffffffffffffffff8111156119cf578182fd5b8201601f810184136119df578182fd5b6113e284823560208401611779565b6000602082840312156119ff578081fd5b5035919050565b60008151808452611a1e816020860160208601611b76565b601f01601f19169290920160200192915050565b60008351611a44818460208801611b76565b835190830190611a58818360208801611b76565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611aa490830184611a06565b9695505050505050565b6000602082526118206020830184611a06565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611b2757611b27611c0c565b500190565b600082611b3b57611b3b611c22565b500490565b6000816000190483118215151615611b5a57611b5a611c0c565b500290565b600082821015611b7157611b71611c0c565b500390565b60005b83811015611b91578181015183820152602001611b79565b83811115610a305750506000910152565b600281046001821680611bb657607f821691505b60208210811415611bd757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bf157611bf1611c0c565b5060010190565b600082611c0757611c07611c22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cc157600080fdfea264697066735822122015c7e393fe65d37dc03ca87e33e02c38f400864e5fca4ffe66208deea6fc994164736f6c63430008020033

Deployed Bytecode Sourcemap

41676:2040:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22481:293;;;;;;;;;;-1:-1:-1;22481:293:0;;;;;:::i;:::-;;:::i;:::-;;;6173:14:1;;6166:22;6148:41;;6136:2;6121:18;22481:293:0;;;;;;;;24256:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25818:214::-;;;;;;;;;;-1:-1:-1;25818:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5471:32:1;;;5453:51;;5441:2;5426:18;25818:214:0;5408:102:1;25339:413:0;;;;;;;;;;-1:-1:-1;25339:413:0;;;;;:::i;:::-;;:::i;:::-;;22318:91;;;;;;;;;;-1:-1:-1;22362:7:0;22389:12;22318:91;;;15186:25:1;;;15174:2;15159:18;22318:91:0;15141:76:1;26694:162:0;;;;;;;;;;-1:-1:-1;26694:162:0;;;;;:::i;:::-;;:::i;43208:165::-;;;;;;;;;;;;;:::i;42960:147::-;;;;;;;;;;-1:-1:-1;42960:147:0;;;;;:::i;:::-;;:::i;26927:177::-;;;;;;;;;;-1:-1:-1;26927:177:0;;;;;:::i;:::-;;:::i;42048:113::-;;;;;;;;;;-1:-1:-1;42048:113:0;;;;;:::i;:::-;;:::i;24065:124::-;;;;;;;;;;-1:-1:-1;24065:124:0;;;;;:::i;:::-;;:::i;22838:221::-;;;;;;;;;;-1:-1:-1;22838:221:0;;;;;:::i;:::-;;:::i;37235:103::-;;;;;;;;;;;;;:::i;41812:30::-;;;;;;;;;;;;;;;;36587:87;;;;;;;;;;-1:-1:-1;36660:6:0;;-1:-1:-1;;;;;36660:6:0;36587:87;;24425:104;;;;;;;;;;;;;:::i;42488:415::-;;;;;;:::i;:::-;;:::i;26104:288::-;;;;;;;;;;-1:-1:-1;26104:288:0;;;;;:::i;:::-;;:::i;27175:355::-;;;;;;;;;;-1:-1:-1;27175:355:0;;;;;:::i;:::-;;:::i;43385:328::-;;;;;;;;;;-1:-1:-1;43385:328:0;;;;;:::i;:::-;;:::i;26463:164::-;;;;;;;;;;-1:-1:-1;26463:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26584:25:0;;;26560:4;26584:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26463:164;37493:201;;;;;;;;;;-1:-1:-1;37493:201:0;;;;;:::i;:::-;;:::i;22481:293::-;22583:4;-1:-1:-1;;;;;;22616:40:0;;-1:-1:-1;;;22616:40:0;;:101;;-1:-1:-1;;;;;;;22669:48:0;;-1:-1:-1;;;22669:48:0;22616:101;:150;;;-1:-1:-1;;;;;;;;;;20598:40:0;;;22730:36;22600:166;;22481:293;;;;:::o;24256:100::-;24310:13;24343:5;24336:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24256:100;:::o;25818:214::-;25886:7;25914:16;25922:7;27842:4;27876:12;-1:-1:-1;27866:22:0;27785:111;25914:16;25906:74;;;;-1:-1:-1;;;25906:74:0;;14828:2:1;25906:74:0;;;14810:21:1;14867:2;14847:18;;;14840:30;14906:34;14886:18;;;14879:62;-1:-1:-1;;;14957:18:1;;;14950:43;15010:19;;25906:74:0;;;;;;;;;-1:-1:-1;26000:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26000:24:0;;25818:214::o;25339:413::-;25412:13;25428:24;25444:7;25428:15;:24::i;:::-;25412:40;;25477:5;-1:-1:-1;;;;;25471:11:0;:2;-1:-1:-1;;;;;25471:11:0;;;25463:58;;;;-1:-1:-1;;;25463:58:0;;12069:2:1;25463:58:0;;;12051:21:1;12108:2;12088:18;;;12081:30;12147:34;12127:18;;;12120:62;-1:-1:-1;;;12198:18:1;;;12191:32;12240:19;;25463:58:0;12041:224:1;25463:58:0;16997:10;-1:-1:-1;;;;;25556:21:0;;;;:62;;-1:-1:-1;25581:37:0;25598:5;16997:10;25605:12;16917:98;25581:37;25534:169;;;;-1:-1:-1;;;25534:169:0;;9341:2:1;25534:169:0;;;9323:21:1;9380:2;9360:18;;;9353:30;9419:34;9399:18;;;9392:62;9490:27;9470:18;;;9463:55;9535:19;;25534:169:0;9313:247:1;25534:169:0;25716:28;25725:2;25729:7;25738:5;25716:8;:28::i;:::-;25339:413;;;:::o;26694:162::-;26820:28;26830:4;26836:2;26840:7;26820:9;:28::i;43208:165::-;36473:13;:11;:13::i;:::-;39864:1:::1;40462:7;;:19;;40454:63;;;::::0;-1:-1:-1;;;40454:63:0;;14052:2:1;40454:63:0::1;::::0;::::1;14034:21:1::0;14091:2;14071:18;;;14064:30;14130:33;14110:18;;;14103:61;14181:18;;40454:63:0::1;14024:181:1::0;40454:63:0::1;39864:1;40595:7;:18:::0;43287:21:::2;43319:46;43157:42;43287:21:::0;43319:17:::2;:46::i;:::-;-1:-1:-1::0;39820:1:0::1;40774:7;:22:::0;43208:165::o;42960:147::-;43036:12;42282:1;42267:12;:16;:37;;;;;42302:2;42287:12;:17;42267:37;42259:70;;;;-1:-1:-1;;;42259:70:0;;7444:2:1;42259:70:0;;;7426:21:1;7483:2;7463:18;;;7456:30;-1:-1:-1;;;7502:18:1;;;7495:50;7562:18;;42259:70:0;7416:170:1;42259:70:0;42410:5;42395:12;42380;;:27;;;;:::i;:::-;:35;42372:68;;;;-1:-1:-1;;;42372:68:0;;12472:2:1;42372:68:0;;;12454:21:1;12511:2;12491:18;;;12484:30;-1:-1:-1;;;12530:18:1;;;12523:50;12590:18;;42372:68:0;12444:170:1;42372:68:0;36473:13:::1;:11;:13::i;:::-;43071:28:::2;43081:3;43086:12;43071:9;:28::i;26927:177::-:0;27057:39;27074:4;27080:2;27084:7;27057:39;;;;;;;;;;;;:16;:39::i;42048:113::-;36473:13;:11;:13::i;:::-;42128:25;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42048:113:::0;:::o;24065:124::-;24129:7;24156:20;24168:7;24156:11;:20::i;:::-;:25;;24065:124;-1:-1:-1;;24065:124:0:o;22838:221::-;22902:7;-1:-1:-1;;;;;22930:19:0;;22922:75;;;;-1:-1:-1;;;22922:75:0;;9767:2:1;22922:75:0;;;9749:21:1;9806:2;9786:18;;;9779:30;9845:34;9825:18;;;9818:62;-1:-1:-1;;;9896:18:1;;;9889:41;9947:19;;22922:75:0;9739:233:1;22922:75:0;-1:-1:-1;;;;;;23023:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23023:27:0;;22838:221::o;37235:103::-;36473:13;:11;:13::i;:::-;37300:30:::1;37327:1;37300:18;:30::i;:::-;37235:103::o:0;24425:104::-;24481:13;24514:7;24507:14;;;;;:::i;42488:415::-;42554:12;42282:1;42267:12;:16;:37;;;;;42302:2;42287:12;:17;42267:37;42259:70;;;;-1:-1:-1;;;42259:70:0;;7444:2:1;42259:70:0;;;7426:21:1;7483:2;7463:18;;;7456:30;-1:-1:-1;;;7502:18:1;;;7495:50;7562:18;;42259:70:0;7416:170:1;42259:70:0;42410:5;42395:12;42380;;:27;;;;:::i;:::-;:35;42372:68;;;;-1:-1:-1;;;42372:68:0;;12472:2:1;42372:68:0;;;12454:21:1;12511:2;12491:18;;;12484:30;-1:-1:-1;;;12530:18:1;;;12523:50;12590:18;;42372:68:0;12444:170:1;42372:68:0;42579:24:::1;42621:12;42606;;:27;;;;:::i;:::-;42579:54;;42667:4;42647:16;:24;42644:77;;42696:13;42688:5;:21:::0;42644:77:::1;42733:13;42757:12;42749:5;;:20;;;;:::i;:::-;42733:36;;42801:5;42788:9;:18;;42780:59;;;::::0;-1:-1:-1;;;42780:59:0;;8199:2:1;42780:59:0::1;::::0;::::1;8181:21:1::0;8238:2;8218:18;;;8211:30;8277;8257:18;;;8250:58;8325:18;;42780:59:0::1;8171:178:1::0;42780:59:0::1;42860:35;42870:10;42882:12;42860:9;:35::i;:::-;42451:1;;42488:415:::0;;:::o;26104:288::-;-1:-1:-1;;;;;26199:24:0;;16997:10;26199:24;;26191:63;;;;-1:-1:-1;;;26191:63:0;;10947:2:1;26191:63:0;;;10929:21:1;10986:2;10966:18;;;10959:30;11025:28;11005:18;;;10998:56;11071:18;;26191:63:0;10919:176:1;26191:63:0;16997:10;26267:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26267:42:0;;;;;;;;;;:53;;-1:-1:-1;;26267:53:0;;;;;;;:42;-1:-1:-1;;;;;26336:48:0;;26375:8;26336:48;;;;6173:14:1;6166:22;6148:41;;6136:2;6121:18;;6103:92;26336:48:0;;;;;;;;26104:288;;:::o;27175:355::-;27334:28;27344:4;27350:2;27354:7;27334:9;:28::i;:::-;27395:48;27418:4;27424:2;27428:7;27437:5;27395:22;:48::i;:::-;27373:149;;;;-1:-1:-1;;;27373:149:0;;;;;;;:::i;43385:328::-;43486:13;43525:16;43533:7;27842:4;27876:12;-1:-1:-1;27866:22:0;27785:111;43525:16;43517:48;;;;-1:-1:-1;;;43517:48:0;;11721:2:1;43517:48:0;;;11703:21:1;11760:2;11740:18;;;11733:30;-1:-1:-1;;;11779:18:1;;;11772:49;11838:18;;43517:48:0;11693:169:1;43517:48:0;43576:21;43600:8;43576:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43650:7;43659:25;43676:7;43659:16;:25::i;:::-;43633:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43619:76;;;43385:328;;;:::o;37493:201::-;36473:13;:11;:13::i;:::-;-1:-1:-1;;;;;37582:22:0;::::1;37574:73;;;::::0;-1:-1:-1;;;37574:73:0;;6626:2:1;37574:73:0::1;::::0;::::1;6608:21:1::0;6665:2;6645:18;;;6638:30;6704:34;6684:18;;;6677:62;-1:-1:-1;;;6755:18:1;;;6748:36;6801:19;;37574:73:0::1;6598:228:1::0;37574:73:0::1;37658:28;37677:8;37658:18;:28::i;:::-;37493:201:::0;:::o;32565:196::-;32680:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32680:29:0;-1:-1:-1;;;;;32680:29:0;;;;;;;;;32725:28;;32680:24;;32725:28;;;;;;;32565:196;;;:::o;30513:1934::-;30628:35;30666:20;30678:7;30666:11;:20::i;:::-;30741:18;;30628:58;;-1:-1:-1;30699:22:0;;-1:-1:-1;;;;;30725:34:0;16997:10;-1:-1:-1;;;;;30725:34:0;;:83;;;-1:-1:-1;16997:10:0;30772:20;30784:7;30772:11;:20::i;:::-;-1:-1:-1;;;;;30772:36:0;;30725:83;:146;;;-1:-1:-1;30838:18:0;;30821:50;;16997:10;30858:12;16917:98;30821:50;30699:173;;30893:17;30885:80;;;;-1:-1:-1;;;30885:80:0;;11302:2:1;30885:80:0;;;11284:21:1;11341:2;11321:18;;;11314:30;11380:34;11360:18;;;11353:62;-1:-1:-1;;;11431:18:1;;;11424:48;11489:19;;30885:80:0;11274:240:1;30885:80:0;31008:4;-1:-1:-1;;;;;30986:26:0;:13;:18;;;-1:-1:-1;;;;;30986:26:0;;30978:77;;;;-1:-1:-1;;;30978:77:0;;10179:2:1;30978:77:0;;;10161:21:1;10218:2;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;-1:-1:-1;;;10308:18:1;;;10301:36;10354:19;;30978:77:0;10151:228:1;30978:77:0;-1:-1:-1;;;;;31074:16:0;;31066:66;;;;-1:-1:-1;;;31066:66:0;;7793:2:1;31066:66:0;;;7775:21:1;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;-1:-1:-1;;;7922:18:1;;;7915:35;7967:19;;31066:66:0;7765:227:1;31066:66:0;31253:49;31270:1;31274:7;31283:13;:18;;;31253:8;:49::i;:::-;-1:-1:-1;;;;;31590:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;31590:31:0;;;-1:-1:-1;;;;;31590:31:0;;;-1:-1:-1;;31590:31:0;;;;;;;31632:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;31632:29:0;;;;;;;;;;;;;31674:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;31674:30:0;;;;-1:-1:-1;;;;31715:61:0;-1:-1:-1;;;31760:15:0;31715:61;;;;;;32038:11;;;32064:24;;;;;:29;32038:11;;32064:29;32060:275;;32128:20;32136:11;27842:4;27876:12;-1:-1:-1;27866:22:0;27785:111;32128:20;32124:200;;;32201:18;;;32169:24;;;:11;:24;;;;;;;;:50;;32280:28;;;;32238:70;;-1:-1:-1;;;32238:70:0;-1:-1:-1;;;;;;;;;32169:50:0;;;-1:-1:-1;;;;;;32169:50:0;;;;;;;32238:70;;;;;;;32124:200;30513:1934;32378:7;32374:2;-1:-1:-1;;;;;32359:27:0;32368:4;-1:-1:-1;;;;;32359:27:0;;;;;;;;;;;32397:42;30513:1934;;;;;:::o;36752:132::-;36660:6;;-1:-1:-1;;;;;36660:6:0;16997:10;36816:23;36808:68;;;;-1:-1:-1;;;36808:68:0;;10586:2:1;36808:68:0;;;10568:21:1;;;10605:18;;;10598:30;10664:34;10644:18;;;10637:62;10716:18;;36808:68:0;10558:182:1;10179:317:0;10294:6;10269:21;:31;;10261:73;;;;-1:-1:-1;;;10261:73:0;;8983:2:1;10261:73:0;;;8965:21:1;9022:2;9002:18;;;8995:30;9061:31;9041:18;;;9034:59;9110:18;;10261:73:0;8955:179:1;10261:73:0;10348:12;10366:9;-1:-1:-1;;;;;10366:14:0;10388:6;10366:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10347:52;;;10418:7;10410:78;;;;-1:-1:-1;;;10410:78:0;;8556:2:1;10410:78:0;;;8538:21:1;8595:2;8575:18;;;8568:30;8634:34;8614:18;;;8607:62;8705:28;8685:18;;;8678:56;8751:19;;10410:78:0;8528:248:1;27904:104:0;27973:27;27983:2;27987:8;27973:27;;;;;;;;;;;;:9;:27::i;23498:505::-;-1:-1:-1;;;;;;;;;;;;;;;;;23601:16:0;23609:7;27842:4;27876:12;-1:-1:-1;27866:22:0;27785:111;23601:16;23593:71;;;;-1:-1:-1;;;23593:71:0;;7033:2:1;23593:71:0;;;7015:21:1;7072:2;7052:18;;;7045:30;7111:34;7091:18;;;7084:62;-1:-1:-1;;;7162:18:1;;;7155:40;7212:19;;23593:71:0;7005:232:1;23593:71:0;23714:7;23694:225;23757:31;23791:17;;;:11;:17;;;;;;;;;23757:51;;;;;;;;;-1:-1:-1;;;;;23757:51:0;;;;;-1:-1:-1;;;23757:51:0;;;;;;;;;;;;23827:28;23823:85;;23883:9;-1:-1:-1;23876:16:0;;-1:-1:-1;23876:16:0;23823:85;-1:-1:-1;;;23734:6:0;23694:225;;37854:191;37947:6;;;-1:-1:-1;;;;;37964:17:0;;;-1:-1:-1;;;;;;37964:17:0;;;;;;;37997:40;;37947:6;;;37964:17;37947:6;;37997:40;;37928:16;;37997:40;37854:191;;:::o;33326:804::-;33481:4;-1:-1:-1;;;;;33502:13:0;;9213:19;:23;33498:625;;33538:72;;-1:-1:-1;;;33538:72:0;;-1:-1:-1;;;;;33538:36:0;;;;;:72;;16997:10;;33589:4;;33595:7;;33604:5;;33538:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33538:72:0;;;;;;;;-1:-1:-1;;33538:72:0;;;;;;;;;;;;:::i;:::-;;;33534:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33784:13:0;;33780:273;;33827:61;;-1:-1:-1;;;33827:61:0;;;;;;;:::i;33780:273::-;34003:6;33997:13;33988:6;33984:2;33980:15;33973:38;33534:534;-1:-1:-1;;;;;;33661:55:0;-1:-1:-1;;;33661:55:0;;-1:-1:-1;33654:62:0;;33498:625;-1:-1:-1;34107:4:0;33498:625;33326:804;;;;;;:::o;17561:723::-;17617:13;17838:10;17834:53;;-1:-1:-1;17865:10:0;;;;;;;;;;;;-1:-1:-1;;;17865:10:0;;;;;;17834:53;17912:5;17897:12;17953:78;17960:9;;17953:78;;17986:8;;;;:::i;:::-;;-1:-1:-1;18009:10:0;;-1:-1:-1;18017:2:0;18009:10;;:::i;:::-;;;17953:78;;;18041:19;18073:6;18063:17;;;;;;-1:-1:-1;;;18063:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18063:17:0;;18041:39;;18091:154;18098:10;;18091:154;;18125:11;18135:1;18125:11;;:::i;:::-;;-1:-1:-1;18194:10:0;18202:2;18194:5;:10;:::i;:::-;18181:24;;:2;:24;:::i;:::-;18168:39;;18151:6;18158;18151:14;;;;;;-1:-1:-1;;;18151:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18151:56:0;;;;;;;;-1:-1:-1;18222:11:0;18231:2;18222:11;;:::i;:::-;;;18091:154;;28371:163;28494:32;28500:2;28504:8;28514:5;28521:4;28932:20;28955:12;-1:-1:-1;;;;;28986:16:0;;28978:62;;;;-1:-1:-1;;;28978:62:0;;13241:2:1;28978:62:0;;;13223:21:1;13280:2;13260:18;;;13253:30;13319:34;13299:18;;;13292:62;-1:-1:-1;;;13370:18:1;;;13363:31;13411:19;;28978:62:0;13213:223:1;28978:62:0;29059:13;29051:66;;;;-1:-1:-1;;;29051:66:0;;13643:2:1;29051:66:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;-1:-1:-1;;;13772:18:1;;;13765:38;13820:19;;29051:66:0;13615:230:1;29051:66:0;-1:-1:-1;;;;;29461:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;29461:45:0;;-1:-1:-1;;;;;29461:45:0;;;;;;;;29517:50;;;-1:-1:-1;;;29517:50:0;;;;;;;;;;;;;;;29580:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;29580:35:0;;;;-1:-1:-1;;;;29626:66:0;-1:-1:-1;;;29676:15:0;29626:66;;;;;;;29580:25;;29753:379;29773:8;29769:1;:12;29753:379;;;29808:38;;29833:12;;-1:-1:-1;;;;;29808:38:0;;;29825:1;;29808:38;;29825:1;;29808:38;29865:4;29861:229;;;29920:59;29951:1;29955:2;29959:12;29973:5;29920:22;:59::i;:::-;29890:184;;;;-1:-1:-1;;;29890:184:0;;;;;;;:::i;:::-;30106:14;;;;;29783:3;29753:379;;;-1:-1:-1;30144:12:0;:27;30191:60;42488:415;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:637::-;;4773:6;4767:13;4789:53;4835:6;4830:3;4823:4;4815:6;4811:17;4789:53;:::i;:::-;4905:13;;4864:16;;;;4927:57;4905:13;4864:16;4961:4;4949:17;;4927:57;:::i;:::-;-1:-1:-1;;;5006:20:1;;5035:22;;;5084:1;5073:13;;4743:349;-1:-1:-1;;;;4743:349:1:o;5515:488::-;-1:-1:-1;;;;;5784:15:1;;;5766:34;;5836:15;;5831:2;5816:18;;5809:43;5883:2;5868:18;;5861:34;;;5931:3;5926:2;5911:18;;5904:31;;;5515:488;;5952:45;;5977:19;;5969:6;5952:45;:::i;:::-;5944:53;5718:285;-1:-1:-1;;;;;;5718:285:1:o;6200:219::-;;6349:2;6338:9;6331:21;6369:44;6409:2;6398:9;6394:18;6386:6;6369:44;:::i;12619:415::-;12821:2;12803:21;;;12860:2;12840:18;;;12833:30;12899:34;12894:2;12879:18;;12872:62;-1:-1:-1;;;12965:2:1;12950:18;;12943:49;13024:3;13009:19;;12793:241::o;15222:128::-;;15293:1;15289:6;15286:1;15283:13;15280:2;;;15299:18;;:::i;:::-;-1:-1:-1;15335:9:1;;15270:80::o;15355:120::-;;15421:1;15411:2;;15426:18;;:::i;:::-;-1:-1:-1;15460:9:1;;15401:74::o;15480:168::-;;15586:1;15582;15578:6;15574:14;15571:1;15568:21;15563:1;15556:9;15549:17;15545:45;15542:2;;;15593:18;;:::i;:::-;-1:-1:-1;15633:9:1;;15532:116::o;15653:125::-;;15721:1;15718;15715:8;15712:2;;;15726:18;;:::i;:::-;-1:-1:-1;15763:9:1;;15702:76::o;15783:258::-;15855:1;15865:113;15879:6;15876:1;15873:13;15865:113;;;15955:11;;;15949:18;15936:11;;;15929:39;15901:2;15894:10;15865:113;;;15996:6;15993:1;15990:13;15987:2;;;-1:-1:-1;;16031:1:1;16013:16;;16006:27;15836:205::o;16046:380::-;16131:1;16121:12;;16178:1;16168:12;;;16189:2;;16243:4;16235:6;16231:17;16221:27;;16189:2;16296;16288:6;16285:14;16265:18;16262:38;16259:2;;;16342:10;16337:3;16333:20;16330:1;16323:31;16377:4;16374:1;16367:15;16405:4;16402:1;16395:15;16259:2;;16101:325;;;:::o;16431:135::-;;-1:-1:-1;;16491:17:1;;16488:2;;;16511:18;;:::i;:::-;-1:-1:-1;16558:1:1;16547:13;;16478:88::o;16571:112::-;;16629:1;16619:2;;16634:18;;:::i;:::-;-1:-1:-1;16668:9:1;;16609:74::o;16688:127::-;16749:10;16744:3;16740:20;16737:1;16730:31;16780:4;16777:1;16770:15;16804:4;16801:1;16794:15;16820:127;16881:10;16876:3;16872:20;16869:1;16862:31;16912:4;16909:1;16902:15;16936:4;16933:1;16926:15;16952:127;17013:10;17008:3;17004:20;17001:1;16994:31;17044:4;17041:1;17034:15;17068:4;17065:1;17058:15;17084:131;-1:-1:-1;;;;;;17158:32:1;;17148:43;;17138:2;;17205:1;17202;17195:12

Swarm Source

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