ETH Price: $2,452.69 (-5.72%)

Token

H:art (HART)
 

Overview

Max Total Supply

6,969 HART

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HART
0x0035fc5208ef989c28d47e552e92b0c507d2b318
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:
HArt

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-13
*/

// SPDX-License-Identifier: MIT

// File: @divergencetech/ethier/contracts/thirdparty/opensea/ProxyRegistry.sol


// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

/// @notice A minimal interface describing OpenSea's Wyvern proxy registry.
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
@dev This pattern of using an empty contract is cargo-culted directly from
OpenSea's example code. TODO: it's likely that the above mapping can be changed
to address => address without affecting anything, but further investigation is
needed (i.e. is there a subtle reason that OpenSea released it like this?).
 */
contract OwnableDelegateProxy {

}

// File: @divergencetech/ethier/contracts/thirdparty/opensea/OpenSeaGasFreeListing.sol


// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;

// Inspired by BaseOpenSea by Simon Fremaux (@dievardump) but without the need
// to pass specific addresses depending on deployment network.
// https://gist.github.com/dievardump/483eb43bc6ed30b14f01e01842e3339b/


/// @notice Library to achieve gas-free listings on OpenSea.
library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator)
        internal
        view
        returns (bool)
    {
        address proxy = proxyFor(owner);
        return proxy != address(0) && proxy == operator;
    }

    /**
    @notice Returns the OpenSea proxy address for the owner.
     */
    function proxyFor(address owner) internal view returns (address) {
        address registry;
        uint256 chainId;

        assembly {
            chainId := chainid()
            switch chainId
            // Production networks are placed higher to minimise the number of
            // checks performed and therefore reduce gas. By the same rationale,
            // mainnet comes before Polygon as it's more expensive.
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 137 {
                // polygon
                registry := 0x58807baD0B376efc12F5AD86aAc70E78ed67deaE
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
            case 80001 {
                // mumbai
                registry := 0xff7Ca10aF37178BdD056628eF42fD7F799fAc77c
            }
            case 1337 {
                // The geth SimulatedBackend iff used with the ethier
                // openseatest package. This is mocked as a Wyvern proxy as it's
                // more complex than the 0x ones.
                registry := 0xE1a2bbc877b29ADBC56D2659DBcb0ae14ee62071
            }
        }

        // Unlike Wyvern, the registry itself is the proxy for all owners on 0x
        // chains.
        if (registry == address(0) || chainId == 137 || chainId == 80001) {
            return registry;
        }

        return address(ProxyRegistry(registry).proxies(owner));
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

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

// File: hart.sol


pragma solidity ^0.8.0;




 

/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply is ERC721  {
    using Counters for Counters.Counter;
 

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _totalSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _totalSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function totalSupply() public view  returns (uint256) { //override
        return _totalSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return totalSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
 
}

/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _totalSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _totalSupply, uint256 _startFrom)
        WithLimitedSupply(_totalSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = totalSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

 
contract HArt is RandomlyAssigned, Ownable {
    uint public price = 0.0069 ether;
    string public _BASE_URI_ = "";

    constructor(uint256 amount, uint256 startFrom, string memory baseURI) ERC721("H:art", "HART") RandomlyAssigned(amount, startFrom) {
        _BASE_URI_ = baseURI;
    }

    function mint(address[] calldata recipients, string[] calldata messages) external payable {
        require(block.timestamp >= 1644775740 && block.timestamp <= 1644948540);
        require(recipients.length <= 10, "maximum 10 harts");
        require(availableTokenCount() >= recipients.length);
        require(recipients.length == messages.length);

        uint cost = 0;
        for (uint i = 0; i < messages.length; i++) {
            bytes memory m = bytes(messages[i]);
            if (m.length > 0) {
                require(m.length <= 69, "maximum 69 chars");
                cost += price;
            }
        }

        require(msg.value >= cost, "Insufficient ETH");

        for (uint i = 0; i < recipients.length; i++) {
            _safeMint(recipients[i], nextToken());
        }
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        // Set the base URI.
        _BASE_URI_ = baseURI; 
    }

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

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

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return OpenSeaGasFreeListing.isApprovedForAll(owner, operator) || super.isApprovedForAll(owner, operator); 
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startFrom","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_BASE_URI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"string[]","name":"messages","type":"string[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6618838370f34000600b5560a06040819052600060808190526200002691600c9162000141565b503480156200003457600080fd5b506040516200236f3803806200236f8339810160408190526200005791620001e7565b6040805180820182526005815264120e985c9d60da1b6020808301918252835180850190945260048452631210549560e21b9084015281518693869385939092620000a59160009162000141565b508051620000bb90600190602084019062000141565b50505060075560095550620000d033620000ef565b8051620000e590600c90602084019062000141565b5050505062000327565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f90620002d4565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600080600060608486031215620001fc578283fd5b835160208086015160408701519295509350906001600160401b038082111562000224578384fd5b818701915087601f83011262000238578384fd5b8151818111156200024d576200024d62000311565b604051601f8201601f19908116603f0116810190838211818310171562000278576200027862000311565b816040528281528a8684870101111562000290578687fd5b8693505b82841015620002b3578484018601518185018701529285019262000294565b82841115620002c457868684830101525b8096505050505050509250925092565b600181811c90821680620002e957607f821691505b602082108114156200030b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61203880620003376000396000f3fe60806040526004361061014b5760003560e01c80638da5cb5b116100b6578063c87b56dd1161006f578063c87b56dd14610386578063e086e5ec146103a6578063e14ca353146103bb578063e985e9c5146103d0578063ea372cdf146103f0578063f2fde38b1461040557600080fd5b80638da5cb5b146102e857806395d89b41146103065780639f181b5e1461031b578063a035b1fe14610330578063a22cb46514610346578063b88d4fde1461036657600080fd5b806342842e0e1161010857806342842e0e146102405780634c7bc5cf1461026057806355f804b3146102735780636352211e1461029357806370a08231146102b3578063715018a6146102d357600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610220575b600080fd5b34801561015c57600080fd5b5061017061016b366004611c1b565b610425565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a610477565b60405161017c9190611d8c565b3480156101b357600080fd5b506101c76101c2366004611cdc565b610509565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa366004611b87565b6105a3565b005b34801561020d57600080fd5b506007545b60405190815260200161017c565b34801561022c57600080fd5b506101ff61023b366004611a3d565b6106b9565b34801561024c57600080fd5b506101ff61025b366004611a3d565b6106ea565b6101ff61026e366004611bb2565b610705565b34801561027f57600080fd5b506101ff61028e366004611c6f565b610920565b34801561029f57600080fd5b506101c76102ae366004611cdc565b610956565b3480156102bf57600080fd5b506102126102ce3660046119e9565b6109cd565b3480156102df57600080fd5b506101ff610a54565b3480156102f457600080fd5b50600a546001600160a01b03166101c7565b34801561031257600080fd5b5061019a610a8a565b34801561032757600080fd5b50610212610a99565b34801561033c57600080fd5b50610212600b5481565b34801561035257600080fd5b506101ff610361366004611b56565b610aa9565b34801561037257600080fd5b506101ff610381366004611a7d565b610ab8565b34801561039257600080fd5b5061019a6103a1366004611cdc565b610af0565b3480156103b257600080fd5b506101ff610bcb565b3480156103c757600080fd5b50610212610c31565b3480156103dc57600080fd5b506101706103eb366004611a05565b610c48565b3480156103fc57600080fd5b5061019a610c88565b34801561041157600080fd5b506101ff6104203660046119e9565b610d16565b60006001600160e01b031982166380ac58cd60e01b148061045657506001600160e01b03198216635b5e139f60e01b145b8061047157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461048690611f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546104b290611f2b565b80156104ff5780601f106104d4576101008083540402835291602001916104ff565b820191906000526020600020905b8154815290600101906020018083116104e257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ae82610956565b9050806001600160a01b0316836001600160a01b0316141561061c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161057e565b336001600160a01b038216148061063857506106388133610c48565b6106aa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057e565b6106b48383610dae565b505050565b6106c33382610e1c565b6106df5760405162461bcd60e51b815260040161057e90611e26565b6106b4838383610ef3565b6106b483838360405180602001604052806000815250610ab8565b636209493c421015801561071d575063620bec3c4211155b61072657600080fd5b600a83111561076a5760405162461bcd60e51b815260206004820152601060248201526f6d6178696d756d20313020686172747360801b604482015260640161057e565b82610773610c31565b101561077e57600080fd5b82811461078a57600080fd5b6000805b828110156108725760008484838181106107b857634e487b7160e01b600052603260045260246000fd5b90506020028101906107ca9190611e77565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350509015905061085f5760458151111561084f5760405162461bcd60e51b815260206004820152601060248201526f6d6178696d756d20363920636861727360801b604482015260640161057e565b600b5461085c9084611ebc565b92505b508061086a81611f66565b91505061078e565b50803410156108b65760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b604482015260640161057e565b60005b84811015610918576109068686838181106108e457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108f991906119e9565b61090161108f565b611227565b8061091081611f66565b9150506108b9565b505050505050565b600a546001600160a01b0316331461094a5760405162461bcd60e51b815260040161057e90611df1565b6106b4600c8383611906565b6000818152600260205260408120546001600160a01b0316806104715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161057e565b60006001600160a01b038216610a385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161057e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610a7e5760405162461bcd60e51b815260040161057e90611df1565b610a886000611241565b565b60606001805461048690611f2b565b6000610aa460065490565b905090565b610ab4338383611293565b5050565b610ac23383610e1c565b610ade5760405162461bcd60e51b815260040161057e90611e26565b610aea84848484611362565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161057e565b6000610b79611395565b90506000815111610b995760405180602001604052806000815250610bc4565b80610ba3846113a4565b604051602001610bb4929190611d20565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610bf55760405162461bcd60e51b815260040161057e90611df1565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c2e573d6000803e3d6000fd5b50565b6000610c3b610a99565b600754610aa49190611ee8565b6000610c5483836114be565b80610bc457506001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16610bc4565b600c8054610c9590611f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc190611f2b565b8015610d0e5780601f10610ce357610100808354040283529160200191610d0e565b820191906000526020600020905b815481529060010190602001808311610cf157829003601f168201915b505050505081565b600a546001600160a01b03163314610d405760405162461bcd60e51b815260040161057e90611df1565b6001600160a01b038116610da55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057e565b610c2e81611241565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610de382610956565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057e565b6000610ea083610956565b9050806001600160a01b0316846001600160a01b03161480610edb5750836001600160a01b0316610ed084610509565b6001600160a01b0316145b80610eeb5750610eeb8185610c48565b949350505050565b826001600160a01b0316610f0682610956565b6001600160a01b031614610f6a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161057e565b6001600160a01b038216610fcc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161057e565b610fd7600082610dae565b6001600160a01b0383166000908152600360205260408120805460019290611000908490611ee8565b90915550506001600160a01b038216600090815260036020526040812080546001929061102e908490611ebc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061109a610c31565b116110e75760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604482015260640161057e565b60006110f1610a99565b6007546110fe9190611ee8565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6111659190611f81565b60008181526008602052604081205491925090611183575080611194565b506000818152600860205260409020545b600860006111a3600186611ee8565b815260200190815260200160002054600014156111d9576111c5600184611ee8565b600083815260086020526040902055611209565b600860006111e8600186611ee8565b81526020808201929092526040908101600090812054858252600890935220555b6112116114fd565b5060095461121f9082611ebc565b935050505090565b610ab482826040518060200160405280600081525061151e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112f55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61136d848484610ef3565b61137984848484611551565b610aea5760405162461bcd60e51b815260040161057e90611d9f565b6060600c805461048690611f2b565b6060816113c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113f257806113dc81611f66565b91506113eb9050600a83611ed4565b91506113cc565b60008167ffffffffffffffff81111561141b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611445576020820181803683370190505b5090505b8415610eeb5761145a600183611ee8565b9150611467600a86611f81565b611472906030611ebc565b60f81b81838151811061149557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114b7600a86611ed4565b9450611449565b6000806114ca8461165e565b90506001600160a01b03811615801590610eeb5750826001600160a01b0316816001600160a01b03161491505092915050565b60008061150960065490565b9050611519600680546001019055565b919050565b61152883836117c4565b6115356000848484611551565b6106b45760405162461bcd60e51b815260040161057e90611d9f565b60006001600160a01b0384163b1561165357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611595903390899088908890600401611d4f565b602060405180830381600087803b1580156115af57600080fd5b505af19250505080156115df575060408051601f3d908101601f191682019092526115dc91810190611c37565b60015b611639573d80801561160d576040519150601f19603f3d011682016040523d82523d6000602084013e611612565b606091505b5080516116315760405162461bcd60e51b815260040161057e90611d9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eeb565b506001949350505050565b60008046806001811461169357608981146116af57600481146116cb576201388181146116e75761053981146117035761171b565b73a5409ec958c83c3f309868babaca7c86dcb077c1925061171b565b7358807bad0b376efc12f5ad86aac70e78ed67deae925061171b565b73f57b2c51ded3a29e6891aba85459d600256cf317925061171b565b73ff7ca10af37178bdd056628ef42fd7f799fac77c925061171b565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b506001600160a01b03821615806117325750806089145b8061173f57508062013881145b1561174b575092915050565b60405163c455279160e01b81526001600160a01b03858116600483015283169063c45527919060240160206040518083038186803b15801561178c57600080fd5b505afa1580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eeb9190611c53565b6001600160a01b03821661181a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057e565b6000818152600260205260409020546001600160a01b03161561187f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057e565b6001600160a01b03821660009081526003602052604081208054600192906118a8908490611ebc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191290611f2b565b90600052602060002090601f016020900481019282611934576000855561197a565b82601f1061194d5782800160ff1982351617855561197a565b8280016001018555821561197a579182015b8281111561197a57823582559160200191906001019061195f565b5061198692915061198a565b5090565b5b80821115611986576000815560010161198b565b60008083601f8401126119b0578081fd5b50813567ffffffffffffffff8111156119c7578182fd5b6020830191508360208260051b85010111156119e257600080fd5b9250929050565b6000602082840312156119fa578081fd5b8135610bc481611fd7565b60008060408385031215611a17578081fd5b8235611a2281611fd7565b91506020830135611a3281611fd7565b809150509250929050565b600080600060608486031215611a51578081fd5b8335611a5c81611fd7565b92506020840135611a6c81611fd7565b929592945050506040919091013590565b60008060008060808587031215611a92578081fd5b8435611a9d81611fd7565b93506020850135611aad81611fd7565b925060408501359150606085013567ffffffffffffffff80821115611ad0578283fd5b818701915087601f830112611ae3578283fd5b813581811115611af557611af5611fc1565b604051601f8201601f19908116603f01168101908382118183101715611b1d57611b1d611fc1565b816040528281528a6020848701011115611b35578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611b68578182fd5b8235611b7381611fd7565b915060208301358015158114611a32578182fd5b60008060408385031215611b99578182fd5b8235611ba481611fd7565b946020939093013593505050565b60008060008060408587031215611bc7578384fd5b843567ffffffffffffffff80821115611bde578586fd5b611bea8883890161199f565b90965094506020870135915080821115611c02578384fd5b50611c0f8782880161199f565b95989497509550505050565b600060208284031215611c2c578081fd5b8135610bc481611fec565b600060208284031215611c48578081fd5b8151610bc481611fec565b600060208284031215611c64578081fd5b8151610bc481611fd7565b60008060208385031215611c81578182fd5b823567ffffffffffffffff80821115611c98578384fd5b818501915085601f830112611cab578384fd5b813581811115611cb9578485fd5b866020828501011115611cca578485fd5b60209290920196919550909350505050565b600060208284031215611ced578081fd5b5035919050565b60008151808452611d0c816020860160208601611eff565b601f01601f19169290920160200192915050565b60008351611d32818460208801611eff565b835190830190611d46818360208801611eff565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8290830184611cf4565b9695505050505050565b602081526000610bc46020830184611cf4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000808335601e19843603018112611e8d578283fd5b83018035915067ffffffffffffffff821115611ea7578283fd5b6020019150368190038213156119e257600080fd5b60008219821115611ecf57611ecf611f95565b500190565b600082611ee357611ee3611fab565b500490565b600082821015611efa57611efa611f95565b500390565b60005b83811015611f1a578181015183820152602001611f02565b83811115610aea5750506000910152565b600181811c90821680611f3f57607f821691505b60208210811415611f6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7a57611f7a611f95565b5060010190565b600082611f9057611f90611fab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2e57600080fd5b6001600160e01b031981168114610c2e57600080fdfea2646970667358221220f0d312481a34acb312b8e0808ca1a5e9dcfc8ab72774884bc3c5d744d18cc24a64736f6c634300080400330000000000000000000000000000000000000000000000000000000000001b3900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001968747470733a2f2f6836392e6172742f6d657461646174612f00000000000000

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80638da5cb5b116100b6578063c87b56dd1161006f578063c87b56dd14610386578063e086e5ec146103a6578063e14ca353146103bb578063e985e9c5146103d0578063ea372cdf146103f0578063f2fde38b1461040557600080fd5b80638da5cb5b146102e857806395d89b41146103065780639f181b5e1461031b578063a035b1fe14610330578063a22cb46514610346578063b88d4fde1461036657600080fd5b806342842e0e1161010857806342842e0e146102405780634c7bc5cf1461026057806355f804b3146102735780636352211e1461029357806370a08231146102b3578063715018a6146102d357600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610220575b600080fd5b34801561015c57600080fd5b5061017061016b366004611c1b565b610425565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a610477565b60405161017c9190611d8c565b3480156101b357600080fd5b506101c76101c2366004611cdc565b610509565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa366004611b87565b6105a3565b005b34801561020d57600080fd5b506007545b60405190815260200161017c565b34801561022c57600080fd5b506101ff61023b366004611a3d565b6106b9565b34801561024c57600080fd5b506101ff61025b366004611a3d565b6106ea565b6101ff61026e366004611bb2565b610705565b34801561027f57600080fd5b506101ff61028e366004611c6f565b610920565b34801561029f57600080fd5b506101c76102ae366004611cdc565b610956565b3480156102bf57600080fd5b506102126102ce3660046119e9565b6109cd565b3480156102df57600080fd5b506101ff610a54565b3480156102f457600080fd5b50600a546001600160a01b03166101c7565b34801561031257600080fd5b5061019a610a8a565b34801561032757600080fd5b50610212610a99565b34801561033c57600080fd5b50610212600b5481565b34801561035257600080fd5b506101ff610361366004611b56565b610aa9565b34801561037257600080fd5b506101ff610381366004611a7d565b610ab8565b34801561039257600080fd5b5061019a6103a1366004611cdc565b610af0565b3480156103b257600080fd5b506101ff610bcb565b3480156103c757600080fd5b50610212610c31565b3480156103dc57600080fd5b506101706103eb366004611a05565b610c48565b3480156103fc57600080fd5b5061019a610c88565b34801561041157600080fd5b506101ff6104203660046119e9565b610d16565b60006001600160e01b031982166380ac58cd60e01b148061045657506001600160e01b03198216635b5e139f60e01b145b8061047157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461048690611f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546104b290611f2b565b80156104ff5780601f106104d4576101008083540402835291602001916104ff565b820191906000526020600020905b8154815290600101906020018083116104e257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ae82610956565b9050806001600160a01b0316836001600160a01b0316141561061c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161057e565b336001600160a01b038216148061063857506106388133610c48565b6106aa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057e565b6106b48383610dae565b505050565b6106c33382610e1c565b6106df5760405162461bcd60e51b815260040161057e90611e26565b6106b4838383610ef3565b6106b483838360405180602001604052806000815250610ab8565b636209493c421015801561071d575063620bec3c4211155b61072657600080fd5b600a83111561076a5760405162461bcd60e51b815260206004820152601060248201526f6d6178696d756d20313020686172747360801b604482015260640161057e565b82610773610c31565b101561077e57600080fd5b82811461078a57600080fd5b6000805b828110156108725760008484838181106107b857634e487b7160e01b600052603260045260246000fd5b90506020028101906107ca9190611e77565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251929350509015905061085f5760458151111561084f5760405162461bcd60e51b815260206004820152601060248201526f6d6178696d756d20363920636861727360801b604482015260640161057e565b600b5461085c9084611ebc565b92505b508061086a81611f66565b91505061078e565b50803410156108b65760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b604482015260640161057e565b60005b84811015610918576109068686838181106108e457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108f991906119e9565b61090161108f565b611227565b8061091081611f66565b9150506108b9565b505050505050565b600a546001600160a01b0316331461094a5760405162461bcd60e51b815260040161057e90611df1565b6106b4600c8383611906565b6000818152600260205260408120546001600160a01b0316806104715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161057e565b60006001600160a01b038216610a385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161057e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610a7e5760405162461bcd60e51b815260040161057e90611df1565b610a886000611241565b565b60606001805461048690611f2b565b6000610aa460065490565b905090565b610ab4338383611293565b5050565b610ac23383610e1c565b610ade5760405162461bcd60e51b815260040161057e90611e26565b610aea84848484611362565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b6f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161057e565b6000610b79611395565b90506000815111610b995760405180602001604052806000815250610bc4565b80610ba3846113a4565b604051602001610bb4929190611d20565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610bf55760405162461bcd60e51b815260040161057e90611df1565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c2e573d6000803e3d6000fd5b50565b6000610c3b610a99565b600754610aa49190611ee8565b6000610c5483836114be565b80610bc457506001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16610bc4565b600c8054610c9590611f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc190611f2b565b8015610d0e5780601f10610ce357610100808354040283529160200191610d0e565b820191906000526020600020905b815481529060010190602001808311610cf157829003601f168201915b505050505081565b600a546001600160a01b03163314610d405760405162461bcd60e51b815260040161057e90611df1565b6001600160a01b038116610da55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057e565b610c2e81611241565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610de382610956565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057e565b6000610ea083610956565b9050806001600160a01b0316846001600160a01b03161480610edb5750836001600160a01b0316610ed084610509565b6001600160a01b0316145b80610eeb5750610eeb8185610c48565b949350505050565b826001600160a01b0316610f0682610956565b6001600160a01b031614610f6a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161057e565b6001600160a01b038216610fcc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161057e565b610fd7600082610dae565b6001600160a01b0383166000908152600360205260408120805460019290611000908490611ee8565b90915550506001600160a01b038216600090815260036020526040812080546001929061102e908490611ebc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061109a610c31565b116110e75760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604482015260640161057e565b60006110f1610a99565b6007546110fe9190611ee8565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6111659190611f81565b60008181526008602052604081205491925090611183575080611194565b506000818152600860205260409020545b600860006111a3600186611ee8565b815260200190815260200160002054600014156111d9576111c5600184611ee8565b600083815260086020526040902055611209565b600860006111e8600186611ee8565b81526020808201929092526040908101600090812054858252600890935220555b6112116114fd565b5060095461121f9082611ebc565b935050505090565b610ab482826040518060200160405280600081525061151e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112f55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61136d848484610ef3565b61137984848484611551565b610aea5760405162461bcd60e51b815260040161057e90611d9f565b6060600c805461048690611f2b565b6060816113c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113f257806113dc81611f66565b91506113eb9050600a83611ed4565b91506113cc565b60008167ffffffffffffffff81111561141b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611445576020820181803683370190505b5090505b8415610eeb5761145a600183611ee8565b9150611467600a86611f81565b611472906030611ebc565b60f81b81838151811061149557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114b7600a86611ed4565b9450611449565b6000806114ca8461165e565b90506001600160a01b03811615801590610eeb5750826001600160a01b0316816001600160a01b03161491505092915050565b60008061150960065490565b9050611519600680546001019055565b919050565b61152883836117c4565b6115356000848484611551565b6106b45760405162461bcd60e51b815260040161057e90611d9f565b60006001600160a01b0384163b1561165357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611595903390899088908890600401611d4f565b602060405180830381600087803b1580156115af57600080fd5b505af19250505080156115df575060408051601f3d908101601f191682019092526115dc91810190611c37565b60015b611639573d80801561160d576040519150601f19603f3d011682016040523d82523d6000602084013e611612565b606091505b5080516116315760405162461bcd60e51b815260040161057e90611d9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eeb565b506001949350505050565b60008046806001811461169357608981146116af57600481146116cb576201388181146116e75761053981146117035761171b565b73a5409ec958c83c3f309868babaca7c86dcb077c1925061171b565b7358807bad0b376efc12f5ad86aac70e78ed67deae925061171b565b73f57b2c51ded3a29e6891aba85459d600256cf317925061171b565b73ff7ca10af37178bdd056628ef42fd7f799fac77c925061171b565b73e1a2bbc877b29adbc56d2659dbcb0ae14ee6207192505b506001600160a01b03821615806117325750806089145b8061173f57508062013881145b1561174b575092915050565b60405163c455279160e01b81526001600160a01b03858116600483015283169063c45527919060240160206040518083038186803b15801561178c57600080fd5b505afa1580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eeb9190611c53565b6001600160a01b03821661181a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057e565b6000818152600260205260409020546001600160a01b03161561187f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057e565b6001600160a01b03821660009081526003602052604081208054600192906118a8908490611ebc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191290611f2b565b90600052602060002090601f016020900481019282611934576000855561197a565b82601f1061194d5782800160ff1982351617855561197a565b8280016001018555821561197a579182015b8281111561197a57823582559160200191906001019061195f565b5061198692915061198a565b5090565b5b80821115611986576000815560010161198b565b60008083601f8401126119b0578081fd5b50813567ffffffffffffffff8111156119c7578182fd5b6020830191508360208260051b85010111156119e257600080fd5b9250929050565b6000602082840312156119fa578081fd5b8135610bc481611fd7565b60008060408385031215611a17578081fd5b8235611a2281611fd7565b91506020830135611a3281611fd7565b809150509250929050565b600080600060608486031215611a51578081fd5b8335611a5c81611fd7565b92506020840135611a6c81611fd7565b929592945050506040919091013590565b60008060008060808587031215611a92578081fd5b8435611a9d81611fd7565b93506020850135611aad81611fd7565b925060408501359150606085013567ffffffffffffffff80821115611ad0578283fd5b818701915087601f830112611ae3578283fd5b813581811115611af557611af5611fc1565b604051601f8201601f19908116603f01168101908382118183101715611b1d57611b1d611fc1565b816040528281528a6020848701011115611b35578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611b68578182fd5b8235611b7381611fd7565b915060208301358015158114611a32578182fd5b60008060408385031215611b99578182fd5b8235611ba481611fd7565b946020939093013593505050565b60008060008060408587031215611bc7578384fd5b843567ffffffffffffffff80821115611bde578586fd5b611bea8883890161199f565b90965094506020870135915080821115611c02578384fd5b50611c0f8782880161199f565b95989497509550505050565b600060208284031215611c2c578081fd5b8135610bc481611fec565b600060208284031215611c48578081fd5b8151610bc481611fec565b600060208284031215611c64578081fd5b8151610bc481611fd7565b60008060208385031215611c81578182fd5b823567ffffffffffffffff80821115611c98578384fd5b818501915085601f830112611cab578384fd5b813581811115611cb9578485fd5b866020828501011115611cca578485fd5b60209290920196919550909350505050565b600060208284031215611ced578081fd5b5035919050565b60008151808452611d0c816020860160208601611eff565b601f01601f19169290920160200192915050565b60008351611d32818460208801611eff565b835190830190611d46818360208801611eff565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8290830184611cf4565b9695505050505050565b602081526000610bc46020830184611cf4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000808335601e19843603018112611e8d578283fd5b83018035915067ffffffffffffffff821115611ea7578283fd5b6020019150368190038213156119e257600080fd5b60008219821115611ecf57611ecf611f95565b500190565b600082611ee357611ee3611fab565b500490565b600082821015611efa57611efa611f95565b500390565b60005b83811015611f1a578181015183820152602001611f02565b83811115610aea5750506000910152565b600181811c90821680611f3f57607f821691505b60208210811415611f6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7a57611f7a611f95565b5060010190565b600082611f9057611f90611fab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2e57600080fd5b6001600160e01b031981168114610c2e57600080fdfea2646970667358221220f0d312481a34acb312b8e0808ca1a5e9dcfc8ab72774884bc3c5d744d18cc24a64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000001b3900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001968747470733a2f2f6836392e6172742f6d657461646174612f00000000000000

-----Decoded View---------------
Arg [0] : amount (uint256): 6969
Arg [1] : startFrom (uint256): 1
Arg [2] : baseURI (string): https://h69.art/metadata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001b39
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 68747470733a2f2f6836392e6172742f6d657461646174612f00000000000000


Deployed Bytecode Sourcemap

46314:1740:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29067:305;;;;;;;;;;-1:-1:-1;29067:305:0;;;;;:::i;:::-;;:::i;:::-;;;8266:14:1;;8259:22;8241:41;;8229:2;8214:18;29067:305:0;;;;;;;;30012:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31571:221::-;;;;;;;;;;-1:-1:-1;31571:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7564:32:1;;;7546:51;;7534:2;7519:18;31571:221:0;7501:102:1;31094:411:0;;;;;;;;;;-1:-1:-1;31094:411:0;;;;;:::i;:::-;;:::i;:::-;;42940:103;;;;;;;;;;-1:-1:-1;43023:12:0;;42940:103;;;16429:25:1;;;16417:2;16402:18;42940:103:0;16384:76:1;32321:339:0;;;;;;;;;;-1:-1:-1;32321:339:0;;;;;:::i;:::-;;:::i;32731:185::-;;;;;;;;;;-1:-1:-1;32731:185:0;;;;;:::i;:::-;;:::i;46618:824::-;;;;;;:::i;:::-;;:::i;47450:134::-;;;;;;;;;;-1:-1:-1;47450:134:0;;;;;:::i;:::-;;:::i;29706:239::-;;;;;;;;;;-1:-1:-1;29706:239:0;;;;;:::i;:::-;;:::i;29436:208::-;;;;;;;;;;-1:-1:-1;29436:208:0;;;;;:::i;:::-;;:::i;9688:103::-;;;;;;;;;;;;;:::i;9037:87::-;;;;;;;;;;-1:-1:-1;9110:6:0;;-1:-1:-1;;;;;9110:6:0;9037:87;;30181:104;;;;;;;;;;;;;:::i;43134:99::-;;;;;;;;;;;;;:::i;46364:32::-;;;;;;;;;;;;;;;;31864:155;;;;;;;;;;-1:-1:-1;31864:155:0;;;;;:::i;:::-;;:::i;32987:328::-;;;;;;;;;;-1:-1:-1;32987:328:0;;;;;:::i;:::-;;:::i;30356:334::-;;;;;;;;;;-1:-1:-1;30356:334:0;;;;;:::i;:::-;;:::i;47703:110::-;;;;;;;;;;;;;:::i;43339:115::-;;;;;;;;;;;;;:::i;47821:228::-;;;;;;;;;;-1:-1:-1;47821:228:0;;;;;:::i;:::-;;:::i;46403:29::-;;;;;;;;;;;;;:::i;9946:201::-;;;;;;;;;;-1:-1:-1;9946:201:0;;;;;:::i;:::-;;:::i;29067:305::-;29169:4;-1:-1:-1;;;;;;29206:40:0;;-1:-1:-1;;;29206:40:0;;:105;;-1:-1:-1;;;;;;;29263:48:0;;-1:-1:-1;;;29263:48:0;29206:105;:158;;;-1:-1:-1;;;;;;;;;;21930:40:0;;;29328:36;29186:178;29067:305;-1:-1:-1;;29067:305:0:o;30012:100::-;30066:13;30099:5;30092:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30012:100;:::o;31571:221::-;31647:7;34914:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34914:16:0;31667:73;;;;-1:-1:-1;;;31667:73:0;;13785:2:1;31667:73:0;;;13767:21:1;13824:2;13804:18;;;13797:30;13863:34;13843:18;;;13836:62;-1:-1:-1;;;13914:18:1;;;13907:42;13966:19;;31667:73:0;;;;;;;;;-1:-1:-1;31760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31760:24:0;;31571:221::o;31094:411::-;31175:13;31191:23;31206:7;31191:14;:23::i;:::-;31175:39;;31239:5;-1:-1:-1;;;;;31233:11:0;:2;-1:-1:-1;;;;;31233:11:0;;;31225:57;;;;-1:-1:-1;;;31225:57:0;;15320:2:1;31225:57:0;;;15302:21:1;15359:2;15339:18;;;15332:30;15398:34;15378:18;;;15371:62;-1:-1:-1;;;15449:18:1;;;15442:31;15490:19;;31225:57:0;15292:223:1;31225:57:0;7841:10;-1:-1:-1;;;;;31317:21:0;;;;:62;;-1:-1:-1;31342:37:0;31359:5;7841:10;47821:228;:::i;31342:37::-;31295:168;;;;-1:-1:-1;;;31295:168:0;;12178:2:1;31295:168:0;;;12160:21:1;12217:2;12197:18;;;12190:30;12256:34;12236:18;;;12229:62;12327:26;12307:18;;;12300:54;12371:19;;31295:168:0;12150:246:1;31295:168:0;31476:21;31485:2;31489:7;31476:8;:21::i;:::-;31094:411;;;:::o;32321:339::-;32516:41;7841:10;32549:7;32516:18;:41::i;:::-;32508:103;;;;-1:-1:-1;;;32508:103:0;;;;;;;:::i;:::-;32624:28;32634:4;32640:2;32644:7;32624:9;:28::i;32731:185::-;32869:39;32886:4;32892:2;32896:7;32869:39;;;;;;;;;;;;:16;:39::i;46618:824::-;46746:10;46727:15;:29;;:62;;;;;46779:10;46760:15;:29;;46727:62;46719:71;;;;;;46830:2;46809:23;;;46801:52;;;;-1:-1:-1;;;46801:52:0;;15722:2:1;46801:52:0;;;15704:21:1;15761:2;15741:18;;;15734:30;-1:-1:-1;;;15780:18:1;;;15773:46;15836:18;;46801:52:0;15694:166:1;46801:52:0;46897:10;46872:21;:19;:21::i;:::-;:42;;46864:51;;;;;;46934:36;;;46926:45;;;;;;46984:9;47013:6;47008:247;47025:19;;;47008:247;;;47066:14;47089:8;;47098:1;47089:11;;;;;-1:-1:-1;;;47089:11:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;47066:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47120:8:0;;47066:35;;-1:-1:-1;;47120:12:0;;;-1:-1:-1;47116:128:0;;47173:2;47161:1;:8;:14;;47153:43;;;;-1:-1:-1;;;47153:43:0;;14198:2:1;47153:43:0;;;14180:21:1;14237:2;14217:18;;;14210:30;-1:-1:-1;;;14256:18:1;;;14249:46;14312:18;;47153:43:0;14170:166:1;47153:43:0;47223:5;;47215:13;;;;:::i;:::-;;;47116:128;-1:-1:-1;47046:3:0;;;;:::i;:::-;;;;47008:247;;;;47288:4;47275:9;:17;;47267:46;;;;-1:-1:-1;;;47267:46:0;;8719:2:1;47267:46:0;;;8701:21:1;8758:2;8738:18;;;8731:30;-1:-1:-1;;;8777:18:1;;;8770:46;8833:18;;47267:46:0;8691:166:1;47267:46:0;47331:6;47326:109;47343:21;;;47326:109;;;47386:37;47396:10;;47407:1;47396:13;;;;;-1:-1:-1;;;47396:13:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47411:11;:9;:11::i;:::-;47386:9;:37::i;:::-;47366:3;;;;:::i;:::-;;;;47326:109;;;;46618:824;;;;;:::o;47450:134::-;9110:6;;-1:-1:-1;;;;;9110:6:0;7841:10;9257:23;9249:68;;;;-1:-1:-1;;;9249:68:0;;;;;;;:::i;:::-;47555:20:::1;:10;47568:7:::0;;47555:20:::1;:::i;29706:239::-:0;29778:7;29814:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29814:16:0;29849:19;29841:73;;;;-1:-1:-1;;;29841:73:0;;13014:2:1;29841:73:0;;;12996:21:1;13053:2;13033:18;;;13026:30;13092:34;13072:18;;;13065:62;-1:-1:-1;;;13143:18:1;;;13136:39;13192:19;;29841:73:0;12986:231:1;29436:208:0;29508:7;-1:-1:-1;;;;;29536:19:0;;29528:74;;;;-1:-1:-1;;;29528:74:0;;12603:2:1;29528:74:0;;;12585:21:1;12642:2;12622:18;;;12615:30;12681:34;12661:18;;;12654:62;-1:-1:-1;;;12732:18:1;;;12725:40;12782:19;;29528:74:0;12575:232:1;29528:74:0;-1:-1:-1;;;;;;29620:16:0;;;;;:9;:16;;;;;;;29436:208::o;9688:103::-;9110:6;;-1:-1:-1;;;;;9110:6:0;7841:10;9257:23;9249:68;;;;-1:-1:-1;;;9249:68:0;;;;;;;:::i;:::-;9753:30:::1;9780:1;9753:18;:30::i;:::-;9688:103::o:0;30181:104::-;30237:13;30270:7;30263:14;;;;;:::i;43134:99::-;43177:7;43204:21;:11;4457:14;;4365:114;43204:21;43197:28;;43134:99;:::o;31864:155::-;31959:52;7841:10;31992:8;32002;31959:18;:52::i;:::-;31864:155;;:::o;32987:328::-;33162:41;7841:10;33195:7;33162:18;:41::i;:::-;33154:103;;;;-1:-1:-1;;;33154:103:0;;;;;;;:::i;:::-;33268:39;33282:4;33288:2;33292:7;33301:5;33268:13;:39::i;:::-;32987:328;;;;:::o;30356:334::-;34890:4;34914:16;;;:7;:16;;;;;;30429:13;;-1:-1:-1;;;;;34914:16:0;30455:76;;;;-1:-1:-1;;;30455:76:0;;14904:2:1;30455:76:0;;;14886:21:1;14943:2;14923:18;;;14916:30;14982:34;14962:18;;;14955:62;-1:-1:-1;;;15033:18:1;;;15026:45;15088:19;;30455:76:0;14876:237:1;30455:76:0;30544:21;30568:10;:8;:10::i;:::-;30544:34;;30620:1;30602:7;30596:21;:25;:86;;;;;;;;;;;;;;;;;30648:7;30657:18;:7;:16;:18::i;:::-;30631:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30596:86;30589:93;30356:334;-1:-1:-1;;;30356:334:0:o;47703:110::-;9110:6;;-1:-1:-1;;;;;9110:6:0;7841:10;9257:23;9249:68;;;;-1:-1:-1;;;9249:68:0;;;;;;;:::i;:::-;9110:6;;47757:48:::1;::::0;-1:-1:-1;;;;;9110:6:0;;;;47783:21:::1;47757:48:::0;::::1;;;::::0;::::1;::::0;;;47783:21;9110:6;47757:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47703:110::o:0;43339:115::-;43391:7;43434:12;:10;:12::i;:::-;43023;;43418:28;;;;:::i;47821:228::-;47918:4;47942:55;47981:5;47988:8;47942:38;:55::i;:::-;:98;;;-1:-1:-1;;;;;;32211:25:0;;;32187:4;32211:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;48001:39;32090:164;46403:29;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9946:201::-;9110:6;;-1:-1:-1;;;;;9110:6:0;7841:10;9257:23;9249:68;;;;-1:-1:-1;;;9249:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10035:22:0;::::1;10027:73;;;::::0;-1:-1:-1;;;10027:73:0;;9483:2:1;10027:73:0::1;::::0;::::1;9465:21:1::0;9522:2;9502:18;;;9495:30;9561:34;9541:18;;;9534:62;-1:-1:-1;;;9612:18:1;;;9605:36;9658:19;;10027:73:0::1;9455:228:1::0;10027:73:0::1;10111:28;10130:8;10111:18;:28::i;38971:174::-:0;39046:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39046:29:0;-1:-1:-1;;;;;39046:29:0;;;;;;;;:24;;39100:23;39046:24;39100:14;:23::i;:::-;-1:-1:-1;;;;;39091:46:0;;;;;;;;;;;38971:174;;:::o;35119:348::-;35212:4;34914:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34914:16:0;35229:73;;;;-1:-1:-1;;;35229:73:0;;11765:2:1;35229:73:0;;;11747:21:1;11804:2;11784:18;;;11777:30;11843:34;11823:18;;;11816:62;-1:-1:-1;;;11894:18:1;;;11887:42;11946:19;;35229:73:0;11737:234:1;35229:73:0;35313:13;35329:23;35344:7;35329:14;:23::i;:::-;35313:39;;35382:5;-1:-1:-1;;;;;35371:16:0;:7;-1:-1:-1;;;;;35371:16:0;;:51;;;;35415:7;-1:-1:-1;;;;;35391:31:0;:20;35403:7;35391:11;:20::i;:::-;-1:-1:-1;;;;;35391:31:0;;35371:51;:87;;;;35426:32;35443:5;35450:7;35426:16;:32::i;:::-;35363:96;35119:348;-1:-1:-1;;;;35119:348:0:o;38228:625::-;38387:4;-1:-1:-1;;;;;38360:31:0;:23;38375:7;38360:14;:23::i;:::-;-1:-1:-1;;;;;38360:31:0;;38352:81;;;;-1:-1:-1;;;38352:81:0;;9890:2:1;38352:81:0;;;9872:21:1;9929:2;9909:18;;;9902:30;9968:34;9948:18;;;9941:62;-1:-1:-1;;;10019:18:1;;;10012:35;10064:19;;38352:81:0;9862:227:1;38352:81:0;-1:-1:-1;;;;;38452:16:0;;38444:65;;;;-1:-1:-1;;;38444:65:0;;10653:2:1;38444:65:0;;;10635:21:1;10692:2;10672:18;;;10665:30;10731:34;10711:18;;;10704:62;-1:-1:-1;;;10782:18:1;;;10775:34;10826:19;;38444:65:0;10625:226:1;38444:65:0;38626:29;38643:1;38647:7;38626:8;:29::i;:::-;-1:-1:-1;;;;;38668:15:0;;;;;;:9;:15;;;;;:20;;38687:1;;38668:15;:20;;38687:1;;38668:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38699:13:0;;;;;;:9;:13;;;;;:18;;38716:1;;38699:13;:18;;38716:1;;38699:18;:::i;:::-;;;;-1:-1:-1;;38728:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38728:21:0;-1:-1:-1;;;;;38728:21:0;;;;;;;;;38767:27;;38728:16;;38767:27;;;;;;;31094:411;;;:::o;45040:1264::-;45107:7;43879:1;43855:21;:19;:21::i;:::-;:25;43847:62;;;;-1:-1:-1;;;43847:62:0;;11412:2:1;43847:62:0;;;11394:21:1;11451:2;11431:18;;;11424:30;11490:26;11470:18;;;11463:54;11534:18;;43847:62:0;11384:174:1;43847:62:0;45127:16:::1;45162:12;:10;:12::i;:::-;43023::::0;;45146:28:::1;;;;:::i;:::-;45234:195;::::0;-1:-1:-1;;45269:10:0::1;6701:2:1::0;6697:15;;;6693:24;;45234:195:0::1;::::0;::::1;6681:37:1::0;45298:14:0::1;6752:15:1::0;;6748:24;6734:12;;;6727:46;45331:16:0::1;6789:12:1::0;;;6782:28;45366:14:0::1;6826:12:1::0;;;6819:28;45399:15:0::1;6863:13:1::0;;;6856:29;45127:47:0;;-1:-1:-1;45185:14:0::1;::::0;45127:47;;6901:13:1;;45234:195:0::1;;;;;;;;;;;;45210:230;;;;;;45202:239;;:250;;;;:::i;:::-;45465:13;45497:19:::0;;;:11:::1;:19;::::0;;;;;45185:267;;-1:-1:-1;45465:13:0;45493:304:::1;;-1:-1:-1::0;45642:6:0;45493:304:::1;;;-1:-1:-1::0;45766:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;45493:304:::1;45874:11;:25;45886:12;45897:1;45886:8:::0;:12:::1;:::i;:::-;45874:25;;;;;;;;;;;;45903:1;45874:30;45870:331;;;46008:12;46019:1;46008:8:::0;:12:::1;:::i;:::-;45986:19;::::0;;;:11:::1;:19;::::0;;;;:34;45870:331:::1;;;46164:11;:25;46176:12;46187:1;46176:8:::0;:12:::1;:::i;:::-;46164:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;46164:25:0;;;;46142:19;;;:11:::1;:19:::0;;;;:47;45870:331:::1;46242:17;:15;:17::i;:::-;-1:-1:-1::0;46287:9:0::1;::::0;46279:17:::1;::::0;:5;:17:::1;:::i;:::-;46272:24;;;;;45040:1264:::0;:::o;35809:110::-;35885:26;35895:2;35899:7;35885:26;;;;;;;;;;;;:9;:26::i;10307:191::-;10400:6;;;-1:-1:-1;;;;;10417:17:0;;;-1:-1:-1;;;;;;10417:17:0;;;;;;;10450:40;;10400:6;;;10417:17;10400:6;;10450:40;;10381:16;;10450:40;10307:191;;:::o;39287:315::-;39442:8;-1:-1:-1;;;;;39433:17:0;:5;-1:-1:-1;;;;;39433:17:0;;;39425:55;;;;-1:-1:-1;;;39425:55:0;;11058:2:1;39425:55:0;;;11040:21:1;11097:2;11077:18;;;11070:30;11136:27;11116:18;;;11109:55;11181:18;;39425:55:0;11030:175:1;39425:55:0;-1:-1:-1;;;;;39491:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39491:46:0;;;;;;;;;;39553:41;;8241::1;;;39553::0;;8214:18:1;39553:41:0;;;;;;;39287:315;;;:::o;34197:::-;34354:28;34364:4;34370:2;34374:7;34354:9;:28::i;:::-;34401:48;34424:4;34430:2;34434:7;34443:5;34401:22;:48::i;:::-;34393:111;;;;-1:-1:-1;;;34393:111:0;;;;;;;:::i;47592:103::-;47644:13;47677:10;47670:17;;;;;:::i;5323:723::-;5379:13;5600:10;5596:53;;-1:-1:-1;;5627:10:0;;;;;;;;;;;;-1:-1:-1;;;5627:10:0;;;;;5323:723::o;5596:53::-;5674:5;5659:12;5715:78;5722:9;;5715:78;;5748:8;;;;:::i;:::-;;-1:-1:-1;5771:10:0;;-1:-1:-1;5779:2:0;5771:10;;:::i;:::-;;;5715:78;;;5803:19;5835:6;5825:17;;;;;;-1:-1:-1;;;5825:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5825:17:0;;5803:39;;5853:154;5860:10;;5853:154;;5887:11;5897:1;5887:11;;:::i;:::-;;-1:-1:-1;5956:10:0;5964:2;5956:5;:10;:::i;:::-;5943:24;;:2;:24;:::i;:::-;5930:39;;5913:6;5920;5913:14;;;;;;-1:-1:-1;;;5913:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;5913:56:0;;;;;;;;-1:-1:-1;5984:11:0;5993:2;5984:11;;:::i;:::-;;;5853:154;;1561:228;1670:4;1692:13;1708:15;1717:5;1708:8;:15::i;:::-;1692:31;-1:-1:-1;;;;;;1741:19:0;;;;;;:40;;;1773:8;-1:-1:-1;;;;;1764:17:0;:5;-1:-1:-1;;;;;1764:17:0;;1734:47;;;1561:228;;;;:::o;43564:173::-;43611:7;43631:13;43647:21;:11;4457:14;;4365:114;43647:21;43631:37;;43681:23;:11;4576:19;;4594:1;4576:19;;;4487:127;43681:23;43724:5;43564:173;-1:-1:-1;43564:173:0:o;36146:321::-;36276:18;36282:2;36286:7;36276:5;:18::i;:::-;36327:54;36358:1;36362:2;36366:7;36375:5;36327:22;:54::i;:::-;36305:154;;;;-1:-1:-1;;;36305:154:0;;;;;;;:::i;40167:799::-;40322:4;-1:-1:-1;;;;;40343:13:0;;12033:19;:23;40339:620;;40379:72;;-1:-1:-1;;;40379:72:0;;-1:-1:-1;;;;;40379:36:0;;;;;:72;;7841:10;;40430:4;;40436:7;;40445:5;;40379:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40379:72:0;;;;;;;;-1:-1:-1;;40379:72:0;;;;;;;;;;;;:::i;:::-;;;40375:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40621:13:0;;40617:272;;40664:60;;-1:-1:-1;;;40664:60:0;;;;;;;:::i;40617:272::-;40839:6;40833:13;40824:6;40820:2;40816:15;40809:38;40375:529;-1:-1:-1;;;;;;40502:51:0;-1:-1:-1;;;40502:51:0;;-1:-1:-1;40495:58:0;;40339:620;-1:-1:-1;40943:4:0;40167:799;;;;;;:::o;1877:1609::-;1933:7;;2043:9;;2330:1;2325:123;;;;2467:3;2462:125;;;;2606:1;2601:123;;;;2743:5;2738:126;;;;2883:4;2878:302;;;;2066:1114;;2325:123;2391:42;2379:54;;2325:123;;2462:125;2530:42;2518:54;;2462:125;;2601:123;2667:42;2655:54;;2601:123;;2738:126;2807:42;2795:54;;2738:126;;2878:302;3123:42;3111:54;;2066:1114;-1:-1:-1;;;;;;3308:22:0;;;;:40;;;3334:7;3345:3;3334:14;3308:40;:60;;;;3352:7;3363:5;3352:16;3308:60;3304:108;;;-1:-1:-1;3392:8:0;1877:1609;-1:-1:-1;;1877:1609:0:o;3304:108::-;3439:38;;-1:-1:-1;;;3439:38:0;;-1:-1:-1;;;;;7564:32:1;;;3439:38:0;;;7546:51:1;3439:31:0;;;;;7519:18:1;;3439:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;36803:439::-;-1:-1:-1;;;;;36883:16:0;;36875:61;;;;-1:-1:-1;;;36875:61:0;;13424:2:1;36875:61:0;;;13406:21:1;;;13443:18;;;13436:30;13502:34;13482:18;;;13475:62;13554:18;;36875:61:0;13396:182:1;36875:61:0;34890:4;34914:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34914:16:0;:30;36947:58;;;;-1:-1:-1;;;36947:58:0;;10296:2:1;36947:58:0;;;10278:21:1;10335:2;10315:18;;;10308:30;10374;10354:18;;;10347:58;10422:18;;36947:58:0;10268:178:1;36947:58:0;-1:-1:-1;;;;;37076:13:0;;;;;;:9;:13;;;;;:18;;37093:1;;37076:13;:18;;37093:1;;37076:18;:::i;:::-;;;;-1:-1:-1;;37105:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37105:21:0;-1:-1:-1;;;;;37105:21:0;;;;;;;;37144:33;;37105:16;;;37144:33;;37105:16;;37144:33;31864:155;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:391:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:2;;164:6;156;149:22;108:2;-1:-1:-1;192:20:1;;235:18;224:30;;221:2;;;274:8;264;257:26;221:2;318:4;310:6;306:17;294:29;;378:3;371:4;361:6;358:1;354:14;346:6;342:27;338:38;335:47;332:2;;;395:1;392;385:12;332:2;98:307;;;;;:::o;410:257::-;469:6;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;587:9;574:23;606:31;631:5;606:31;:::i;672:398::-;740:6;748;801:2;789:9;780:7;776:23;772:32;769:2;;;822:6;814;807:22;769:2;866:9;853:23;885:31;910:5;885:31;:::i;:::-;935:5;-1:-1:-1;992:2:1;977:18;;964:32;1005:33;964:32;1005:33;:::i;:::-;1057:7;1047:17;;;759:311;;;;;:::o;1075:466::-;1152:6;1160;1168;1221:2;1209:9;1200:7;1196:23;1192:32;1189:2;;;1242:6;1234;1227:22;1189:2;1286:9;1273:23;1305:31;1330:5;1305:31;:::i;:::-;1355:5;-1:-1:-1;1412:2:1;1397:18;;1384:32;1425:33;1384:32;1425:33;:::i;:::-;1179:362;;1477:7;;-1:-1:-1;;;1531:2:1;1516:18;;;;1503:32;;1179:362::o;1546:1311::-;1641:6;1649;1657;1665;1718:3;1706:9;1697:7;1693:23;1689:33;1686:2;;;1740:6;1732;1725:22;1686:2;1784:9;1771:23;1803:31;1828:5;1803:31;:::i;:::-;1853:5;-1:-1:-1;1910:2:1;1895:18;;1882:32;1923:33;1882:32;1923:33;:::i;:::-;1975:7;-1:-1:-1;2029:2:1;2014:18;;2001:32;;-1:-1:-1;2084:2:1;2069:18;;2056:32;2107:18;2137:14;;;2134:2;;;2169:6;2161;2154:22;2134:2;2212:6;2201:9;2197:22;2187:32;;2257:7;2250:4;2246:2;2242:13;2238:27;2228:2;;2284:6;2276;2269:22;2228:2;2325;2312:16;2347:2;2343;2340:10;2337:2;;;2353:18;;:::i;:::-;2428:2;2422:9;2396:2;2482:13;;-1:-1:-1;;2478:22:1;;;2502:2;2474:31;2470:40;2458:53;;;2526:18;;;2546:22;;;2523:46;2520:2;;;2572:18;;:::i;:::-;2612:10;2608:2;2601:22;2647:2;2639:6;2632:18;2687:7;2682:2;2677;2673;2669:11;2665:20;2662:33;2659:2;;;2713:6;2705;2698:22;2659:2;2774;2769;2765;2761:11;2756:2;2748:6;2744:15;2731:46;2797:15;;;2814:2;2793:24;2786:40;;;;1676:1181;;;;-1:-1:-1;1676:1181:1;;-1:-1:-1;;;;1676:1181:1:o;2862:436::-;2927:6;2935;2988:2;2976:9;2967:7;2963:23;2959:32;2956:2;;;3009:6;3001;2994:22;2956:2;3053:9;3040:23;3072:31;3097:5;3072:31;:::i;:::-;3122:5;-1:-1:-1;3179:2:1;3164:18;;3151:32;3221:15;;3214:23;3202:36;;3192:2;;3257:6;3249;3242:22;3303:325;3371:6;3379;3432:2;3420:9;3411:7;3407:23;3403:32;3400:2;;;3453:6;3445;3438:22;3400:2;3497:9;3484:23;3516:31;3541:5;3516:31;:::i;:::-;3566:5;3618:2;3603:18;;;;3590:32;;-1:-1:-1;;;3390:238:1:o;3633:815::-;3767:6;3775;3783;3791;3844:2;3832:9;3823:7;3819:23;3815:32;3812:2;;;3865:6;3857;3850:22;3812:2;3910:9;3897:23;3939:18;3980:2;3972:6;3969:14;3966:2;;;4001:6;3993;3986:22;3966:2;4045:70;4107:7;4098:6;4087:9;4083:22;4045:70;:::i;:::-;4134:8;;-1:-1:-1;4019:96:1;-1:-1:-1;4222:2:1;4207:18;;4194:32;;-1:-1:-1;4238:16:1;;;4235:2;;;4272:6;4264;4257:22;4235:2;;4316:72;4380:7;4369:8;4358:9;4354:24;4316:72;:::i;:::-;3802:646;;;;-1:-1:-1;4407:8:1;-1:-1:-1;;;;3802:646:1:o;4453:255::-;4511:6;4564:2;4552:9;4543:7;4539:23;4535:32;4532:2;;;4585:6;4577;4570:22;4532:2;4629:9;4616:23;4648:30;4672:5;4648:30;:::i;4713:259::-;4782:6;4835:2;4823:9;4814:7;4810:23;4806:32;4803:2;;;4856:6;4848;4841:22;4803:2;4893:9;4887:16;4912:30;4936:5;4912:30;:::i;4977:288::-;5074:6;5127:2;5115:9;5106:7;5102:23;5098:32;5095:2;;;5148:6;5140;5133:22;5095:2;5185:9;5179:16;5204:31;5229:5;5204:31;:::i;5270:642::-;5341:6;5349;5402:2;5390:9;5381:7;5377:23;5373:32;5370:2;;;5423:6;5415;5408:22;5370:2;5468:9;5455:23;5497:18;5538:2;5530:6;5527:14;5524:2;;;5559:6;5551;5544:22;5524:2;5602:6;5591:9;5587:22;5577:32;;5647:7;5640:4;5636:2;5632:13;5628:27;5618:2;;5674:6;5666;5659:22;5618:2;5719;5706:16;5745:2;5737:6;5734:14;5731:2;;;5766:6;5758;5751:22;5731:2;5816:7;5811:2;5802:6;5798:2;5794:15;5790:24;5787:37;5784:2;;;5842:6;5834;5827:22;5784:2;5878;5870:11;;;;;5900:6;;-1:-1:-1;5360:552:1;;-1:-1:-1;;;;5360:552:1:o;5917:190::-;5976:6;6029:2;6017:9;6008:7;6004:23;6000:32;5997:2;;;6050:6;6042;6035:22;5997:2;-1:-1:-1;6078:23:1;;5987:120;-1:-1:-1;5987:120:1:o;6112:257::-;6153:3;6191:5;6185:12;6218:6;6213:3;6206:19;6234:63;6290:6;6283:4;6278:3;6274:14;6267:4;6260:5;6256:16;6234:63;:::i;:::-;6351:2;6330:15;-1:-1:-1;;6326:29:1;6317:39;;;;6358:4;6313:50;;6161:208;-1:-1:-1;;6161:208:1:o;6925:470::-;7104:3;7142:6;7136:13;7158:53;7204:6;7199:3;7192:4;7184:6;7180:17;7158:53;:::i;:::-;7274:13;;7233:16;;;;7296:57;7274:13;7233:16;7330:4;7318:17;;7296:57;:::i;:::-;7369:20;;7112:283;-1:-1:-1;;;;7112:283:1:o;7608:488::-;-1:-1:-1;;;;;7877:15:1;;;7859:34;;7929:15;;7924:2;7909:18;;7902:43;7976:2;7961:18;;7954:34;;;8024:3;8019:2;8004:18;;7997:31;;;7802:4;;8045:45;;8070:19;;8062:6;8045:45;:::i;:::-;8037:53;7811:285;-1:-1:-1;;;;;;7811:285:1:o;8293:219::-;8442:2;8431:9;8424:21;8405:4;8462:44;8502:2;8491:9;8487:18;8479:6;8462:44;:::i;8862:414::-;9064:2;9046:21;;;9103:2;9083:18;;;9076:30;9142:34;9137:2;9122:18;;9115:62;-1:-1:-1;;;9208:2:1;9193:18;;9186:48;9266:3;9251:19;;9036:240::o;14341:356::-;14543:2;14525:21;;;14562:18;;;14555:30;14621:34;14616:2;14601:18;;14594:62;14688:2;14673:18;;14515:182::o;15865:413::-;16067:2;16049:21;;;16106:2;16086:18;;;16079:30;16145:34;16140:2;16125:18;;16118:62;-1:-1:-1;;;16211:2:1;16196:18;;16189:47;16268:3;16253:19;;16039:239::o;16465:534::-;16543:4;16549:6;16609:11;16596:25;16703:2;16699:7;16688:8;16672:14;16668:29;16664:43;16644:18;16640:68;16630:2;;16725:4;16719;16712:18;16630:2;16755:33;;16807:20;;;-1:-1:-1;16850:18:1;16839:30;;16836:2;;;16885:4;16879;16872:18;16836:2;16921:4;16909:17;;-1:-1:-1;16952:14:1;16948:27;;;16938:38;;16935:2;;;16989:1;16986;16979:12;17004:128;17044:3;17075:1;17071:6;17068:1;17065:13;17062:2;;;17081:18;;:::i;:::-;-1:-1:-1;17117:9:1;;17052:80::o;17137:120::-;17177:1;17203;17193:2;;17208:18;;:::i;:::-;-1:-1:-1;17242:9:1;;17183:74::o;17262:125::-;17302:4;17330:1;17327;17324:8;17321:2;;;17335:18;;:::i;:::-;-1:-1:-1;17372:9:1;;17311:76::o;17392:258::-;17464:1;17474:113;17488:6;17485:1;17482:13;17474:113;;;17564:11;;;17558:18;17545:11;;;17538:39;17510:2;17503:10;17474:113;;;17605:6;17602:1;17599:13;17596:2;;;-1:-1:-1;;17640:1:1;17622:16;;17615:27;17445:205::o;17655:380::-;17734:1;17730:12;;;;17777;;;17798:2;;17852:4;17844:6;17840:17;17830:27;;17798:2;17905;17897:6;17894:14;17874:18;17871:38;17868:2;;;17951:10;17946:3;17942:20;17939:1;17932:31;17986:4;17983:1;17976:15;18014:4;18011:1;18004:15;17868:2;;17710:325;;;:::o;18040:135::-;18079:3;-1:-1:-1;;18100:17:1;;18097:2;;;18120:18;;:::i;:::-;-1:-1:-1;18167:1:1;18156:13;;18087:88::o;18180:112::-;18212:1;18238;18228:2;;18243:18;;:::i;:::-;-1:-1:-1;18277:9:1;;18218:74::o;18297:127::-;18358:10;18353:3;18349:20;18346:1;18339:31;18389:4;18386:1;18379:15;18413:4;18410:1;18403:15;18429:127;18490:10;18485:3;18481:20;18478:1;18471:31;18521:4;18518:1;18511:15;18545:4;18542:1;18535:15;18561:127;18622:10;18617:3;18613:20;18610:1;18603:31;18653:4;18650:1;18643:15;18677:4;18674:1;18667:15;18693:131;-1:-1:-1;;;;;18768:31:1;;18758:42;;18748:2;;18814:1;18811;18804:12;18829:131;-1:-1:-1;;;;;;18903:32:1;;18893:43;;18883:2;;18950:1;18947;18940:12

Swarm Source

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