ETH Price: $2,517.86 (+1.99%)

Token

Fire Birds (fbird)
 

Overview

Max Total Supply

406 fbird

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 fbird
0x550711fb9c024ccd4de7b03738469bd40bf168ff
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:
FireBird

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-24
*/

// SPDX-License-Identifier: MIT
// Creator: Chiru Labs


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// 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: contracts/LowerGas.sol


// Creator: Chiru Labs


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable 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 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // 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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(prevOwnership.addr, 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 {}
}

pragma solidity ^0.8.13;

contract FireBird is ERC721A, Ownable {
  using Strings for uint256;
  
  uint256 public mintPrice = 0.019 ether;

  uint256 public package1Qty = 1;
  uint256 public package1Price = 0 ether;
  uint256 public package2Qty = 5;
  uint256 public package2Price = 0.049 ether;
  uint256 public package3Qty = 1;
  uint256 public package3Price = 0.019 ether;
  uint256 public package4Qty = 6;
  uint256 public package4Price = 0.059 ether;
  uint256 public package5Qty = 10;
  uint256 public package5Price = 0.95 ether;

  uint256 public maxSupply = 4000;
  uint256 public maxMintAmountPerTx = 100;
  string public baseTokenURI = "";

  bool public openMint = false;
  bool public revealed = false;

  bool public onFreeMint = true;
  bool public onPackageSale = true;
  bool public on1Free1 = false;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721A("Fire Birds", "fbird", 100) {  }

  function mintPackage(uint256 _packageNumber) external payable {
    require(openMint, "The contract is not open to mint yet!");
    require(onPackageSale, "Invalid Mint, Packgage promotion has ended!");

    uint256 _mintAmount = 0;
    uint256 _packagePrice = mintPrice;
    if((_packageNumber == 1 || _packageNumber == 2) && onFreeMint){
        if(_packageNumber == 1 && balanceOf(_msgSender()) == 0) {
            _mintAmount = package1Qty;
            _packagePrice = package1Price;
        }
        if(_packageNumber == 2) {
            _mintAmount = package2Qty;
            _packagePrice = package2Price;
        }
    }
    else {
        if(_packageNumber == 3) {
            _mintAmount = package3Qty;
            _packagePrice = package3Price;
        }
        if(_packageNumber == 4) {
            _mintAmount = package4Qty;
            _packagePrice = package4Price;
        }
        if(_packageNumber == 5) {
            _mintAmount = package5Qty;
            _packagePrice = package5Price;
        }
    }

    require(_mintAmount > 0, "Nothing to mint!");
    require(msg.value >= _packagePrice, "Insufficient funds!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mint(uint256 _mintAmount) external payable {    
    require(openMint, "The contract is not open to mint yet!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(msg.value >= mintPrice * _mintAmount, "Insufficient funds!");

    if(on1Free1){
        _mintAmount = _mintAmount * 2;
    }
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintOwner(address _to, uint256 _mintAmount) public onlyOwner {
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_to, _mintAmount);
  }

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

    if (revealed == false) {
      return "https://gateway.pinata.cloud/ipfs/QmPqCg4cQDwZ6avxpXSG7sV1X3c6vqjqSvNL1AADS8oq4h";
    }

    return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
  }

  function withdraw() external onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  function setPackage(uint256 _packageNumber, uint256 _packagePrice, uint256 _packageQty) external onlyOwner {
    if(_packageNumber == 1){
        package1Qty = _packageQty;
        package1Price = _packagePrice;
    }
    if(_packageNumber == 2){
        package2Qty = _packageQty;
        package2Price = _packagePrice;
    }
    if(_packageNumber == 3){
        package3Qty = _packageQty;
        package3Price = _packagePrice;
    }
    if(_packageNumber == 4){
        package4Qty = _packageQty;
        package4Price = _packagePrice;
    }
    if(_packageNumber == 5){
        package5Qty = _packageQty;
        package5Price = _packagePrice;
    }
  }

  function setBaseUri(string memory _uri) external onlyOwner {
    baseTokenURI = _uri;
  }

  function setOn1Free1(bool _state) public onlyOwner {
    on1Free1 = _state;
  }

  function setOnPackageSale(bool _state) public onlyOwner {
    onPackageSale = _state;
  }

  function setFreeMint(bool _state) public onlyOwner {
    onFreeMint = _state;
  }
  function setOpenMint(bool _state) public onlyOwner {
    openMint = _state;
  }

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

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packageNumber","type":"uint256"}],"name":"mintPackage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"on1Free1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onPackageSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"package1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package1Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package2Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package3Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package3Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package4Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package4Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package5Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"package5Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOn1Free1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnPackageSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOpenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_packageNumber","type":"uint256"},{"internalType":"uint256","name":"_packagePrice","type":"uint256"},{"internalType":"uint256","name":"_packageQty","type":"uint256"}],"name":"setPackage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055664380663abb8000600881905560016009819055600a8381556005600b5566ae153d89fe8000600c55600d91909155600e919091556006600f5566d19c2ff9bf8000601055601155670d2f13f7789f0000601255610fa0601355606460145560c0604081905260a08290526200007e9160159190620001de565b506016805464ffffffffff19166301010000179055348015620000a057600080fd5b506040518060400160405280600a8152602001694669726520426972647360b01b8152506040518060400160405280600581526020016419989a5c9960da1b815250606460008111620001495760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200015e906001906020860190620001de565b50815162000174906002906020850190620001de565b5060805250620001869050336200018c565b620002c0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ec9062000284565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b600181811c908216806200029957607f821691505b602082108103620002ba57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612a6a620002ea60003960008181611bc801528181611bf201526120020152612a6a6000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063bab257f3116100dc578063e0a8085311610095578063f2fde38b1161006f578063f2fde38b14610883578063f47a437a146108a3578063f56c47a8146108b9578063fe04bd9b146108cf57600080fd5b8063e0a80853146107fa578063e2af30f41461081a578063e985e9c51461083a57600080fd5b8063bab257f31461075f578063bce6d6721461077f578063c737e73514610799578063c87b56dd146107af578063d547cfb7146107cf578063d5abeb01146107e457600080fd5b806395d89b4111610149578063a0bcfc7f11610123578063a0bcfc7f146106de578063a22cb465146106fe578063a5fe62e71461071e578063b88d4fde1461073f57600080fd5b806395d89b4114610694578063a0712d68146106a9578063a0b7cd85146106bc57600080fd5b8063715018a6146105eb57806382447134146106005780638da5cb5b1461062057806391b7f5ed1461063e57806394354fd01461065e578063958f7fcc1461067457600080fd5b80633ccfd60b1161024f57806351830227116102085780636352211e116101e25780636352211e1461057f5780636817c76c1461059f57806368a4bd24146105b557806370a08231146105cb57600080fd5b8063518302271461053457806357f55a05146105535780635a78e4fe1461056957600080fd5b80633ccfd60b1461048c5780633d8ff2f4146104a15780633f815b9a146104b4578063408cbf94146104d457806342842e0e146104f45780634f6ccce71461051457600080fd5b806314fed5aa116102a157806314fed5aa146103d457806316dad380146103ea57806318160ddd1461040a57806318cae2691461041f57806323b872dd1461044c5780632f745c591461046c57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b31461037857806309c87faa1461039a57806310fb2825146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612322565b6108e5565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610952565b604051610315919061239e565b34801561034c57600080fd5b5061036061035b3660046123b1565b6109e4565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046123e6565b610a74565b005b3480156103a657600080fd5b506103b060105481565b604051908152602001610315565b3480156103ca57600080fd5b506103b0600b5481565b3480156103e057600080fd5b506103b060115481565b3480156103f657600080fd5b506016546103099062010000900460ff1681565b34801561041657600080fd5b506000546103b0565b34801561042b57600080fd5b506103b061043a366004612410565b60176020526000908152604090205481565b34801561045857600080fd5b5061039861046736600461242b565b610b8b565b34801561047857600080fd5b506103b06104873660046123e6565b610b96565b34801561049857600080fd5b50610398610d02565b6103986104af3660046123b1565b610d68565b3480156104c057600080fd5b506103986104cf366004612477565b610f54565b3480156104e057600080fd5b506103986104ef3660046123e6565b610f9a565b34801561050057600080fd5b5061039861050f36600461242b565b611001565b34801561052057600080fd5b506103b061052f3660046123b1565b61101c565b34801561054057600080fd5b5060165461030990610100900460ff1681565b34801561055f57600080fd5b506103b0600d5481565b34801561057557600080fd5b506103b060125481565b34801561058b57600080fd5b5061036061059a3660046123b1565b61107e565b3480156105ab57600080fd5b506103b060085481565b3480156105c157600080fd5b506103b0600a5481565b3480156105d757600080fd5b506103b06105e6366004612410565b611090565b3480156105f757600080fd5b50610398611121565b34801561060c57600080fd5b5061039861061b366004612492565b611157565b34801561062c57600080fd5b506007546001600160a01b0316610360565b34801561064a57600080fd5b506103986106593660046123b1565b6111de565b34801561066a57600080fd5b506103b060145481565b34801561068057600080fd5b5061039861068f366004612477565b61120d565b3480156106a057600080fd5b50610333611255565b6103986106b73660046123b1565b611264565b3480156106c857600080fd5b5060165461030990640100000000900460ff1681565b3480156106ea57600080fd5b506103986106f936600461254a565b611388565b34801561070a57600080fd5b50610398610719366004612593565b6113c5565b34801561072a57600080fd5b50601654610309906301000000900460ff1681565b34801561074b57600080fd5b5061039861075a3660046125c6565b611489565b34801561076b57600080fd5b5061039861077a366004612477565b6114c2565b34801561078b57600080fd5b506016546103099060ff1681565b3480156107a557600080fd5b506103b060095481565b3480156107bb57600080fd5b506103336107ca3660046123b1565b61150c565b3480156107db57600080fd5b506103336115e2565b3480156107f057600080fd5b506103b060135481565b34801561080657600080fd5b50610398610815366004612477565b611670565b34801561082657600080fd5b50610398610835366004612477565b6116b4565b34801561084657600080fd5b50610309610855366004612642565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561088f57600080fd5b5061039861089e366004612410565b6116f1565b3480156108af57600080fd5b506103b0600e5481565b3480156108c557600080fd5b506103b0600f5481565b3480156108db57600080fd5b506103b0600c5481565b60006001600160e01b031982166380ac58cd60e01b148061091657506001600160e01b03198216635b5e139f60e01b145b8061093157506001600160e01b0319821663780e9d6360e01b145b8061094c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109619061266c565b80601f016020809104026020016040519081016040528092919081815260200182805461098d9061266c565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109f1826000541190565b610a585760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a7f8261107e565b9050806001600160a01b0316836001600160a01b031603610aed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a4f565b336001600160a01b0382161480610b095750610b098133610855565b610b7b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a4f565b610b86838383611789565b505050565b610b868383836117e5565b6000610ba183611090565b8210610bfa5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a4f565b600080549080805b83811015610ca2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c5557805192505b876001600160a01b0316836001600160a01b031603610c8f57868403610c815750935061094c92505050565b83610c8b816126bc565b9450505b5080610c9a816126bc565b915050610c02565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a4f565b6007546001600160a01b03163314610d2c5760405162461bcd60e51b8152600401610a4f906126d5565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d65573d6000803e3d6000fd5b50565b60165460ff16610d8a5760405162461bcd60e51b8152600401610a4f9061270a565b6016546301000000900460ff16610df75760405162461bcd60e51b815260206004820152602b60248201527f496e76616c6964204d696e742c205061636b676167652070726f6d6f74696f6e60448201526a2068617320656e6465642160a81b6064820152608401610a4f565b6008546000906001831480610e0c5750826002145b8015610e20575060165462010000900460ff165b15610e5f57826001148015610e3b5750610e3933611090565b155b15610e49575050600954600a545b82600203610e5a575050600b54600c545b610e92565b82600303610e70575050600d54600e545b82600403610e81575050600f546010545b82600503610e925750506011546012545b60008211610ed55760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f206d696e742160801b6044820152606401610a4f565b80341015610f1b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a4f565b60135482600054610f2c919061274f565b1115610f4a5760405162461bcd60e51b8152600401610a4f90612767565b610b863383611b2c565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b8152600401610a4f906126d5565b60168054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610fc45760405162461bcd60e51b8152600401610a4f906126d5565b60135481600054610fd5919061274f565b1115610ff35760405162461bcd60e51b8152600401610a4f90612767565b610ffd8282611b2c565b5050565b610b8683838360405180602001604052806000815250611489565b60008054821061107a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a4f565b5090565b600061108982611b46565b5192915050565b60006001600160a01b0382166110fc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a4f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461114b5760405162461bcd60e51b8152600401610a4f906126d5565b6111556000611cf0565b565b6007546001600160a01b031633146111815760405162461bcd60e51b8152600401610a4f906126d5565b82600103611194576009819055600a8290555b826002036111a757600b819055600c8290555b826003036111ba57600d819055600e8290555b826004036111cd57600f81905560108290555b82600503610b865760115560125550565b6007546001600160a01b031633146112085760405162461bcd60e51b8152600401610a4f906126d5565b600855565b6007546001600160a01b031633146112375760405162461bcd60e51b8152600401610a4f906126d5565b6016805491151563010000000263ff00000019909216919091179055565b6060600280546109619061266c565b60165460ff166112865760405162461bcd60e51b8152600401610a4f9061270a565b60008111801561129857506014548111155b6112db5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610a4f565b806008546112e99190612795565b34101561132e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a4f565b601654640100000000900460ff161561134f5761134c816002612795565b90505b60135481600054611360919061274f565b111561137e5760405162461bcd60e51b8152600401610a4f90612767565b610d653382611b2c565b6007546001600160a01b031633146113b25760405162461bcd60e51b8152600401610a4f906126d5565b8051610ffd90601590602084019061227c565b336001600160a01b0383160361141d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a4f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114948484846117e5565b6114a084848484611d42565b6114bc5760405162461bcd60e51b8152600401610a4f906127b4565b50505050565b6007546001600160a01b031633146114ec5760405162461bcd60e51b8152600401610a4f906126d5565b601680549115156401000000000264ff0000000019909216919091179055565b6060611519826000541190565b61157d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a4f565b601654610100900460ff1615156000036115b0576040518060800160405280605081526020016129e56050913992915050565b60156115bb83611e44565b6040516020016115cc929190612823565b6040516020818303038152906040529050919050565b601580546115ef9061266c565b80601f016020809104026020016040519081016040528092919081815260200182805461161b9061266c565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b505050505081565b6007546001600160a01b0316331461169a5760405162461bcd60e51b8152600401610a4f906126d5565b601680549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146116de5760405162461bcd60e51b8152600401610a4f906126d5565b6016805460ff1916911515919091179055565b6007546001600160a01b0316331461171b5760405162461bcd60e51b8152600401610a4f906126d5565b6001600160a01b0381166117805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4f565b610d6581611cf0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f082611b46565b80519091506000906001600160a01b0316336001600160a01b0316148061182757503361181c846109e4565b6001600160a01b0316145b80611839575081516118399033610855565b9050806118a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a4f565b846001600160a01b031682600001516001600160a01b0316146119175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a4f565b6001600160a01b03841661197b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a4f565b61198b6000848460000151611789565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611a5090859061274f565b6000818152600360205260409020549091506001600160a01b0316611ae257611a7a816000541190565b15611ae25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ffd828260405180602001604052806000815250611f45565b6040805180820190915260008082526020820152611b65826000541190565b611bc45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a4f565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c2557611c177f0000000000000000000000000000000000000000000000000000000000000000846128dd565b611c2290600161274f565b90505b825b818110611c8f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c7c57949350505050565b5080611c87816128f4565b915050611c27565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a4f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8690339089908890889060040161290b565b6020604051808303816000875af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe91810190612948565b60015b611e1e573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051600003611e165760405162461bcd60e51b8152600401610a4f906127b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3c565b5060015b949350505050565b606081600003611e6b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e955780611e7f816126bc565b9150611e8e9050600a8361297b565b9150611e6f565b60008167ffffffffffffffff811115611eb057611eb06124be565b6040519080825280601f01601f191660200182016040528015611eda576020820181803683370190505b5090505b8415611e3c57611eef6001836128dd565b9150611efc600a8661298f565b611f0790603061274f565b60f81b818381518110611f1c57611f1c6129a3565b60200101906001600160f81b031916908160001a905350611f3e600a8661297b565b9450611ede565b6000546001600160a01b038416611fa85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a4f565b611fb3816000541190565b156120005760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a4f565b7f000000000000000000000000000000000000000000000000000000000000000083111561207b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a4f565b600083116120d75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a4f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121339087906129b9565b6001600160801b0316815260200185836020015161215191906129b9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122356000888488611d42565b6122515760405162461bcd60e51b8152600401610a4f906127b4565b8161225b816126bc565b9250508080612269906126bc565b9150506121e8565b506000819055611b24565b8280546122889061266c565b90600052602060002090601f0160209004810192826122aa57600085556122f0565b82601f106122c357805160ff19168380011785556122f0565b828001600101855582156122f0579182015b828111156122f05782518255916020019190600101906122d5565b5061107a9291505b8082111561107a57600081556001016122f8565b6001600160e01b031981168114610d6557600080fd5b60006020828403121561233457600080fd5b813561233f8161230c565b9392505050565b60005b83811015612361578181015183820152602001612349565b838111156114bc5750506000910152565b6000815180845261238a816020860160208601612346565b601f01601f19169290920160200192915050565b60208152600061233f6020830184612372565b6000602082840312156123c357600080fd5b5035919050565b80356001600160a01b03811681146123e157600080fd5b919050565b600080604083850312156123f957600080fd5b612402836123ca565b946020939093013593505050565b60006020828403121561242257600080fd5b61233f826123ca565b60008060006060848603121561244057600080fd5b612449846123ca565b9250612457602085016123ca565b9150604084013590509250925092565b803580151581146123e157600080fd5b60006020828403121561248957600080fd5b61233f82612467565b6000806000606084860312156124a757600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124ef576124ef6124be565b604051601f8501601f19908116603f01168101908282118183101715612517576125176124be565b8160405280935085815286868601111561253057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561255c57600080fd5b813567ffffffffffffffff81111561257357600080fd5b8201601f8101841361258457600080fd5b611e3c848235602084016124d4565b600080604083850312156125a657600080fd5b6125af836123ca565b91506125bd60208401612467565b90509250929050565b600080600080608085870312156125dc57600080fd5b6125e5856123ca565b93506125f3602086016123ca565b925060408501359150606085013567ffffffffffffffff81111561261657600080fd5b8501601f8101871361262757600080fd5b612636878235602084016124d4565b91505092959194509250565b6000806040838503121561265557600080fd5b61265e836123ca565b91506125bd602084016123ca565b600181811c9082168061268057607f821691505b6020821081036126a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016126ce576126ce6126a6565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b60008219821115612762576127626126a6565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156127af576127af6126a6565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612819818560208601612346565b9290920192915050565b600080845481600182811c91508083168061283f57607f831692505b6020808410820361285e57634e487b7160e01b86526022600452602486fd5b8180156128725760018114612883576128b0565b60ff198616895284890196506128b0565b60008b81526020902060005b868110156128a85781548b82015290850190830161288f565b505084890196505b5050505050506128d46128c38286612807565b64173539b7b760d91b815260050190565b95945050505050565b6000828210156128ef576128ef6126a6565b500390565b600081612903576129036126a6565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293e90830184612372565b9695505050505050565b60006020828403121561295a57600080fd5b815161233f8161230c565b634e487b7160e01b600052601260045260246000fd5b60008261298a5761298a612965565b500490565b60008261299e5761299e612965565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b038083168185168083038211156129db576129db6126a6565b0194935050505056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5071436734635144775a3661767870585347377356315833633676716a7153764e4c3141414453386f713468a2646970667358221220fb2b9786556f2d516597f9442aad5c6a4a308256ede8de087f4d2a8b2762fc3264736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063bab257f3116100dc578063e0a8085311610095578063f2fde38b1161006f578063f2fde38b14610883578063f47a437a146108a3578063f56c47a8146108b9578063fe04bd9b146108cf57600080fd5b8063e0a80853146107fa578063e2af30f41461081a578063e985e9c51461083a57600080fd5b8063bab257f31461075f578063bce6d6721461077f578063c737e73514610799578063c87b56dd146107af578063d547cfb7146107cf578063d5abeb01146107e457600080fd5b806395d89b4111610149578063a0bcfc7f11610123578063a0bcfc7f146106de578063a22cb465146106fe578063a5fe62e71461071e578063b88d4fde1461073f57600080fd5b806395d89b4114610694578063a0712d68146106a9578063a0b7cd85146106bc57600080fd5b8063715018a6146105eb57806382447134146106005780638da5cb5b1461062057806391b7f5ed1461063e57806394354fd01461065e578063958f7fcc1461067457600080fd5b80633ccfd60b1161024f57806351830227116102085780636352211e116101e25780636352211e1461057f5780636817c76c1461059f57806368a4bd24146105b557806370a08231146105cb57600080fd5b8063518302271461053457806357f55a05146105535780635a78e4fe1461056957600080fd5b80633ccfd60b1461048c5780633d8ff2f4146104a15780633f815b9a146104b4578063408cbf94146104d457806342842e0e146104f45780634f6ccce71461051457600080fd5b806314fed5aa116102a157806314fed5aa146103d457806316dad380146103ea57806318160ddd1461040a57806318cae2691461041f57806323b872dd1461044c5780632f745c591461046c57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b31461037857806309c87faa1461039a57806310fb2825146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612322565b6108e5565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610952565b604051610315919061239e565b34801561034c57600080fd5b5061036061035b3660046123b1565b6109e4565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046123e6565b610a74565b005b3480156103a657600080fd5b506103b060105481565b604051908152602001610315565b3480156103ca57600080fd5b506103b0600b5481565b3480156103e057600080fd5b506103b060115481565b3480156103f657600080fd5b506016546103099062010000900460ff1681565b34801561041657600080fd5b506000546103b0565b34801561042b57600080fd5b506103b061043a366004612410565b60176020526000908152604090205481565b34801561045857600080fd5b5061039861046736600461242b565b610b8b565b34801561047857600080fd5b506103b06104873660046123e6565b610b96565b34801561049857600080fd5b50610398610d02565b6103986104af3660046123b1565b610d68565b3480156104c057600080fd5b506103986104cf366004612477565b610f54565b3480156104e057600080fd5b506103986104ef3660046123e6565b610f9a565b34801561050057600080fd5b5061039861050f36600461242b565b611001565b34801561052057600080fd5b506103b061052f3660046123b1565b61101c565b34801561054057600080fd5b5060165461030990610100900460ff1681565b34801561055f57600080fd5b506103b0600d5481565b34801561057557600080fd5b506103b060125481565b34801561058b57600080fd5b5061036061059a3660046123b1565b61107e565b3480156105ab57600080fd5b506103b060085481565b3480156105c157600080fd5b506103b0600a5481565b3480156105d757600080fd5b506103b06105e6366004612410565b611090565b3480156105f757600080fd5b50610398611121565b34801561060c57600080fd5b5061039861061b366004612492565b611157565b34801561062c57600080fd5b506007546001600160a01b0316610360565b34801561064a57600080fd5b506103986106593660046123b1565b6111de565b34801561066a57600080fd5b506103b060145481565b34801561068057600080fd5b5061039861068f366004612477565b61120d565b3480156106a057600080fd5b50610333611255565b6103986106b73660046123b1565b611264565b3480156106c857600080fd5b5060165461030990640100000000900460ff1681565b3480156106ea57600080fd5b506103986106f936600461254a565b611388565b34801561070a57600080fd5b50610398610719366004612593565b6113c5565b34801561072a57600080fd5b50601654610309906301000000900460ff1681565b34801561074b57600080fd5b5061039861075a3660046125c6565b611489565b34801561076b57600080fd5b5061039861077a366004612477565b6114c2565b34801561078b57600080fd5b506016546103099060ff1681565b3480156107a557600080fd5b506103b060095481565b3480156107bb57600080fd5b506103336107ca3660046123b1565b61150c565b3480156107db57600080fd5b506103336115e2565b3480156107f057600080fd5b506103b060135481565b34801561080657600080fd5b50610398610815366004612477565b611670565b34801561082657600080fd5b50610398610835366004612477565b6116b4565b34801561084657600080fd5b50610309610855366004612642565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561088f57600080fd5b5061039861089e366004612410565b6116f1565b3480156108af57600080fd5b506103b0600e5481565b3480156108c557600080fd5b506103b0600f5481565b3480156108db57600080fd5b506103b0600c5481565b60006001600160e01b031982166380ac58cd60e01b148061091657506001600160e01b03198216635b5e139f60e01b145b8061093157506001600160e01b0319821663780e9d6360e01b145b8061094c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109619061266c565b80601f016020809104026020016040519081016040528092919081815260200182805461098d9061266c565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109f1826000541190565b610a585760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a7f8261107e565b9050806001600160a01b0316836001600160a01b031603610aed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a4f565b336001600160a01b0382161480610b095750610b098133610855565b610b7b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a4f565b610b86838383611789565b505050565b610b868383836117e5565b6000610ba183611090565b8210610bfa5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a4f565b600080549080805b83811015610ca2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c5557805192505b876001600160a01b0316836001600160a01b031603610c8f57868403610c815750935061094c92505050565b83610c8b816126bc565b9450505b5080610c9a816126bc565b915050610c02565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a4f565b6007546001600160a01b03163314610d2c5760405162461bcd60e51b8152600401610a4f906126d5565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d65573d6000803e3d6000fd5b50565b60165460ff16610d8a5760405162461bcd60e51b8152600401610a4f9061270a565b6016546301000000900460ff16610df75760405162461bcd60e51b815260206004820152602b60248201527f496e76616c6964204d696e742c205061636b676167652070726f6d6f74696f6e60448201526a2068617320656e6465642160a81b6064820152608401610a4f565b6008546000906001831480610e0c5750826002145b8015610e20575060165462010000900460ff165b15610e5f57826001148015610e3b5750610e3933611090565b155b15610e49575050600954600a545b82600203610e5a575050600b54600c545b610e92565b82600303610e70575050600d54600e545b82600403610e81575050600f546010545b82600503610e925750506011546012545b60008211610ed55760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f206d696e742160801b6044820152606401610a4f565b80341015610f1b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a4f565b60135482600054610f2c919061274f565b1115610f4a5760405162461bcd60e51b8152600401610a4f90612767565b610b863383611b2c565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b8152600401610a4f906126d5565b60168054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610fc45760405162461bcd60e51b8152600401610a4f906126d5565b60135481600054610fd5919061274f565b1115610ff35760405162461bcd60e51b8152600401610a4f90612767565b610ffd8282611b2c565b5050565b610b8683838360405180602001604052806000815250611489565b60008054821061107a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a4f565b5090565b600061108982611b46565b5192915050565b60006001600160a01b0382166110fc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a4f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461114b5760405162461bcd60e51b8152600401610a4f906126d5565b6111556000611cf0565b565b6007546001600160a01b031633146111815760405162461bcd60e51b8152600401610a4f906126d5565b82600103611194576009819055600a8290555b826002036111a757600b819055600c8290555b826003036111ba57600d819055600e8290555b826004036111cd57600f81905560108290555b82600503610b865760115560125550565b6007546001600160a01b031633146112085760405162461bcd60e51b8152600401610a4f906126d5565b600855565b6007546001600160a01b031633146112375760405162461bcd60e51b8152600401610a4f906126d5565b6016805491151563010000000263ff00000019909216919091179055565b6060600280546109619061266c565b60165460ff166112865760405162461bcd60e51b8152600401610a4f9061270a565b60008111801561129857506014548111155b6112db5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610a4f565b806008546112e99190612795565b34101561132e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a4f565b601654640100000000900460ff161561134f5761134c816002612795565b90505b60135481600054611360919061274f565b111561137e5760405162461bcd60e51b8152600401610a4f90612767565b610d653382611b2c565b6007546001600160a01b031633146113b25760405162461bcd60e51b8152600401610a4f906126d5565b8051610ffd90601590602084019061227c565b336001600160a01b0383160361141d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a4f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114948484846117e5565b6114a084848484611d42565b6114bc5760405162461bcd60e51b8152600401610a4f906127b4565b50505050565b6007546001600160a01b031633146114ec5760405162461bcd60e51b8152600401610a4f906126d5565b601680549115156401000000000264ff0000000019909216919091179055565b6060611519826000541190565b61157d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a4f565b601654610100900460ff1615156000036115b0576040518060800160405280605081526020016129e56050913992915050565b60156115bb83611e44565b6040516020016115cc929190612823565b6040516020818303038152906040529050919050565b601580546115ef9061266c565b80601f016020809104026020016040519081016040528092919081815260200182805461161b9061266c565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b505050505081565b6007546001600160a01b0316331461169a5760405162461bcd60e51b8152600401610a4f906126d5565b601680549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146116de5760405162461bcd60e51b8152600401610a4f906126d5565b6016805460ff1916911515919091179055565b6007546001600160a01b0316331461171b5760405162461bcd60e51b8152600401610a4f906126d5565b6001600160a01b0381166117805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4f565b610d6581611cf0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f082611b46565b80519091506000906001600160a01b0316336001600160a01b0316148061182757503361181c846109e4565b6001600160a01b0316145b80611839575081516118399033610855565b9050806118a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a4f565b846001600160a01b031682600001516001600160a01b0316146119175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a4f565b6001600160a01b03841661197b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a4f565b61198b6000848460000151611789565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611a5090859061274f565b6000818152600360205260409020549091506001600160a01b0316611ae257611a7a816000541190565b15611ae25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ffd828260405180602001604052806000815250611f45565b6040805180820190915260008082526020820152611b65826000541190565b611bc45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a4f565b60007f00000000000000000000000000000000000000000000000000000000000000648310611c2557611c177f0000000000000000000000000000000000000000000000000000000000000064846128dd565b611c2290600161274f565b90505b825b818110611c8f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c7c57949350505050565b5080611c87816128f4565b915050611c27565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a4f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8690339089908890889060040161290b565b6020604051808303816000875af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe91810190612948565b60015b611e1e573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051600003611e165760405162461bcd60e51b8152600401610a4f906127b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3c565b5060015b949350505050565b606081600003611e6b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e955780611e7f816126bc565b9150611e8e9050600a8361297b565b9150611e6f565b60008167ffffffffffffffff811115611eb057611eb06124be565b6040519080825280601f01601f191660200182016040528015611eda576020820181803683370190505b5090505b8415611e3c57611eef6001836128dd565b9150611efc600a8661298f565b611f0790603061274f565b60f81b818381518110611f1c57611f1c6129a3565b60200101906001600160f81b031916908160001a905350611f3e600a8661297b565b9450611ede565b6000546001600160a01b038416611fa85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a4f565b611fb3816000541190565b156120005760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a4f565b7f000000000000000000000000000000000000000000000000000000000000006483111561207b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a4f565b600083116120d75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610a4f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121339087906129b9565b6001600160801b0316815260200185836020015161215191906129b9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122356000888488611d42565b6122515760405162461bcd60e51b8152600401610a4f906127b4565b8161225b816126bc565b9250508080612269906126bc565b9150506121e8565b506000819055611b24565b8280546122889061266c565b90600052602060002090601f0160209004810192826122aa57600085556122f0565b82601f106122c357805160ff19168380011785556122f0565b828001600101855582156122f0579182015b828111156122f05782518255916020019190600101906122d5565b5061107a9291505b8082111561107a57600081556001016122f8565b6001600160e01b031981168114610d6557600080fd5b60006020828403121561233457600080fd5b813561233f8161230c565b9392505050565b60005b83811015612361578181015183820152602001612349565b838111156114bc5750506000910152565b6000815180845261238a816020860160208601612346565b601f01601f19169290920160200192915050565b60208152600061233f6020830184612372565b6000602082840312156123c357600080fd5b5035919050565b80356001600160a01b03811681146123e157600080fd5b919050565b600080604083850312156123f957600080fd5b612402836123ca565b946020939093013593505050565b60006020828403121561242257600080fd5b61233f826123ca565b60008060006060848603121561244057600080fd5b612449846123ca565b9250612457602085016123ca565b9150604084013590509250925092565b803580151581146123e157600080fd5b60006020828403121561248957600080fd5b61233f82612467565b6000806000606084860312156124a757600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124ef576124ef6124be565b604051601f8501601f19908116603f01168101908282118183101715612517576125176124be565b8160405280935085815286868601111561253057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561255c57600080fd5b813567ffffffffffffffff81111561257357600080fd5b8201601f8101841361258457600080fd5b611e3c848235602084016124d4565b600080604083850312156125a657600080fd5b6125af836123ca565b91506125bd60208401612467565b90509250929050565b600080600080608085870312156125dc57600080fd5b6125e5856123ca565b93506125f3602086016123ca565b925060408501359150606085013567ffffffffffffffff81111561261657600080fd5b8501601f8101871361262757600080fd5b612636878235602084016124d4565b91505092959194509250565b6000806040838503121561265557600080fd5b61265e836123ca565b91506125bd602084016123ca565b600181811c9082168061268057607f821691505b6020821081036126a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016126ce576126ce6126a6565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b60008219821115612762576127626126a6565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156127af576127af6126a6565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612819818560208601612346565b9290920192915050565b600080845481600182811c91508083168061283f57607f831692505b6020808410820361285e57634e487b7160e01b86526022600452602486fd5b8180156128725760018114612883576128b0565b60ff198616895284890196506128b0565b60008b81526020902060005b868110156128a85781548b82015290850190830161288f565b505084890196505b5050505050506128d46128c38286612807565b64173539b7b760d91b815260050190565b95945050505050565b6000828210156128ef576128ef6126a6565b500390565b600081612903576129036126a6565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293e90830184612372565b9695505050505050565b60006020828403121561295a57600080fd5b815161233f8161230c565b634e487b7160e01b600052601260045260246000fd5b60008261298a5761298a612965565b500490565b60008261299e5761299e612965565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b038083168185168083038211156129db576129db6126a6565b0194935050505056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5071436734635144775a3661767870585347377356315833633676716a7153764e4c3141414453386f713468a2646970667358221220fb2b9786556f2d516597f9442aad5c6a4a308256ede8de087f4d2a8b2762fc3264736f6c634300080d0033

