ETH Price: $3,183.87 (+1.61%)
Gas: 7 Gwei

Token

Complexio (CMPLX)
 

Overview

Max Total Supply

245 CMPLX

Holders

74

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mayian.eth
Balance
1 CMPLX
0x067753a1d65293af77c0074b2afd535d3cbc21ed
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:
Complexio

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-04
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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.0 (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.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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.0 (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.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Complexio.sol


pragma solidity ^0.8.10;




contract Complexio is ERC721, ERC721Enumerable, Ownable {
    uint256 public constant MAX_SUPPLY = 1234;
    uint256 public constant FREE_MINTS = 200;
    uint256 public constant PRICE = 0.1 ether;
    uint256 public constant MAX_PER_TXN = 20;
    mapping(address => uint256) public walletClaims; // max 5 per wallet
    uint256 public burnedTokens;
    bool public saleActive;

    string private URI =
        "https://gateway.pinata.cloud/ipfs/QmehJqczGNWR89yY4jPvZ5a1NW7Xjibw9auupNjGYEAs71/";

    constructor() ERC721("Complexio", "CMPLX") {}

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

    function setURI(string memory _URI) external onlyOwner {
        URI = _URI;
    }

    function flipSale() external onlyOwner {
        saleActive = !saleActive;
    }

    function freeMint(uint256 amount) external {
        require(saleActive, "Sale inactive");
        require(amount + walletClaims[msg.sender] <= 5, "5 free per wallet!");
        require(
            amount + totalSupply() + burnedTokens <= FREE_MINTS,
            "No more free mints!"
        );

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, totalSupply() + burnedTokens);
        }
        walletClaims[msg.sender] += amount;
    }

    function mint(uint256 amount) external payable {
        require(saleActive, "Sale inactive");
        require(amount <= MAX_PER_TXN, "Exceeds max. per txn.");
        require(
            amount + totalSupply() + burnedTokens <= MAX_SUPPLY,
            "Supply limit"
        );
        require(msg.value >= amount * PRICE, "Incorrect ETH");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, totalSupply() + burnedTokens);
        }
    }

    function burnMany(uint256[] calldata tokenIds) external onlyOwner {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _burn(tokenIds[i]);
        }
        burnedTokens += tokenIds.length;
    }

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

    function airdrop(address to, uint256 amount) external onlyOwner {
        require(amount <= MAX_PER_TXN, "Exceeds max. per txn.");
        require(
            amount + totalSupply() + burnedTokens <= MAX_SUPPLY,
            "Supply limit!"
        );
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(to, totalSupply() + burnedTokens);
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260516080818152906200267060a03980516200002a91600e9160209091019062000116565b503480156200003857600080fd5b506040805180820182526009815268436f6d706c6578696f60b81b6020808301918252835180850190945260058452640869aa098b60db1b908401528151919291620000879160009162000116565b5080516200009d90600190602084019062000116565b505050620000ba620000b4620000c060201b60201c565b620000c4565b620001f9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b61246780620002096000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d57806395d89b41116100a0578063c8761d241161006f578063c8761d2414610534578063c87b56dd14610561578063cf32346014610581578063e985e9c5146105a1578063f2fde38b146105ea57600080fd5b806395d89b41146104cc578063a0712d68146104e1578063a22cb465146104f4578063b88d4fde1461051457600080fd5b8063853828b6116100dc578063853828b61461045d5780638ba4cc3c146104725780638d859f3e146104925780638da5cb5b146104ae57600080fd5b8063715018a6146103fe578063764267b6146104135780637ba5e621146104285780637c928fe91461043d57600080fd5b806332cb6b0c1161018557806351b96d921161015457806351b96d921461038f5780636352211e146103a457806368428a1b146103c457806370a08231146103de57600080fd5b806332cb6b0c1461032357806342842e0e1461033957806347b5dd54146103595780634f6ccce71461036f57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632f745c591461030357600080fd5b806301ffc9a7146101f357806302fe53051461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e39565b61060a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611ee2565b61061b565b005b34801561025657600080fd5b5061025f610665565b60405161021f9190611f83565b34801561027857600080fd5b5061028c610287366004611f96565b6106f7565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611fcb565b61078c565b3480156102d057600080fd5b506008545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611ff5565b6108a2565b34801561030f57600080fd5b506102d561031e366004611fcb565b6108d3565b34801561032f57600080fd5b506102d56104d281565b34801561034557600080fd5b50610248610354366004611ff5565b610969565b34801561036557600080fd5b506102d5600c5481565b34801561037b57600080fd5b506102d561038a366004611f96565b610984565b34801561039b57600080fd5b506102d5601481565b3480156103b057600080fd5b5061028c6103bf366004611f96565b610a17565b3480156103d057600080fd5b50600d546102139060ff1681565b3480156103ea57600080fd5b506102d56103f9366004612031565b610a8e565b34801561040a57600080fd5b50610248610b15565b34801561041f57600080fd5b506102d560c881565b34801561043457600080fd5b50610248610b4b565b34801561044957600080fd5b50610248610458366004611f96565b610b89565b34801561046957600080fd5b50610248610cf5565b34801561047e57600080fd5b5061024861048d366004611fcb565b610d5b565b34801561049e57600080fd5b506102d567016345785d8a000081565b3480156104ba57600080fd5b50600a546001600160a01b031661028c565b3480156104d857600080fd5b5061025f610e5c565b6102486104ef366004611f96565b610e6b565b34801561050057600080fd5b5061024861050f36600461204c565b610fd4565b34801561052057600080fd5b5061024861052f366004612088565b610fdf565b34801561054057600080fd5b506102d561054f366004612031565b600b6020526000908152604090205481565b34801561056d57600080fd5b5061025f61057c366004611f96565b611017565b34801561058d57600080fd5b5061024861059c366004612104565b6110f2565b3480156105ad57600080fd5b506102136105bc366004612179565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105f657600080fd5b50610248610605366004612031565b611179565b600061061582611211565b92915050565b600a546001600160a01b0316331461064e5760405162461bcd60e51b8152600401610645906121ac565b60405180910390fd5b805161066190600e906020840190611d8a565b5050565b606060008054610674906121e1565b80601f01602080910402602001604051908101604052809291908181526020018280546106a0906121e1565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610645565b506000908152600460205260409020546001600160a01b031690565b600061079782610a17565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610645565b336001600160a01b0382161480610821575061082181336105bc565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610645565b61089d8383611236565b505050565b6108ac33826112a4565b6108c85760405162461bcd60e51b81526004016106459061221c565b61089d83838361139b565b60006108de83610a8e565b82106109405760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610645565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61089d83838360405180602001604052806000815250610fdf565b600061098f60085490565b82106109f25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610645565b60088281548110610a0557610a0561226d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610645565b60006001600160a01b038216610af95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610645565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b3f5760405162461bcd60e51b8152600401610645906121ac565b610b496000611546565b565b600a546001600160a01b03163314610b755760405162461bcd60e51b8152600401610645906121ac565b600d805460ff19811660ff90911615179055565b600d5460ff16610bcb5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b6044820152606401610645565b336000908152600b6020526040902054600590610be89083612299565b1115610c2b5760405162461bcd60e51b8152602060048201526012602482015271352066726565207065722077616c6c65742160701b6044820152606401610645565b60c8600c54610c3960085490565b610c439084612299565b610c4d9190612299565b1115610c915760405162461bcd60e51b81526020600482015260136024820152724e6f206d6f72652066726565206d696e74732160681b6044820152606401610645565b60005b81811015610ccd57610cbb33600c54610cac60085490565b610cb69190612299565b611598565b80610cc5816122b1565b915050610c94565b50336000908152600b602052604081208054839290610ced908490612299565b909155505050565b600a546001600160a01b03163314610d1f5760405162461bcd60e51b8152600401610645906121ac565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d58573d6000803e3d6000fd5b50565b600a546001600160a01b03163314610d855760405162461bcd60e51b8152600401610645906121ac565b6014811115610dce5760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc17103832b9103a3c371760591b6044820152606401610645565b6104d2600c54610ddd60085490565b610de79084612299565b610df19190612299565b1115610e2f5760405162461bcd60e51b815260206004820152600d60248201526c537570706c79206c696d69742160981b6044820152606401610645565b60005b8181101561089d57610e4a83600c54610cac60085490565b80610e54816122b1565b915050610e32565b606060018054610674906121e1565b600d5460ff16610ead5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b6044820152606401610645565b6014811115610ef65760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc17103832b9103a3c371760591b6044820152606401610645565b6104d2600c54610f0560085490565b610f0f9084612299565b610f199190612299565b1115610f565760405162461bcd60e51b815260206004820152600c60248201526b14dd5c1c1b1e481b1a5b5a5d60a21b6044820152606401610645565b610f6867016345785d8a0000826122cc565b341015610fa75760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610645565b60005b8181101561066157610fc233600c54610cac60085490565b80610fcc816122b1565b915050610faa565b6106613383836115b2565b610fe933836112a4565b6110055760405162461bcd60e51b81526004016106459061221c565b61101184848484611681565b50505050565b6000818152600260205260409020546060906001600160a01b03166110965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610645565b60006110a06116b4565b905060008151116110c057604051806020016040528060008152506110eb565b806110ca846116c3565b6040516020016110db9291906122eb565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461111c5760405162461bcd60e51b8152600401610645906121ac565b60005b8181101561115a5761114883838381811061113c5761113c61226d565b905060200201356117c1565b80611152816122b1565b91505061111f565b5081819050600c60008282546111709190612299565b90915550505050565b600a546001600160a01b031633146111a35760405162461bcd60e51b8152600401610645906121ac565b6001600160a01b0381166112085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610645565b610d5881611546565b60006001600160e01b0319821663780e9d6360e01b1480610615575061061582611868565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126b82610a17565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661131d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610645565b600061132883610a17565b9050806001600160a01b0316846001600160a01b031614806113635750836001600160a01b0316611358846106f7565b6001600160a01b0316145b8061139357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113ae82610a17565b6001600160a01b0316146114165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610645565b6001600160a01b0382166114785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610645565b6114838383836118b8565b61148e600082611236565b6001600160a01b03831660009081526003602052604081208054600192906114b790849061231a565b90915550506001600160a01b03821660009081526003602052604081208054600192906114e5908490612299565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106618282604051806020016040528060008152506118c3565b816001600160a01b0316836001600160a01b031614156116145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610645565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61168c84848461139b565b611698848484846118f6565b6110115760405162461bcd60e51b815260040161064590612331565b6060600e8054610674906121e1565b6060816116e75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171157806116fb816122b1565b915061170a9050600a83612399565b91506116eb565b60008167ffffffffffffffff81111561172c5761172c611e56565b6040519080825280601f01601f191660200182016040528015611756576020820181803683370190505b5090505b84156113935761176b60018361231a565b9150611778600a866123ad565b611783906030612299565b60f81b8183815181106117985761179861226d565b60200101906001600160f81b031916908160001a9053506117ba600a86612399565b945061175a565b60006117cc82610a17565b90506117da816000846118b8565b6117e5600083611236565b6001600160a01b038116600090815260036020526040812080546001929061180e90849061231a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061189957506001600160e01b03198216635b5e139f60e01b145b8061061557506301ffc9a760e01b6001600160e01b0319831614610615565b61089d8383836119f4565b6118cd8383611aac565b6118da60008484846118f6565b61089d5760405162461bcd60e51b815260040161064590612331565b60006001600160a01b0384163b156119e957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061193a9033908990889088906004016123c1565b6020604051808303816000875af1925050508015611975575060408051601f3d908101601f19168201909252611972918101906123fe565b60015b6119cf573d8080156119a3576040519150601f19603f3d011682016040523d82523d6000602084013e6119a8565b606091505b5080516119c75760405162461bcd60e51b815260040161064590612331565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611393565b506001949350505050565b6001600160a01b038316611a4f57611a4a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a72565b816001600160a01b0316836001600160a01b031614611a7257611a728382611bfa565b6001600160a01b038216611a895761089d81611c97565b826001600160a01b0316826001600160a01b03161461089d5761089d8282611d46565b6001600160a01b038216611b025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610645565b6000818152600260205260409020546001600160a01b031615611b675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610645565b611b73600083836118b8565b6001600160a01b0382166000908152600360205260408120805460019290611b9c908490612299565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c0784610a8e565b611c11919061231a565b600083815260076020526040902054909150808214611c64576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ca99060019061231a565b60008381526009602052604081205460088054939450909284908110611cd157611cd161226d565b906000526020600020015490508060088381548110611cf257611cf261226d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d2a57611d2a61241b565b6001900381819060005260206000200160009055905550505050565b6000611d5183610a8e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611d96906121e1565b90600052602060002090601f016020900481019282611db85760008555611dfe565b82601f10611dd157805160ff1916838001178555611dfe565b82800160010185558215611dfe579182015b82811115611dfe578251825591602001919060010190611de3565b50611e0a929150611e0e565b5090565b5b80821115611e0a5760008155600101611e0f565b6001600160e01b031981168114610d5857600080fd5b600060208284031215611e4b57600080fd5b81356110eb81611e23565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e8757611e87611e56565b604051601f8501601f19908116603f01168101908282118183101715611eaf57611eaf611e56565b81604052809350858152868686011115611ec857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ef457600080fd5b813567ffffffffffffffff811115611f0b57600080fd5b8201601f81018413611f1c57600080fd5b61139384823560208401611e6c565b60005b83811015611f46578181015183820152602001611f2e565b838111156110115750506000910152565b60008151808452611f6f816020860160208601611f2b565b601f01601f19169290920160200192915050565b6020815260006110eb6020830184611f57565b600060208284031215611fa857600080fd5b5035919050565b80356001600160a01b0381168114611fc657600080fd5b919050565b60008060408385031215611fde57600080fd5b611fe783611faf565b946020939093013593505050565b60008060006060848603121561200a57600080fd5b61201384611faf565b925061202160208501611faf565b9150604084013590509250925092565b60006020828403121561204357600080fd5b6110eb82611faf565b6000806040838503121561205f57600080fd5b61206883611faf565b91506020830135801515811461207d57600080fd5b809150509250929050565b6000806000806080858703121561209e57600080fd5b6120a785611faf565b93506120b560208601611faf565b925060408501359150606085013567ffffffffffffffff8111156120d857600080fd5b8501601f810187136120e957600080fd5b6120f887823560208401611e6c565b91505092959194509250565b6000806020838503121561211757600080fd5b823567ffffffffffffffff8082111561212f57600080fd5b818501915085601f83011261214357600080fd5b81358181111561215257600080fd5b8660208260051b850101111561216757600080fd5b60209290920196919550909350505050565b6000806040838503121561218c57600080fd5b61219583611faf565b91506121a360208401611faf565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121f557607f821691505b6020821081141561221657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156122ac576122ac612283565b500190565b60006000198214156122c5576122c5612283565b5060010190565b60008160001904831182151516156122e6576122e6612283565b500290565b600083516122fd818460208801611f2b565b835190830190612311818360208801611f2b565b01949350505050565b60008282101561232c5761232c612283565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123a8576123a8612383565b500490565b6000826123bc576123bc612383565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f490830184611f57565b9695505050505050565b60006020828403121561241057600080fd5b81516110eb81611e23565b634e487b7160e01b600052603160045260246000fdfea264697066735822122057201827a42f691de67ccbd052943c0b9bb59e75374a868e8f17f7fc594b3ad064736f6c634300080a003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65684a71637a474e575238397959346a50765a3561314e5737586a69627739617575704e6a475945417337312f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d57806395d89b41116100a0578063c8761d241161006f578063c8761d2414610534578063c87b56dd14610561578063cf32346014610581578063e985e9c5146105a1578063f2fde38b146105ea57600080fd5b806395d89b41146104cc578063a0712d68146104e1578063a22cb465146104f4578063b88d4fde1461051457600080fd5b8063853828b6116100dc578063853828b61461045d5780638ba4cc3c146104725780638d859f3e146104925780638da5cb5b146104ae57600080fd5b8063715018a6146103fe578063764267b6146104135780637ba5e621146104285780637c928fe91461043d57600080fd5b806332cb6b0c1161018557806351b96d921161015457806351b96d921461038f5780636352211e146103a457806368428a1b146103c457806370a08231146103de57600080fd5b806332cb6b0c1461032357806342842e0e1461033957806347b5dd54146103595780634f6ccce71461036f57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632f745c591461030357600080fd5b806301ffc9a7146101f357806302fe53051461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e39565b61060a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611ee2565b61061b565b005b34801561025657600080fd5b5061025f610665565b60405161021f9190611f83565b34801561027857600080fd5b5061028c610287366004611f96565b6106f7565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611fcb565b61078c565b3480156102d057600080fd5b506008545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611ff5565b6108a2565b34801561030f57600080fd5b506102d561031e366004611fcb565b6108d3565b34801561032f57600080fd5b506102d56104d281565b34801561034557600080fd5b50610248610354366004611ff5565b610969565b34801561036557600080fd5b506102d5600c5481565b34801561037b57600080fd5b506102d561038a366004611f96565b610984565b34801561039b57600080fd5b506102d5601481565b3480156103b057600080fd5b5061028c6103bf366004611f96565b610a17565b3480156103d057600080fd5b50600d546102139060ff1681565b3480156103ea57600080fd5b506102d56103f9366004612031565b610a8e565b34801561040a57600080fd5b50610248610b15565b34801561041f57600080fd5b506102d560c881565b34801561043457600080fd5b50610248610b4b565b34801561044957600080fd5b50610248610458366004611f96565b610b89565b34801561046957600080fd5b50610248610cf5565b34801561047e57600080fd5b5061024861048d366004611fcb565b610d5b565b34801561049e57600080fd5b506102d567016345785d8a000081565b3480156104ba57600080fd5b50600a546001600160a01b031661028c565b3480156104d857600080fd5b5061025f610e5c565b6102486104ef366004611f96565b610e6b565b34801561050057600080fd5b5061024861050f36600461204c565b610fd4565b34801561052057600080fd5b5061024861052f366004612088565b610fdf565b34801561054057600080fd5b506102d561054f366004612031565b600b6020526000908152604090205481565b34801561056d57600080fd5b5061025f61057c366004611f96565b611017565b34801561058d57600080fd5b5061024861059c366004612104565b6110f2565b3480156105ad57600080fd5b506102136105bc366004612179565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105f657600080fd5b50610248610605366004612031565b611179565b600061061582611211565b92915050565b600a546001600160a01b0316331461064e5760405162461bcd60e51b8152600401610645906121ac565b60405180910390fd5b805161066190600e906020840190611d8a565b5050565b606060008054610674906121e1565b80601f01602080910402602001604051908101604052809291908181526020018280546106a0906121e1565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610645565b506000908152600460205260409020546001600160a01b031690565b600061079782610a17565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610645565b336001600160a01b0382161480610821575061082181336105bc565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610645565b61089d8383611236565b505050565b6108ac33826112a4565b6108c85760405162461bcd60e51b81526004016106459061221c565b61089d83838361139b565b60006108de83610a8e565b82106109405760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610645565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61089d83838360405180602001604052806000815250610fdf565b600061098f60085490565b82106109f25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610645565b60088281548110610a0557610a0561226d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610645565b60006001600160a01b038216610af95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610645565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b3f5760405162461bcd60e51b8152600401610645906121ac565b610b496000611546565b565b600a546001600160a01b03163314610b755760405162461bcd60e51b8152600401610645906121ac565b600d805460ff19811660ff90911615179055565b600d5460ff16610bcb5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b6044820152606401610645565b336000908152600b6020526040902054600590610be89083612299565b1115610c2b5760405162461bcd60e51b8152602060048201526012602482015271352066726565207065722077616c6c65742160701b6044820152606401610645565b60c8600c54610c3960085490565b610c439084612299565b610c4d9190612299565b1115610c915760405162461bcd60e51b81526020600482015260136024820152724e6f206d6f72652066726565206d696e74732160681b6044820152606401610645565b60005b81811015610ccd57610cbb33600c54610cac60085490565b610cb69190612299565b611598565b80610cc5816122b1565b915050610c94565b50336000908152600b602052604081208054839290610ced908490612299565b909155505050565b600a546001600160a01b03163314610d1f5760405162461bcd60e51b8152600401610645906121ac565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d58573d6000803e3d6000fd5b50565b600a546001600160a01b03163314610d855760405162461bcd60e51b8152600401610645906121ac565b6014811115610dce5760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc17103832b9103a3c371760591b6044820152606401610645565b6104d2600c54610ddd60085490565b610de79084612299565b610df19190612299565b1115610e2f5760405162461bcd60e51b815260206004820152600d60248201526c537570706c79206c696d69742160981b6044820152606401610645565b60005b8181101561089d57610e4a83600c54610cac60085490565b80610e54816122b1565b915050610e32565b606060018054610674906121e1565b600d5460ff16610ead5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b6044820152606401610645565b6014811115610ef65760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc17103832b9103a3c371760591b6044820152606401610645565b6104d2600c54610f0560085490565b610f0f9084612299565b610f199190612299565b1115610f565760405162461bcd60e51b815260206004820152600c60248201526b14dd5c1c1b1e481b1a5b5a5d60a21b6044820152606401610645565b610f6867016345785d8a0000826122cc565b341015610fa75760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610645565b60005b8181101561066157610fc233600c54610cac60085490565b80610fcc816122b1565b915050610faa565b6106613383836115b2565b610fe933836112a4565b6110055760405162461bcd60e51b81526004016106459061221c565b61101184848484611681565b50505050565b6000818152600260205260409020546060906001600160a01b03166110965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610645565b60006110a06116b4565b905060008151116110c057604051806020016040528060008152506110eb565b806110ca846116c3565b6040516020016110db9291906122eb565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461111c5760405162461bcd60e51b8152600401610645906121ac565b60005b8181101561115a5761114883838381811061113c5761113c61226d565b905060200201356117c1565b80611152816122b1565b91505061111f565b5081819050600c60008282546111709190612299565b90915550505050565b600a546001600160a01b031633146111a35760405162461bcd60e51b8152600401610645906121ac565b6001600160a01b0381166112085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610645565b610d5881611546565b60006001600160e01b0319821663780e9d6360e01b1480610615575061061582611868565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126b82610a17565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661131d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610645565b600061132883610a17565b9050806001600160a01b0316846001600160a01b031614806113635750836001600160a01b0316611358846106f7565b6001600160a01b0316145b8061139357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113ae82610a17565b6001600160a01b0316146114165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610645565b6001600160a01b0382166114785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610645565b6114838383836118b8565b61148e600082611236565b6001600160a01b03831660009081526003602052604081208054600192906114b790849061231a565b90915550506001600160a01b03821660009081526003602052604081208054600192906114e5908490612299565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106618282604051806020016040528060008152506118c3565b816001600160a01b0316836001600160a01b031614156116145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610645565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61168c84848461139b565b611698848484846118f6565b6110115760405162461bcd60e51b815260040161064590612331565b6060600e8054610674906121e1565b6060816116e75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171157806116fb816122b1565b915061170a9050600a83612399565b91506116eb565b60008167ffffffffffffffff81111561172c5761172c611e56565b6040519080825280601f01601f191660200182016040528015611756576020820181803683370190505b5090505b84156113935761176b60018361231a565b9150611778600a866123ad565b611783906030612299565b60f81b8183815181106117985761179861226d565b60200101906001600160f81b031916908160001a9053506117ba600a86612399565b945061175a565b60006117cc82610a17565b90506117da816000846118b8565b6117e5600083611236565b6001600160a01b038116600090815260036020526040812080546001929061180e90849061231a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061189957506001600160e01b03198216635b5e139f60e01b145b8061061557506301ffc9a760e01b6001600160e01b0319831614610615565b61089d8383836119f4565b6118cd8383611aac565b6118da60008484846118f6565b61089d5760405162461bcd60e51b815260040161064590612331565b60006001600160a01b0384163b156119e957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061193a9033908990889088906004016123c1565b6020604051808303816000875af1925050508015611975575060408051601f3d908101601f19168201909252611972918101906123fe565b60015b6119cf573d8080156119a3576040519150601f19603f3d011682016040523d82523d6000602084013e6119a8565b606091505b5080516119c75760405162461bcd60e51b815260040161064590612331565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611393565b506001949350505050565b6001600160a01b038316611a4f57611a4a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a72565b816001600160a01b0316836001600160a01b031614611a7257611a728382611bfa565b6001600160a01b038216611a895761089d81611c97565b826001600160a01b0316826001600160a01b03161461089d5761089d8282611d46565b6001600160a01b038216611b025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610645565b6000818152600260205260409020546001600160a01b031615611b675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610645565b611b73600083836118b8565b6001600160a01b0382166000908152600360205260408120805460019290611b9c908490612299565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c0784610a8e565b611c11919061231a565b600083815260076020526040902054909150808214611c64576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ca99060019061231a565b60008381526009602052604081205460088054939450909284908110611cd157611cd161226d565b906000526020600020015490508060088381548110611cf257611cf261226d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d2a57611d2a61241b565b6001900381819060005260206000200160009055905550505050565b6000611d5183610a8e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611d96906121e1565b90600052602060002090601f016020900481019282611db85760008555611dfe565b82601f10611dd157805160ff1916838001178555611dfe565b82800160010185558215611dfe579182015b82811115611dfe578251825591602001919060010190611de3565b50611e0a929150611e0e565b5090565b5b80821115611e0a5760008155600101611e0f565b6001600160e01b031981168114610d5857600080fd5b600060208284031215611e4b57600080fd5b81356110eb81611e23565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e8757611e87611e56565b604051601f8501601f19908116603f01168101908282118183101715611eaf57611eaf611e56565b81604052809350858152868686011115611ec857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ef457600080fd5b813567ffffffffffffffff811115611f0b57600080fd5b8201601f81018413611f1c57600080fd5b61139384823560208401611e6c565b60005b83811015611f46578181015183820152602001611f2e565b838111156110115750506000910152565b60008151808452611f6f816020860160208601611f2b565b601f01601f19169290920160200192915050565b6020815260006110eb6020830184611f57565b600060208284031215611fa857600080fd5b5035919050565b80356001600160a01b0381168114611fc657600080fd5b919050565b60008060408385031215611fde57600080fd5b611fe783611faf565b946020939093013593505050565b60008060006060848603121561200a57600080fd5b61201384611faf565b925061202160208501611faf565b9150604084013590509250925092565b60006020828403121561204357600080fd5b6110eb82611faf565b6000806040838503121561205f57600080fd5b61206883611faf565b91506020830135801515811461207d57600080fd5b809150509250929050565b6000806000806080858703121561209e57600080fd5b6120a785611faf565b93506120b560208601611faf565b925060408501359150606085013567ffffffffffffffff8111156120d857600080fd5b8501601f810187136120e957600080fd5b6120f887823560208401611e6c565b91505092959194509250565b6000806020838503121561211757600080fd5b823567ffffffffffffffff8082111561212f57600080fd5b818501915085601f83011261214357600080fd5b81358181111561215257600080fd5b8660208260051b850101111561216757600080fd5b60209290920196919550909350505050565b6000806040838503121561218c57600080fd5b61219583611faf565b91506121a360208401611faf565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121f557607f821691505b6020821081141561221657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156122ac576122ac612283565b500190565b60006000198214156122c5576122c5612283565b5060010190565b60008160001904831182151516156122e6576122e6612283565b500290565b600083516122fd818460208801611f2b565b835190830190612311818360208801611f2b565b01949350505050565b60008282101561232c5761232c612283565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123a8576123a8612383565b500490565b6000826123bc576123bc612383565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f490830184611f57565b9695505050505050565b60006020828403121561241057600080fd5b81516110eb81611e23565b634e487b7160e01b600052603160045260246000fdfea264697066735822122057201827a42f691de67ccbd052943c0b9bb59e75374a868e8f17f7fc594b3ad064736f6c634300080a0033

Deployed Bytecode Sourcemap

44521:3001:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47307:212;;;;;;;;;;-1:-1:-1;47307:212:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;47307:212:0;;;;;;;;45192:84;;;;;;;;;;-1:-1:-1;45192:84:0;;;;;:::i;:::-;;:::i;:::-;;25795:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27354:221::-;;;;;;;;;;-1:-1:-1;27354:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2917:32:1;;;2899:51;;2887:2;2872:18;27354:221:0;2753:203:1;26877:411:0;;;;;;;;;;-1:-1:-1;26877:411:0;;;;;:::i;:::-;;:::i;38941:113::-;;;;;;;;;;-1:-1:-1;39029:10:0;:17;38941:113;;;3544:25:1;;;3532:2;3517:18;38941:113:0;3398:177:1;28104:339:0;;;;;;;;;;-1:-1:-1;28104:339:0;;;;;:::i;:::-;;:::i;38609:256::-;;;;;;;;;;-1:-1:-1;38609:256:0;;;;;:::i;:::-;;:::i;44584:41::-;;;;;;;;;;;;44621:4;44584:41;;28514:185;;;;;;;;;;-1:-1:-1;28514:185:0;;;;;:::i;:::-;;:::i;44848:27::-;;;;;;;;;;;;;;;;39131:233;;;;;;;;;;-1:-1:-1;39131:233:0;;;;;:::i;:::-;;:::i;44727:40::-;;;;;;;;;;;;44765:2;44727:40;;25489:239;;;;;;;;;;-1:-1:-1;25489:239:0;;;;;:::i;:::-;;:::i;44882:22::-;;;;;;;;;;-1:-1:-1;44882:22:0;;;;;;;;25219:208;;;;;;;;;;-1:-1:-1;25219:208:0;;;;;:::i;:::-;;:::i;4765:103::-;;;;;;;;;;;;;:::i;44632:40::-;;;;;;;;;;;;44669:3;44632:40;;45284:82;;;;;;;;;;;;;:::i;45374:481::-;;;;;;;;;;-1:-1:-1;45374:481:0;;;;;:::i;:::-;;:::i;46579:109::-;;;;;;;;;;;;;:::i;46696:380::-;;;;;;;;;;-1:-1:-1;46696:380:0;;;;;:::i;:::-;;:::i;44679:41::-;;;;;;;;;;;;44711:9;44679:41;;4114:87;;;;;;;;;;-1:-1:-1;4187:6:0;;-1:-1:-1;;;;;4187:6:0;4114:87;;25964:104;;;;;;;;;;;;;:::i;45863:483::-;;;;;;:::i;:::-;;:::i;27647:155::-;;;;;;;;;;-1:-1:-1;27647:155:0;;;;;:::i;:::-;;:::i;28770:328::-;;;;;;;;;;-1:-1:-1;28770:328:0;;;;;:::i;:::-;;:::i;44774:47::-;;;;;;;;;;-1:-1:-1;44774:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;26139:334;;;;;;;;;;-1:-1:-1;26139:334:0;;;;;:::i;:::-;;:::i;46354:217::-;;;;;;;;;;-1:-1:-1;46354:217:0;;;;;:::i;:::-;;:::i;27873:164::-;;;;;;;;;;-1:-1:-1;27873:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27994:25:0;;;27970:4;27994:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27873:164;5023:201;;;;;;;;;;-1:-1:-1;5023:201:0;;;;;:::i;:::-;;:::i;47307:212::-;47446:4;47475:36;47499:11;47475:23;:36::i;:::-;47468:43;47307:212;-1:-1:-1;;47307:212:0:o;45192:84::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;;;;;;;;;45258:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45192:84:::0;:::o;25795:100::-;25849:13;25882:5;25875:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25795:100;:::o;27354:221::-;27430:7;30697:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30697:16:0;27450:73;;;;-1:-1:-1;;;27450:73:0;;6961:2:1;27450:73:0;;;6943:21:1;7000:2;6980:18;;;6973:30;7039:34;7019:18;;;7012:62;-1:-1:-1;;;7090:18:1;;;7083:42;7142:19;;27450:73:0;6759:408:1;27450:73:0;-1:-1:-1;27543:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27543:24:0;;27354:221::o;26877:411::-;26958:13;26974:23;26989:7;26974:14;:23::i;:::-;26958:39;;27022:5;-1:-1:-1;;;;;27016:11:0;:2;-1:-1:-1;;;;;27016:11:0;;;27008:57;;;;-1:-1:-1;;;27008:57:0;;7374:2:1;27008:57:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;-1:-1:-1;;;7503:18:1;;;7496:31;7544:19;;27008:57:0;7172:397:1;27008:57:0;2918:10;-1:-1:-1;;;;;27100:21:0;;;;:62;;-1:-1:-1;27125:37:0;27142:5;2918:10;27873:164;:::i;27125:37::-;27078:168;;;;-1:-1:-1;;;27078:168:0;;7776:2:1;27078:168:0;;;7758:21:1;7815:2;7795:18;;;7788:30;7854:34;7834:18;;;7827:62;7925:26;7905:18;;;7898:54;7969:19;;27078:168:0;7574:420:1;27078:168:0;27259:21;27268:2;27272:7;27259:8;:21::i;:::-;26947:341;26877:411;;:::o;28104:339::-;28299:41;2918:10;28332:7;28299:18;:41::i;:::-;28291:103;;;;-1:-1:-1;;;28291:103:0;;;;;;;:::i;:::-;28407:28;28417:4;28423:2;28427:7;28407:9;:28::i;38609:256::-;38706:7;38742:23;38759:5;38742:16;:23::i;:::-;38734:5;:31;38726:87;;;;-1:-1:-1;;;38726:87:0;;8619:2:1;38726:87:0;;;8601:21:1;8658:2;8638:18;;;8631:30;8697:34;8677:18;;;8670:62;-1:-1:-1;;;8748:18:1;;;8741:41;8799:19;;38726:87:0;8417:407:1;38726:87:0;-1:-1:-1;;;;;;38831:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38609:256::o;28514:185::-;28652:39;28669:4;28675:2;28679:7;28652:39;;;;;;;;;;;;:16;:39::i;39131:233::-;39206:7;39242:30;39029:10;:17;;38941:113;39242:30;39234:5;:38;39226:95;;;;-1:-1:-1;;;39226:95:0;;9031:2:1;39226:95:0;;;9013:21:1;9070:2;9050:18;;;9043:30;9109:34;9089:18;;;9082:62;-1:-1:-1;;;9160:18:1;;;9153:42;9212:19;;39226:95:0;8829:408:1;39226:95:0;39339:10;39350:5;39339:17;;;;;;;;:::i;:::-;;;;;;;;;39332:24;;39131:233;;;:::o;25489:239::-;25561:7;25597:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25597:16:0;25632:19;25624:73;;;;-1:-1:-1;;;25624:73:0;;9576:2:1;25624:73:0;;;9558:21:1;9615:2;9595:18;;;9588:30;9654:34;9634:18;;;9627:62;-1:-1:-1;;;9705:18:1;;;9698:39;9754:19;;25624:73:0;9374:405:1;25219:208:0;25291:7;-1:-1:-1;;;;;25319:19:0;;25311:74;;;;-1:-1:-1;;;25311:74:0;;9986:2:1;25311:74:0;;;9968:21:1;10025:2;10005:18;;;9998:30;10064:34;10044:18;;;10037:62;-1:-1:-1;;;10115:18:1;;;10108:40;10165:19;;25311:74:0;9784:406:1;25311:74:0;-1:-1:-1;;;;;;25403:16:0;;;;;:9;:16;;;;;;;25219:208::o;4765:103::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;4830:30:::1;4857:1;4830:18;:30::i;:::-;4765:103::o:0;45284:82::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;45348:10:::1;::::0;;-1:-1:-1;;45334:24:0;::::1;45348:10;::::0;;::::1;45347:11;45334:24;::::0;;45284:82::o;45374:481::-;45436:10;;;;45428:36;;;;-1:-1:-1;;;45428:36:0;;10397:2:1;45428:36:0;;;10379:21:1;10436:2;10416:18;;;10409:30;-1:-1:-1;;;10455:18:1;;;10448:43;10508:18;;45428:36:0;10195:337:1;45428:36:0;45505:10;45492:24;;;;:12;:24;;;;;;45520:1;;45483:33;;:6;:33;:::i;:::-;:38;;45475:69;;;;-1:-1:-1;;;45475:69:0;;11004:2:1;45475:69:0;;;10986:21:1;11043:2;11023:18;;;11016:30;-1:-1:-1;;;11062:18:1;;;11055:48;11120:18;;45475:69:0;10802:342:1;45475:69:0;44669:3;45602:12;;45586:13;39029:10;:17;;38941:113;45586:13;45577:22;;:6;:22;:::i;:::-;:37;;;;:::i;:::-;:51;;45555:120;;;;-1:-1:-1;;;45555:120:0;;11351:2:1;45555:120:0;;;11333:21:1;11390:2;11370:18;;;11363:30;-1:-1:-1;;;11409:18:1;;;11402:49;11468:18;;45555:120:0;11149:343:1;45555:120:0;45693:9;45688:115;45712:6;45708:1;:10;45688:115;;;45740:51;45750:10;45778:12;;45762:13;39029:10;:17;;38941:113;45762:13;:28;;;;:::i;:::-;45740:9;:51::i;:::-;45720:3;;;;:::i;:::-;;;;45688:115;;;-1:-1:-1;45826:10:0;45813:24;;;;:12;:24;;;;;:34;;45841:6;;45813:24;:34;;45841:6;;45813:34;:::i;:::-;;;;-1:-1:-1;;;45374:481:0:o;46579:109::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;4187:6;;46632:48:::1;::::0;-1:-1:-1;;;;;4187:6:0;;;;46658:21:::1;46632:48:::0;::::1;;;::::0;::::1;::::0;;;46658:21;4187:6;46632:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46579:109::o:0;46696:380::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;44765:2:::1;46779:6;:21;;46771:55;;;::::0;-1:-1:-1;;;46771:55:0;;11839:2:1;46771:55:0::1;::::0;::::1;11821:21:1::0;11878:2;11858:18;;;11851:30;-1:-1:-1;;;11897:18:1;;;11890:51;11958:18;;46771:55:0::1;11637:345:1::0;46771:55:0::1;44621:4;46884:12;;46868:13;39029:10:::0;:17;;38941:113;46868:13:::1;46859:22;::::0;:6;:22:::1;:::i;:::-;:37;;;;:::i;:::-;:51;;46837:114;;;::::0;-1:-1:-1;;;46837:114:0;;12189:2:1;46837:114:0::1;::::0;::::1;12171:21:1::0;12228:2;12208:18;;;12201:30;-1:-1:-1;;;12247:18:1;;;12240:43;12300:18;;46837:114:0::1;11987:337:1::0;46837:114:0::1;46967:9;46962:107;46986:6;46982:1;:10;46962:107;;;47014:43;47024:2;47044:12;;47028:13;39029:10:::0;:17;;38941:113;47014:43:::1;46994:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46962:107;;25964:104:::0;26020:13;26053:7;26046:14;;;;;:::i;45863:483::-;45929:10;;;;45921:36;;;;-1:-1:-1;;;45921:36:0;;10397:2:1;45921:36:0;;;10379:21:1;10436:2;10416:18;;;10409:30;-1:-1:-1;;;10455:18:1;;;10448:43;10508:18;;45921:36:0;10195:337:1;45921:36:0;44765:2;45976:6;:21;;45968:55;;;;-1:-1:-1;;;45968:55:0;;11839:2:1;45968:55:0;;;11821:21:1;11878:2;11858:18;;;11851:30;-1:-1:-1;;;11897:18:1;;;11890:51;11958:18;;45968:55:0;11637:345:1;45968:55:0;44621:4;46081:12;;46065:13;39029:10;:17;;38941:113;46065:13;46056:22;;:6;:22;:::i;:::-;:37;;;;:::i;:::-;:51;;46034:113;;;;-1:-1:-1;;;46034:113:0;;12531:2:1;46034:113:0;;;12513:21:1;12570:2;12550:18;;;12543:30;-1:-1:-1;;;12589:18:1;;;12582:42;12641:18;;46034:113:0;12329:336:1;46034:113:0;46179:14;44711:9;46179:6;:14;:::i;:::-;46166:9;:27;;46158:53;;;;-1:-1:-1;;;46158:53:0;;13045:2:1;46158:53:0;;;13027:21:1;13084:2;13064:18;;;13057:30;-1:-1:-1;;;13103:18:1;;;13096:43;13156:18;;46158:53:0;12843:337:1;46158:53:0;46229:9;46224:115;46248:6;46244:1;:10;46224:115;;;46276:51;46286:10;46314:12;;46298:13;39029:10;:17;;38941:113;46276:51;46256:3;;;;:::i;:::-;;;;46224:115;;27647:155;27742:52;2918:10;27775:8;27785;27742:18;:52::i;28770:328::-;28945:41;2918:10;28978:7;28945:18;:41::i;:::-;28937:103;;;;-1:-1:-1;;;28937:103:0;;;;;;;:::i;:::-;29051:39;29065:4;29071:2;29075:7;29084:5;29051:13;:39::i;:::-;28770:328;;;;:::o;26139:334::-;30673:4;30697:16;;;:7;:16;;;;;;26212:13;;-1:-1:-1;;;;;30697:16:0;26238:76;;;;-1:-1:-1;;;26238:76:0;;13387:2:1;26238:76:0;;;13369:21:1;13426:2;13406:18;;;13399:30;13465:34;13445:18;;;13438:62;-1:-1:-1;;;13516:18:1;;;13509:45;13571:19;;26238:76:0;13185:411:1;26238:76:0;26327:21;26351:10;:8;:10::i;:::-;26327:34;;26403:1;26385:7;26379:21;:25;:86;;;;;;;;;;;;;;;;;26431:7;26440:18;:7;:16;:18::i;:::-;26414:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26379:86;26372:93;26139:334;-1:-1:-1;;;26139:334:0:o;46354:217::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;46436:9:::1;46431:91;46451:19:::0;;::::1;46431:91;;;46492:18;46498:8;;46507:1;46498:11;;;;;;;:::i;:::-;;;;;;;46492:5;:18::i;:::-;46472:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46431:91;;;;46548:8;;:15;;46532:12;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;46354:217:0:o;5023:201::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5112:22:0;::::1;5104:73;;;::::0;-1:-1:-1;;;5104:73:0;;14278:2:1;5104:73:0::1;::::0;::::1;14260:21:1::0;14317:2;14297:18;;;14290:30;14356:34;14336:18;;;14329:62;-1:-1:-1;;;14407:18:1;;;14400:36;14453:19;;5104:73:0::1;14076:402:1::0;5104:73:0::1;5188:28;5207:8;5188:18;:28::i;38301:224::-:0;38403:4;-1:-1:-1;;;;;;38427:50:0;;-1:-1:-1;;;38427:50:0;;:90;;;38481:36;38505:11;38481:23;:36::i;34590:174::-;34665:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34665:29:0;-1:-1:-1;;;;;34665:29:0;;;;;;;;:24;;34719:23;34665:24;34719:14;:23::i;:::-;-1:-1:-1;;;;;34710:46:0;;;;;;;;;;;34590:174;;:::o;30902:348::-;30995:4;30697:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30697:16:0;31012:73;;;;-1:-1:-1;;;31012:73:0;;14685:2:1;31012:73:0;;;14667:21:1;14724:2;14704:18;;;14697:30;14763:34;14743:18;;;14736:62;-1:-1:-1;;;14814:18:1;;;14807:42;14866:19;;31012:73:0;14483:408:1;31012:73:0;31096:13;31112:23;31127:7;31112:14;:23::i;:::-;31096:39;;31165:5;-1:-1:-1;;;;;31154:16:0;:7;-1:-1:-1;;;;;31154:16:0;;:51;;;;31198:7;-1:-1:-1;;;;;31174:31:0;:20;31186:7;31174:11;:20::i;:::-;-1:-1:-1;;;;;31174:31:0;;31154:51;:87;;;-1:-1:-1;;;;;;27994:25:0;;;27970:4;27994:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31209:32;31146:96;30902:348;-1:-1:-1;;;;30902:348:0:o;33894:578::-;34053:4;-1:-1:-1;;;;;34026:31:0;:23;34041:7;34026:14;:23::i;:::-;-1:-1:-1;;;;;34026:31:0;;34018:85;;;;-1:-1:-1;;;34018:85:0;;15098:2:1;34018:85:0;;;15080:21:1;15137:2;15117:18;;;15110:30;15176:34;15156:18;;;15149:62;-1:-1:-1;;;15227:18:1;;;15220:39;15276:19;;34018:85:0;14896:405:1;34018:85:0;-1:-1:-1;;;;;34122:16:0;;34114:65;;;;-1:-1:-1;;;34114:65:0;;15508:2:1;34114:65:0;;;15490:21:1;15547:2;15527:18;;;15520:30;15586:34;15566:18;;;15559:62;-1:-1:-1;;;15637:18:1;;;15630:34;15681:19;;34114:65:0;15306:400:1;34114:65:0;34192:39;34213:4;34219:2;34223:7;34192:20;:39::i;:::-;34296:29;34313:1;34317:7;34296:8;:29::i;:::-;-1:-1:-1;;;;;34338:15:0;;;;;;:9;:15;;;;;:20;;34357:1;;34338:15;:20;;34357:1;;34338:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34369:13:0;;;;;;:9;:13;;;;;:18;;34386:1;;34369:13;:18;;34386:1;;34369:18;:::i;:::-;;;;-1:-1:-1;;34398:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34398:21:0;-1:-1:-1;;;;;34398:21:0;;;;;;;;;34437:27;;34398:16;;34437:27;;;;;;;33894:578;;;:::o;5384:191::-;5477:6;;;-1:-1:-1;;;;;5494:17:0;;;-1:-1:-1;;;;;;5494:17:0;;;;;;;5527:40;;5477:6;;;5494:17;5477:6;;5527:40;;5458:16;;5527:40;5447:128;5384:191;:::o;31592:110::-;31668:26;31678:2;31682:7;31668:26;;;;;;;;;;;;:9;:26::i;34906:315::-;35061:8;-1:-1:-1;;;;;35052:17:0;:5;-1:-1:-1;;;;;35052:17:0;;;35044:55;;;;-1:-1:-1;;;35044:55:0;;16043:2:1;35044:55:0;;;16025:21:1;16082:2;16062:18;;;16055:30;16121:27;16101:18;;;16094:55;16166:18;;35044:55:0;15841:349:1;35044:55:0;-1:-1:-1;;;;;35110:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35110:46:0;;;;;;;;;;35172:41;;540::1;;;35172::0;;513:18:1;35172:41:0;;;;;;;34906:315;;;:::o;29980:::-;30137:28;30147:4;30153:2;30157:7;30137:9;:28::i;:::-;30184:48;30207:4;30213:2;30217:7;30226:5;30184:22;:48::i;:::-;30176:111;;;;-1:-1:-1;;;30176:111:0;;;;;;;:::i;45088:96::-;45140:13;45173:3;45166:10;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;33197:360;33257:13;33273:23;33288:7;33273:14;:23::i;:::-;33257:39;;33309:48;33330:5;33345:1;33349:7;33309:20;:48::i;:::-;33398:29;33415:1;33419:7;33398:8;:29::i;:::-;-1:-1:-1;;;;;33440:16:0;;;;;;:9;:16;;;;;:21;;33460:1;;33440:16;:21;;33460:1;;33440:21;:::i;:::-;;;;-1:-1:-1;;33479:16:0;;;;:7;:16;;;;;;33472:23;;-1:-1:-1;;;;;;33472:23:0;;;33513:36;33487:7;;33479:16;-1:-1:-1;;;;;33513:36:0;;;;;33479:16;;33513:36;33246:311;33197:360;:::o;24850:305::-;24952:4;-1:-1:-1;;;;;;24989:40:0;;-1:-1:-1;;;24989:40:0;;:105;;-1:-1:-1;;;;;;;25046:48:0;;-1:-1:-1;;;25046:48:0;24989:105;:158;;;-1:-1:-1;;;;;;;;;;16655:40:0;;;25111:36;16546:157;47084:215;47246:45;47273:4;47279:2;47283:7;47246:26;:45::i;31929:321::-;32059:18;32065:2;32069:7;32059:5;:18::i;:::-;32110:54;32141:1;32145:2;32149:7;32158:5;32110:22;:54::i;:::-;32088:154;;;;-1:-1:-1;;;32088:154:0;;;;;;;:::i;35786:799::-;35941:4;-1:-1:-1;;;;;35962:13:0;;6725:20;6773:8;35958:620;;35998:72;;-1:-1:-1;;;35998:72:0;;-1:-1:-1;;;;;35998:36:0;;;;;:72;;2918:10;;36049:4;;36055:7;;36064:5;;35998:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35998:72:0;;;;;;;;-1:-1:-1;;35998:72:0;;;;;;;;;;;;:::i;:::-;;;35994:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36240:13:0;;36236:272;;36283:60;;-1:-1:-1;;;36283:60:0;;;;;;;:::i;36236:272::-;36458:6;36452:13;36443:6;36439:2;36435:15;36428:38;35994:529;-1:-1:-1;;;;;;36121:51:0;-1:-1:-1;;;36121:51:0;;-1:-1:-1;36114:58:0;;35958:620;-1:-1:-1;36562:4:0;35786:799;;;;;;:::o;39977:589::-;-1:-1:-1;;;;;40183:18:0;;40179:187;;40218:40;40250:7;41393:10;:17;;41366:24;;;;:15;:24;;;;;:44;;;41421:24;;;;;;;;;;;;41289:164;40218:40;40179:187;;;40288:2;-1:-1:-1;;;;;40280:10:0;:4;-1:-1:-1;;;;;40280:10:0;;40276:90;;40307:47;40340:4;40346:7;40307:32;:47::i;:::-;-1:-1:-1;;;;;40380:16:0;;40376:183;;40413:45;40450:7;40413:36;:45::i;40376:183::-;40486:4;-1:-1:-1;;;;;40480:10:0;:2;-1:-1:-1;;;;;40480:10:0;;40476:83;;40507:40;40535:2;40539:7;40507:27;:40::i;32586:382::-;-1:-1:-1;;;;;32666:16:0;;32658:61;;;;-1:-1:-1;;;32658:61:0;;17938:2:1;32658:61:0;;;17920:21:1;;;17957:18;;;17950:30;18016:34;17996:18;;;17989:62;18068:18;;32658:61:0;17736:356:1;32658:61:0;30673:4;30697:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30697:16:0;:30;32730:58;;;;-1:-1:-1;;;32730:58:0;;18299:2:1;32730:58:0;;;18281:21:1;18338:2;18318:18;;;18311:30;18377;18357:18;;;18350:58;18425:18;;32730:58:0;18097:352:1;32730:58:0;32801:45;32830:1;32834:2;32838:7;32801:20;:45::i;:::-;-1:-1:-1;;;;;32859:13:0;;;;;;:9;:13;;;;;:18;;32876:1;;32859:13;:18;;32876:1;;32859:18;:::i;:::-;;;;-1:-1:-1;;32888:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32888:21:0;-1:-1:-1;;;;;32888:21:0;;;;;;;;32927:33;;32888:16;;;32927:33;;32888:16;;32927:33;32586:382;;:::o;42080:988::-;42346:22;42396:1;42371:22;42388:4;42371:16;:22::i;:::-;:26;;;;:::i;:::-;42408:18;42429:26;;;:17;:26;;;;;;42346:51;;-1:-1:-1;42562:28:0;;;42558:328;;-1:-1:-1;;;;;42629:18:0;;42607:19;42629:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42680:30;;;;;;:44;;;42797:30;;:17;:30;;;;;:43;;;42558:328;-1:-1:-1;42982:26:0;;;;:17;:26;;;;;;;;42975:33;;;-1:-1:-1;;;;;43026:18:0;;;;;:12;:18;;;;;:34;;;;;;;43019:41;42080:988::o;43363:1079::-;43641:10;:17;43616:22;;43641:21;;43661:1;;43641:21;:::i;:::-;43673:18;43694:24;;;:15;:24;;;;;;44067:10;:26;;43616:46;;-1:-1:-1;43694:24:0;;43616:46;;44067:26;;;;;;:::i;:::-;;;;;;;;;44045:48;;44131:11;44106:10;44117;44106:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44211:28;;;:15;:28;;;;;;;:41;;;44383:24;;;;;44376:31;44418:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43434:1008;;;43363:1079;:::o;40867:221::-;40952:14;40969:20;40986:2;40969:16;:20::i;:::-;-1:-1:-1;;;;;41000:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41045:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40867:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:632;789:5;819:18;860:2;852:6;849:14;846:40;;;866:18;;:::i;:::-;941:2;935:9;909:2;995:15;;-1:-1:-1;;991:24:1;;;1017:2;987:33;983:42;971:55;;;1041:18;;;1061:22;;;1038:46;1035:72;;;1087:18;;:::i;:::-;1127:10;1123:2;1116:22;1156:6;1147:15;;1186:6;1178;1171:22;1226:3;1217:6;1212:3;1208:16;1205:25;1202:45;;;1243:1;1240;1233:12;1202:45;1293:6;1288:3;1281:4;1273:6;1269:17;1256:44;1348:1;1341:4;1332:6;1324;1320:19;1316:30;1309:41;;;;724:632;;;;;:::o;1361:451::-;1430:6;1483:2;1471:9;1462:7;1458:23;1454:32;1451:52;;;1499:1;1496;1489:12;1451:52;1539:9;1526:23;1572:18;1564:6;1561:30;1558:50;;;1604:1;1601;1594:12;1558:50;1627:22;;1680:4;1672:13;;1668:27;-1:-1:-1;1658:55:1;;1709:1;1706;1699:12;1658:55;1732:74;1798:7;1793:2;1780:16;1775:2;1771;1767:11;1732:74;:::i;1817:258::-;1889:1;1899:113;1913:6;1910:1;1907:13;1899:113;;;1989:11;;;1983:18;1970:11;;;1963:39;1935:2;1928:10;1899:113;;;2030:6;2027:1;2024:13;2021:48;;;-1:-1:-1;;2065:1:1;2047:16;;2040:27;1817:258::o;2080:::-;2122:3;2160:5;2154:12;2187:6;2182:3;2175:19;2203:63;2259:6;2252:4;2247:3;2243:14;2236:4;2229:5;2225:16;2203:63;:::i;:::-;2320:2;2299:15;-1:-1:-1;;2295:29:1;2286:39;;;;2327:4;2282:50;;2080:258;-1:-1:-1;;2080:258:1:o;2343:220::-;2492:2;2481:9;2474:21;2455:4;2512:45;2553:2;2542:9;2538:18;2530:6;2512:45;:::i;2568:180::-;2627:6;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;-1:-1:-1;2719:23:1;;2568:180;-1:-1:-1;2568:180:1:o;2961:173::-;3029:20;;-1:-1:-1;;;;;3078:31:1;;3068:42;;3058:70;;3124:1;3121;3114:12;3058:70;2961:173;;;:::o;3139:254::-;3207:6;3215;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;3307:29;3326:9;3307:29;:::i;:::-;3297:39;3383:2;3368:18;;;;3355:32;;-1:-1:-1;;;3139:254:1:o;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:615::-;5214:6;5222;5275:2;5263:9;5254:7;5250:23;5246:32;5243:52;;;5291:1;5288;5281:12;5243:52;5331:9;5318:23;5360:18;5401:2;5393:6;5390:14;5387:34;;;5417:1;5414;5407:12;5387:34;5455:6;5444:9;5440:22;5430:32;;5500:7;5493:4;5489:2;5485:13;5481:27;5471:55;;5522:1;5519;5512:12;5471:55;5562:2;5549:16;5588:2;5580:6;5577:14;5574:34;;;5604:1;5601;5594:12;5574:34;5657:7;5652:2;5642:6;5639:1;5635:14;5631:2;5627:23;5623:32;5620:45;5617:65;;;5678:1;5675;5668:12;5617:65;5709:2;5701:11;;;;;5731:6;;-1:-1:-1;5128:615:1;;-1:-1:-1;;;;5128:615:1:o;5748:260::-;5816:6;5824;5877:2;5865:9;5856:7;5852:23;5848:32;5845:52;;;5893:1;5890;5883:12;5845:52;5916:29;5935:9;5916:29;:::i;:::-;5906:39;;5964:38;5998:2;5987:9;5983:18;5964:38;:::i;:::-;5954:48;;5748:260;;;;;:::o;6013:356::-;6215:2;6197:21;;;6234:18;;;6227:30;6293:34;6288:2;6273:18;;6266:62;6360:2;6345:18;;6013:356::o;6374:380::-;6453:1;6449:12;;;;6496;;;6517:61;;6571:4;6563:6;6559:17;6549:27;;6517:61;6624:2;6616:6;6613:14;6593:18;6590:38;6587:161;;;6670:10;6665:3;6661:20;6658:1;6651:31;6705:4;6702:1;6695:15;6733:4;6730:1;6723:15;6587:161;;6374:380;;;:::o;7999:413::-;8201:2;8183:21;;;8240:2;8220:18;;;8213:30;8279:34;8274:2;8259:18;;8252:62;-1:-1:-1;;;8345:2:1;8330:18;;8323:47;8402:3;8387:19;;7999:413::o;9242:127::-;9303:10;9298:3;9294:20;9291:1;9284:31;9334:4;9331:1;9324:15;9358:4;9355:1;9348:15;10537:127;10598:10;10593:3;10589:20;10586:1;10579:31;10629:4;10626:1;10619:15;10653:4;10650:1;10643:15;10669:128;10709:3;10740:1;10736:6;10733:1;10730:13;10727:39;;;10746:18;;:::i;:::-;-1:-1:-1;10782:9:1;;10669:128::o;11497:135::-;11536:3;-1:-1:-1;;11557:17:1;;11554:43;;;11577:18;;:::i;:::-;-1:-1:-1;11624:1:1;11613:13;;11497:135::o;12670:168::-;12710:7;12776:1;12772;12768:6;12764:14;12761:1;12758:21;12753:1;12746:9;12739:17;12735:45;12732:71;;;12783:18;;:::i;:::-;-1:-1:-1;12823:9:1;;12670:168::o;13601:470::-;13780:3;13818:6;13812:13;13834:53;13880:6;13875:3;13868:4;13860:6;13856:17;13834:53;:::i;:::-;13950:13;;13909:16;;;;13972:57;13950:13;13909:16;14006:4;13994:17;;13972:57;:::i;:::-;14045:20;;13601:470;-1:-1:-1;;;;13601:470:1:o;15711:125::-;15751:4;15779:1;15776;15773:8;15770:34;;;15784:18;;:::i;:::-;-1:-1:-1;15821:9:1;;15711:125::o;16195:414::-;16397:2;16379:21;;;16436:2;16416:18;;;16409:30;16475:34;16470:2;16455:18;;16448:62;-1:-1:-1;;;16541:2:1;16526:18;;16519:48;16599:3;16584:19;;16195:414::o;16614:127::-;16675:10;16670:3;16666:20;16663:1;16656:31;16706:4;16703:1;16696:15;16730:4;16727:1;16720:15;16746:120;16786:1;16812;16802:35;;16817:18;;:::i;:::-;-1:-1:-1;16851:9:1;;16746:120::o;16871:112::-;16903:1;16929;16919:35;;16934:18;;:::i;:::-;-1:-1:-1;16968:9:1;;16871:112::o;16988:489::-;-1:-1:-1;;;;;17257:15:1;;;17239:34;;17309:15;;17304:2;17289:18;;17282:43;17356:2;17341:18;;17334:34;;;17404:3;17399:2;17384:18;;17377:31;;;17182:4;;17425:46;;17451:19;;17443:6;17425:46;:::i;:::-;17417:54;16988:489;-1:-1:-1;;;;;;16988:489:1:o;17482:249::-;17551:6;17604:2;17592:9;17583:7;17579:23;17575:32;17572:52;;;17620:1;17617;17610:12;17572:52;17652:9;17646:16;17671:30;17695:5;17671:30;:::i;18454:127::-;18515:10;18510:3;18506:20;18503:1;18496:31;18546:4;18543:1;18536:15;18570:4;18567:1;18560:15

Swarm Source

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