ETH Price: $3,443.32 (-0.99%)
Gas: 4 Gwei

Token

We Are All the SA (WAATSA)
 

Overview

Max Total Supply

19,835 WAATSA

Holders

5,598

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cronospolska.eth
Balance
1 WAATSA
0xe568AFb492816E8C790EC74420d7Bc008a5BD85A
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:
WeAreAllTheSA

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED

pragma solidity 0.8.15;

/* This contract is a subsidiary of the Icosa contract. The Icosa        *
 *  contract can be found at 0xfc4913214444aF5c715cc9F7b52655e788A569ed. */

/* Icosa is a collection of Ethereum / PulseChain smart contracts that  *
 * build upon the Hedron smart contract to provide additional functionality */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

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

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

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

library LibPart {
    bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)");

    struct Part {
        address payable account;
        uint96 value;
    }

    function hash(Part memory part) internal pure returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, part.account, part.value));
    }
}

abstract contract AbstractRoyalties {
    mapping (uint256 => LibPart.Part[]) internal royalties;

    function _saveRoyalties(uint256 id, LibPart.Part[] memory _royalties) internal {
        uint256 totalValue;
        for (uint i = 0; i < _royalties.length; i++) {
            require(_royalties[i].account != address(0x0), "Recipient should be present");
            require(_royalties[i].value != 0, "Royalty value should be positive");
            totalValue += _royalties[i].value;
            royalties[id].push(_royalties[i]);
        }
        require(totalValue < 10000, "Royalty total value should be < 10000");
        _onRoyaltiesSet(id, _royalties);
    }

    function _updateAccount(uint256 _id, address _from, address _to) internal {
        uint length = royalties[_id].length;
        for(uint i = 0; i < length; i++) {
            if (royalties[_id][i].account == _from) {
                royalties[_id][i].account = payable(address(uint160(_to)));
            }
        }
    }

    function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) virtual internal;
}

interface RoyaltiesV2 {
    event RoyaltiesSet(uint256 tokenId, LibPart.Part[] royalties);

    function getRaribleV2Royalties(uint256 id) external view returns (LibPart.Part[] memory);
}

contract RoyaltiesV2Impl is AbstractRoyalties, RoyaltiesV2 {

    function getRaribleV2Royalties(uint256 id) override external view returns (LibPart.Part[] memory) {
        return royalties[id];
    }

    function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) override internal {
        emit RoyaltiesSet(id, _royalties);
    }
}

library LibRoyaltiesV2 {
    /*
     * bytes4(keccak256('getRaribleV2Royalties(uint256)')) == 0xcad96cca
     */
    bytes4 constant _INTERFACE_ID_ROYALTIES = 0xcad96cca;
}

