ETH Price: $3,298.88 (-3.29%)
Gas: 20 Gwei

Token

discreet (DISCREET)
 

Overview

Max Total Supply

1,002 DISCREET

Holders

292

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 DISCREET
0x7768fbc67afecf2b4caee9d1841ad14637d13652
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:
discreetNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-28
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;


/**
 * @dev Interface for discreet in addition to the standard ERC721 interface.
 */
interface discreetNFTInterface {
    /**
     * @dev Mint token with the supplied tokenId if it is currently available.
     */
    function mint(uint256 tokenId) external;

    /**
     * @dev Mint token with the supplied tokenId if it is currently available to
     * another address.
     */
    function mint(address to, uint256 tokenId) external;

    /**
     * @dev Burn token with the supplied tokenId if it is owned, approved or
     * reclaimable. Tokens become reclaimable after ~4 million blocks without a
     * mint or transfer.
     */
    function burn(uint256 tokenId) external;

    /**
     * @dev Check the current block number at which a given token will become
     * reclaimable.
     */
    function reclaimableThreshold(uint256 tokenId) external view returns (uint256);
}


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 */
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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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


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


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


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

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

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


interface IENSReverseRegistrar {
    function claim(address owner) external returns (bytes32 node);
    function setName(string calldata name) external returns (bytes32 node);
}