Deployed Bytecode Sourcemap

39389:4816:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27113:372;;;;;;;;;;-1:-1:-1;27113:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27113:372:0;;;;;;;;28918:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30479:214::-;;;;;;;;;;-1:-1:-1;30479:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;30479:214:0;1550:203:1;30000:413:0;;;;;;;;;;-1:-1:-1;30000:413:0;;;;;:::i;:::-;;:::i;:::-;;39788:42;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;39788:42:0;2195:177:1;39589:30:0;;;;;;;;;;;;;;;;39835:31;;;;;;;;;;;;;;;;40105:29;;;;;;;;;;-1:-1:-1;40105:29:0;;;;;;;;;;;25554:100;;;;;;;;;;-1:-1:-1;25607:7:0;25634:12;25554:100;;40211:55;;;;;;;;;;-1:-1:-1;40211:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;31355:162;;;;;;;;;;-1:-1:-1;31355:162:0;;;;;:::i;:::-;;:::i;26218:823::-;;;;;;;;;;-1:-1:-1;26218:823:0;;;;;:::i;:::-;;:::i;42786:100::-;;;;;;;;;;;;;:::i;40333:1298::-;;;;;;:::i;:::-;;:::i;43857:83::-;;;;;;;;;;-1:-1:-1;43857:83:0;;;;;:::i;:::-;;:::i;42129:189::-;;;;;;;;;;-1:-1:-1;42129:189:0;;;;;:::i;:::-;;:::i;31588:177::-;;;;;;;;;;-1:-1:-1;31588:177:0;;;;;:::i;:::-;;:::i;25731:187::-;;;;;;;;;;-1:-1:-1;25731:187:0;;;;;:::i;:::-;;:::i;40070:28::-;;;;;;;;;;-1:-1:-1;40070:28:0;;;;;;;;;;;39671:30;;;;;;;;;;;;;;;;39871:41;;;;;;;;;;;;;;;;28727:124;;;;;;;;;;-1:-1:-1;28727:124:0;;;;;:::i;:::-;;:::i;39466:38::-;;;;;;;;;;;;;;;;39546;;;;;;;;;;;;;;;;27549:221;;;;;;;;;;-1:-1:-1;27549:221:0;;;;;:::i;:::-;;:::i;4735:103::-;;;;;;;;;;;;;:::i;42892:678::-;;;;;;;;;;-1:-1:-1;42892:678:0;;;;;:::i;:::-;;:::i;4084:87::-;;;;;;;;;;-1:-1:-1;4157:6:0;;-1:-1:-1;;;;;4157:6:0;4084:87;;44118:82;;;;;;;;;;-1:-1:-1;44118:82:0;;;;;:::i;:::-;;:::i;39955:39::-;;;;;;;;;;;;;;;;43760:91;;;;;;;;;;-1:-1:-1;43760:91:0;;;;;:::i;:::-;;:::i;29087:104::-;;;;;;;;;;;;;:::i;41637:484::-;;;;;;:::i;:::-;;:::i;40176:28::-;;;;;;;;;;-1:-1:-1;40176:28:0;;;;;;;;;;;43576:91;;;;;;;;;;-1:-1:-1;43576:91:0;;;;;:::i;:::-;;:::i;30765:288::-;;;;;;;;;;-1:-1:-1;30765:288:0;;;;;:::i;:::-;;:::i;40139:32::-;;;;;;;;;;-1:-1:-1;40139:32:0;;;;;;;;;;;31836:355;;;;;;;;;;-1:-1:-1;31836:355:0;;;;;:::i;:::-;;:::i;43673:81::-;;;;;;;;;;-1:-1:-1;43673:81:0;;;;;:::i;:::-;;:::i;40037:28::-;;;;;;;;;;-1:-1:-1;40037:28:0;;;;;;;;39511:30;;;;;;;;;;;;;;;;42324:456;;;;;;;;;;-1:-1:-1;42324:456:0;;;;;:::i;:::-;;:::i;39999:31::-;;;;;;;;;;;;;:::i;39919:::-;;;;;;;;;;;;;;;;44031:81;;;;;;;;;;-1:-1:-1;44031:81:0;;;;;:::i;:::-;;:::i;43944:::-;;;;;;;;;;-1:-1:-1;43944:81:0;;;;;:::i;:::-;;:::i;31124:164::-;;;;;;;;;;-1:-1:-1;31124:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31245:25:0;;;31221:4;31245:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31124:164;4993:201;;;;;;;;;;-1:-1:-1;4993:201:0;;;;;:::i;:::-;;:::i;39706:42::-;;;;;;;;;;;;;;;;39753:30;;;;;;;;;;;;;;;;39624:42;;;;;;;;;;;;;;;;27113:372;27215:4;-1:-1:-1;;;;;;27252:40:0;;-1:-1:-1;;;27252:40:0;;:105;;-1:-1:-1;;;;;;;27309:48:0;;-1:-1:-1;;;27309:48:0;27252:105;:172;;;-1:-1:-1;;;;;;;27374:50:0;;-1:-1:-1;;;27374:50:0;27252:172;:225;;;-1:-1:-1;;;;;;;;;;16625:40:0;;;27441:36;27232:245;27113:372;-1:-1:-1;;27113:372:0:o;28918:100::-;28972:13;29005:5;28998:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28918:100;:::o;30479:214::-;30547:7;30575:16;30583:7;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;30575:16;30567:74;;;;-1:-1:-1;;;30567:74:0;;6580:2:1;30567:74:0;;;6562:21:1;6619:2;6599:18;;;6592:30;6658:34;6638:18;;;6631:62;-1:-1:-1;;;6709:18:1;;;6702:43;6762:19;;30567:74:0;;;;;;;;;-1:-1:-1;30661:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30661:24:0;;30479:214::o;30000:413::-;30073:13;30089:24;30105:7;30089:15;:24::i;:::-;30073:40;;30138:5;-1:-1:-1;;;;;30132:11:0;:2;-1:-1:-1;;;;;30132:11:0;;30124:58;;;;-1:-1:-1;;;30124:58:0;;6994:2:1;30124:58:0;;;6976:21:1;7033:2;7013:18;;;7006:30;7072:34;7052:18;;;7045:62;-1:-1:-1;;;7123:18:1;;;7116:32;7165:19;;30124:58:0;6792:398:1;30124:58:0;2888:10;-1:-1:-1;;;;;30217:21:0;;;;:62;;-1:-1:-1;30242:37:0;30259:5;2888:10;31124:164;:::i;30242:37::-;30195:169;;;;-1:-1:-1;;;30195:169:0;;7397:2:1;30195:169:0;;;7379:21:1;7436:2;7416:18;;;7409:30;7475:34;7455:18;;;7448:62;7546:27;7526:18;;;7519:55;7591:19;;30195:169:0;7195:421:1;30195:169:0;30377:28;30386:2;30390:7;30399:5;30377:8;:28::i;:::-;30062:351;30000:413;;:::o;31355:162::-;31481:28;31491:4;31497:2;31501:7;31481:9;:28::i;26218:823::-;26307:7;26343:16;26353:5;26343:9;:16::i;:::-;26335:5;:24;26327:71;;;;-1:-1:-1;;;26327:71:0;;7823:2:1;26327:71:0;;;7805:21:1;7862:2;7842:18;;;7835:30;7901:34;7881:18;;;7874:62;-1:-1:-1;;;7952:18:1;;;7945:32;7994:19;;26327:71:0;7621:398:1;26327:71:0;26409:22;25634:12;;;26409:22;;26541:426;26565:14;26561:1;:18;26541:426;;;26601:31;26635:14;;;:11;:14;;;;;;;;;26601:48;;;;;;;;;-1:-1:-1;;;;;26601:48:0;;;;;-1:-1:-1;;;26601:48:0;;;;;;;;;;;;26668:28;26664:103;;26737:14;;;-1:-1:-1;26664:103:0;26806:5;-1:-1:-1;;;;;26785:26:0;:17;-1:-1:-1;;;;;26785:26:0;;26781:175;;26851:5;26836:11;:20;26832:77;;-1:-1:-1;26888:1:0;-1:-1:-1;26881:8:0;;-1:-1:-1;;;26881:8:0;26832:77;26927:13;;;;:::i;:::-;;;;26781:175;-1:-1:-1;26581:3:0;;;;:::i;:::-;;;;26541:426;;;-1:-1:-1;26977:56:0;;-1:-1:-1;;;26977:56:0;;8498:2:1;26977:56:0;;;8480:21:1;8537:2;8517:18;;;8510:30;8576:34;8556:18;;;8549:62;-1:-1:-1;;;8627:18:1;;;8620:44;8681:19;;26977:56:0;8296:410:1;42786:100:0;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4157:6;;42832:48:::1;::::0;-1:-1:-1;;;;;4157:6:0;;;;42858:21:::1;42832:48:::0;::::1;;;::::0;::::1;::::0;;;42858:21;4157:6;42832:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42786:100::o:0;40333:1298::-;40410:8;;;;40402:58;;;;-1:-1:-1;;;40402:58:0;;;;;;;:::i;:::-;40475:13;;;;;;;40467:69;;;;-1:-1:-1;;;40467:69:0;;9680:2:1;40467:69:0;;;9662:21:1;9719:2;9699:18;;;9692:30;9758:34;9738:18;;;9731:62;-1:-1:-1;;;9809:18:1;;;9802:41;9860:19;;40467:69:0;9478:407:1;40467:69:0;40599:9;;40545:19;;40637:1;40619:19;;;:42;;;40642:14;40660:1;40642:19;40619:42;40618:58;;;;-1:-1:-1;40666:10:0;;;;;;;40618:58;40615:771;;;40691:14;40709:1;40691:19;:51;;;;-1:-1:-1;40714:23:0;2888:10;27549:221;:::i;40714:23::-;:28;40691:51;40688:152;;;-1:-1:-1;;40773:11:0;;40815:13;;40688:152;40853:14;40871:1;40853:19;40850:120;;-1:-1:-1;;40903:11:0;;40945:13;;40850:120;40615:771;;;41002:14;41020:1;41002:19;40999:120;;-1:-1:-1;;41052:11:0;;41094:13;;40999:120;41132:14;41150:1;41132:19;41129:120;;-1:-1:-1;;41182:11:0;;41224:13;;41129:120;41262:14;41280:1;41262:19;41259:120;;-1:-1:-1;;41312:11:0;;41354:13;;41259:120;41416:1;41402:11;:15;41394:44;;;;-1:-1:-1;;;41394:44:0;;10092:2:1;41394:44:0;;;10074:21:1;10131:2;10111:18;;;10104:30;-1:-1:-1;;;10150:18:1;;;10143:46;10206:18;;41394:44:0;9890:340:1;41394:44:0;41466:13;41453:9;:26;;41445:58;;;;-1:-1:-1;;;41445:58:0;;10437:2:1;41445:58:0;;;10419:21:1;10476:2;10456:18;;;10449:30;-1:-1:-1;;;10495:18:1;;;10488:49;10554:18;;41445:58:0;10235:343:1;41445:58:0;41548:9;;41533:11;41518:12;;:26;;;;:::i;:::-;:39;;41510:72;;;;-1:-1:-1;;;41510:72:0;;;;;;;:::i;:::-;41591:34;41601:10;41613:11;41591:9;:34::i;43857:83::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43915:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43915:19:0;;::::1;::::0;;;::::1;::::0;;43857:83::o;42129:189::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;42244:9:::1;;42229:11;42214:12;;:26;;;;:::i;:::-;:39;;42206:72;;;;-1:-1:-1::0;;;42206:72:0::1;;;;;;;:::i;:::-;42285:27;42295:3;42300:11;42285:9;:27::i;:::-;42129:189:::0;;:::o;31588:177::-;31718:39;31735:4;31741:2;31745:7;31718:39;;;;;;;;;;;;:16;:39::i;25731:187::-;25798:7;25634:12;;25826:5;:21;25818:69;;;;-1:-1:-1;;;25818:69:0;;11267:2:1;25818:69:0;;;11249:21:1;11306:2;11286:18;;;11279:30;11345:34;11325:18;;;11318:62;-1:-1:-1;;;11396:18:1;;;11389:33;11439:19;;25818:69:0;11065:399:1;25818:69:0;-1:-1:-1;25905:5:0;25731:187::o;28727:124::-;28791:7;28818:20;28830:7;28818:11;:20::i;:::-;:25;;28727:124;-1:-1:-1;;28727:124:0:o;27549:221::-;27613:7;-1:-1:-1;;;;;27641:19:0;;27633:75;;;;-1:-1:-1;;;27633:75:0;;11671:2:1;27633:75:0;;;11653:21:1;11710:2;11690:18;;;11683:30;11749:34;11729:18;;;11722:62;-1:-1:-1;;;11800:18:1;;;11793:41;11851:19;;27633:75:0;11469:407:1;27633:75:0;-1:-1:-1;;;;;;27734:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27734:27:0;;27549:221::o;4735:103::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4800:30:::1;4827:1;4800:18;:30::i;:::-;4735:103::o:0;42892:678::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43009:14:::1;43027:1;43009:19:::0;43006:107:::1;;43040:11;:25:::0;;;43076:13:::1;:29:::0;;;43006:107:::1;43122:14;43140:1;43122:19:::0;43119:107:::1;;43153:11;:25:::0;;;43189:13:::1;:29:::0;;;43119:107:::1;43235:14;43253:1;43235:19:::0;43232:107:::1;;43266:11;:25:::0;;;43302:13:::1;:29:::0;;;43232:107:::1;43348:14;43366:1;43348:19:::0;43345:107:::1;;43379:11;:25:::0;;;43415:13:::1;:29:::0;;;43345:107:::1;43461:14;43479:1;43461:19:::0;43458:107:::1;;43492:11;:25:::0;43528:13:::1;:29:::0;-1:-1:-1;42892:678:0:o;44118:82::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44176:9:::1;:18:::0;44118:82::o;43760:91::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43823:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43823:22:0;;::::1;::::0;;;::::1;::::0;;43760:91::o;29087:104::-;29143:13;29176:7;29169:14;;;;;:::i;41637:484::-;41708:8;;;;41700:58;;;;-1:-1:-1;;;41700:58:0;;;;;;;:::i;:::-;41787:1;41773:11;:15;:52;;;;;41807:18;;41792:11;:33;;41773:52;41765:85;;;;-1:-1:-1;;;41765:85:0;;12083:2:1;41765:85:0;;;12065:21:1;12122:2;12102:18;;;12095:30;-1:-1:-1;;;12141:18:1;;;12134:50;12201:18;;41765:85:0;11881:344:1;41765:85:0;41890:11;41878:9;;:23;;;;:::i;:::-;41865:9;:36;;41857:68;;;;-1:-1:-1;;;41857:68:0;;10437:2:1;41857:68:0;;;10419:21:1;10476:2;10456:18;;;10449:30;-1:-1:-1;;;10495:18:1;;;10488:49;10554:18;;41857:68:0;10235:343:1;41857:68:0;41937:8;;;;;;;41934:60;;;41971:15;:11;41985:1;41971:15;:::i;:::-;41957:29;;41934:60;42038:9;;42023:11;42008:12;;:26;;;;:::i;:::-;:39;;42000:72;;;;-1:-1:-1;;;42000:72:0;;;;;;;:::i;:::-;42081:34;42091:10;42103:11;42081:9;:34::i;43576:91::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43642:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;30765:288::-:0;2888:10;-1:-1:-1;;;;;30860:24:0;;;30852:63;;;;-1:-1:-1;;;30852:63:0;;12605:2:1;30852:63:0;;;12587:21:1;12644:2;12624:18;;;12617:30;12683:28;12663:18;;;12656:56;12729:18;;30852:63:0;12403:350:1;30852:63:0;2888:10;30928:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30928:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30928:53:0;;;;;;;;;;30997:48;;540:41:1;;;30928:42:0;;2888:10;30997:48;;513:18:1;30997:48:0;;;;;;;30765:288;;:::o;31836:355::-;31995:28;32005:4;32011:2;32015:7;31995:9;:28::i;:::-;32056:48;32079:4;32085:2;32089:7;32098:5;32056:22;:48::i;:::-;32034:149;;;;-1:-1:-1;;;32034:149:0;;;;;;;:::i;:::-;31836:355;;;;:::o;43673:81::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43731:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43731:17:0;;::::1;::::0;;;::::1;::::0;;43673:81::o;42324:456::-;42423:13;42464:17;42472:8;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;42464:17;42448:98;;;;-1:-1:-1;;;42448:98:0;;13380:2:1;42448:98:0;;;13362:21:1;13419:2;13399:18;;;13392:30;13458:34;13438:18;;;13431:62;-1:-1:-1;;;13509:18:1;;;13502:45;13564:19;;42448:98:0;13178:411:1;42448:98:0;42559:8;;;;;;;:17;;42571:5;42559:17;42555:129;;42587:89;;;;;;;;;;;;;;;;;;42324:456;-1:-1:-1;;42324:456:0:o;42555:129::-;42723:12;42737:26;42754:8;42737:16;:26::i;:::-;42706:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42692:82;;42324:456;;;:::o;39999:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44031:81::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44089:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44089:17:0;;::::1;::::0;;;::::1;::::0;;44031:81::o;43944:::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44002:8:::1;:17:::0;;-1:-1:-1;;44002:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43944:81::o;4993:201::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5082:22:0;::::1;5074:73;;;::::0;-1:-1:-1;;;5074:73:0;;15536:2:1;5074:73:0::1;::::0;::::1;15518:21:1::0;15575:2;15555:18;;;15548:30;15614:34;15594:18;;;15587:62;-1:-1:-1;;;15665:18:1;;;15658:36;15711:19;;5074:73:0::1;15334:402:1::0;5074:73:0::1;5158:28;5177:8;5158:18;:28::i;36572:196::-:0;36687:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36687:29:0;-1:-1:-1;;;;;36687:29:0;;;;;;;;;36732:28;;36687:24;;36732:28;;;;;;;36572:196;;;:::o;34671:1783::-;34786:35;34824:20;34836:7;34824:11;:20::i;:::-;34899:18;;34786:58;;-1:-1:-1;34857:22:0;;-1:-1:-1;;;;;34883:34:0;2888:10;-1:-1:-1;;;;;34883:34:0;;:87;;;-1:-1:-1;2888:10:0;34934:20;34946:7;34934:11;:20::i;:::-;-1:-1:-1;;;;;34934:36:0;;34883:87;:154;;;-1:-1:-1;35004:18:0;;34987:50;;2888:10;31124:164;:::i;34987:50::-;34857:181;;35059:17;35051:80;;;;-1:-1:-1;;;35051:80:0;;15943:2:1;35051:80:0;;;15925:21:1;15982:2;15962:18;;;15955:30;16021:34;16001:18;;;15994:62;-1:-1:-1;;;16072:18:1;;;16065:48;16130:19;;35051:80:0;15741:414:1;35051:80:0;35174:4;-1:-1:-1;;;;;35152:26:0;:13;:18;;;-1:-1:-1;;;;;35152:26:0;;35144:77;;;;-1:-1:-1;;;35144:77:0;;16362:2:1;35144:77:0;;;16344:21:1;16401:2;16381:18;;;16374:30;16440:34;16420:18;;;16413:62;-1:-1:-1;;;16491:18:1;;;16484:36;16537:19;;35144:77:0;16160:402:1;35144:77:0;-1:-1:-1;;;;;35240:16:0;;35232:66;;;;-1:-1:-1;;;35232:66:0;;16769:2:1;35232:66:0;;;16751:21:1;16808:2;16788:18;;;16781:30;16847:34;16827:18;;;16820:62;-1:-1:-1;;;16898:18:1;;;16891:35;16943:19;;35232:66:0;16567:401:1;35232:66:0;35419:49;35436:1;35440:7;35449:13;:18;;;35419:8;:49::i;:::-;-1:-1:-1;;;;;35673:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35673:31:0;;;-1:-1:-1;;;;;35673:31:0;;;-1:-1:-1;;35673:31:0;;;;;;;35719:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35719:29:0;;;;;;;;;;;;;35795:43;;;;;;;;;;35821:15;35795:43;;;;;;;;;;35772:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35772:66:0;;;;;;;-1:-1:-1;;;35772:66:0;;;;;;;;;;;;35673:18;36100:11;;35772:20;;36100:11;:::i;:::-;36167:1;36126:24;;;:11;:24;;;;;:29;36078:33;;-1:-1:-1;;;;;;36126:29:0;36122:227;;36190:20;36198:11;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;36190:20;36186:152;;;36258:64;;;;;;;;36273:18;;-1:-1:-1;;;;;36258:64:0;;;;;;36293:28;;;;36258:64;;;;;;;;;;-1:-1:-1;36231:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36231:91:0;-1:-1:-1;;;;;;36231:91:0;;;;;;;;;;;;36186:152;36385:7;36381:2;-1:-1:-1;;;;;36366:27:0;36375:4;-1:-1:-1;;;;;36366:27:0;;;;;;;;;;;36404:42;34775:1679;;;34671:1783;;;:::o;32565:104::-;32634:27;32644:2;32648:8;32634:27;;;;;;;;;;;;:9;:27::i;28015:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;28118:16:0;28126:7;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;28118:16;28110:71;;;;-1:-1:-1;;;28110:71:0;;17175:2:1;28110:71:0;;;17157:21:1;17214:2;17194:18;;;17187:30;17253:34;17233:18;;;17226:62;-1:-1:-1;;;17304:18:1;;;17297:40;17354:19;;28110:71:0;16973:406:1;28110:71:0;28194:26;28246:12;28235:7;:23;28231:103;;28296:22;28306:12;28296:7;:22;:::i;:::-;:26;;28321:1;28296:26;:::i;:::-;28275:47;;28231:103;28366:7;28346:242;28383:18;28375:4;:26;28346:242;;28426:31;28460:17;;;:11;:17;;;;;;;;;28426:51;;;;;;;;;-1:-1:-1;;;;;28426:51:0;;;;;-1:-1:-1;;;28426:51:0;;;;;;;;;;;;28496:28;28492:85;;28552:9;28015:650;-1:-1:-1;;;;28015:650:0:o;28492:85::-;-1:-1:-1;28403:6:0;;;;:::i;:::-;;;;28346:242;;;-1:-1:-1;28600:57:0;;-1:-1:-1;;;28600:57:0;;17857:2:1;28600:57:0;;;17839:21:1;17896:2;17876:18;;;17869:30;17935:34;17915:18;;;17908:62;-1:-1:-1;;;17986:18:1;;;17979:45;18041:19;;28600:57:0;17655:411:1;5354:191:0;5447:6;;;-1:-1:-1;;;;;5464:17:0;;;-1:-1:-1;;;;;;5464:17:0;;;;;;;5497:40;;5447:6;;;5464:17;5447:6;;5497:40;;5428:16;;5497:40;5417:128;5354:191;:::o;37333:804::-;37488:4;-1:-1:-1;;;;;37509:13:0;;6695:20;6743:8;37505:625;;37545:72;;-1:-1:-1;;;37545:72:0;;-1:-1:-1;;;;;37545:36:0;;;;;:72;;2888:10;;37596:4;;37602:7;;37611:5;;37545:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37545:72:0;;;;;;;;-1:-1:-1;;37545:72:0;;;;;;;;;;;;:::i;:::-;;;37541:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37791:6;:13;37808:1;37791:18;37787:273;;37834:61;;-1:-1:-1;;;37834:61:0;;;;;;;:::i;37787:273::-;38010:6;38004:13;37995:6;37991:2;37987:15;37980:38;37541:534;-1:-1:-1;;;;;;37668:55:0;-1:-1:-1;;;37668:55:0;;-1:-1:-1;37661:62:0;;37505:625;-1:-1:-1;38114:4:0;37505:625;37333:804;;;;;;:::o;370:723::-;426:13;647:5;656:1;647:10;643:53;;-1:-1:-1;;674:10:0;;;;;;;;;;;;-1:-1:-1;;;674:10:0;;;;;370:723::o;643:53::-;721:5;706:12;762:78;769:9;;762:78;;795:8;;;;:::i;:::-;;-1:-1:-1;818:10:0;;-1:-1:-1;826:2:0;818:10;;:::i;:::-;;;762:78;;;850:19;882:6;872:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;872:17:0;;850:39;;900:154;907:10;;900:154;;934:11;944:1;934:11;;:::i;:::-;;-1:-1:-1;1003:10:0;1011:2;1003:5;:10;:::i;:::-;990:24;;:2;:24;:::i;:::-;977:39;;960:6;967;960:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;960:56:0;;;;;;;;-1:-1:-1;1031:11:0;1040:2;1031:11;;:::i;:::-;;;900:154;;32946:1471;33069:20;33092:12;-1:-1:-1;;;;;33123:16:0;;33115:62;;;;-1:-1:-1;;;33115:62:0;;19538:2:1;33115:62:0;;;19520:21:1;19577:2;19557:18;;;19550:30;19616:34;19596:18;;;19589:62;-1:-1:-1;;;19667:18:1;;;19660:31;19708:19;;33115:62:0;19336:397:1;33115:62:0;33322:21;33330:12;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;33322:21;33321:22;33313:64;;;;-1:-1:-1;;;33313:64:0;;19940:2:1;33313:64:0;;;19922:21:1;19979:2;19959:18;;;19952:30;20018:31;19998:18;;;19991:59;20067:18;;33313:64:0;19738:353:1;33313:64:0;33408:12;33396:8;:24;;33388:71;;;;-1:-1:-1;;;33388:71:0;;20298:2:1;33388:71:0;;;20280:21:1;20337:2;20317:18;;;20310:30;20376:34;20356:18;;;20349:62;-1:-1:-1;;;20427:18:1;;;20420:32;20469:19;;33388:71:0;20096:398:1;33388:71:0;33489:1;33478:8;:12;33470:60;;;;-1:-1:-1;;;33470:60:0;;20701:2:1;33470:60:0;;;20683:21:1;20740:2;20720:18;;;20713:30;20779:34;20759:18;;;20752:62;-1:-1:-1;;;20830:18:1;;;20823:33;20873:19;;33470:60:0;20499:399:1;33470:60:0;-1:-1:-1;;;;;33650:16:0;;33617:30;33650:16;;;:12;:16;;;;;;;;;33617:49;;;;;;;;;-1:-1:-1;;;;;33617:49:0;;;;;-1:-1:-1;;;33617:49:0;;;;;;;;;;;33696:135;;;;;;;;33722:19;;33617:49;;33696:135;;;33722:39;;33752:8;;33722:39;:::i;:::-;-1:-1:-1;;;;;33696:135:0;;;;;33811:8;33776:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33696:135:0;;;;;;-1:-1:-1;;;;;33677:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33677:154:0;;;;;;;;;;;;33870:43;;;;;;;;;;;33896:15;33870:43;;;;;;;;33842:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33842:71:0;-1:-1:-1;;;;;;33842:71:0;;;;;;;;;;;;;;;;;;33854:12;;33974:325;33998:8;33994:1;:12;33974:325;;;34033:38;;34058:12;;-1:-1:-1;;;;;34033:38:0;;;34050:1;;34033:38;;34050:1;;34033:38;34112:59;34143:1;34147:2;34151:12;34165:5;34112:22;:59::i;:::-;34086:172;;;;-1:-1:-1;;;34086:172:0;;;;;;;:::i;:::-;34273:14;;;;:::i;:::-;;;;34008:3;;;;;:::i;:::-;;;;33974:325;;;-1:-1:-1;34311:12:0;:27;;;34349:60;31836:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:160::-;2966:20;;3022:13;;3015:21;3005:32;;2995:60;;3051:1;3048;3041:12;3066:180;3122:6;3175:2;3163:9;3154:7;3150:23;3146:32;3143:52;;;3191:1;3188;3181:12;3143:52;3214:26;3230:9;3214:26;:::i;3251:316::-;3328:6;3336;3344;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;-1:-1:-1;;3436:23:1;;;3506:2;3491:18;;3478:32;;-1:-1:-1;3557:2:1;3542:18;;;3529:32;;3251:316;-1:-1:-1;3251:316:1:o;3572:127::-;3633:10;3628:3;3624:20;3621:1;3614:31;3664:4;3661:1;3654:15;3688:4;3685:1;3678:15;3704:632;3769:5;3799:18;3840:2;3832:6;3829:14;3826:40;;;3846:18;;:::i;:::-;3921:2;3915:9;3889:2;3975:15;;-1:-1:-1;;3971:24:1;;;3997:2;3967:33;3963:42;3951:55;;;4021:18;;;4041:22;;;4018:46;4015:72;;;4067:18;;:::i;:::-;4107:10;4103:2;4096:22;4136:6;4127:15;;4166:6;4158;4151:22;4206:3;4197:6;4192:3;4188:16;4185:25;4182:45;;;4223:1;4220;4213:12;4182:45;4273:6;4268:3;4261:4;4253:6;4249:17;4236:44;4328:1;4321:4;4312:6;4304;4300:19;4296:30;4289:41;;;;3704:632;;;;;:::o;4341:451::-;4410:6;4463:2;4451:9;4442:7;4438:23;4434:32;4431:52;;;4479:1;4476;4469:12;4431:52;4519:9;4506:23;4552:18;4544:6;4541:30;4538:50;;;4584:1;4581;4574:12;4538:50;4607:22;;4660:4;4652:13;;4648:27;-1:-1:-1;4638:55:1;;4689:1;4686;4679:12;4638:55;4712:74;4778:7;4773:2;4760:16;4755:2;4751;4747:11;4712:74;:::i;4797:254::-;4862:6;4870;4923:2;4911:9;4902:7;4898:23;4894:32;4891:52;;;4939:1;4936;4929:12;4891:52;4962:29;4981:9;4962:29;:::i;:::-;4952:39;;5010:35;5041:2;5030:9;5026:18;5010:35;:::i;:::-;5000:45;;4797:254;;;;;:::o;5056:667::-;5151:6;5159;5167;5175;5228:3;5216:9;5207:7;5203:23;5199:33;5196:53;;;5245:1;5242;5235:12;5196:53;5268:29;5287:9;5268:29;:::i;:::-;5258:39;;5316:38;5350:2;5339:9;5335:18;5316:38;:::i;:::-;5306:48;;5401:2;5390:9;5386:18;5373:32;5363:42;;5456:2;5445:9;5441:18;5428:32;5483:18;5475:6;5472:30;5469:50;;;5515:1;5512;5505:12;5469:50;5538:22;;5591:4;5583:13;;5579:27;-1:-1:-1;5569:55:1;;5620:1;5617;5610:12;5569:55;5643:74;5709:7;5704:2;5691:16;5686:2;5682;5678:11;5643:74;:::i;:::-;5633:84;;;5056:667;;;;;;;:::o;5728:260::-;5796:6;5804;5857:2;5845:9;5836:7;5832:23;5828:32;5825:52;;;5873:1;5870;5863:12;5825:52;5896:29;5915:9;5896:29;:::i;:::-;5886:39;;5944:38;5978:2;5967:9;5963:18;5944:38;:::i;5993:380::-;6072:1;6068:12;;;;6115;;;6136:61;;6190:4;6182:6;6178:17;6168:27;;6136:61;6243:2;6235:6;6232:14;6212:18;6209:38;6206:161;;6289:10;6284:3;6280:20;6277:1;6270:31;6324:4;6321:1;6314:15;6352:4;6349:1;6342:15;6206:161;;5993:380;;;:::o;8024:127::-;8085:10;8080:3;8076:20;8073:1;8066:31;8116:4;8113:1;8106:15;8140:4;8137:1;8130:15;8156:135;8195:3;8216:17;;;8213:43;;8236:18;;:::i;:::-;-1:-1:-1;8283:1:1;8272:13;;8156:135::o;8711:356::-;8913:2;8895:21;;;8932:18;;;8925:30;8991:34;8986:2;8971:18;;8964:62;9058:2;9043:18;;8711:356::o;9072:401::-;9274:2;9256:21;;;9313:2;9293:18;;;9286:30;9352:34;9347:2;9332:18;;9325:62;-1:-1:-1;;;9418:2:1;9403:18;;9396:35;9463:3;9448:19;;9072:401::o;10583:128::-;10623:3;10654:1;10650:6;10647:1;10644:13;10641:39;;;10660:18;;:::i;:::-;-1:-1:-1;10696:9:1;;10583:128::o;10716:344::-;10918:2;10900:21;;;10957:2;10937:18;;;10930:30;-1:-1:-1;;;10991:2:1;10976:18;;10969:50;11051:2;11036:18;;10716:344::o;12230:168::-;12270:7;12336:1;12332;12328:6;12324:14;12321:1;12318:21;12313:1;12306:9;12299:17;12295:45;12292:71;;;12343:18;;:::i;:::-;-1:-1:-1;12383:9:1;;12230:168::o;12758:415::-;12960:2;12942:21;;;12999:2;12979:18;;;12972:30;13038:34;13033:2;13018:18;;13011:62;-1:-1:-1;;;13104:2:1;13089:18;;13082:49;13163:3;13148:19;;12758:415::o;13720:185::-;13762:3;13800:5;13794:12;13815:52;13860:6;13855:3;13848:4;13841:5;13837:16;13815:52;:::i;:::-;13883:16;;;;;13720:185;-1:-1:-1;;13720:185:1:o;14028:1301::-;14305:3;14334:1;14367:6;14361:13;14397:3;14419:1;14447:9;14443:2;14439:18;14429:28;;14507:2;14496:9;14492:18;14529;14519:61;;14573:4;14565:6;14561:17;14551:27;;14519:61;14599:2;14647;14639:6;14636:14;14616:18;14613:38;14610:165;;-1:-1:-1;;;14674:33:1;;14730:4;14727:1;14720:15;14760:4;14681:3;14748:17;14610:165;14791:18;14818:104;;;;14936:1;14931:320;;;;14784:467;;14818:104;-1:-1:-1;;14851:24:1;;14839:37;;14896:16;;;;-1:-1:-1;14818:104:1;;14931:320;13667:1;13660:14;;;13704:4;13691:18;;15026:1;15040:165;15054:6;15051:1;15048:13;15040:165;;;15132:14;;15119:11;;;15112:35;15175:16;;;;15069:10;;15040:165;;;15044:3;;15234:6;15229:3;15225:16;15218:23;;14784:467;;;;;;;15267:56;15292:30;15318:3;15310:6;15292:30;:::i;:::-;-1:-1:-1;;;13970:20:1;;14015:1;14006:11;;13910:113;15267:56;15260:63;14028:1301;-1:-1:-1;;;;;14028:1301:1:o;17384:125::-;17424:4;17452:1;17449;17446:8;17443:34;;;17457:18;;:::i;:::-;-1:-1:-1;17494:9:1;;17384:125::o;17514:136::-;17553:3;17581:5;17571:39;;17590:18;;:::i;:::-;-1:-1:-1;;;17626:18:1;;17514:136::o;18071:500::-;-1:-1:-1;;;;;18340:15:1;;;18322:34;;18392:15;;18387:2;18372:18;;18365:43;18439:2;18424:18;;18417:34;;;18487:3;18482:2;18467:18;;18460:31;;;18265:4;;18508:57;;18545:19;;18537:6;18508:57;:::i;:::-;18500:65;18071:500;-1:-1:-1;;;;;;18071:500:1:o;18576:249::-;18645:6;18698:2;18686:9;18677:7;18673:23;18669:32;18666:52;;;18714:1;18711;18704:12;18666:52;18746:9;18740:16;18765:30;18789:5;18765:30;:::i;18830:127::-;18891:10;18886:3;18882:20;18879:1;18872:31;18922:4;18919:1;18912:15;18946:4;18943:1;18936:15;18962:120;19002:1;19028;19018:35;;19033:18;;:::i;:::-;-1:-1:-1;19067:9:1;;18962:120::o;19087:112::-;19119:1;19145;19135:35;;19150:18;;:::i;:::-;-1:-1:-1;19184:9:1;;19087:112::o;19204:127::-;19265:10;19260:3;19256:20;19253:1;19246:31;19296:4;19293:1;19286:15;19320:4;19317:1;19310:15;20903:253;20943:3;-1:-1:-1;;;;;21032:2:1;21029:1;21025:10;21062:2;21059:1;21055:10;21093:3;21089:2;21085:12;21080:3;21077:21;21074:47;;;21101:18;;:::i;:::-;21137:13;;20903:253;-1:-1:-1;;;;20903:253:1:o

Swarm Source

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