contract WeAreAllTheSA is ERC721, ERC721Enumerable, RoyaltiesV2Impl {

    using Counters for Counters.Counter;

    address private constant _hdrnFlowAddress = address(0xF447BE386164dADfB5d1e7622613f289F17024D8);
    bytes4  private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    uint96  private constant _waatsaRoyaltyBasis = 369; // Rarible V2 royalty basis
    string  private constant _hostname = "https://api.icosa.pro/";
    string  private constant _endpoint = "/waatsa/";

    Counters.Counter private _tokenIds;
    address          private _creator;

    constructor() ERC721("We Are All the SA", "WAATSA")
    {
        /* _creator is not an admin key. It is set at contsruction to be a link
           to the parent contract. In this case Hedron */
        _creator = msg.sender;
    }

    function _baseURI(
    )
        internal
        view
        virtual
        override
        returns (string memory)
    {
        string memory chainid = Strings.toString(block.chainid);
        return string(abi.encodePacked(_hostname, chainid, _endpoint));
    }

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

    // Internal NFT Marketplace Glue

    /** @dev Sets the Rarible V2 royalties on a specific token
     *  @param tokenId Unique ID of the HSI NFT token.
     */
    function _setRoyalties(
        uint256 tokenId
    )
        internal
    {
        LibPart.Part[] memory _royalties = new LibPart.Part[](1);
        _royalties[0].value = _waatsaRoyaltyBasis;
        _royalties[0].account = payable(_hdrnFlowAddress);
        _saveRoyalties(tokenId, _royalties);
    }

    function mintStakeNft (address staker)
        external
        returns (uint256)
    {
        require(msg.sender == _creator,
            "WAATSA: NOT ICSA");

        _tokenIds.increment();
        uint256 newTokenId = _tokenIds.current();

        _setRoyalties(newTokenId);

        _mint(staker, newTokenId);
        return newTokenId;
    }

    function burnStakeNft (uint256 tokenId)
        external
    {
        require(msg.sender == _creator,
            "WAATSA: NOT ICSA");

        _burn(tokenId);
    }

    // External NFT Marketplace Glue

    /**
     * @dev Implements ERC2981 royalty functionality. We just read the royalty data from
     *      the Rarible V2 implementation. 
     * @param tokenId Unique ID of the HSI NFT token.
     * @param salePrice Price the HSI NFT token was sold for.
     * @return receiver address to send the royalties to as well as the royalty amount.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    )
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        LibPart.Part[] memory _royalties = royalties[tokenId];
        
        if (_royalties.length > 0) {
            return (_royalties[0].account, (salePrice * _royalties[0].value) / 10000);
        }

        return (address(0), 0);
    }

    /**
     * @dev returns _hdrnFlowAddress, needed for some NFT marketplaces. This is not
     *       an admin key.
     * @return _hdrnFlowAddress
     */
    function owner(
    )
        external
        pure
        returns (address) 
    {
        return _hdrnFlowAddress;
    }

    /**
     * @dev Adds Rarible V2 and ERC2981 interface support.
     * @param interfaceId Unique contract interface identifier.
     * @return True if the interface is supported, false if not.
     */
    function supportsInterface(
        bytes4 interfaceId
    )
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        if (interfaceId == LibRoyaltiesV2._INTERFACE_ID_ROYALTIES) {
            return true;
        }

        if (interfaceId == _INTERFACE_ID_ERC2981) {
            return true;
        }

        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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"indexed":false,"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"}],"name":"RoyaltiesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnStakeNft","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":"uint256","name":"id","type":"uint256"}],"name":"getRaribleV2Royalties","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"mintStakeNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017057652041726520416c6c2074686520534160781b8152506040518060400160405280600681526020016557414154534160d01b81525081600090816200006c91906200013b565b5060016200007b82826200013b565b5050600c80546001600160a01b031916331790555062000207565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000c157607f821691505b602082108103620000e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200013657600081815260208120601f850160051c81016020861015620001115750805b601f850160051c820191505b8181101562000132578281556001016200011d565b5050505b505050565b81516001600160401b0381111562000157576200015762000096565b6200016f81620001688454620000ac565b84620000e8565b602080601f831160018114620001a757600084156200018e5750858301515b600019600386901b1c1916600185901b17855562000132565b600085815260208120601f198616915b82811015620001d857888601518255948401946001909101908401620001b7565b5085821015620001f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611f6680620002176000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063536e3b69116100b857806395d89b411161007c57806395d89b41146102af578063a22cb465146102b7578063b88d4fde146102ca578063c87b56dd146102dd578063cad96cca146102f0578063e985e9c51461031057600080fd5b8063536e3b69146102495780636352211e1461025c57806366adc1371461026f57806370a08231146102825780638da5cb5b1461029557600080fd5b806323b872dd116100ff57806323b872dd146101cb5780632a55205a146101de5780632f745c591461021057806342842e0e146102235780634f6ccce71461023657600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a36600461195e565b61034c565b60405190151581526020015b60405180910390f35b61016c61039d565b60405161015b91906119d3565b61018c6101873660046119e6565b61042f565b6040516001600160a01b03909116815260200161015b565b6101b76101b2366004611a1b565b610456565b005b6008545b60405190815260200161015b565b6101b76101d9366004611a45565b610570565b6101f16101ec366004611a81565b6105a1565b604080516001600160a01b03909316835260208301919091520161015b565b6101bd61021e366004611a1b565b6106a7565b6101b7610231366004611a45565b61073d565b6101bd6102443660046119e6565b610758565b6101b76102573660046119e6565b6107eb565b61018c61026a3660046119e6565b610844565b6101bd61027d366004611aa3565b6108a4565b6101bd610290366004611aa3565b610922565b73f447be386164dadfb5d1e7622613f289f17024d861018c565b61016c6109a8565b6101b76102c5366004611abe565b6109b7565b6101b76102d8366004611b10565b6109c6565b61016c6102eb3660046119e6565b6109fe565b6103036102fe3660046119e6565b610a65565b60405161015b9190611c44565b61014f61031e366004611c57565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000631a93499b60e11b6001600160e01b031983160161036e57506001919050565b636ad56fd360e11b6001600160e01b031983160161038e57506001919050565b61039782610af4565b92915050565b6060600080546103ac90611c8a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890611c8a565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061043a82610b19565b506000908152600460205260409020546001600160a01b031690565b600061046182610844565b9050806001600160a01b0316836001600160a01b0316036104d35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104ef57506104ef813361031e565b6105615760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016104ca565b61056b8383610b78565b505050565b61057a3382610be6565b6105965760405162461bcd60e51b81526004016104ca90611cc4565b61056b838383610c65565b6000828152600a60209081526040808320805482518185028101850190935280835284938493929190849084015b8282101561061e57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b0316818301528252600190920191016105cf565b505050509050600081511115610697578060008151811061064157610641611d12565b6020026020010151600001516127108260008151811061066357610663611d12565b6020026020010151602001516001600160601b0316866106839190611d3e565b61068d9190611d73565b92509250506106a0565b60008092509250505b9250929050565b60006106b283610922565b82106107145760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ca565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61056b838383604051806020016040528060008152506109c6565b600061076360085490565b82106107c65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ca565b600882815481106107d9576107d9611d12565b90600052602060002001549050919050565b600c546001600160a01b031633146108385760405162461bcd60e51b815260206004820152601060248201526f5741415453413a204e4f54204943534160801b60448201526064016104ca565b61084181610e0c565b50565b6000818152600260205260408120546001600160a01b0316806103975760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ca565b600c546000906001600160a01b031633146108f45760405162461bcd60e51b815260206004820152601060248201526f5741415453413a204e4f54204943534160801b60448201526064016104ca565b610902600b80546001019055565b600061090d600b5490565b905061091881610eb3565b6103978382610f77565b60006001600160a01b03821661098c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104ca565b506001600160a01b031660009081526003602052604090205490565b6060600180546103ac90611c8a565b6109c23383836110c5565b5050565b6109d03383610be6565b6109ec5760405162461bcd60e51b81526004016104ca90611cc4565b6109f884848484611193565b50505050565b6060610a0982610b19565b6000610a136111c6565b90506000815111610a335760405180602001604052806000815250610a5e565b80610a3d8461124d565b604051602001610a4e929190611d87565b6040516020818303038152906040525b9392505050565b6060600a6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610ae957600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610a9a565b505050509050919050565b60006001600160e01b0319821663780e9d6360e01b148061039757506103978261134e565b6000818152600260205260409020546001600160a01b03166108415760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ca565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bad82610844565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610bf283610844565b9050806001600160a01b0316846001600160a01b03161480610c3957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610c5d5750836001600160a01b0316610c528461042f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c7882610844565b6001600160a01b031614610cdc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104ca565b6001600160a01b038216610d3e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ca565b610d4983838361139e565b610d54600082610b78565b6001600160a01b0383166000908152600360205260408120805460019290610d7d908490611db6565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dab908490611dcd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610e1782610844565b9050610e258160008461139e565b610e30600083610b78565b6001600160a01b0381166000908152600360205260408120805460019290610e59908490611db6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081610eca57905050905061017181600081518110610f0957610f09611d12565b6020026020010151602001906001600160601b031690816001600160601b03168152505073f447be386164dadfb5d1e7622613f289f17024d881600081518110610f5557610f55611d12565b60209081029190910101516001600160a01b0390911690526109c282826113a9565b6001600160a01b038216610fcd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ca565b6000818152600260205260409020546001600160a01b0316156110325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ca565b61103e6000838361139e565b6001600160a01b0382166000908152600360205260408120805460019290611067908490611dcd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036111265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ca565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61119e848484610c65565b6111aa848484846115c2565b6109f85760405162461bcd60e51b81526004016104ca90611de5565b606060006111d34661124d565b90506040518060400160405280601681526020017568747470733a2f2f6170692e69636f73612e70726f2f60501b81525081604051806040016040528060088152602001672f7761617473612f60c01b81525060405160200161123893929190611e37565b60405160208183030381529060405291505090565b6060816000036112745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561129e578061128881611e7a565b91506112979050600a83611d73565b9150611278565b60008167ffffffffffffffff8111156112b9576112b9611afa565b6040519080825280601f01601f1916602001820160405280156112e3576020820181803683370190505b5090505b8415610c5d576112f8600183611db6565b9150611305600a86611e93565b611310906030611dcd565b60f81b81838151811061132557611325611d12565b60200101906001600160f81b031916908160001a905350611347600a86611d73565b94506112e7565b60006001600160e01b031982166380ac58cd60e01b148061137f57506001600160e01b03198216635b5e139f60e01b145b8061039757506301ffc9a760e01b6001600160e01b0319831614610397565b61056b8383836116c3565b6000805b82518110156115585760006001600160a01b03168382815181106113d3576113d3611d12565b6020026020010151600001516001600160a01b0316036114355760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e74000000000060448201526064016104ca565b82818151811061144757611447611d12565b6020026020010151602001516001600160601b03166000036114ab5760405162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f73697469766560448201526064016104ca565b8281815181106114bd576114bd611d12565b6020026020010151602001516001600160601b0316826114dd9190611dcd565b9150600a600085815260200190815260200160002083828151811061150457611504611d12565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b03909116179101558061155081611e7a565b9150506113ad565b5061271081106115b85760405162461bcd60e51b815260206004820152602560248201527f526f79616c747920746f74616c2076616c75652073686f756c64206265203c20604482015264031303030360dc1b60648201526084016104ca565b61056b838361177b565b60006001600160a01b0384163b156116b857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611606903390899088908890600401611ea7565b6020604051808303816000875af1925050508015611641575060408051601f3d908101601f1916820190925261163e91810190611ee4565b60015b61169e573d80801561166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b5080516000036116965760405162461bcd60e51b81526004016104ca90611de5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c5d565b506001949350505050565b6001600160a01b03831661171e5761171981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611741565b816001600160a01b0316836001600160a01b0316146117415761174183826117b8565b6001600160a01b0382166117585761056b81611855565b826001600160a01b0316826001600160a01b03161461056b5761056b8282611904565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df82826040516117ac929190611f01565b60405180910390a15050565b600060016117c584610922565b6117cf9190611db6565b600083815260076020526040902054909150808214611822576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061186790600190611db6565b6000838152600960205260408120546008805493945090928490811061188f5761188f611d12565b9060005260206000200154905080600883815481106118b0576118b0611d12565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118e8576118e8611f1a565b6001900381819060005260206000200160009055905550505050565b600061190f83610922565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461084157600080fd5b60006020828403121561197057600080fd5b8135610a5e81611948565b60005b8381101561199657818101518382015260200161197e565b838111156109f85750506000910152565b600081518084526119bf81602086016020860161197b565b601f01601f19169290920160200192915050565b602081526000610a5e60208301846119a7565b6000602082840312156119f857600080fd5b5035919050565b80356001600160a01b0381168114611a1657600080fd5b919050565b60008060408385031215611a2e57600080fd5b611a37836119ff565b946020939093013593505050565b600080600060608486031215611a5a57600080fd5b611a63846119ff565b9250611a71602085016119ff565b9150604084013590509250925092565b60008060408385031215611a9457600080fd5b50508035926020909101359150565b600060208284031215611ab557600080fd5b610a5e826119ff565b60008060408385031215611ad157600080fd5b611ada836119ff565b915060208301358015158114611aef57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b2657600080fd5b611b2f856119ff565b9350611b3d602086016119ff565b925060408501359150606085013567ffffffffffffffff80821115611b6157600080fd5b818701915087601f830112611b7557600080fd5b813581811115611b8757611b87611afa565b604051601f8201601f19908116603f01168101908382118183101715611baf57611baf611afa565b816040528281528a6020848701011115611bc857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600081518084526020808501945080840160005b83811015611c3957815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101611c00565b509495945050505050565b602081526000610a5e6020830184611bec565b60008060408385031215611c6a57600080fd5b611c73836119ff565b9150611c81602084016119ff565b90509250929050565b600181811c90821680611c9e57607f821691505b602082108103611cbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d5857611d58611d28565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611d8257611d82611d5d565b500490565b60008351611d9981846020880161197b565b835190830190611dad81836020880161197b565b01949350505050565b600082821015611dc857611dc8611d28565b500390565b60008219821115611de057611de0611d28565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451611e4981846020890161197b565b845190830190611e5d81836020890161197b565b8451910190611e7081836020880161197b565b0195945050505050565b600060018201611e8c57611e8c611d28565b5060010190565b600082611ea257611ea2611d5d565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eda908301846119a7565b9695505050505050565b600060208284031215611ef657600080fd5b8151610a5e81611948565b828152604060208201526000610c5d6040830184611bec565b634e487b7160e01b600052603160045260246000fdfea26469706673582212206fae9180e5bc3b2fe969c2964f1e17e80de1e312a7226fdda5ba630a8a9e27fc64736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063536e3b69116100b857806395d89b411161007c57806395d89b41146102af578063a22cb465146102b7578063b88d4fde146102ca578063c87b56dd146102dd578063cad96cca146102f0578063e985e9c51461031057600080fd5b8063536e3b69146102495780636352211e1461025c57806366adc1371461026f57806370a08231146102825780638da5cb5b1461029557600080fd5b806323b872dd116100ff57806323b872dd146101cb5780632a55205a146101de5780632f745c591461021057806342842e0e146102235780634f6ccce71461023657600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a36600461195e565b61034c565b60405190151581526020015b60405180910390f35b61016c61039d565b60405161015b91906119d3565b61018c6101873660046119e6565b61042f565b6040516001600160a01b03909116815260200161015b565b6101b76101b2366004611a1b565b610456565b005b6008545b60405190815260200161015b565b6101b76101d9366004611a45565b610570565b6101f16101ec366004611a81565b6105a1565b604080516001600160a01b03909316835260208301919091520161015b565b6101bd61021e366004611a1b565b6106a7565b6101b7610231366004611a45565b61073d565b6101bd6102443660046119e6565b610758565b6101b76102573660046119e6565b6107eb565b61018c61026a3660046119e6565b610844565b6101bd61027d366004611aa3565b6108a4565b6101bd610290366004611aa3565b610922565b73f447be386164dadfb5d1e7622613f289f17024d861018c565b61016c6109a8565b6101b76102c5366004611abe565b6109b7565b6101b76102d8366004611b10565b6109c6565b61016c6102eb3660046119e6565b6109fe565b6103036102fe3660046119e6565b610a65565b60405161015b9190611c44565b61014f61031e366004611c57565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000631a93499b60e11b6001600160e01b031983160161036e57506001919050565b636ad56fd360e11b6001600160e01b031983160161038e57506001919050565b61039782610af4565b92915050565b6060600080546103ac90611c8a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890611c8a565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061043a82610b19565b506000908152600460205260409020546001600160a01b031690565b600061046182610844565b9050806001600160a01b0316836001600160a01b0316036104d35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104ef57506104ef813361031e565b6105615760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016104ca565b61056b8383610b78565b505050565b61057a3382610be6565b6105965760405162461bcd60e51b81526004016104ca90611cc4565b61056b838383610c65565b6000828152600a60209081526040808320805482518185028101850190935280835284938493929190849084015b8282101561061e57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b0316818301528252600190920191016105cf565b505050509050600081511115610697578060008151811061064157610641611d12565b6020026020010151600001516127108260008151811061066357610663611d12565b6020026020010151602001516001600160601b0316866106839190611d3e565b61068d9190611d73565b92509250506106a0565b60008092509250505b9250929050565b60006106b283610922565b82106107145760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ca565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61056b838383604051806020016040528060008152506109c6565b600061076360085490565b82106107c65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ca565b600882815481106107d9576107d9611d12565b90600052602060002001549050919050565b600c546001600160a01b031633146108385760405162461bcd60e51b815260206004820152601060248201526f5741415453413a204e4f54204943534160801b60448201526064016104ca565b61084181610e0c565b50565b6000818152600260205260408120546001600160a01b0316806103975760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ca565b600c546000906001600160a01b031633146108f45760405162461bcd60e51b815260206004820152601060248201526f5741415453413a204e4f54204943534160801b60448201526064016104ca565b610902600b80546001019055565b600061090d600b5490565b905061091881610eb3565b6103978382610f77565b60006001600160a01b03821661098c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104ca565b506001600160a01b031660009081526003602052604090205490565b6060600180546103ac90611c8a565b6109c23383836110c5565b5050565b6109d03383610be6565b6109ec5760405162461bcd60e51b81526004016104ca90611cc4565b6109f884848484611193565b50505050565b6060610a0982610b19565b6000610a136111c6565b90506000815111610a335760405180602001604052806000815250610a5e565b80610a3d8461124d565b604051602001610a4e929190611d87565b6040516020818303038152906040525b9392505050565b6060600a6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610ae957600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610a9a565b505050509050919050565b60006001600160e01b0319821663780e9d6360e01b148061039757506103978261134e565b6000818152600260205260409020546001600160a01b03166108415760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ca565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bad82610844565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610bf283610844565b9050806001600160a01b0316846001600160a01b03161480610c3957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610c5d5750836001600160a01b0316610c528461042f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c7882610844565b6001600160a01b031614610cdc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104ca565b6001600160a01b038216610d3e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ca565b610d4983838361139e565b610d54600082610b78565b6001600160a01b0383166000908152600360205260408120805460019290610d7d908490611db6565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dab908490611dcd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610e1782610844565b9050610e258160008461139e565b610e30600083610b78565b6001600160a01b0381166000908152600360205260408120805460019290610e59908490611db6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081610eca57905050905061017181600081518110610f0957610f09611d12565b6020026020010151602001906001600160601b031690816001600160601b03168152505073f447be386164dadfb5d1e7622613f289f17024d881600081518110610f5557610f55611d12565b60209081029190910101516001600160a01b0390911690526109c282826113a9565b6001600160a01b038216610fcd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ca565b6000818152600260205260409020546001600160a01b0316156110325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ca565b61103e6000838361139e565b6001600160a01b0382166000908152600360205260408120805460019290611067908490611dcd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036111265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ca565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61119e848484610c65565b6111aa848484846115c2565b6109f85760405162461bcd60e51b81526004016104ca90611de5565b606060006111d34661124d565b90506040518060400160405280601681526020017568747470733a2f2f6170692e69636f73612e70726f2f60501b81525081604051806040016040528060088152602001672f7761617473612f60c01b81525060405160200161123893929190611e37565b60405160208183030381529060405291505090565b6060816000036112745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561129e578061128881611e7a565b91506112979050600a83611d73565b9150611278565b60008167ffffffffffffffff8111156112b9576112b9611afa565b6040519080825280601f01601f1916602001820160405280156112e3576020820181803683370190505b5090505b8415610c5d576112f8600183611db6565b9150611305600a86611e93565b611310906030611dcd565b60f81b81838151811061132557611325611d12565b60200101906001600160f81b031916908160001a905350611347600a86611d73565b94506112e7565b60006001600160e01b031982166380ac58cd60e01b148061137f57506001600160e01b03198216635b5e139f60e01b145b8061039757506301ffc9a760e01b6001600160e01b0319831614610397565b61056b8383836116c3565b6000805b82518110156115585760006001600160a01b03168382815181106113d3576113d3611d12565b6020026020010151600001516001600160a01b0316036114355760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e74000000000060448201526064016104ca565b82818151811061144757611447611d12565b6020026020010151602001516001600160601b03166000036114ab5760405162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f73697469766560448201526064016104ca565b8281815181106114bd576114bd611d12565b6020026020010151602001516001600160601b0316826114dd9190611dcd565b9150600a600085815260200190815260200160002083828151811061150457611504611d12565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b03909116179101558061155081611e7a565b9150506113ad565b5061271081106115b85760405162461bcd60e51b815260206004820152602560248201527f526f79616c747920746f74616c2076616c75652073686f756c64206265203c20604482015264031303030360dc1b60648201526084016104ca565b61056b838361177b565b60006001600160a01b0384163b156116b857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611606903390899088908890600401611ea7565b6020604051808303816000875af1925050508015611641575060408051601f3d908101601f1916820190925261163e91810190611ee4565b60015b61169e573d80801561166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b5080516000036116965760405162461bcd60e51b81526004016104ca90611de5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c5d565b506001949350505050565b6001600160a01b03831661171e5761171981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611741565b816001600160a01b0316836001600160a01b0316146117415761174183826117b8565b6001600160a01b0382166117585761056b81611855565b826001600160a01b0316826001600160a01b03161461056b5761056b8282611904565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df82826040516117ac929190611f01565b60405180910390a15050565b600060016117c584610922565b6117cf9190611db6565b600083815260076020526040902054909150808214611822576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061186790600190611db6565b6000838152600960205260408120546008805493945090928490811061188f5761188f611d12565b9060005260206000200154905080600883815481106118b0576118b0611d12565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118e8576118e8611f1a565b6001900381819060005260206000200160009055905550505050565b600061190f83610922565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461084157600080fd5b60006020828403121561197057600080fd5b8135610a5e81611948565b60005b8381101561199657818101518382015260200161197e565b838111156109f85750506000910152565b600081518084526119bf81602086016020860161197b565b601f01601f19169290920160200192915050565b602081526000610a5e60208301846119a7565b6000602082840312156119f857600080fd5b5035919050565b80356001600160a01b0381168114611a1657600080fd5b919050565b60008060408385031215611a2e57600080fd5b611a37836119ff565b946020939093013593505050565b600080600060608486031215611a5a57600080fd5b611a63846119ff565b9250611a71602085016119ff565b9150604084013590509250925092565b60008060408385031215611a9457600080fd5b50508035926020909101359150565b600060208284031215611ab557600080fd5b610a5e826119ff565b60008060408385031215611ad157600080fd5b611ada836119ff565b915060208301358015158114611aef57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b2657600080fd5b611b2f856119ff565b9350611b3d602086016119ff565b925060408501359150606085013567ffffffffffffffff80821115611b6157600080fd5b818701915087601f830112611b7557600080fd5b813581811115611b8757611b87611afa565b604051601f8201601f19908116603f01168101908382118183101715611baf57611baf611afa565b816040528281528a6020848701011115611bc857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600081518084526020808501945080840160005b83811015611c3957815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101611c00565b509495945050505050565b602081526000610a5e6020830184611bec565b60008060408385031215611c6a57600080fd5b611c73836119ff565b9150611c81602084016119ff565b90509250929050565b600181811c90821680611c9e57607f821691505b602082108103611cbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d5857611d58611d28565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611d8257611d82611d5d565b500490565b60008351611d9981846020880161197b565b835190830190611dad81836020880161197b565b01949350505050565b600082821015611dc857611dc8611d28565b500390565b60008219821115611de057611de0611d28565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451611e4981846020890161197b565b845190830190611e5d81836020890161197b565b8451910190611e7081836020880161197b565b0195945050505050565b600060018201611e8c57611e8c611d28565b5060010190565b600082611ea257611ea2611d5d565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eda908301846119a7565b9695505050505050565b600060208284031215611ef657600080fd5b8151610a5e81611948565b828152604060208201526000610c5d6040830184611bec565b634e487b7160e01b600052603160045260246000fdfea26469706673582212206fae9180e5bc3b2fe969c2964f1e17e80de1e312a7226fdda5ba630a8a9e27fc64736f6c634300080f0033