/**
 * @dev Implementation of the {IERC165} interface.
 */
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 ERC165, IERC721, IERC721Metadata {
    // Token name
    bytes8 private immutable _name;

    // Token symbol
    bytes8 private immutable _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(bytes8 name_, bytes8 symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev NOTE: standard functionality overridden.
     */
    function tokenURI(uint256 tokenId) external view virtual override returns (string memory) {}

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) external virtual override {
        require(operator != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, 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
    ) external virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external 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(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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) {
        uint256 size;
        assembly { size := extcodesize(to) }
        if (size > 0) {
            try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


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


/**
 * @dev discreet
 * @author 0age
 */
contract discreetNFT is discreetNFTInterface, ERC721, ERC721Enumerable {
    // Map tokenIds to block numbers past which they are burnable by any caller.
    mapping(uint256 => uint256) private _reclaimableThreshold;

    // Map transaction submitters to the block number of their last token mint.
    mapping(address => uint256) private _lastTokenMinted;

    // Fixed base64-encoded SVG fragments used across all images.
    bytes32 private constant h0 = 'data:image/svg+xml;base64,PD94bW';
    bytes32 private constant h1 = 'wgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz';
    bytes32 private constant h2 = '0iVVRGLTgiPz48c3ZnIHZpZXdCb3g9Ij';
    bytes32 private constant h3 = 'AgMCA1MDAgNTAwIiB4bWxucz0iaHR0cD';
    bytes32 private constant h4 = 'ovL3d3dy53My5vcmcvMjAwMC9zdmciIH';
    bytes32 private constant h5 = 'N0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOi';
    bytes4 private constant m0 = 'iPjx';
    bytes10 private constant m1 = 'BmaWxsPSIj';
    bytes16 private constant f0 = 'IiAvPjwvc3ZnPg==';

    /**
     * @dev Deploy discreet as an ERC721 NFT.
     */
    constructor() ERC721("discreet", "DISCREET") {
        // Set up ENS reverse registrar.
        IENSReverseRegistrar _ensReverseRegistrar = IENSReverseRegistrar(
            0x084b1c3C81545d370f3634392De611CaaBFf8148
        );

        _ensReverseRegistrar.claim(msg.sender);
        _ensReverseRegistrar.setName("discreet.eth");
    }

    /**
     * @dev Throttle minting to once a block and reset the reclamation threshold
     * whenever a new token is minted or transferred.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);

        // If minting: ensure it's the only one from this tx origin in the block.
        if (from == address(0)) {
            require(
                block.number > _lastTokenMinted[tx.origin],
                "discreet: cannot mint multiple tokens per block from a single origin"
            );

            _lastTokenMinted[tx.origin] = block.number;
        }

        // If not burning: reset tokenId's reclaimable threshold block number.
        if (to != address(0)) {
            _reclaimableThreshold[tokenId] = block.number + 0x400000;
        }
    }

    /**
     * @dev Mint a given discreet NFT if it is currently available.
     */
    function mint(uint256 tokenId) external override {
        _safeMint(msg.sender, tokenId);
    }

    /**
     * @dev Mint a given NFT if it is currently available to a given address.
     */
    function mint(address to, uint256 tokenId) external override {
        _safeMint(to, tokenId);
    }

    /**
     * @dev Burn a given discreet NFT if it is owned, approved or reclaimable.
     * Tokens become reclaimable after ~4 million blocks without a transfer.
     */
    function burn(uint256 tokenId) external override {
        // Only enforce check if tokenId has not reached reclaimable threshold.
        if (_reclaimableThreshold[tokenId] < block.number) {
            require(
                _isApprovedOrOwner(msg.sender, tokenId),
                "discreet: caller is not owner nor approved"
            );
        }

        _burn(tokenId);
    }

    /**
     * @dev Check the current block number at which the given token will become
     * reclaimable.
     */
    function reclaimableThreshold(uint256 tokenId) external view override returns (uint256) {
        return _reclaimableThreshold[tokenId];
    }

    /**
     * @dev Derive and return a discreet tokenURI formatted as a data URI.
     */
    function tokenURI(uint256 tokenId) external pure virtual override returns (string memory) {
        require(tokenId < 0x240, "discreet: URI query for out-of-range token");

        // Nine base64-encoded SVG fragments for background colors.
        bytes9[9] memory c0 = [
        	bytes9('MwMDAwMDA'),
        	'M2OWZmMzc',
        	'NmZjM3Njk',
        	'MzNzY5ZmY',
        	'NmZmZmOTA',
        	'M5MGZmZmY',
        	'NmZjkwZmY',
        	'NmZmZmZmY',
        	'M4MDgwODA'
        ];

        // Eight base64-encoded SVG fragments for primary shapes.
        string[8] memory s0 = [
        	'yZWN0IHg9IjE1NSIgeT0iNTUiIHdpZHRoPSIxOTAiIGhlaWdodD0iMzkwIi',
        	'yZWN0IHg9IjU1IiB5PSIxNTUiIHdpZHRoPSIzOTAiIGhlaWdodD0iMTkwIi',
        	'yZWN0IHg9IjExNSIgeT0iMTE1IiB3aWR0aD0iMjcwIiBoZWlnaHQ9IjI3MCIgIC',
        	'jaXJjbGUgY3g9IjI1MCIgY3k9IjI1MCIgcj0iMTY1Ii',
        	'lbGxpcHNlIGN4PSIyNTAiIGN5PSIyNTAiIHJ4PSIxMjUiIHJ5PSIxOTUiIC',
        	'lbGxpcHNlIGN4PSIyNTAiIGN5PSIyNTAiIHJ4PSIxOTUiIHJ5PSIxMjUiIC',
        	'wb2x5Z29uIHBvaW50cz0iMTAwLDEzNSAyNTAsNDAwIDQwMCwxMzUiIC',
        	'wb2x5Z29uIHBvaW50cz0iNDAwLDM2NSAyNTAsMTAwIDEwMCwzNjUiIC'
        ];

        // Nine base64-encoded SVG fragments for primary colors.
        bytes8[9] memory c1 = [
        	bytes8('NjlmZjM3'),
        	'ZmYzNzY5',
        	'Mzc2OWZm',
        	'ZmZmZjkw',
        	'OTBmZmZm',
        	'ZmY5MGZm',
        	'ZmZmZmZm',
        	'ODA4MDgw',
        	'MDAwMDAw'
        ];

        // Construct a discrete tokenURI from a unique combination of the above.
	    uint256 c0i = (tokenId % 72) / 8;
	    uint256 s0i = tokenId / 72;
	    uint256 c1i = (tokenId % 8 + (tokenId / 8)) % 9;
	    return string(
	        abi.encodePacked(
	            h0, h1, h2, h3, h4, h5, c0[c0i], m0, s0[s0i], m1, c1[c1i], f0
	       )
	   );
    }

    /**
     * @dev Coalesce supportsInterface from inherited contracts.
     */
    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}],"name":"reclaimableThreshold","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":"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":"pure","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"}]

60c06040523480156200001157600080fd5b5067191a5cd8dc99595d60c21b60805267111254d0d491515560c21b60a052604051630f41a04d60e11b815233600482015273084b1c3c81545d370f3634392de611caabff8148908190631e83409a90602401602060405180830381600087803b1580156200007f57600080fd5b505af115801562000094573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000ba91906200015d565b5060405163c47f002760e01b815260206004820152600c60248201526b0c8d2e6c6e4cacae85ccae8d60a31b60448201526001600160a01b0382169063c47f002790606401602060405180830381600087803b1580156200011a57600080fd5b505af11580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015591906200015d565b505062000177565b6000602082840312156200017057600080fd5b5051919050565b60805160a0516001600160c01b03199182169116611f0e620001ab6000396000610808015260006102fe0152611f0e6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80634f6ccce7116100ad578063a22cb46511610071578063a22cb46514610273578063b88d4fde14610286578063c87b56dd14610299578063e9350248146102ac578063e985e9c5146102cc57600080fd5b80634f6ccce71461021f5780636352211e1461023257806370a082311461024557806395d89b4114610258578063a0712d681461026057600080fd5b806323b872dd116100f457806323b872dd146101c05780632f745c59146101d357806340c10f19146101e657806342842e0e146101f957806342966c681461020c57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046119ea565b6102df565b60405190151581526020015b60405180910390f35b6101616102f0565b6040516101509190611b57565b61018161017c366004611a24565b61033e565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046119c0565b6103d8565b005b6006545b604051908152602001610150565b6101ac6101ce36600461186c565b6104ee565b6101b26101e13660046119c0565b61051f565b6101ac6101f43660046119c0565b6105b5565b6101ac61020736600461186c565b6105c3565b6101ac61021a366004611a24565b6105de565b6101b261022d366004611a24565b610669565b610181610240366004611a24565b6106fc565b6101b2610253366004611817565b610773565b6101616107fa565b6101ac61026e366004611a24565b610838565b6101ac610281366004611984565b610842565b6101ac6102943660046118a8565b610907565b6101616102a7366004611a24565b61093f565b6101b26102ba366004611a24565b60009081526008602052604090205490565b6101446102da366004611839565b610db8565b60006102ea82610de6565b92915050565b6040516001600160c01b03197f00000000000000000000000000000000000000000000000000000000000000001660208201526060906028015b604051602081830303815290604052905090565b6000818152602081905260408120546001600160a01b03166103bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006103e3826106fc565b9050806001600160a01b0316836001600160a01b031614156104515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103b3565b336001600160a01b038216148061046d575061046d8133610db8565b6104df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103b3565b6104e98383610e0b565b505050565b6104f83382610e79565b6105145760405162461bcd60e51b81526004016103b390611bbc565b6104e9838383610f50565b600061052a83610773565b821061058c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103b3565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b6105bf82826110ff565b5050565b6104e983838360405180602001604052806000815250610907565b60008181526008602052604090205443111561065d576105fe3382610e79565b61065d5760405162461bcd60e51b815260206004820152602a60248201527f64697363726565743a2063616c6c6572206973206e6f74206f776e6572206e6f6044820152691c88185c1c1c9bdd995960b21b60648201526084016103b3565b61066681611141565b50565b600061067460065490565b82106106d75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016103b3565b600682815481106106ea576106ea611cd2565b90600052602060002001549050919050565b6000818152602081905260408120546001600160a01b0316806102ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103b3565b60006001600160a01b0382166107de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103b3565b506001600160a01b031660009081526001602052604090205490565b6040516001600160c01b03197f000000000000000000000000000000000000000000000000000000000000000016602082015260609060280161032a565b61066633826110ff565b6001600160a01b03821633141561089b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103b3565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109113383610e79565b61092d5760405162461bcd60e51b81526004016103b390611bbc565b610939848484846111ea565b50505050565b606061024082106109a55760405162461bcd60e51b815260206004820152602a60248201527f64697363726565743a2055524920717565727920666f72206f75742d6f662d7260448201526930b733b2903a37b5b2b760b11b60648201526084016103b3565b604080516101208082018352684d774d4441774d444160b81b8252684d324f575a6d4d7a6360b81b6020830152684e6d5a6a4d334e6a6b60b81b82840152684d7a4e7a59355a6d5960b81b6060830152684e6d5a6d5a6d4f544160b81b6080830152684d354d475a6d5a6d5960b81b60a0830152684e6d5a6a6b775a6d5960b81b60c0830152684e6d5a6d5a6d5a6d5960b81b60e0830152684d344d4467774f444160b81b6101008084019190915283516101608101909452603b90840181815292936000939092839290611d509084013981526020016040518060600160405280603b8152602001611e3c603b913981526020016040518060600160405280603f8152602001611d8b603f913981526020016040518060600160405280602b8152602001611e77602b913981526020016040518060600160405280603b8152602001611e01603b913981526020016040518060600160405280603b8152602001611d15603b91398152602001604051806060016040528060378152602001611dca603791398152602001604051806060016040528060378152602001611ea26037913990526040805161012081018252674e6a6c6d5a6a4d3360c01b8152675a6d597a4e7a593560c01b6020820152674d7a63324f575a6d60c01b91810191909152675a6d5a6d5a6a6b7760c01b6060820152674f54426d5a6d5a6d60c01b6080820152675a6d59354d475a6d60c01b60a0820152675a6d5a6d5a6d5a6d60c01b60c0820152674f4441344d44677760c01b60e0820152674d4441774d44417760c01b61010082015290915060006008610c01604888611c7c565b610c0b9190611c25565b90506000610c1a604888611c25565b905060006009610c2b60088a611c25565b610c3660088b611c7c565b610c409190611c0d565b610c4a9190611c7c565b90507f646174613a696d6167652f7376672b786d6c3b6261736536342c5044393462577f7767646d567963326c76626a30694d5334774969426c626d4e765a476c755a7a7f3069565652474c546769507a343863335a6e49485a705a58644362336739496a7f41674d4341314d4441674e5441774969423462577875637a30696148523063447f6f764c336433647935334d793576636d63764d6a41774d43397a646d636949487f4e306557786c50534a6959574e725a334a766457356b4c574e76624739794f698b8960098110610d2457610d24611cd2565b6020020151630d2a0d4f60e31b8c8a60088110610d4357610d43611cd2565b6020020151692136b0abbc39a829a4b560b11b8d8b60098110610d6857610d68611cd2565b60200201516f49694176506a777663335a6e50673d3d60801b604051602001610d9c9c9b9a99989796959493929190611a69565b6040516020818303038152906040529650505050505050919050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b14806102ea57506102ea8261121d565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e40826106fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152602081905260408120546001600160a01b0316610ef25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103b3565b6000610efd836106fc565b9050806001600160a01b0316846001600160a01b03161480610f385750836001600160a01b0316610f2d8461033e565b6001600160a01b0316145b80610f485750610f488185610db8565b949350505050565b826001600160a01b0316610f63826106fc565b6001600160a01b031614610fcb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103b3565b6001600160a01b03821661102d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103b3565b61103883838361126d565b611043600082610e0b565b6001600160a01b0383166000908152600160208190526040822080549192909161106e908490611c39565b90915550506001600160a01b0382166000908152600160208190526040822080549192909161109e908490611c0d565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611109828261135b565b61112560008383604051806020016040528060008152506114ab565b6105bf5760405162461bcd60e51b81526004016103b390611b6a565b600061114c826106fc565b905061115a8160008461126d565b611165600083610e0b565b6001600160a01b03811660009081526001602081905260408220805491929091611190908490611c39565b909155505060008281526020819052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6111f5848484610f50565b611201848484846114ab565b6109395760405162461bcd60e51b81526004016103b390611b6a565b60006001600160e01b031982166380ac58cd60e01b148061124e57506001600160e01b03198216635b5e139f60e01b145b806102ea57506301ffc9a760e01b6001600160e01b03198316146102ea565b6112788383836115b3565b6001600160a01b03831661132b573260009081526009602052604090205443116113185760405162461bcd60e51b8152602060048201526044602482018190527f64697363726565743a2063616e6e6f74206d696e74206d756c7469706c652074908201527f6f6b656e732070657220626c6f636b2066726f6d20612073696e676c65206f7260648201526334b3b4b760e11b608482015260a4016103b3565b3260009081526009602052604090204390555b6001600160a01b038216156104e9576113474362400000611c0d565b600082815260086020526040902055505050565b6001600160a01b0382166113b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103b3565b6000818152602081905260409020546001600160a01b0316156114165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103b3565b6114226000838361126d565b6001600160a01b0382166000908152600160208190526040822080549192909161144d908490611c0d565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000833b80156115a757604051630a85bd0160e11b81526001600160a01b0386169063150b7a02906114e79033908a9089908990600401611b1a565b602060405180830381600087803b15801561150157600080fd5b505af1925050508015611531575060408051601f3d908101601f1916820190925261152e91810190611a07565b60015b61158b573d80801561155f576040519150601f19603f3d011682016040523d82523d6000602084013e611564565b606091505b5080516115835760405162461bcd60e51b81526004016103b390611b6a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149150610f489050565b50600195945050505050565b6001600160a01b03831661160e5761160981600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b611631565b816001600160a01b0316836001600160a01b03161461163157611631838261166b565b6001600160a01b038216611648576104e981611708565b826001600160a01b0316826001600160a01b0316146104e9576104e982826117b7565b6000600161167884610773565b6116829190611c39565b6000838152600560205260409020549091508082146116d5576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b60065460009061171a90600190611c39565b6000838152600760205260408120546006805493945090928490811061174257611742611cd2565b90600052602060002001549050806006838154811061176357611763611cd2565b600091825260208083209091019290925582815260079091526040808220849055858252812055600680548061179b5761179b611cbc565b6001900381819060005260206000200160009055905550505050565b60006117c283610773565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b80356001600160a01b038116811461181257600080fd5b919050565b60006020828403121561182957600080fd5b611832826117fb565b9392505050565b6000806040838503121561184c57600080fd5b611855836117fb565b9150611863602084016117fb565b90509250929050565b60008060006060848603121561188157600080fd5b61188a846117fb565b9250611898602085016117fb565b9150604084013590509250925092565b600080600080608085870312156118be57600080fd5b6118c7856117fb565b93506118d5602086016117fb565b925060408501359150606085013567ffffffffffffffff808211156118f957600080fd5b818701915087601f83011261190d57600080fd5b81358181111561191f5761191f611ce8565b604051601f8201601f19908116603f0116810190838211818310171561194757611947611ce8565b816040528281528a602084870101111561196057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561199757600080fd5b6119a0836117fb565b9150602083013580151581146119b557600080fd5b809150509250929050565b600080604083850312156119d357600080fd5b6119dc836117fb565b946020939093013593505050565b6000602082840312156119fc57600080fd5b813561183281611cfe565b600060208284031215611a1957600080fd5b815161183281611cfe565b600060208284031215611a3657600080fd5b5035919050565b60008151808452611a55816020860160208601611c50565b601f01601f19169290920160200192915050565b8c81528b60208201528a60408201528960608201528860808201528760a082015268ffffffffffffffffff60b81b871660c082015263ffffffff60e01b861660c982015260008551611ac28160cd850160208a01611c50565b6001600160b01b0319861660cd918401918201526001600160c01b0319851660d7820152611b0560df8201856fffffffffffffffffffffffffffffffff19169052565b60ef019e9d5050505050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b4d90830184611a3d565b9695505050505050565b6020815260006118326020830184611a3d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c2057611c20611c90565b500190565b600082611c3457611c34611ca6565b500490565b600082821015611c4b57611c4b611c90565b500390565b60005b83811015611c6b578181015183820152602001611c53565b838111156109395750506000910152565b600082611c8b57611c8b611ca6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461066657600080fdfe6c6247787063484e6c49474e34505349794e54416949474e35505349794e54416949484a34505349784f54556949484a35505349784d6a55694943795a574e3049486739496a45314e534967655430694e545569494864705a48526f505349784f5441694947686c6157646f644430694d7a6b774969795a574e3049486739496a45784e534967655430694d5445314969423361575230614430694d6a63774969426f5a576c6e61485139496a49334d434967494377623278355a3239754948427661573530637a30694d5441774c44457a4e5341794e5441734e444177494451774d4377784d7a556949436c6247787063484e6c49474e34505349794e54416949474e35505349794e54416949484a34505349784d6a556949484a35505349784f5455694943795a574e3049486739496a553149694235505349784e545569494864705a48526f5053497a4f5441694947686c6157646f644430694d546b7749696a61584a6a6247556759336739496a49314d43496759336b39496a49314d434967636a30694d545931496977623278355a3239754948427661573530637a30694e4441774c444d324e5341794e5441734d544177494445774d43777a4e6a55694943a264697066735822122061b9d471f592f8bb02740cb708580c8ca5097ef90310c6ad4919ddc497c11a7364736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80634f6ccce7116100ad578063a22cb46511610071578063a22cb46514610273578063b88d4fde14610286578063c87b56dd14610299578063e9350248146102ac578063e985e9c5146102cc57600080fd5b80634f6ccce71461021f5780636352211e1461023257806370a082311461024557806395d89b4114610258578063a0712d681461026057600080fd5b806323b872dd116100f457806323b872dd146101c05780632f745c59146101d357806340c10f19146101e657806342842e0e146101f957806342966c681461020c57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046119ea565b6102df565b60405190151581526020015b60405180910390f35b6101616102f0565b6040516101509190611b57565b61018161017c366004611a24565b61033e565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046119c0565b6103d8565b005b6006545b604051908152602001610150565b6101ac6101ce36600461186c565b6104ee565b6101b26101e13660046119c0565b61051f565b6101ac6101f43660046119c0565b6105b5565b6101ac61020736600461186c565b6105c3565b6101ac61021a366004611a24565b6105de565b6101b261022d366004611a24565b610669565b610181610240366004611a24565b6106fc565b6101b2610253366004611817565b610773565b6101616107fa565b6101ac61026e366004611a24565b610838565b6101ac610281366004611984565b610842565b6101ac6102943660046118a8565b610907565b6101616102a7366004611a24565b61093f565b6101b26102ba366004611a24565b60009081526008602052604090205490565b6101446102da366004611839565b610db8565b60006102ea82610de6565b92915050565b6040516001600160c01b03197f64697363726565740000000000000000000000000000000000000000000000001660208201526060906028015b604051602081830303815290604052905090565b6000818152602081905260408120546001600160a01b03166103bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006103e3826106fc565b9050806001600160a01b0316836001600160a01b031614156104515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103b3565b336001600160a01b038216148061046d575061046d8133610db8565b6104df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103b3565b6104e98383610e0b565b505050565b6104f83382610e79565b6105145760405162461bcd60e51b81526004016103b390611bbc565b6104e9838383610f50565b600061052a83610773565b821061058c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103b3565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b6105bf82826110ff565b5050565b6104e983838360405180602001604052806000815250610907565b60008181526008602052604090205443111561065d576105fe3382610e79565b61065d5760405162461bcd60e51b815260206004820152602a60248201527f64697363726565743a2063616c6c6572206973206e6f74206f776e6572206e6f6044820152691c88185c1c1c9bdd995960b21b60648201526084016103b3565b61066681611141565b50565b600061067460065490565b82106106d75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016103b3565b600682815481106106ea576106ea611cd2565b90600052602060002001549050919050565b6000818152602081905260408120546001600160a01b0316806102ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103b3565b60006001600160a01b0382166107de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103b3565b506001600160a01b031660009081526001602052604090205490565b6040516001600160c01b03197f444953435245455400000000000000000000000000000000000000000000000016602082015260609060280161032a565b61066633826110ff565b6001600160a01b03821633141561089b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103b3565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109113383610e79565b61092d5760405162461bcd60e51b81526004016103b390611bbc565b610939848484846111ea565b50505050565b606061024082106109a55760405162461bcd60e51b815260206004820152602a60248201527f64697363726565743a2055524920717565727920666f72206f75742d6f662d7260448201526930b733b2903a37b5b2b760b11b60648201526084016103b3565b604080516101208082018352684d774d4441774d444160b81b8252684d324f575a6d4d7a6360b81b6020830152684e6d5a6a4d334e6a6b60b81b82840152684d7a4e7a59355a6d5960b81b6060830152684e6d5a6d5a6d4f544160b81b6080830152684d354d475a6d5a6d5960b81b60a0830152684e6d5a6a6b775a6d5960b81b60c0830152684e6d5a6d5a6d5a6d5960b81b60e0830152684d344d4467774f444160b81b6101008084019190915283516101608101909452603b90840181815292936000939092839290611d509084013981526020016040518060600160405280603b8152602001611e3c603b913981526020016040518060600160405280603f8152602001611d8b603f913981526020016040518060600160405280602b8152602001611e77602b913981526020016040518060600160405280603b8152602001611e01603b913981526020016040518060600160405280603b8152602001611d15603b91398152602001604051806060016040528060378152602001611dca603791398152602001604051806060016040528060378152602001611ea26037913990526040805161012081018252674e6a6c6d5a6a4d3360c01b8152675a6d597a4e7a593560c01b6020820152674d7a63324f575a6d60c01b91810191909152675a6d5a6d5a6a6b7760c01b6060820152674f54426d5a6d5a6d60c01b6080820152675a6d59354d475a6d60c01b60a0820152675a6d5a6d5a6d5a6d60c01b60c0820152674f4441344d44677760c01b60e0820152674d4441774d44417760c01b61010082015290915060006008610c01604888611c7c565b610c0b9190611c25565b90506000610c1a604888611c25565b905060006009610c2b60088a611c25565b610c3660088b611c7c565b610c409190611c0d565b610c4a9190611c7c565b90507f646174613a696d6167652f7376672b786d6c3b6261736536342c5044393462577f7767646d567963326c76626a30694d5334774969426c626d4e765a476c755a7a7f3069565652474c546769507a343863335a6e49485a705a58644362336739496a7f41674d4341314d4441674e5441774969423462577875637a30696148523063447f6f764c336433647935334d793576636d63764d6a41774d43397a646d636949487f4e306557786c50534a6959574e725a334a766457356b4c574e76624739794f698b8960098110610d2457610d24611cd2565b6020020151630d2a0d4f60e31b8c8a60088110610d4357610d43611cd2565b6020020151692136b0abbc39a829a4b560b11b8d8b60098110610d6857610d68611cd2565b60200201516f49694176506a777663335a6e50673d3d60801b604051602001610d9c9c9b9a99989796959493929190611a69565b6040516020818303038152906040529650505050505050919050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b14806102ea57506102ea8261121d565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e40826106fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152602081905260408120546001600160a01b0316610ef25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103b3565b6000610efd836106fc565b9050806001600160a01b0316846001600160a01b03161480610f385750836001600160a01b0316610f2d8461033e565b6001600160a01b0316145b80610f485750610f488185610db8565b949350505050565b826001600160a01b0316610f63826106fc565b6001600160a01b031614610fcb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103b3565b6001600160a01b03821661102d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103b3565b61103883838361126d565b611043600082610e0b565b6001600160a01b0383166000908152600160208190526040822080549192909161106e908490611c39565b90915550506001600160a01b0382166000908152600160208190526040822080549192909161109e908490611c0d565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611109828261135b565b61112560008383604051806020016040528060008152506114ab565b6105bf5760405162461bcd60e51b81526004016103b390611b6a565b600061114c826106fc565b905061115a8160008461126d565b611165600083610e0b565b6001600160a01b03811660009081526001602081905260408220805491929091611190908490611c39565b909155505060008281526020819052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6111f5848484610f50565b611201848484846114ab565b6109395760405162461bcd60e51b81526004016103b390611b6a565b60006001600160e01b031982166380ac58cd60e01b148061124e57506001600160e01b03198216635b5e139f60e01b145b806102ea57506301ffc9a760e01b6001600160e01b03198316146102ea565b6112788383836115b3565b6001600160a01b03831661132b573260009081526009602052604090205443116113185760405162461bcd60e51b8152602060048201526044602482018190527f64697363726565743a2063616e6e6f74206d696e74206d756c7469706c652074908201527f6f6b656e732070657220626c6f636b2066726f6d20612073696e676c65206f7260648201526334b3b4b760e11b608482015260a4016103b3565b3260009081526009602052604090204390555b6001600160a01b038216156104e9576113474362400000611c0d565b600082815260086020526040902055505050565b6001600160a01b0382166113b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103b3565b6000818152602081905260409020546001600160a01b0316156114165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103b3565b6114226000838361126d565b6001600160a01b0382166000908152600160208190526040822080549192909161144d908490611c0d565b909155505060008181526020819052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000833b80156115a757604051630a85bd0160e11b81526001600160a01b0386169063150b7a02906114e79033908a9089908990600401611b1a565b602060405180830381600087803b15801561150157600080fd5b505af1925050508015611531575060408051601f3d908101601f1916820190925261152e91810190611a07565b60015b61158b573d80801561155f576040519150601f19603f3d011682016040523d82523d6000602084013e611564565b606091505b5080516115835760405162461bcd60e51b81526004016103b390611b6a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149150610f489050565b50600195945050505050565b6001600160a01b03831661160e5761160981600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b611631565b816001600160a01b0316836001600160a01b03161461163157611631838261166b565b6001600160a01b038216611648576104e981611708565b826001600160a01b0316826001600160a01b0316146104e9576104e982826117b7565b6000600161167884610773565b6116829190611c39565b6000838152600560205260409020549091508082146116d5576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b60065460009061171a90600190611c39565b6000838152600760205260408120546006805493945090928490811061174257611742611cd2565b90600052602060002001549050806006838154811061176357611763611cd2565b600091825260208083209091019290925582815260079091526040808220849055858252812055600680548061179b5761179b611cbc565b6001900381819060005260206000200160009055905550505050565b60006117c283610773565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b80356001600160a01b038116811461181257600080fd5b919050565b60006020828403121561182957600080fd5b611832826117fb565b9392505050565b6000806040838503121561184c57600080fd5b611855836117fb565b9150611863602084016117fb565b90509250929050565b60008060006060848603121561188157600080fd5b61188a846117fb565b9250611898602085016117fb565b9150604084013590509250925092565b600080600080608085870312156118be57600080fd5b6118c7856117fb565b93506118d5602086016117fb565b925060408501359150606085013567ffffffffffffffff808211156118f957600080fd5b818701915087601f83011261190d57600080fd5b81358181111561191f5761191f611ce8565b604051601f8201601f19908116603f0116810190838211818310171561194757611947611ce8565b816040528281528a602084870101111561196057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561199757600080fd5b6119a0836117fb565b9150602083013580151581146119b557600080fd5b809150509250929050565b600080604083850312156119d357600080fd5b6119dc836117fb565b946020939093013593505050565b6000602082840312156119fc57600080fd5b813561183281611cfe565b600060208284031215611a1957600080fd5b815161183281611cfe565b600060208284031215611a3657600080fd5b5035919050565b60008151808452611a55816020860160208601611c50565b601f01601f19169290920160200192915050565b8c81528b60208201528a60408201528960608201528860808201528760a082015268ffffffffffffffffff60b81b871660c082015263ffffffff60e01b861660c982015260008551611ac28160cd850160208a01611c50565b6001600160b01b0319861660cd918401918201526001600160c01b0319851660d7820152611b0560df8201856fffffffffffffffffffffffffffffffff19169052565b60ef019e9d5050505050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b4d90830184611a3d565b9695505050505050565b6020815260006118326020830184611a3d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c2057611c20611c90565b500190565b600082611c3457611c34611ca6565b500490565b600082821015611c4b57611c4b611c90565b500390565b60005b83811015611c6b578181015183820152602001611c53565b838111156109395750506000910152565b600082611c8b57611c8b611ca6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461066657600080fdfe6c6247787063484e6c49474e34505349794e54416949474e35505349794e54416949484a34505349784f54556949484a35505349784d6a55694943795a574e3049486739496a45314e534967655430694e545569494864705a48526f505349784f5441694947686c6157646f644430694d7a6b774969795a574e3049486739496a45784e534967655430694d5445314969423361575230614430694d6a63774969426f5a576c6e61485139496a49334d434967494377623278355a3239754948427661573530637a30694d5441774c44457a4e5341794e5441734e444177494451774d4377784d7a556949436c6247787063484e6c49474e34505349794e54416949474e35505349794e54416949484a34505349784d6a556949484a35505349784f5455694943795a574e3049486739496a553149694235505349784e545569494864705a48526f5053497a4f5441694947686c6157646f644430694d546b7749696a61584a6a6247556759336739496a49314d43496759336b39496a49314d434967636a30694d545931496977623278355a3239754948427661573530637a30694e4441774c444d324e5341794e5441734d544177494445774d43777a4e6a55694943a264697066735822122061b9d471f592f8bb02740cb708580c8ca5097ef90310c6ad4919ddc497c11a7364736f6c63430008070033

Deployed Bytecode Sourcemap

28593:5851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34270:171;;;;;;:::i;:::-;;:::i;:::-;;;6078:14:1;;6071:22;6053:41;;6041:2;6026:18;34270:171:0;;;;;;;;11255:128;;;:::i;:::-;;;;;;;:::i;12293:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5376:32:1;;;5358:51;;5346:2;5331:18;12293:221:0;5212:203:1;11818:409:0;;;;;;:::i;:::-;;:::i;:::-;;23036:113;23124:10;:17;23036:113;;;13797:25:1;;;13785:2;13770:18;23036:113:0;13651:177:1;13179:339:0;;;;;;:::i;:::-;;:::i;22702:258::-;;;;;;:::i;:::-;;:::i;31261:102::-;;;;;;:::i;:::-;;:::i;13589:187::-;;;;;;:::i;:::-;;:::i;31547:396::-;;;;;;:::i;:::-;;:::i;23226:235::-;;;;;;:::i;:::-;;:::i;10949:239::-;;;;;;:::i;:::-;;:::i;10679:208::-;;;;;;:::i;:::-;;:::i;11452:132::-;;;:::i;31058:98::-;;;;;;:::i;:::-;;:::i;12586:291::-;;;;;;:::i;:::-;;:::i;13847:326::-;;;;;;:::i;:::-;;:::i;32317:1861::-;;;;;;:::i;:::-;;:::i;32071:144::-;;;;;;:::i;:::-;32150:7;32177:30;;;:21;:30;;;;;;;32071:144;12948:164;;;;;;:::i;:::-;;:::i;34270:171::-;34373:4;34397:36;34421:11;34397:23;:36::i;:::-;34390:43;34270:171;-1:-1:-1;;34270:171:0:o;11255:128::-;11351:23;;-1:-1:-1;;;;;;11368:5:0;5132:41:1;11351:23:0;;;5120:54:1;11311:13:0;;5190:11:1;;11351:23:0;;;;;;;;;;;;;11337:38;;11255:128;:::o;12293:221::-;12369:7;15772:16;;;;;;;;;;;-1:-1:-1;;;;;15772:16:0;12389:73;;;;-1:-1:-1;;;12389:73:0;;11797:2:1;12389:73:0;;;11779:21:1;11836:2;11816:18;;;11809:30;11875:34;11855:18;;;11848:62;-1:-1:-1;;;11926:18:1;;;11919:42;11978:19;;12389:73:0;;;;;;;;;-1:-1:-1;12482:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12482:24:0;;12293:221::o;11818:409::-;11901:13;11917:23;11932:7;11917:14;:23::i;:::-;11901:39;;11965:5;-1:-1:-1;;;;;11959:11:0;:2;-1:-1:-1;;;;;11959:11:0;;;11951:57;;;;-1:-1:-1;;;11951:57:0;;12620:2:1;11951:57:0;;;12602:21:1;12659:2;12639:18;;;12632:30;12698:34;12678:18;;;12671:62;-1:-1:-1;;;12749:18:1;;;12742:31;12790:19;;11951:57:0;12418:397:1;11951:57:0;12043:10;-1:-1:-1;;;;;12043:19:0;;;;:58;;;12066:35;12083:5;12090:10;12066:16;:35::i;:::-;12021:164;;;;-1:-1:-1;;;12021:164:0;;9779:2:1;12021:164:0;;;9761:21:1;9818:2;9798:18;;;9791:30;9857:34;9837:18;;;9830:62;9928:26;9908:18;;;9901:54;9972:19;;12021:164:0;9577:420:1;12021:164:0;12198:21;12207:2;12211:7;12198:8;:21::i;:::-;11890:337;11818:409;;:::o;13179:339::-;13376:39;13395:10;13407:7;13376:18;:39::i;:::-;13368:101;;;;-1:-1:-1;;;13368:101:0;;;;;;;:::i;:::-;13482:28;13492:4;13498:2;13502:7;13482:9;:28::i;22702:258::-;22801:7;22837:23;22854:5;22837:16;:23::i;:::-;22829:5;:31;22821:87;;;;-1:-1:-1;;;22821:87:0;;6531:2:1;22821:87:0;;;6513:21:1;6570:2;6550:18;;;6543:30;6609:34;6589:18;;;6582:62;-1:-1:-1;;;6660:18:1;;;6653:41;6711:19;;22821:87:0;6329:407:1;22821:87:0;-1:-1:-1;;;;;;22926:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;22702:258::o;31261:102::-;31333:22;31343:2;31347:7;31333:9;:22::i;:::-;31261:102;;:::o;13589:187::-;13729:39;13746:4;13752:2;13756:7;13729:39;;;;;;;;;;;;:16;:39::i;31547:396::-;31692:30;;;;:21;:30;;;;;;31725:12;-1:-1:-1;31688:221:0;;;31780:39;31799:10;31811:7;31780:18;:39::i;:::-;31754:143;;;;-1:-1:-1;;;31754:143:0;;9368:2:1;31754:143:0;;;9350:21:1;9407:2;9387:18;;;9380:30;9446:34;9426:18;;;9419:62;-1:-1:-1;;;9497:18:1;;;9490:40;9547:19;;31754:143:0;9166:406:1;31754:143:0;31921:14;31927:7;31921:5;:14::i;:::-;31547:396;:::o;23226:235::-;23303:7;23339:30;23124:10;:17;;23036:113;23339:30;23331:5;:38;23323:95;;;;-1:-1:-1;;;23323:95:0;;13440:2:1;23323:95:0;;;13422:21:1;13479:2;13459:18;;;13452:30;13518:34;13498:18;;;13491:62;-1:-1:-1;;;13569:18:1;;;13562:42;13621:19;;23323:95:0;13238:408:1;23323:95:0;23436:10;23447:5;23436:17;;;;;;;;:::i;:::-;;;;;;;;;23429:24;;23226:235;;;:::o;10949:239::-;11021:7;11057:16;;;;;;;;;;;-1:-1:-1;;;;;11057:16:0;11092:19;11084:73;;;;-1:-1:-1;;;11084:73:0;;11026:2:1;11084:73:0;;;11008:21:1;11065:2;11045:18;;;11038:30;11104:34;11084:18;;;11077:62;-1:-1:-1;;;11155:18:1;;;11148:39;11204:19;;11084:73:0;10824:405:1;10679:208:0;10751:7;-1:-1:-1;;;;;10779:19:0;;10771:74;;;;-1:-1:-1;;;10771:74:0;;10615:2:1;10771:74:0;;;10597:21:1;10654:2;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;-1:-1:-1;;;10744:18:1;;;10737:40;10794:19;;10771:74:0;10413:406:1;10771:74:0;-1:-1:-1;;;;;;10863:16:0;;;;;:9;:16;;;;;;;10679:208::o;11452:132::-;11550:25;;-1:-1:-1;;;;;;11567:7:0;5132:41:1;11550:25:0;;;5120:54:1;11510:13:0;;5190:11:1;;11550:25:0;4993:214:1;31058:98:0;31118:30;31128:10;31140:7;31118:9;:30::i;12586:291::-;-1:-1:-1;;;;;12691:22:0;;12703:10;12691:22;;12683:60;;;;-1:-1:-1;;;12683:60:0;;8601:2:1;12683:60:0;;;8583:21:1;8640:2;8620:18;;;8613:30;8679:27;8659:18;;;8652:55;8724:18;;12683:60:0;8399:349:1;12683:60:0;12775:10;12756:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;12756:40:0;;;;;;;;;;;;:51;;-1:-1:-1;;12756:51:0;;;;;;;;;;12823:46;;6053:41:1;;;12756:40:0;;12775:10;12823:46;;6026:18:1;12823:46:0;;;;;;;12586:291;;:::o;13847:326::-;14022:39;14041:10;14053:7;14022:18;:39::i;:::-;14014:101;;;;-1:-1:-1;;;14014:101:0;;;;;;;:::i;:::-;14126:39;14140:4;14146:2;14150:7;14159:5;14126:13;:39::i;:::-;13847:326;;;;:::o;32317:1861::-;32392:13;32436:5;32426:7;:15;32418:70;;;;-1:-1:-1;;;32418:70:0;;10204:2:1;32418:70:0;;;10186:21:1;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:40;10383:19;;32418:70:0;10002:406:1;32418:70:0;32570:248;;;;;;;;;-1:-1:-1;;;32570:248:0;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;-1:-1:-1;;;32570:248:0;;;;;;;;32898:597;;;;;;;;;;;;;;;32570:248;;:19;;32898:597;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33574:239;;;;;;;;-1:-1:-1;;;33574:239:0;;-1:-1:-1;;;33574:239:0;;;;-1:-1:-1;;;33574:239:0;;;;;;;-1:-1:-1;;;33574:239:0;;;;-1:-1:-1;;;33574:239:0;;;;-1:-1:-1;;;33574:239:0;;;;-1:-1:-1;;;33574:239:0;;;;-1:-1:-1;;;33574:239:0;;;;-1:-1:-1;;;33574:239:0;;;;32898:597;;-1:-1:-1;33574:19:0;33936:1;33920:12;33930:2;33920:7;:12;:::i;:::-;33919:18;;;;:::i;:::-;33905:32;-1:-1:-1;33945:11:0;33959:12;33969:2;33959:7;:12;:::i;:::-;33945:26;-1:-1:-1;33979:11:0;34025:1;34009:11;34019:1;34009:7;:11;:::i;:::-;33994;34004:1;33994:7;:11;:::i;:::-;:27;;;;:::i;:::-;33993:33;;;;:::i;:::-;33979:47;;34091:2;34095;34099;34103;34107;34111;34115;34118:3;34115:7;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;34128:2:0;34131:3;34128:7;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;34141:2:0;34144:3;34141:7;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;34059:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34034:136;;;;;;;;32317:1861;;;:::o;12948:164::-;-1:-1:-1;;;;;13069:25:0;;;13045:4;13069:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12948:164::o;22394:224::-;22496:4;-1:-1:-1;;;;;;22520:50:0;;-1:-1:-1;;;22520:50:0;;:90;;;22574:36;22598:11;22574:23;:36::i;19271:174::-;19346:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;19346:29:0;-1:-1:-1;;;;;19346:29:0;;;;;;;;:24;;19400:23;19346:24;19400:14;:23::i;:::-;-1:-1:-1;;;;;19391:46:0;;;;;;;;;;;19271:174;;:::o;15977:348::-;16070:4;15772:16;;;;;;;;;;;-1:-1:-1;;;;;15772:16:0;16087:73;;;;-1:-1:-1;;;16087:73:0;;8955:2:1;16087:73:0;;;8937:21:1;8994:2;8974:18;;;8967:30;9033:34;9013:18;;;9006:62;-1:-1:-1;;;9084:18:1;;;9077:42;9136:19;;16087:73:0;8753:408:1;16087:73:0;16171:13;16187:23;16202:7;16187:14;:23::i;:::-;16171:39;;16240:5;-1:-1:-1;;;;;16229:16:0;:7;-1:-1:-1;;;;;16229:16:0;;:51;;;;16273:7;-1:-1:-1;;;;;16249:31:0;:20;16261:7;16249:11;:20::i;:::-;-1:-1:-1;;;;;16249:31:0;;16229:51;:87;;;;16284:32;16301:5;16308:7;16284:16;:32::i;:::-;16221:96;15977:348;-1:-1:-1;;;;15977:348:0:o;18575:578::-;18734:4;-1:-1:-1;;;;;18707:31:0;:23;18722:7;18707:14;:23::i;:::-;-1:-1:-1;;;;;18707:31:0;;18699:85;;;;-1:-1:-1;;;18699:85:0;;12210:2:1;18699:85:0;;;12192:21:1;12249:2;12229:18;;;12222:30;12288:34;12268:18;;;12261:62;-1:-1:-1;;;12339:18:1;;;12332:39;12388:19;;18699:85:0;12008:405:1;18699:85:0;-1:-1:-1;;;;;18803:16:0;;18795:65;;;;-1:-1:-1;;;18795:65:0;;8196:2:1;18795:65:0;;;8178:21:1;8235:2;8215:18;;;8208:30;8274:34;8254:18;;;8247:62;-1:-1:-1;;;8325:18:1;;;8318:34;8369:19;;18795:65:0;7994:400:1;18795:65:0;18873:39;18894:4;18900:2;18904:7;18873:20;:39::i;:::-;18977:29;18994:1;18998:7;18977:8;:29::i;:::-;-1:-1:-1;;;;;19019:15:0;;;;;;19038:1;19019:15;;;;;;;:20;;19038:1;;19019:15;;:20;;19038:1;;19019:20;:::i;:::-;;;;-1:-1:-1;;;;;;;19050:13:0;;;;;;19067:1;19050:13;;;;;;;:18;;19067:1;;19050:13;;:18;;19067:1;;19050:18;:::i;:::-;;;;-1:-1:-1;;19079:7:0;:16;;;;;;;;;;;:21;;-1:-1:-1;;;;;;19079:21:0;-1:-1:-1;;;;;19079:21:0;;;;;;;;;19118:27;;19079:16;;19118:27;;;;;;;18575:578;;;:::o;16667:264::-;16743:18;16749:2;16753:7;16743:5;:18::i;:::-;16794:51;16825:1;16829:2;16833:7;16794:51;;;;;;;;;;;;:22;:51::i;:::-;16772:151;;;;-1:-1:-1;;;16772:151:0;;;;;;;:::i;17878:360::-;17938:13;17954:23;17969:7;17954:14;:23::i;:::-;17938:39;;17990:48;18011:5;18026:1;18030:7;17990:20;:48::i;:::-;18079:29;18096:1;18100:7;18079:8;:29::i;:::-;-1:-1:-1;;;;;18121:16:0;;;;;;18141:1;18121:16;;;;;;;:21;;18141:1;;18121:16;;:21;;18141:1;;18121:21;:::i;:::-;;;;-1:-1:-1;;18160:7:0;:16;;;;;;;;;;;18153:23;;-1:-1:-1;;;;;;18153:23:0;;;18194:36;18168:7;;18160;-1:-1:-1;;;;;18194:36:0;;;;;18160:7;;18194:36;17927:311;17878:360;:::o;15055:315::-;15212:28;15222:4;15228:2;15232:7;15212:9;:28::i;:::-;15259:48;15282:4;15288:2;15292:7;15301:5;15259:22;:48::i;:::-;15251:111;;;;-1:-1:-1;;;15251:111:0;;;;;;;:::i;10310:305::-;10412:4;-1:-1:-1;;;;;;10449:40:0;;-1:-1:-1;;;10449:40:0;;:105;;-1:-1:-1;;;;;;;10506:48:0;;-1:-1:-1;;;10506:48:0;10449:105;:158;;;-1:-1:-1;;;;;;;;;;9095:40:0;;;10571:36;8986:157;30174:789;30336:45;30363:4;30369:2;30373:7;30336:26;:45::i;:::-;-1:-1:-1;;;;;30481:18:0;;30477:282;;30574:9;30557:27;;;;:16;:27;;;;;;30542:12;:42;30516:172;;;;-1:-1:-1;;;30516:172:0;;7719:2:1;30516:172:0;;;7701:21:1;7758:2;7738:18;;;7731:30;;;7797:34;7777:18;;;7770:62;7868:34;7848:18;;;7841:62;-1:-1:-1;;;7919:19:1;;;7912:35;7964:19;;30516:172:0;7517:472:1;30516:172:0;30722:9;30705:27;;;;:16;:27;;;;;30735:12;30705:42;;30477:282;-1:-1:-1;;;;;30855:16:0;;;30851:105;;30921:23;:12;30936:8;30921:23;:::i;:::-;30888:30;;;;:21;:30;;;;;:56;30174:789;;;:::o;17267:382::-;-1:-1:-1;;;;;17347:16:0;;17339:61;;;;-1:-1:-1;;;17339:61:0;;11436:2:1;17339:61:0;;;11418:21:1;;;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;11566:18;;17339:61:0;11234:356:1;17339:61:0;15748:4;15772:16;;;;;;;;;;;-1:-1:-1;;;;;15772:16:0;:30;17411:58;;;;-1:-1:-1;;;17411:58:0;;7362:2:1;17411:58:0;;;7344:21:1;7401:2;7381:18;;;7374:30;7440;7420:18;;;7413:58;7488:18;;17411:58:0;7160:352:1;17411:58:0;17482:45;17511:1;17515:2;17519:7;17482:20;:45::i;:::-;-1:-1:-1;;;;;17540:13:0;;;;;;17557:1;17540:13;;;;;;;:18;;17557:1;;17540:13;;:18;;17557:1;;17540:18;:::i;:::-;;;;-1:-1:-1;;17569:7:0;:16;;;;;;;;;;;:21;;-1:-1:-1;;;;;;17569:21:0;-1:-1:-1;;;;;17569:21:0;;;;;;;;17608:33;;17569:16;;:7;17608:33;;17569:7;;17608:33;17267:382;;:::o;20010:863::-;20165:4;20224:15;;20255:8;;20251:615;;20284:70;;-1:-1:-1;;;20284:70:0;;-1:-1:-1;;;;;20284:36:0;;;;;:70;;20321:10;;20333:4;;20339:7;;20348:5;;20284:70;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20284:70:0;;;;;;;;-1:-1:-1;;20284:70:0;;;;;;;;;;;;:::i;:::-;;;20280:531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20528:13:0;;20524:272;;20571:60;;-1:-1:-1;;;20571:60:0;;;;;;;:::i;20524:272::-;20746:6;20740:13;20731:6;20727:2;20723:15;20716:38;20280:531;-1:-1:-1;;;;;;20405:55:0;-1:-1:-1;;;20405:55:0;;-1:-1:-1;20398:62:0;;-1:-1:-1;20398:62:0;20251:615;-1:-1:-1;20850:4:0;;20010:863;-1:-1:-1;;;;;20010:863:0:o;24074:589::-;-1:-1:-1;;;;;24280:18:0;;24276:187;;24315:40;24347:7;25490:10;:17;;25463:24;;;;:15;:24;;;;;:44;;;25518:24;;;;;;;;;;;;25386:164;24315:40;24276:187;;;24385:2;-1:-1:-1;;;;;24377:10:0;:4;-1:-1:-1;;;;;24377:10:0;;24373:90;;24404:47;24437:4;24443:7;24404:32;:47::i;:::-;-1:-1:-1;;;;;24477:16:0;;24473:183;;24510:45;24547:7;24510:36;:45::i;24473:183::-;24583:4;-1:-1:-1;;;;;24577:10:0;:2;-1:-1:-1;;;;;24577:10:0;;24573:83;;24604:40;24632:2;24636:7;24604:27;:40::i;26177:988::-;26443:22;26493:1;26468:22;26485:4;26468:16;:22::i;:::-;:26;;;;:::i;:::-;26505:18;26526:26;;;:17;:26;;;;;;26443:51;;-1:-1:-1;26659:28:0;;;26655:328;;-1:-1:-1;;;;;26726:18:0;;26704:19;26726:18;;;:12;:18;;;;;;;;:34;;;;;;;;;26777:30;;;;;;:44;;;26894:30;;:17;:30;;;;;:43;;;26655:328;-1:-1:-1;27079:26:0;;;;:17;:26;;;;;;;;27072:33;;;-1:-1:-1;;;;;27123:18:0;;;;;:12;:18;;;;;:34;;;;;;;27116:41;26177:988::o;27460:1079::-;27738:10;:17;27713:22;;27738:21;;27758:1;;27738:21;:::i;:::-;27770:18;27791:24;;;:15;:24;;;;;;28164:10;:26;;27713:46;;-1:-1:-1;27791:24:0;;27713:46;;28164:26;;;;;;:::i;:::-;;;;;;;;;28142:48;;28228:11;28203:10;28214;28203:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;28308:28;;;:15;:28;;;;;;;:41;;;28480:24;;;;;28473:31;28515:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27531:1008;;;27460:1079;:::o;24964:221::-;25049:14;25066:20;25083:2;25066:16;:20::i;:::-;-1:-1:-1;;;;;25097:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;25142:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;24964:221:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3553:257::-;3594:3;3632:5;3626:12;3659:6;3654:3;3647:19;3675:63;3731:6;3724:4;3719:3;3715:14;3708:4;3701:5;3697:16;3675:63;:::i;:::-;3792:2;3771:15;-1:-1:-1;;3767:29:1;3758:39;;;;3799:4;3754:50;;3553:257;-1:-1:-1;;3553:257:1:o;3815:1173::-;4280:6;4275:3;4268:19;4317:6;4312:2;4307:3;4303:12;4296:28;4354:6;4349:2;4344:3;4340:12;4333:28;4391:6;4386:2;4381:3;4377:12;4370:28;4429:6;4423:3;4418;4414:13;4407:29;4467:6;4461:3;4456;4452:13;4445:29;4526:20;4521:3;4517:30;4509:6;4505:43;4499:3;4494;4490:13;4483:66;4601:10;4596:3;4592:20;4584:6;4580:33;4574:3;4569;4565:13;4558:56;4250:3;4643:6;4637:13;4659:61;4713:6;4707:3;4702;4698:13;4693:2;4685:6;4681:15;4659:61;:::i;:::-;-1:-1:-1;;;;;;4785:45:1;;4779:3;4739:16;;;4771:12;;;4764:67;-1:-1:-1;;;;;;4861:42:1;;4855:3;4847:12;;4840:64;4913:41;4949:3;4941:12;;4932:7;-1:-1:-1;;3490:51:1;3478:64;;3424:124;4913:41;4978:3;4970:12;;3815:1173;-1:-1:-1;;;;;;;;;;;;;;3815:1173:1:o;5420:488::-;-1:-1:-1;;;;;5689:15:1;;;5671:34;;5741:15;;5736:2;5721:18;;5714:43;5788:2;5773:18;;5766:34;;;5836:3;5831:2;5816:18;;5809:31;;;5614:4;;5857:45;;5882:19;;5874:6;5857:45;:::i;:::-;5849:53;5420:488;-1:-1:-1;;;;;;5420:488:1:o;6105:219::-;6254:2;6243:9;6236:21;6217:4;6274:44;6314:2;6303:9;6299:18;6291:6;6274:44;:::i;6741:414::-;6943:2;6925:21;;;6982:2;6962:18;;;6955:30;7021:34;7016:2;7001:18;;6994:62;-1:-1:-1;;;7087:2:1;7072:18;;7065:48;7145:3;7130:19;;6741:414::o;12820:413::-;13022:2;13004:21;;;13061:2;13041:18;;;13034:30;13100:34;13095:2;13080:18;;13073:62;-1:-1:-1;;;13166:2:1;13151:18;;13144:47;13223:3;13208:19;;12820:413::o;13833:128::-;13873:3;13904:1;13900:6;13897:1;13894:13;13891:39;;;13910:18;;:::i;:::-;-1:-1:-1;13946:9:1;;13833:128::o;13966:120::-;14006:1;14032;14022:35;;14037:18;;:::i;:::-;-1:-1:-1;14071:9:1;;13966:120::o;14091:125::-;14131:4;14159:1;14156;14153:8;14150:34;;;14164:18;;:::i;:::-;-1:-1:-1;14201:9:1;;14091:125::o;14221:258::-;14293:1;14303:113;14317:6;14314:1;14311:13;14303:113;;;14393:11;;;14387:18;14374:11;;;14367:39;14339:2;14332:10;14303:113;;;14434:6;14431:1;14428:13;14425:48;;;-1:-1:-1;;14469:1:1;14451:16;;14444:27;14221:258::o;14484:112::-;14516:1;14542;14532:35;;14547:18;;:::i;:::-;-1:-1:-1;14581:9:1;;14484:112::o;14601:127::-;14662:10;14657:3;14653:20;14650:1;14643:31;14693:4;14690:1;14683:15;14717:4;14714:1;14707:15;14733:127;14794:10;14789:3;14785:20;14782:1;14775:31;14825:4;14822:1;14815:15;14849:4;14846:1;14839:15;14865:127;14926:10;14921:3;14917:20;14914:1;14907:31;14957:4;14954:1;14947:15;14981:4;14978:1;14971:15;14997:127;15058:10;15053:3;15049:20;15046:1;15039:31;15089:4;15086:1;15079:15;15113:4;15110:1;15103:15;15129:127;15190:10;15185:3;15181:20;15178:1;15171:31;15221:4;15218:1;15211:15;15245:4;15242:1;15235:15;15261:131;-1:-1:-1;;;;;;15335:32:1;;15325:43;;15315:71;;15382:1;15379;15372:12

Swarm Source

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