Deployed Bytecode Sourcemap

45461:4200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49210:446;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;49210:446:0;;;;;;;;21837:100;;;:::i;:::-;;;;;;;:::i;23350:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23350:171:0;1528:203:1;22867:417:0;;;;;;:::i;:::-;;:::i;:::-;;36414:113;36502:10;:17;36414:113;;;2319:25:1;;;2307:2;2292:18;36414:113:0;2173:177:1;24050:336:0;;;;;;:::i;:::-;;:::i;48259:432::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3133:32:1;;;3115:51;;3197:2;3182:18;;3175:34;;;;3088:18;48259:432:0;2941:274:1;36082:256:0;;;;;;:::i;:::-;;:::i;24457:185::-;;;;;;:::i;:::-;;:::i;36604:233::-;;;;;;:::i;:::-;;:::i;47678:173::-;;;;;;:::i;:::-;;:::i;21548:222::-;;;;;;:::i;:::-;;:::i;47309:361::-;;;;;;:::i;:::-;;:::i;21279:207::-;;;;;;:::i;:::-;;:::i;48863:130::-;45634:42;48863:130;;22006:104;;;:::i;23593:155::-;;;;;;:::i;:::-;;:::i;24713:323::-;;;;;;:::i;:::-;;:::i;22181:281::-;;;;;;:::i;:::-;;:::i;44987:137::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23819:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23940:25:0;;;23916:4;23940:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23819:164;49210:446;49382:4;-1:-1:-1;;;;;;;;;49408:53:0;;;49404:97;;-1:-1:-1;49485:4:0;;49210:446;-1:-1:-1;49210:446:0:o;49404:97::-;-1:-1:-1;;;;;;;;;49517:36:0;;;49513:80;;-1:-1:-1;49577:4:0;;49210:446;-1:-1:-1;49210:446:0:o;49513:80::-;49612:36;49636:11;49612:23;:36::i;:::-;49605:43;49210:446;-1:-1:-1;;49210:446:0:o;21837:100::-;21891:13;21924:5;21917:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21837:100;:::o;23350:171::-;23426:7;23446:23;23461:7;23446:14;:23::i;:::-;-1:-1:-1;23489:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23489:24:0;;23350:171::o;22867:417::-;22948:13;22964:23;22979:7;22964:14;:23::i;:::-;22948:39;;23012:5;-1:-1:-1;;;;;23006:11:0;:2;-1:-1:-1;;;;;23006:11:0;;22998:57;;;;-1:-1:-1;;;22998:57:0;;6794:2:1;22998:57:0;;;6776:21:1;6833:2;6813:18;;;6806:30;6872:34;6852:18;;;6845:62;-1:-1:-1;;;6923:18:1;;;6916:31;6964:19;;22998:57:0;;;;;;;;;16344:10;-1:-1:-1;;;;;23090:21:0;;;;:62;;-1:-1:-1;23115:37:0;23132:5;16344:10;23819:164;:::i;23115:37::-;23068:174;;;;-1:-1:-1;;;23068:174:0;;7196:2:1;23068:174:0;;;7178:21:1;7235:2;7215:18;;;7208:30;7274:34;7254:18;;;7247:62;7345:32;7325:18;;;7318:60;7395:19;;23068:174:0;6994:426:1;23068:174:0;23255:21;23264:2;23268:7;23255:8;:21::i;:::-;22937:347;22867:417;;:::o;24050:336::-;24245:41;16344:10;24278:7;24245:18;:41::i;:::-;24237:100;;;;-1:-1:-1;;;24237:100:0;;;;;;;:::i;:::-;24350:28;24360:4;24366:2;24370:7;24350:9;:28::i;48259:432::-;48391:16;48483:18;;;:9;:18;;;;;;;;48448:53;;;;;;;;;;;;;;;;;48391:16;;;;48448:53;48483:18;48448:53;48391:16;;48448:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48448:53:0;;;;-1:-1:-1;;;48448:53:0;;-1:-1:-1;;;;;48448:53:0;;;;;;;;;;;;;;;;;;;;;;48546:1;48526:10;:17;:21;48522:127;;;48572:10;48583:1;48572:13;;;;;;;;:::i;:::-;;;;;;;:21;;;48631:5;48608:10;48619:1;48608:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;48596:31:0;:9;:31;;;;:::i;:::-;48595:41;;;;:::i;:::-;48564:73;;;;;;;48522:127;48677:1;48681;48661:22;;;;;48259:432;;;;;;:::o;36082:256::-;36179:7;36215:23;36232:5;36215:16;:23::i;:::-;36207:5;:31;36199:87;;;;-1:-1:-1;;;36199:87:0;;8736:2:1;36199:87:0;;;8718:21:1;8775:2;8755:18;;;8748:30;8814:34;8794:18;;;8787:62;-1:-1:-1;;;8865:18:1;;;8858:41;8916:19;;36199:87:0;8534:407:1;36199:87:0;-1:-1:-1;;;;;;36304:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36082:256::o;24457:185::-;24595:39;24612:4;24618:2;24622:7;24595:39;;;;;;;;;;;;:16;:39::i;36604:233::-;36679:7;36715:30;36502:10;:17;;36414:113;36715:30;36707:5;:38;36699:95;;;;-1:-1:-1;;;36699:95:0;;9148:2:1;36699:95:0;;;9130:21:1;9187:2;9167:18;;;9160:30;9226:34;9206:18;;;9199:62;-1:-1:-1;;;9277:18:1;;;9270:42;9329:19;;36699:95:0;8946:408:1;36699:95:0;36812:10;36823:5;36812:17;;;;;;;;:::i;:::-;;;;;;;;;36805:24;;36604:233;;;:::o;47678:173::-;47774:8;;-1:-1:-1;;;;;47774:8:0;47760:10;:22;47752:64;;;;-1:-1:-1;;;47752:64:0;;9561:2:1;47752:64:0;;;9543:21:1;9600:2;9580:18;;;9573:30;-1:-1:-1;;;9619:18:1;;;9612:46;9675:18;;47752:64:0;9359:340:1;47752:64:0;47829:14;47835:7;47829:5;:14::i;:::-;47678:173;:::o;21548:222::-;21620:7;21656:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21656:16:0;;21683:56;;;;-1:-1:-1;;;21683:56:0;;9906:2:1;21683:56:0;;;9888:21:1;9945:2;9925:18;;;9918:30;-1:-1:-1;;;9964:18:1;;;9957:54;10028:18;;21683:56:0;9704:348:1;47309:361:0;47431:8;;47384:7;;-1:-1:-1;;;;;47431:8:0;47417:10;:22;47409:64;;;;-1:-1:-1;;;47409:64:0;;9561:2:1;47409:64:0;;;9543:21:1;9600:2;9580:18;;;9573:30;-1:-1:-1;;;9619:18:1;;;9612:46;9675:18;;47409:64:0;9359:340:1;47409:64:0;47486:21;:9;42864:19;;42882:1;42864:19;;;42775:127;47486:21;47518:18;47539:19;:9;42745:14;;42653:114;47539:19;47518:40;;47571:25;47585:10;47571:13;:25::i;:::-;47609;47615:6;47623:10;47609:5;:25::i;21279:207::-;21351:7;-1:-1:-1;;;;;21379:19:0;;21371:73;;;;-1:-1:-1;;;21371:73:0;;10259:2:1;21371:73:0;;;10241:21:1;10298:2;10278:18;;;10271:30;10337:34;10317:18;;;10310:62;-1:-1:-1;;;10388:18:1;;;10381:39;10437:19;;21371:73:0;10057:405:1;21371:73:0;-1:-1:-1;;;;;;21462:16:0;;;;;:9;:16;;;;;;;21279:207::o;22006:104::-;22062:13;22095:7;22088:14;;;;;:::i;23593:155::-;23688:52;16344:10;23721:8;23731;23688:18;:52::i;:::-;23593:155;;:::o;24713:323::-;24887:41;16344:10;24920:7;24887:18;:41::i;:::-;24879:100;;;;-1:-1:-1;;;24879:100:0;;;;;;;:::i;:::-;24990:38;25004:4;25010:2;25014:7;25023:4;24990:13;:38::i;:::-;24713:323;;;;:::o;22181:281::-;22254:13;22280:23;22295:7;22280:14;:23::i;:::-;22316:21;22340:10;:8;:10::i;:::-;22316:34;;22392:1;22374:7;22368:21;:25;:86;;;;;;;;;;;;;;;;;22420:7;22429:18;:7;:16;:18::i;:::-;22403:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22368:86;22361:93;22181:281;-1:-1:-1;;;22181:281:0:o;44987:137::-;45062:21;45103:9;:13;45113:2;45103:13;;;;;;;;;;;45096:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45096:20:0;;;;-1:-1:-1;;;45096:20:0;;-1:-1:-1;;;;;45096:20:0;;;;;;;;;;;;;;;;;;;;;;44987:137;;;:::o;35774:224::-;35876:4;-1:-1:-1;;;;;;35900:50:0;;-1:-1:-1;;;35900:50:0;;:90;;;35954:36;35978:11;35954:23;:36::i;31325:135::-;26608:4;26632:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26632:16:0;31399:53;;;;-1:-1:-1;;;31399:53:0;;9906:2:1;31399:53:0;;;9888:21:1;9945:2;9925:18;;;9918:30;-1:-1:-1;;;9964:18:1;;;9957:54;10028:18;;31399:53:0;9704:348:1;30604:174:0;30679:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30679:29:0;-1:-1:-1;;;;;30679:29:0;;;;;;;;:24;;30733:23;30679:24;30733:14;:23::i;:::-;-1:-1:-1;;;;;30724:46:0;;;;;;;;;;;30604:174;;:::o;26837:264::-;26930:4;26947:13;26963:23;26978:7;26963:14;:23::i;:::-;26947:39;;27016:5;-1:-1:-1;;;;;27005:16:0;:7;-1:-1:-1;;;;;27005:16:0;;:52;;;-1:-1:-1;;;;;;23940:25:0;;;23916:4;23940:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27025:32;27005:87;;;;27085:7;-1:-1:-1;;;;;27061:31:0;:20;27073:7;27061:11;:20::i;:::-;-1:-1:-1;;;;;27061:31:0;;27005:87;26997:96;26837:264;-1:-1:-1;;;;26837:264:0:o;29860:625::-;30019:4;-1:-1:-1;;;;;29992:31:0;:23;30007:7;29992:14;:23::i;:::-;-1:-1:-1;;;;;29992:31:0;;29984:81;;;;-1:-1:-1;;;29984:81:0;;11144:2:1;29984:81:0;;;11126:21:1;11183:2;11163:18;;;11156:30;11222:34;11202:18;;;11195:62;-1:-1:-1;;;11273:18:1;;;11266:35;11318:19;;29984:81:0;10942:401:1;29984:81:0;-1:-1:-1;;;;;30084:16:0;;30076:65;;;;-1:-1:-1;;;30076:65:0;;11550:2:1;30076:65:0;;;11532:21:1;11589:2;11569:18;;;11562:30;11628:34;11608:18;;;11601:62;-1:-1:-1;;;11679:18:1;;;11672:34;11723:19;;30076:65:0;11348:400:1;30076:65:0;30154:39;30175:4;30181:2;30185:7;30154:20;:39::i;:::-;30258:29;30275:1;30279:7;30258:8;:29::i;:::-;-1:-1:-1;;;;;30300:15:0;;;;;;:9;:15;;;;;:20;;30319:1;;30300:15;:20;;30319:1;;30300:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30331:13:0;;;;;;:9;:13;;;;;:18;;30348:1;;30331:13;:18;;30348:1;;30331:18;:::i;:::-;;;;-1:-1:-1;;30360:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30360:21:0;-1:-1:-1;;;;;30360:21:0;;;;;;;;;30399:27;;30360:16;;30399:27;;;;;;;22937:347;22867:417;;:::o;29103:420::-;29163:13;29179:23;29194:7;29179:14;:23::i;:::-;29163:39;;29215:48;29236:5;29251:1;29255:7;29215:20;:48::i;:::-;29304:29;29321:1;29325:7;29304:8;:29::i;:::-;-1:-1:-1;;;;;29346:16:0;;;;;;:9;:16;;;;;:21;;29366:1;;29346:16;:21;;29366:1;;29346:21;:::i;:::-;;;;-1:-1:-1;;29385:16:0;;;;:7;:16;;;;;;29378:23;;-1:-1:-1;;;;;;29378:23:0;;;29419:36;29393:7;;29385:16;-1:-1:-1;;;;;29419:36:0;;;;;29385:16;;29419:36;23593:155;;:::o;46989:312::-;47114:21;;;47133:1;47114:21;;;;;;;;;47079:32;;47114:21;;;;-1:-1:-1;;;;;;;;;;;;;;;;;47114:21:0;;;;;;;;;;;;;;;47079:56;;45797:3;47146:10;47157:1;47146:13;;;;;;;;:::i;:::-;;;;;;;:19;;:41;-1:-1:-1;;;;;47146:41:0;;;-1:-1:-1;;;;;47146:41:0;;;;;45634:42;47198:10;47209:1;47198:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47198:49:0;;;;;47258:35;47273:7;47282:10;47258:14;:35::i;28435:439::-;-1:-1:-1;;;;;28515:16:0;;28507:61;;;;-1:-1:-1;;;28507:61:0;;12218:2:1;28507:61:0;;;12200:21:1;;;12237:18;;;12230:30;12296:34;12276:18;;;12269:62;12348:18;;28507:61:0;12016:356:1;28507:61:0;26608:4;26632:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26632:16:0;:30;28579:58;;;;-1:-1:-1;;;28579:58:0;;12579:2:1;28579:58:0;;;12561:21:1;12618:2;12598:18;;;12591:30;12657;12637:18;;;12630:58;12705:18;;28579:58:0;12377:352:1;28579:58:0;28650:45;28679:1;28683:2;28687:7;28650:20;:45::i;:::-;-1:-1:-1;;;;;28708:13:0;;;;;;:9;:13;;;;;:18;;28725:1;;28708:13;:18;;28725:1;;28708:18;:::i;:::-;;;;-1:-1:-1;;28737:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28737:21:0;-1:-1:-1;;;;;28737:21:0;;;;;;;;28776:33;;28737:16;;;28776:33;;28737:16;;28776:33;23593:155;;:::o;30921:315::-;31076:8;-1:-1:-1;;;;;31067:17:0;:5;-1:-1:-1;;;;;31067:17:0;;31059:55;;;;-1:-1:-1;;;31059:55:0;;12936:2:1;31059:55:0;;;12918:21:1;12975:2;12955:18;;;12948:30;13014:27;12994:18;;;12987:55;13059:18;;31059:55:0;12734:349:1;31059:55:0;-1:-1:-1;;;;;31125:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31125:46:0;;;;;;;;;;31187:41;;540::1;;;31187::0;;513:18:1;31187:41:0;;;;;;;30921:315;;;:::o;25917:313::-;26073:28;26083:4;26089:2;26093:7;26073:9;:28::i;:::-;26120:47;26143:4;26149:2;26153:7;26162:4;26120:22;:47::i;:::-;26112:110;;;;-1:-1:-1;;;26112:110:0;;;;;;;:::i;46287:278::-;46398:13;46429:21;46453:31;46470:13;46453:16;:31::i;:::-;46429:55;;46526:9;;;;;;;;;;;;;-1:-1:-1;;;46526:9:0;;;46537:7;46546:9;;;;;;;;;;;;;-1:-1:-1;;;46546:9:0;;;46509:47;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46495:62;;;46287:278;:::o;16754:723::-;16810:13;17031:5;17040:1;17031:10;17027:53;;-1:-1:-1;;17058:10:0;;;;;;;;;;;;-1:-1:-1;;;17058:10:0;;;;;16754:723::o;17027:53::-;17105:5;17090:12;17146:78;17153:9;;17146:78;;17179:8;;;;:::i;:::-;;-1:-1:-1;17202:10:0;;-1:-1:-1;17210:2:0;17202:10;;:::i;:::-;;;17146:78;;;17234:19;17266:6;17256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17256:17:0;;17234:39;;17284:154;17291:10;;17284:154;;17318:11;17328:1;17318:11;;:::i;:::-;;-1:-1:-1;17387:10:0;17395:2;17387:5;:10;:::i;:::-;17374:24;;:2;:24;:::i;:::-;17361:39;;17344:6;17351;17344:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17344:56:0;;;;;;;;-1:-1:-1;17415:11:0;17424:2;17415:11;;:::i;:::-;;;17284:154;;20910:305;21012:4;-1:-1:-1;;;;;;21049:40:0;;-1:-1:-1;;;21049:40:0;;:105;;-1:-1:-1;;;;;;;21106:48:0;;-1:-1:-1;;;21106:48:0;21049:105;:158;;;-1:-1:-1;;;;;;;;;;19628:40:0;;;21171:36;19519:157;46573:239;46759:45;46786:4;46792:2;46796:7;46759:26;:45::i;43707:576::-;43797:18;;43826:329;43847:10;:17;43843:1;:21;43826:329;;;43927:3;-1:-1:-1;;;;;43894:37:0;:10;43905:1;43894:13;;;;;;;;:::i;:::-;;;;;;;:21;;;-1:-1:-1;;;;;43894:37:0;;43886:77;;;;-1:-1:-1;;;43886:77:0;;14635:2:1;43886:77:0;;;14617:21:1;14674:2;14654:18;;;14647:30;14713:29;14693:18;;;14686:57;14760:18;;43886:77:0;14433:351:1;43886:77:0;43986:10;43997:1;43986:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;43986:24:0;44009:1;43986:24;43978:69;;;;-1:-1:-1;;;43978:69:0;;14991:2:1;43978:69:0;;;14973:21:1;;;15010:18;;;15003:30;15069:34;15049:18;;;15042:62;15121:18;;43978:69:0;14789:356:1;43978:69:0;44076:10;44087:1;44076:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;44062:33:0;;;;;;:::i;:::-;;;44110:9;:13;44120:2;44110:13;;;;;;;;;;;44129:10;44140:1;44129:13;;;;;;;;:::i;:::-;;;;;;;;;;;;44110:33;;;;;;;-1:-1:-1;44110:33:0;;;;;;;;;;;;;;-1:-1:-1;;;;;44110:33:0;-1:-1:-1;;;44110:33:0;-1:-1:-1;;;;;44110:33:0;;;;;;;43866:3;;;;:::i;:::-;;;;43826:329;;;;44186:5;44173:10;:18;44165:68;;;;-1:-1:-1;;;44165:68:0;;15352:2:1;44165:68:0;;;15334:21:1;15391:2;15371:18;;;15364:30;15430:34;15410:18;;;15403:62;-1:-1:-1;;;15481:18:1;;;15474:35;15526:19;;44165:68:0;15150:401:1;44165:68:0;44244:31;44260:2;44264:10;44244:15;:31::i;32024:853::-;32178:4;-1:-1:-1;;;;;32199:13:0;;8699:19;:23;32195:675;;32235:71;;-1:-1:-1;;;32235:71:0;;-1:-1:-1;;;;;32235:36:0;;;;;:71;;16344:10;;32286:4;;32292:7;;32301:4;;32235:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32235:71:0;;;;;;;;-1:-1:-1;;32235:71:0;;;;;;;;;;;;:::i;:::-;;;32231:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32476:6;:13;32493:1;32476:18;32472:328;;32519:60;;-1:-1:-1;;;32519:60:0;;;;;;;:::i;32472:328::-;32750:6;32744:13;32735:6;32731:2;32727:15;32720:38;32231:584;-1:-1:-1;;;;;;32357:51:0;-1:-1:-1;;;32357:51:0;;-1:-1:-1;32350:58:0;;32195:675;-1:-1:-1;32854:4:0;32024:853;;;;;;:::o;37450:589::-;-1:-1:-1;;;;;37656:18:0;;37652:187;;37691:40;37723:7;38866:10;:17;;38839:24;;;;:15;:24;;;;;:44;;;38894:24;;;;;;;;;;;;38762:164;37691:40;37652:187;;;37761:2;-1:-1:-1;;;;;37753:10:0;:4;-1:-1:-1;;;;;37753:10:0;;37749:90;;37780:47;37813:4;37819:7;37780:32;:47::i;:::-;-1:-1:-1;;;;;37853:16:0;;37849:183;;37886:45;37923:7;37886:36;:45::i;37849:183::-;37959:4;-1:-1:-1;;;;;37953:10:0;:2;-1:-1:-1;;;;;37953:10:0;;37949:83;;37980:40;38008:2;38012:7;37980:27;:40::i;45132:141::-;45237:28;45250:2;45254:10;45237:28;;;;;;;:::i;:::-;;;;;;;;45132:141;;:::o;39553:988::-;39819:22;39869:1;39844:22;39861:4;39844:16;:22::i;:::-;:26;;;;:::i;:::-;39881:18;39902:26;;;:17;:26;;;;;;39819:51;;-1:-1:-1;40035:28:0;;;40031:328;;-1:-1:-1;;;;;40102:18:0;;40080:19;40102:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40153:30;;;;;;:44;;;40270:30;;:17;:30;;;;;:43;;;40031:328;-1:-1:-1;40455:26:0;;;;:17;:26;;;;;;;;40448:33;;;-1:-1:-1;;;;;40499:18:0;;;;;:12;:18;;;;;:34;;;;;;;40492:41;39553:988::o;40836:1079::-;41114:10;:17;41089:22;;41114:21;;41134:1;;41114:21;:::i;:::-;41146:18;41167:24;;;:15;:24;;;;;;41540:10;:26;;41089:46;;-1:-1:-1;41167:24:0;;41089:46;;41540:26;;;;;;:::i;:::-;;;;;;;;;41518:48;;41604:11;41579:10;41590;41579:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41684:28;;;:15;:28;;;;;;;:41;;;41856:24;;;;;41849:31;41891:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40907:1008;;;40836:1079;:::o;38340:221::-;38425:14;38442:20;38459:2;38442:16;:20::i;:::-;-1:-1:-1;;;;;38473:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38518:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38340:221:0: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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:248::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;-1:-1:-1;;2856:23:1;;;2926:2;2911:18;;;2898:32;;-1:-1:-1;2688:248:1:o;3220:186::-;3279:6;3332:2;3320:9;3311:7;3307:23;3303:32;3300:52;;;3348:1;3345;3338:12;3300:52;3371:29;3390:9;3371:29;:::i;3411:347::-;3476:6;3484;3537:2;3525:9;3516:7;3512:23;3508:32;3505:52;;;3553:1;3550;3543:12;3505:52;3576:29;3595:9;3576:29;:::i;:::-;3566:39;;3655:2;3644:9;3640:18;3627:32;3702:5;3695:13;3688:21;3681:5;3678:32;3668:60;;3724:1;3721;3714:12;3668:60;3747:5;3737:15;;;3411:347;;;;;:::o;3763:127::-;3824:10;3819:3;3815:20;3812:1;3805:31;3855:4;3852:1;3845:15;3879:4;3876:1;3869:15;3895:1138;3990:6;3998;4006;4014;4067:3;4055:9;4046:7;4042:23;4038:33;4035:53;;;4084:1;4081;4074:12;4035:53;4107:29;4126:9;4107:29;:::i;:::-;4097:39;;4155:38;4189:2;4178:9;4174:18;4155:38;:::i;:::-;4145:48;;4240:2;4229:9;4225:18;4212:32;4202:42;;4295:2;4284:9;4280:18;4267:32;4318:18;4359:2;4351:6;4348:14;4345:34;;;4375:1;4372;4365:12;4345:34;4413:6;4402:9;4398:22;4388:32;;4458:7;4451:4;4447:2;4443:13;4439:27;4429:55;;4480:1;4477;4470:12;4429:55;4516:2;4503:16;4538:2;4534;4531:10;4528:36;;;4544:18;;:::i;:::-;4619:2;4613:9;4587:2;4673:13;;-1:-1:-1;;4669:22:1;;;4693:2;4665:31;4661:40;4649:53;;;4717:18;;;4737:22;;;4714:46;4711:72;;;4763:18;;:::i;:::-;4803:10;4799:2;4792:22;4838:2;4830:6;4823:18;4878:7;4873:2;4868;4864;4860:11;4856:20;4853:33;4850:53;;;4899:1;4896;4889:12;4850:53;4955:2;4950;4946;4942:11;4937:2;4929:6;4925:15;4912:46;5000:1;4995:2;4990;4982:6;4978:15;4974:24;4967:35;5021:6;5011:16;;;;;;;3895:1138;;;;;;;:::o;5038:585::-;5095:3;5133:5;5127:12;5160:6;5155:3;5148:19;5186:4;5215:2;5210:3;5206:12;5199:19;;5252:2;5245:5;5241:14;5273:1;5283:315;5297:6;5294:1;5291:13;5283:315;;;5356:13;;5398:9;;-1:-1:-1;;;;;5394:35:1;5382:48;;5474:11;;5468:18;-1:-1:-1;;;;;5464:51:1;5450:12;;;5443:73;5545:4;5536:14;;;;5573:15;;;;5426:1;5312:9;5283:315;;;-1:-1:-1;5614:3:1;;5038:585;-1:-1:-1;;;;;5038:585:1:o;5628:309::-;5851:2;5840:9;5833:21;5814:4;5871:60;5927:2;5916:9;5912:18;5904:6;5871:60;:::i;5942:260::-;6010:6;6018;6071:2;6059:9;6050:7;6046:23;6042:32;6039:52;;;6087:1;6084;6077:12;6039:52;6110:29;6129:9;6110:29;:::i;:::-;6100:39;;6158:38;6192:2;6181:9;6177:18;6158:38;:::i;:::-;6148:48;;5942:260;;;;;:::o;6207:380::-;6286:1;6282:12;;;;6329;;;6350:61;;6404:4;6396:6;6392:17;6382:27;;6350:61;6457:2;6449:6;6446:14;6426:18;6423:38;6420:161;;6503:10;6498:3;6494:20;6491:1;6484:31;6538:4;6535:1;6528:15;6566:4;6563:1;6556:15;6420:161;;6207:380;;;:::o;7425:410::-;7627:2;7609:21;;;7666:2;7646:18;;;7639:30;7705:34;7700:2;7685:18;;7678:62;-1:-1:-1;;;7771:2:1;7756:18;;7749:44;7825:3;7810:19;;7425:410::o;7840:127::-;7901:10;7896:3;7892:20;7889:1;7882:31;7932:4;7929:1;7922:15;7956:4;7953:1;7946:15;7972:127;8033:10;8028:3;8024:20;8021:1;8014:31;8064:4;8061:1;8054:15;8088:4;8085:1;8078:15;8104:168;8144:7;8210:1;8206;8202:6;8198:14;8195:1;8192:21;8187:1;8180:9;8173:17;8169:45;8166:71;;;8217:18;;:::i;:::-;-1:-1:-1;8257:9:1;;8104:168::o;8277:127::-;8338:10;8333:3;8329:20;8326:1;8319:31;8369:4;8366:1;8359:15;8393:4;8390:1;8383:15;8409:120;8449:1;8475;8465:35;;8480:18;;:::i;:::-;-1:-1:-1;8514:9:1;;8409:120::o;10467:470::-;10646:3;10684:6;10678:13;10700:53;10746:6;10741:3;10734:4;10726:6;10722:17;10700:53;:::i;:::-;10816:13;;10775:16;;;;10838:57;10816:13;10775:16;10872:4;10860:17;;10838:57;:::i;:::-;10911:20;;10467:470;-1:-1:-1;;;;10467:470:1:o;11753:125::-;11793:4;11821:1;11818;11815:8;11812:34;;;11826:18;;:::i;:::-;-1:-1:-1;11863:9:1;;11753:125::o;11883:128::-;11923:3;11954:1;11950:6;11947:1;11944:13;11941:39;;;11960:18;;:::i;:::-;-1:-1:-1;11996:9:1;;11883:128::o;13088:414::-;13290:2;13272:21;;;13329:2;13309:18;;;13302:30;13368:34;13363:2;13348:18;;13341:62;-1:-1:-1;;;13434:2:1;13419:18;;13412:48;13492:3;13477:19;;13088:414::o;13507:664::-;13734:3;13772:6;13766:13;13788:53;13834:6;13829:3;13822:4;13814:6;13810:17;13788:53;:::i;:::-;13904:13;;13863:16;;;;13926:57;13904:13;13863:16;13960:4;13948:17;;13926:57;:::i;:::-;14050:13;;14005:20;;;14072:57;14050:13;14005:20;14106:4;14094:17;;14072:57;:::i;:::-;14145:20;;13507:664;-1:-1:-1;;;;;13507:664:1:o;14176:135::-;14215:3;14236:17;;;14233:43;;14256:18;;:::i;:::-;-1:-1:-1;14303:1:1;14292:13;;14176:135::o;14316:112::-;14348:1;14374;14364:35;;14379:18;;:::i;:::-;-1:-1:-1;14413:9:1;;14316:112::o;15556:489::-;-1:-1:-1;;;;;15825:15:1;;;15807:34;;15877:15;;15872:2;15857:18;;15850:43;15924:2;15909:18;;15902:34;;;15972:3;15967:2;15952:18;;15945:31;;;15750:4;;15993:46;;16019:19;;16011:6;15993:46;:::i;:::-;15985:54;15556:489;-1:-1:-1;;;;;;15556:489:1:o;16050:249::-;16119:6;16172:2;16160:9;16151:7;16147:23;16143:32;16140:52;;;16188:1;16185;16178:12;16140:52;16220:9;16214:16;16239:30;16263:5;16239:30;:::i;16304:380::-;16555:6;16544:9;16537:25;16598:2;16593;16582:9;16578:18;16571:30;16518:4;16618:60;16674:2;16663:9;16659:18;16651:6;16618:60;:::i;16689:127::-;16750:10;16745:3;16741:20;16738:1;16731:31;16781:4;16778:1;16771:15;16805:4;16802:1;16795:15

Swarm Source

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