ETH Price: $3,171.19 (-8.63%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

2,008

Holders

362

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
champoonk.eth
0xb130a894187664b22b823de7bb886e5c09e27d51
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:
HypeArt

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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);
}

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

/*
 * @dev 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

/**
 *
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;
    using Strings for uint256;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string internal _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri_) {
        _setURI(uri_);
    }
    
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC1155).interfaceId
            || interfaceId == type(IERC1155MetadataURI).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256 tokenId) external view virtual override returns (string memory) {
        return bytes(_uri).length > 0
            ? string(abi.encodePacked(_uri, tokenId.toString()))
            : '';
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        _balances[id][from] = fromBalance - amount;
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            _balances[id][from] = fromBalance - amount;
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        _balances[id][account] = accountBalance - amount;

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        for (uint i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

abstract contract Random {
    
    function generate(address sender) internal view returns (uint256) {
        return uint(keccak256(abi.encodePacked(sender, block.difficulty, block.timestamp, blockhash(block.number))));
    }
}

contract HypeArt is ERC1155, Ownable, Random {

    constructor (string memory _uri) ERC1155(_uri) {}
    
    uint16 totalMinted;
    uint16 maxMinted = 2008;
    
    function mintRandom() external {
        require(totalMinted < maxMinted, "Max token amount has been reached");
        totalMinted += 1;
        
        uint256 probability = generate(msg.sender) % 100;
        uint256 id;
        if (probability >= 51 && probability <= 77) {
            id = 1;
        }
        if (probability >= 78 && probability <= 96) {
            id = 2;
        }
        if (probability >= 97 && probability <= 99) {
            id = 3;
        }
        
        bytes memory data;
        _mint(msg.sender, id, 1, data);
    }

    function setBaseURI(string memory _uri) external onlyOwner{
        _setURI(_uri);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRandom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526003805461ffff60b01b191660fb60b31b1790553480156200002557600080fd5b5060405162001eaa38038062001eaa83398101604081905262000048916200015e565b8062000054816200009f565b50600380546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505062000287565b8051620000b4906002906020840190620000b8565b5050565b828054620000c69062000234565b90600052602060002090601f016020900481019282620000ea576000855562000135565b82601f106200010557805160ff191683800117855562000135565b8280016001018555821562000135579182015b828111156200013557825182559160200191906001019062000118565b506200014392915062000147565b5090565b5b8082111562000143576000815560010162000148565b6000602080838503121562000171578182fd5b82516001600160401b038082111562000188578384fd5b818501915085601f8301126200019c578384fd5b815181811115620001b157620001b162000271565b604051601f8201601f19908116603f01168101908382118183101715620001dc57620001dc62000271565b816040528281528886848701011115620001f4578687fd5b8693505b82841015620002175784840186015181850187015292850192620001f8565b828411156200022857868684830101525b98975050505050505050565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611c1380620002976000396000f3fe608060405234801561001057600080fd5b50600436106100ce5760003560e01c8063715018a61161008c578063b155d7fa11610066578063b155d7fa146101bf578063e985e9c5146101c7578063f242432a14610203578063f2fde38b14610216576100ce565b8063715018a6146101845780638da5cb5b1461018c578063a22cb465146101ac576100ce565b8062fdd58e146100d357806301ffc9a7146100f95780630e89341c1461011c5780632eb2c2d61461013c5780634e1273f41461015157806355f804b314610171575b600080fd5b6100e66100e13660046114dc565b610229565b6040519081526020015b60405180910390f35b61010c6101073660046115d0565b6102c0565b60405190151581526020016100f0565b61012f61012a36600461164e565b610314565b6040516100f09190611869565b61014f61014a366004611399565b610373565b005b61016461015f366004611505565b61063a565b6040516100f09190611831565b61014f61017f366004611608565b61079c565b61014f6107d7565b610194610850565b6040516001600160a01b0390911681526020016100f0565b61014f6101ba3660046114a2565b610860565b61014f610944565b61010c6101d5366004611367565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61014f61021136600461143f565b610abb565b61014f61022436600461134d565b610c4d565b60006001600160a01b03831661029a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806102f157506001600160e01b031982166303a24d0760e21b145b8061030c57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b606060006002805461032590611a45565b905011610341576040518060200160405280600081525061030c565b600261034c83610d3d565b60405160200161035d9291906116e8565b6040516020818303038152906040529050919050565b81518351146103d55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610291565b6001600160a01b0384166103fb5760405162461bcd60e51b8152600401610291906118c4565b6001600160a01b038516331480610417575061041785336101d5565b61047e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610291565b3360005b84518110156105cc5760008582815181106104ad57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008583815181106104d957634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156105295760405162461bcd60e51b815260040161029190611909565b61053382826119fe565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546105b191906119d2565b92505081905550505050806105c590611aad565b9050610482565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161061c929190611844565b60405180910390a4610632818787878787610e60565b505050505050565b6060815183511461069f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610291565b6000835167ffffffffffffffff8111156106c957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156106f2578160200160208202803683370190505b50905060005b84518110156107945761075985828151811061072457634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061074c57634e487b7160e01b600052603260045260246000fd5b6020026020010151610229565b82828151811061077957634e487b7160e01b600052603260045260246000fd5b602090810291909101015261078d81611aad565b90506106f8565b509392505050565b336107a5610850565b6001600160a01b0316146107cb5760405162461bcd60e51b815260040161029190611953565b6107d481610fcb565b50565b336107e0610850565b6001600160a01b0316146108065760405162461bcd60e51b815260040161029190611953565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6003546001600160a01b03165b90565b336001600160a01b03831614156108cb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610291565b3360008181526001602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610938911515815260200190565b60405180910390a35050565b60035461ffff600160b01b82048116600160a01b90920416106109b35760405162461bcd60e51b815260206004820152602160248201527f4d617820746f6b656e20616d6f756e7420686173206265656e207265616368656044820152601960fa1b6064820152608401610291565b6001600360148282829054906101000a900461ffff166109d391906119ac565b92506101000a81548161ffff021916908361ffff16021790555060006064610a48336040516bffffffffffffffffffffffff19606083901b1660208201524460348201524260548201524340607482015260009060940160408051601f19818403018152919052805160209091012092915050565b610a529190611ac8565b9050600060338210158015610a685750604d8211155b15610a71575060015b604e8210158015610a83575060608211155b15610a8c575060025b60618210158015610a9e575060638211155b15610aa7575060035b6060610ab63383600184610fe2565b505050565b6001600160a01b038416610ae15760405162461bcd60e51b8152600401610291906118c4565b6001600160a01b038516331480610afd5750610afd85336101d5565b610b5b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610291565b6000838152602081815260408083206001600160a01b0389168452909152902054339083811015610b9e5760405162461bcd60e51b815260040161029190611909565b610ba884826119fe565b6000868152602081815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290610be49084906119d2565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c448288888888886110db565b50505050505050565b33610c56610850565b6001600160a01b031614610c7c5760405162461bcd60e51b815260040161029190611953565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610291565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b606081610d6257506040805180820190915260018152600360fc1b602082015261030f565b8160005b8115610d8c5780610d7681611aad565b9150610d859050600a836119ea565b9150610d66565b60008167ffffffffffffffff811115610db557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610ddf576020820181803683370190505b5090505b8415610e5857610df46001836119fe565b9150610e01600a86611ac8565b610e0c9060306119d2565b60f81b818381518110610e2f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610e51600a866119ea565b9450610de3565b949350505050565b6001600160a01b0384163b156106325760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610ea4908990899088908890889060040161178e565b602060405180830381600087803b158015610ebe57600080fd5b505af1925050508015610eee575060408051601f3d908101601f19168201909252610eeb918101906115ec565b60015b610f9b57610efa611b1e565b806308c379a01415610f345750610f0f611b35565b80610f1a5750610f36565b8060405162461bcd60e51b81526004016102919190611869565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610291565b6001600160e01b0319811663bc197c8160e01b14610c445760405162461bcd60e51b81526004016102919061187c565b8051610fde9060029060208401906111a5565b5050565b6001600160a01b0384166110425760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610291565b6000838152602081815260408083206001600160a01b03881684529091528120805433928592916110749084906119d2565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110d4816000878787876110db565b5050505050565b6001600160a01b0384163b156106325760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061111f90899089908890889088906004016117ec565b602060405180830381600087803b15801561113957600080fd5b505af1925050508015611169575060408051601f3d908101601f19168201909252611166918101906115ec565b60015b61117557610efa611b1e565b6001600160e01b0319811663f23a6e6160e01b14610c445760405162461bcd60e51b81526004016102919061187c565b8280546111b190611a45565b90600052602060002090601f0160209004810192826111d35760008555611219565b82601f106111ec57805160ff1916838001178555611219565b82800160010185558215611219579182015b828111156112195782518255916020019190600101906111fe565b50611225929150611229565b5090565b5b80821115611225576000815560010161122a565b600067ffffffffffffffff83111561125857611258611b08565b60405161126f601f8501601f191660200182611a80565b80915083815284848401111561128457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461030f57600080fd5b600082601f8301126112c3578081fd5b813560206112d082611988565b6040516112dd8282611a80565b8381528281019150858301600585901b870184018810156112fc578586fd5b855b8581101561131a578135845292840192908401906001016112fe565b5090979650505050505050565b600082601f830112611337578081fd5b6113468383356020850161123e565b9392505050565b60006020828403121561135e578081fd5b6113468261129c565b60008060408385031215611379578081fd5b6113828361129c565b91506113906020840161129c565b90509250929050565b600080600080600060a086880312156113b0578081fd5b6113b98661129c565b94506113c76020870161129c565b9350604086013567ffffffffffffffff808211156113e3578283fd5b6113ef89838a016112b3565b94506060880135915080821115611404578283fd5b61141089838a016112b3565b93506080880135915080821115611425578283fd5b5061143288828901611327565b9150509295509295909350565b600080600080600060a08688031215611456578081fd5b61145f8661129c565b945061146d6020870161129c565b93506040860135925060608601359150608086013567ffffffffffffffff811115611496578182fd5b61143288828901611327565b600080604083850312156114b4578182fd5b6114bd8361129c565b9150602083013580151581146114d1578182fd5b809150509250929050565b600080604083850312156114ee578182fd5b6114f78361129c565b946020939093013593505050565b60008060408385031215611517578182fd5b823567ffffffffffffffff8082111561152e578384fd5b818501915085601f830112611541578384fd5b8135602061154e82611988565b60405161155b8282611a80565b8381528281019150858301600585901b870184018b101561157a578889fd5b8896505b848710156115a35761158f8161129c565b83526001969096019591830191830161157e565b50965050860135925050808211156115b9578283fd5b506115c6858286016112b3565b9150509250929050565b6000602082840312156115e1578081fd5b813561134681611bc7565b6000602082840312156115fd578081fd5b815161134681611bc7565b600060208284031215611619578081fd5b813567ffffffffffffffff81111561162f578182fd5b8201601f8101841361163f578182fd5b610e588482356020840161123e565b60006020828403121561165f578081fd5b5035919050565b6000815180845260208085019450808401835b8381101561169557815187529582019590820190600101611679565b509495945050505050565b600081518084526116b8816020860160208601611a15565b601f01601f19169290920160200192915050565b600081516116de818560208601611a15565b9290920192915050565b600080845482600182811c91508083168061170457607f831692505b602080841082141561172457634e487b7160e01b87526022600452602487fd5b818015611738576001811461174957611775565b60ff19861689528489019650611775565b60008b815260209020885b8681101561176d5781548b820152908501908301611754565b505084890196505b50505050505061178581856116cc565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906117ba90830186611666565b82810360608401526117cc8186611666565b905082810360808401526117e081856116a0565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611826908301846116a0565b979650505050505050565b6000602082526113466020830184611666565b6000604082526118576040830185611666565b82810360208401526117858185611666565b60006020825261134660208301846116a0565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156119a2576119a2611b08565b5060051b60200190565b600061ffff8083168185168083038211156119c9576119c9611adc565b01949350505050565b600082198211156119e5576119e5611adc565b500190565b6000826119f9576119f9611af2565b500490565b600082821015611a1057611a10611adc565b500390565b60005b83811015611a30578181015183820152602001611a18565b83811115611a3f576000848401525b50505050565b600181811c90821680611a5957607f821691505b60208210811415611a7a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611aa657611aa6611b08565b6040525050565b6000600019821415611ac157611ac1611adc565b5060010190565b600082611ad757611ad7611af2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561085d57600481823e5160e01c90565b600060443d1015611b455761085d565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611b7757505050505061085d565b8285019150815181811115611b915750505050505061085d565b843d8701016020828501011115611bad5750505050505061085d565b611bbc60208286010187611a80565b509094505050505090565b6001600160e01b0319811681146107d457600080fdfea26469706673582212201284677d3adcf4d53c6943f483cc67969572dbb237cedeb44180e922defec1cc64736f6c634300080300330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f687970652e6172742f746f6b656e732f0000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ce5760003560e01c8063715018a61161008c578063b155d7fa11610066578063b155d7fa146101bf578063e985e9c5146101c7578063f242432a14610203578063f2fde38b14610216576100ce565b8063715018a6146101845780638da5cb5b1461018c578063a22cb465146101ac576100ce565b8062fdd58e146100d357806301ffc9a7146100f95780630e89341c1461011c5780632eb2c2d61461013c5780634e1273f41461015157806355f804b314610171575b600080fd5b6100e66100e13660046114dc565b610229565b6040519081526020015b60405180910390f35b61010c6101073660046115d0565b6102c0565b60405190151581526020016100f0565b61012f61012a36600461164e565b610314565b6040516100f09190611869565b61014f61014a366004611399565b610373565b005b61016461015f366004611505565b61063a565b6040516100f09190611831565b61014f61017f366004611608565b61079c565b61014f6107d7565b610194610850565b6040516001600160a01b0390911681526020016100f0565b61014f6101ba3660046114a2565b610860565b61014f610944565b61010c6101d5366004611367565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61014f61021136600461143f565b610abb565b61014f61022436600461134d565b610c4d565b60006001600160a01b03831661029a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806102f157506001600160e01b031982166303a24d0760e21b145b8061030c57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b606060006002805461032590611a45565b905011610341576040518060200160405280600081525061030c565b600261034c83610d3d565b60405160200161035d9291906116e8565b6040516020818303038152906040529050919050565b81518351146103d55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610291565b6001600160a01b0384166103fb5760405162461bcd60e51b8152600401610291906118c4565b6001600160a01b038516331480610417575061041785336101d5565b61047e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610291565b3360005b84518110156105cc5760008582815181106104ad57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008583815181106104d957634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156105295760405162461bcd60e51b815260040161029190611909565b61053382826119fe565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546105b191906119d2565b92505081905550505050806105c590611aad565b9050610482565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161061c929190611844565b60405180910390a4610632818787878787610e60565b505050505050565b6060815183511461069f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610291565b6000835167ffffffffffffffff8111156106c957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156106f2578160200160208202803683370190505b50905060005b84518110156107945761075985828151811061072457634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061074c57634e487b7160e01b600052603260045260246000fd5b6020026020010151610229565b82828151811061077957634e487b7160e01b600052603260045260246000fd5b602090810291909101015261078d81611aad565b90506106f8565b509392505050565b336107a5610850565b6001600160a01b0316146107cb5760405162461bcd60e51b815260040161029190611953565b6107d481610fcb565b50565b336107e0610850565b6001600160a01b0316146108065760405162461bcd60e51b815260040161029190611953565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6003546001600160a01b03165b90565b336001600160a01b03831614156108cb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610291565b3360008181526001602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610938911515815260200190565b60405180910390a35050565b60035461ffff600160b01b82048116600160a01b90920416106109b35760405162461bcd60e51b815260206004820152602160248201527f4d617820746f6b656e20616d6f756e7420686173206265656e207265616368656044820152601960fa1b6064820152608401610291565b6001600360148282829054906101000a900461ffff166109d391906119ac565b92506101000a81548161ffff021916908361ffff16021790555060006064610a48336040516bffffffffffffffffffffffff19606083901b1660208201524460348201524260548201524340607482015260009060940160408051601f19818403018152919052805160209091012092915050565b610a529190611ac8565b9050600060338210158015610a685750604d8211155b15610a71575060015b604e8210158015610a83575060608211155b15610a8c575060025b60618210158015610a9e575060638211155b15610aa7575060035b6060610ab63383600184610fe2565b505050565b6001600160a01b038416610ae15760405162461bcd60e51b8152600401610291906118c4565b6001600160a01b038516331480610afd5750610afd85336101d5565b610b5b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610291565b6000838152602081815260408083206001600160a01b0389168452909152902054339083811015610b9e5760405162461bcd60e51b815260040161029190611909565b610ba884826119fe565b6000868152602081815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290610be49084906119d2565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c448288888888886110db565b50505050505050565b33610c56610850565b6001600160a01b031614610c7c5760405162461bcd60e51b815260040161029190611953565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610291565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b606081610d6257506040805180820190915260018152600360fc1b602082015261030f565b8160005b8115610d8c5780610d7681611aad565b9150610d859050600a836119ea565b9150610d66565b60008167ffffffffffffffff811115610db557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610ddf576020820181803683370190505b5090505b8415610e5857610df46001836119fe565b9150610e01600a86611ac8565b610e0c9060306119d2565b60f81b818381518110610e2f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610e51600a866119ea565b9450610de3565b949350505050565b6001600160a01b0384163b156106325760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610ea4908990899088908890889060040161178e565b602060405180830381600087803b158015610ebe57600080fd5b505af1925050508015610eee575060408051601f3d908101601f19168201909252610eeb918101906115ec565b60015b610f9b57610efa611b1e565b806308c379a01415610f345750610f0f611b35565b80610f1a5750610f36565b8060405162461bcd60e51b81526004016102919190611869565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610291565b6001600160e01b0319811663bc197c8160e01b14610c445760405162461bcd60e51b81526004016102919061187c565b8051610fde9060029060208401906111a5565b5050565b6001600160a01b0384166110425760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610291565b6000838152602081815260408083206001600160a01b03881684529091528120805433928592916110749084906119d2565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110d4816000878787876110db565b5050505050565b6001600160a01b0384163b156106325760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061111f90899089908890889088906004016117ec565b602060405180830381600087803b15801561113957600080fd5b505af1925050508015611169575060408051601f3d908101601f19168201909252611166918101906115ec565b60015b61117557610efa611b1e565b6001600160e01b0319811663f23a6e6160e01b14610c445760405162461bcd60e51b81526004016102919061187c565b8280546111b190611a45565b90600052602060002090601f0160209004810192826111d35760008555611219565b82601f106111ec57805160ff1916838001178555611219565b82800160010185558215611219579182015b828111156112195782518255916020019190600101906111fe565b50611225929150611229565b5090565b5b80821115611225576000815560010161122a565b600067ffffffffffffffff83111561125857611258611b08565b60405161126f601f8501601f191660200182611a80565b80915083815284848401111561128457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461030f57600080fd5b600082601f8301126112c3578081fd5b813560206112d082611988565b6040516112dd8282611a80565b8381528281019150858301600585901b870184018810156112fc578586fd5b855b8581101561131a578135845292840192908401906001016112fe565b5090979650505050505050565b600082601f830112611337578081fd5b6113468383356020850161123e565b9392505050565b60006020828403121561135e578081fd5b6113468261129c565b60008060408385031215611379578081fd5b6113828361129c565b91506113906020840161129c565b90509250929050565b600080600080600060a086880312156113b0578081fd5b6113b98661129c565b94506113c76020870161129c565b9350604086013567ffffffffffffffff808211156113e3578283fd5b6113ef89838a016112b3565b94506060880135915080821115611404578283fd5b61141089838a016112b3565b93506080880135915080821115611425578283fd5b5061143288828901611327565b9150509295509295909350565b600080600080600060a08688031215611456578081fd5b61145f8661129c565b945061146d6020870161129c565b93506040860135925060608601359150608086013567ffffffffffffffff811115611496578182fd5b61143288828901611327565b600080604083850312156114b4578182fd5b6114bd8361129c565b9150602083013580151581146114d1578182fd5b809150509250929050565b600080604083850312156114ee578182fd5b6114f78361129c565b946020939093013593505050565b60008060408385031215611517578182fd5b823567ffffffffffffffff8082111561152e578384fd5b818501915085601f830112611541578384fd5b8135602061154e82611988565b60405161155b8282611a80565b8381528281019150858301600585901b870184018b101561157a578889fd5b8896505b848710156115a35761158f8161129c565b83526001969096019591830191830161157e565b50965050860135925050808211156115b9578283fd5b506115c6858286016112b3565b9150509250929050565b6000602082840312156115e1578081fd5b813561134681611bc7565b6000602082840312156115fd578081fd5b815161134681611bc7565b600060208284031215611619578081fd5b813567ffffffffffffffff81111561162f578182fd5b8201601f8101841361163f578182fd5b610e588482356020840161123e565b60006020828403121561165f578081fd5b5035919050565b6000815180845260208085019450808401835b8381101561169557815187529582019590820190600101611679565b509495945050505050565b600081518084526116b8816020860160208601611a15565b601f01601f19169290920160200192915050565b600081516116de818560208601611a15565b9290920192915050565b600080845482600182811c91508083168061170457607f831692505b602080841082141561172457634e487b7160e01b87526022600452602487fd5b818015611738576001811461174957611775565b60ff19861689528489019650611775565b60008b815260209020885b8681101561176d5781548b820152908501908301611754565b505084890196505b50505050505061178581856116cc565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906117ba90830186611666565b82810360608401526117cc8186611666565b905082810360808401526117e081856116a0565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611826908301846116a0565b979650505050505050565b6000602082526113466020830184611666565b6000604082526118576040830185611666565b82810360208401526117858185611666565b60006020825261134660208301846116a0565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156119a2576119a2611b08565b5060051b60200190565b600061ffff8083168185168083038211156119c9576119c9611adc565b01949350505050565b600082198211156119e5576119e5611adc565b500190565b6000826119f9576119f9611af2565b500490565b600082821015611a1057611a10611adc565b500390565b60005b83811015611a30578181015183820152602001611a18565b83811115611a3f576000848401525b50505050565b600181811c90821680611a5957607f821691505b60208210811415611a7a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611aa657611aa6611b08565b6040525050565b6000600019821415611ac157611ac1611adc565b5060010190565b600082611ad757611ad7611af2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561085d57600481823e5160e01c90565b600060443d1015611b455761085d565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611b7757505050505061085d565b8285019150815181811115611b915750505050505061085d565b843d8701016020828501011115611bad5750505050505061085d565b611bbc60208286010187611a80565b509094505050505090565b6001600160e01b0319811681146107d457600080fdfea26469706673582212201284677d3adcf4d53c6943f483cc67969572dbb237cedeb44180e922defec1cc64736f6c63430008030033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f687970652e6172742f746f6b656e732f0000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://hype.art/tokens/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [2] : 68747470733a2f2f687970652e6172742f746f6b656e732f0000000000000000


Deployed Bytecode Sourcemap

34582:853:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21226:231;;;;;;:::i;:::-;;:::i;:::-;;;17975:25:1;;;17963:2;17948:18;21226:231:0;;;;;;;;20150:297;;;;;;:::i;:::-;;:::i;:::-;;;11889:14:1;;11882:22;11864:41;;11852:2;11837:18;20150:297:0;11819:92:1;20858:217:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23803:1149::-;;;;;;:::i;:::-;;:::i;:::-;;21623:549;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35342:90::-;;;;;;:::i;:::-;;:::i;33790:148::-;;;:::i;33139:87::-;;;:::i;:::-;;;-1:-1:-1;;;;;9548:32:1;;;9530:51;;9518:2;9503:18;33139:87:0;9485:102:1;22245:311:0;;;;;;:::i;:::-;;:::i;34758:576::-;;;:::i;22628:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;22751:27:0;;;22727:4;22751:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;22628:168;22868:858;;;;;;:::i;:::-;;:::i;34093:244::-;;;;;;:::i;:::-;;:::i;21226:231::-;21312:7;-1:-1:-1;;;;;21340:21:0;;21332:77;;;;-1:-1:-1;;;21332:77:0;;13172:2:1;21332:77:0;;;13154:21:1;13211:2;13191:18;;;13184:30;13250:34;13230:18;;;13223:62;-1:-1:-1;;;13301:18:1;;;13294:41;13352:19;;21332:77:0;;;;;;;;;-1:-1:-1;21427:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;21427:22:0;;;;;;;;;;;;21226:231::o;20150:297::-;20252:4;-1:-1:-1;;;;;;20276:41:0;;-1:-1:-1;;;20276:41:0;;:110;;-1:-1:-1;;;;;;;20334:52:0;;-1:-1:-1;;;20334:52:0;20276:110;:163;;;-1:-1:-1;;;;;;;;;;1620:40:0;;;20403:36;20269:170;;20150:297;;;;:::o;20858:217::-;20928:13;20982:1;20967:4;20961:18;;;;;:::i;:::-;;;:22;:106;;;;;;;;;;;;;;;;;21023:4;21029:18;:7;:16;:18::i;:::-;21006:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20954:113;;20858:217;;;:::o;23803:1149::-;24051:7;:14;24037:3;:10;:28;24029:81;;;;-1:-1:-1;;;24029:81:0;;17220:2:1;24029:81:0;;;17202:21:1;17259:2;17239:18;;;17232:30;17298:34;17278:18;;;17271:62;-1:-1:-1;;;17349:18:1;;;17342:38;17397:19;;24029:81:0;17192:230:1;24029:81:0;-1:-1:-1;;;;;24129:16:0;;24121:66;;;;-1:-1:-1;;;24121:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24220:20:0;;2294:10;24220:20;;:60;;-1:-1:-1;24244:36:0;24261:4;2294:10;24267:12;2214:98;24244:36;24198:160;;;;-1:-1:-1;;;24198:160:0;;15209:2:1;24198:160:0;;;15191:21:1;15248:2;15228:18;;;15221:30;15287:34;15267:18;;;15260:62;-1:-1:-1;;;15338:18:1;;;15331:48;15396:19;;24198:160:0;15181:240:1;24198:160:0;2294:10;24371:16;24415:377;24439:3;:10;24435:1;:14;24415:377;;;24471:10;24484:3;24488:1;24484:6;;;;;;-1:-1:-1;;;24484:6:0;;;;;;;;;;;;;;;24471:19;;24505:14;24522:7;24530:1;24522:10;;;;;;-1:-1:-1;;;24522:10:0;;;;;;;;;;;;;;;;;;;;24549:19;24571:13;;;;;;;;;;-1:-1:-1;;;;;24571:19:0;;;;;;;;;;;;24522:10;;-1:-1:-1;24613:21:0;;;;24605:76;;;;-1:-1:-1;;;24605:76:0;;;;;;;:::i;:::-;24718:20;24732:6;24718:11;:20;:::i;:::-;24696:9;:13;24706:2;24696:13;;;;;;;;;;;:19;24710:4;-1:-1:-1;;;;;24696:19:0;-1:-1:-1;;;;;24696:19:0;;;;;;;;;;;;:42;;;;24774:6;24753:9;:13;24763:2;24753:13;;;;;;;;;;;:17;24767:2;-1:-1:-1;;;;;24753:17:0;-1:-1:-1;;;;;24753:17:0;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24415:377;;;24451:3;;;;:::i;:::-;;;24415:377;;;;24839:2;-1:-1:-1;;;;;24809:47:0;24833:4;-1:-1:-1;;;;;24809:47:0;24823:8;-1:-1:-1;;;;;24809:47:0;;24843:3;24848:7;24809:47;;;;;;;:::i;:::-;;;;;;;;24869:75;24905:8;24915:4;24921:2;24925:3;24930:7;24939:4;24869:35;:75::i;:::-;23803:1149;;;;;;:::o;21623:549::-;21804:16;21865:3;:10;21846:8;:15;:29;21838:83;;;;-1:-1:-1;;;21838:83:0;;16810:2:1;21838:83:0;;;16792:21:1;16849:2;16829:18;;;16822:30;16888:34;16868:18;;;16861:62;-1:-1:-1;;;16939:18:1;;;16932:39;16988:19;;21838:83:0;16782:231:1;21838:83:0;21934:30;21981:8;:15;21967:30;;;;;;-1:-1:-1;;;21967:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21967:30:0;;21934:63;;22015:9;22010:122;22034:8;:15;22030:1;:19;22010:122;;;22090:30;22100:8;22109:1;22100:11;;;;;;-1:-1:-1;;;22100:11:0;;;;;;;;;;;;;;;22113:3;22117:1;22113:6;;;;;;-1:-1:-1;;;22113:6:0;;;;;;;;;;;;;;;22090:9;:30::i;:::-;22071:13;22085:1;22071:16;;;;;;-1:-1:-1;;;22071:16:0;;;;;;;;;;;;;;;;;;:49;22051:3;;;:::i;:::-;;;22010:122;;;-1:-1:-1;22151:13:0;21623:549;-1:-1:-1;;;21623:549:0:o;35342:90::-;2294:10;33359:7;:5;:7::i;:::-;-1:-1:-1;;;;;33359:23:0;;33351:68;;;;-1:-1:-1;;;33351:68:0;;;;;;;:::i;:::-;35411:13:::1;35419:4;35411:7;:13::i;:::-;35342:90:::0;:::o;33790:148::-;2294:10;33359:7;:5;:7::i;:::-;-1:-1:-1;;;;;33359:23:0;;33351:68;;;;-1:-1:-1;;;33351:68:0;;;;;;;:::i;:::-;33881:6:::1;::::0;33860:40:::1;::::0;33897:1:::1;::::0;-1:-1:-1;;;;;33881:6:0::1;::::0;33860:40:::1;::::0;33897:1;;33860:40:::1;33911:6;:19:::0;;-1:-1:-1;;;;;;33911:19:0::1;::::0;;33790:148::o;33139:87::-;33212:6;;-1:-1:-1;;;;;33212:6:0;33139:87;;:::o;22245:311::-;2294:10;-1:-1:-1;;;;;22348:24:0;;;;22340:78;;;;-1:-1:-1;;;22340:78:0;;16400:2:1;22340:78:0;;;16382:21:1;16439:2;16419:18;;;16412:30;16478:34;16458:18;;;16451:62;-1:-1:-1;;;16529:18:1;;;16522:39;16578:19;;22340:78:0;16372:231:1;22340:78:0;2294:10;22431:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22431:42:0;;;;;;;;;;:53;;-1:-1:-1;;22431:53:0;;;;;;;:42;-1:-1:-1;;;;;22500:48:0;;22539:8;22500:48;;;;11889:14:1;11882:22;11864:41;;11852:2;11837:18;;11819:92;22500:48:0;;;;;;;;22245:311;;:::o;34758:576::-;34822:9;;;-1:-1:-1;;;34822:9:0;;;;-1:-1:-1;;;34808:11:0;;;;:23;34800:69;;;;-1:-1:-1;;;34800:69:0;;13991:2:1;34800:69:0;;;13973:21:1;14030:2;14010:18;;;14003:30;14069:34;14049:18;;;14042:62;-1:-1:-1;;;14120:18:1;;;14113:31;14161:19;;34800:69:0;13963:223:1;34800:69:0;34895:1;34880:11;;:16;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34917:19;34962:3;34939:20;34948:10;34481:84;;-1:-1:-1;;8004:2:1;8000:15;;;7996:53;34481:84:0;;;7984:66:1;34506:16:0;8066:12:1;;;8059:28;34524:15:0;8103:12:1;;;8096:28;34551:12:0;34541:23;8140:12:1;;;8133:28;34439:7:0;;8177:13:1;;34481:84:0;;;-1:-1:-1;;34481:84:0;;;;;;;;;34471:95;;34481:84;34471:95;;;;;34382:193;-1:-1:-1;;34382:193:0;34939:20;:26;;;;:::i;:::-;34917:48;;34976:10;35016:2;35001:11;:17;;:38;;;;;35037:2;35022:11;:17;;35001:38;34997:77;;;-1:-1:-1;35061:1:0;34997:77;35103:2;35088:11;:17;;:38;;;;;35124:2;35109:11;:17;;35088:38;35084:77;;;-1:-1:-1;35148:1:0;35084:77;35190:2;35175:11;:17;;:38;;;;;35211:2;35196:11;:17;;35175:38;35171:77;;;-1:-1:-1;35235:1:0;35171:77;35268:17;35296:30;35302:10;35314:2;35318:1;35321:4;35296:5;:30::i;:::-;34758:576;;;:::o;22868:858::-;-1:-1:-1;;;;;23077:16:0;;23069:66;;;;-1:-1:-1;;;23069:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23168:20:0;;2294:10;23168:20;;:60;;-1:-1:-1;23192:36:0;23209:4;2294:10;23215:12;2214:98;23192:36;23146:151;;;;-1:-1:-1;;;23146:151:0;;14393:2:1;23146:151:0;;;14375:21:1;14432:2;14412:18;;;14405:30;14471:34;14451:18;;;14444:62;-1:-1:-1;;;14522:18:1;;;14515:39;14571:19;;23146:151:0;14365:231:1;23146:151:0;23310:16;23376:13;;;;;;;;;;;-1:-1:-1;;;;;23376:19:0;;;;;;;;;;2294:10;;23414:21;;;;23406:76;;;;-1:-1:-1;;;23406:76:0;;;;;;;:::i;:::-;23515:20;23529:6;23515:11;:20;:::i;:::-;23493:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23493:19:0;;;;;;;;;;:42;;;;23546:17;;;;;;;:27;;23567:6;;23493:9;23546:27;;23567:6;;23546:27;:::i;:::-;;;;-1:-1:-1;;23591:46:0;;;18185:25:1;;;18241:2;18226:18;;18219:34;;;-1:-1:-1;;;;;23591:46:0;;;;;;;;;;;;;;18158:18:1;23591:46:0;;;;;;;23650:68;23681:8;23691:4;23697:2;23701;23705:6;23713:4;23650:30;:68::i;:::-;22868:858;;;;;;;:::o;34093:244::-;2294:10;33359:7;:5;:7::i;:::-;-1:-1:-1;;;;;33359:23:0;;33351:68;;;;-1:-1:-1;;;33351:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34182:22:0;::::1;34174:73;;;::::0;-1:-1:-1;;;34174:73:0;;13584:2:1;34174:73:0::1;::::0;::::1;13566:21:1::0;13623:2;13603:18;;;13596:30;13662:34;13642:18;;;13635:62;-1:-1:-1;;;13713:18:1;;;13706:36;13759:19;;34174:73:0::1;13556:228:1::0;34174:73:0::1;34284:6;::::0;34263:38:::1;::::0;-1:-1:-1;;;;;34263:38:0;;::::1;::::0;34284:6:::1;::::0;34263:38:::1;::::0;34284:6:::1;::::0;34263:38:::1;34312:6;:17:::0;;-1:-1:-1;;;;;;34312:17:0::1;-1:-1:-1::0;;;;;34312:17:0;;;::::1;::::0;;;::::1;::::0;;34093:244::o;17439:723::-;17495:13;17716:10;17712:53;;-1:-1:-1;17743:10:0;;;;;;;;;;;;-1:-1:-1;;;17743:10:0;;;;;;17712:53;17790:5;17775:12;17831:78;17838:9;;17831:78;;17864:8;;;;:::i;:::-;;-1:-1:-1;17887:10:0;;-1:-1:-1;17895:2:0;17887:10;;:::i;:::-;;;17831:78;;;17919:19;17951:6;17941:17;;;;;;-1:-1:-1;;;17941:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17941:17:0;;17919:39;;17969:154;17976:10;;17969:154;;18003:11;18013:1;18003:11;;:::i;:::-;;-1:-1:-1;18072:10:0;18080:2;18072:5;:10;:::i;:::-;18059:24;;:2;:24;:::i;:::-;18046:39;;18029:6;18036;18029:14;;;;;;-1:-1:-1;;;18029:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18029:56:0;;;;;;;;-1:-1:-1;18100:11:0;18109:2;18100:11;;:::i;:::-;;;17969:154;;;18147:6;17439:723;-1:-1:-1;;;;17439:723:0:o;31119:799::-;-1:-1:-1;;;;;31373:13:0;;3610:20;3649:8;31369:542;;31409:79;;-1:-1:-1;;;31409:79:0;;-1:-1:-1;;;;;31409:43:0;;;;;:79;;31453:8;;31463:4;;31469:3;;31474:7;;31483:4;;31409:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31409:79:0;;;;;;;;-1:-1:-1;;31409:79:0;;;;;;;;;;;;:::i;:::-;;;31405:495;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;31773:6;31766:14;;-1:-1:-1;;;31766:14:0;;;;;;;;:::i;31405:495::-;;;31822:62;;-1:-1:-1;;;31822:62:0;;12342:2:1;31822:62:0;;;12324:21:1;12381:2;12361:18;;;12354:30;12420:34;12400:18;;;12393:62;-1:-1:-1;;;12471:18:1;;;12464:50;12531:19;;31822:62:0;12314:242:1;31405:495:0;-1:-1:-1;;;;;;31538:64:0;;-1:-1:-1;;;31538:64:0;31534:163;;31627:50;;-1:-1:-1;;;31627:50:0;;;;;;;:::i;25796:88::-;25863:13;;;;:4;;:13;;;;;:::i;:::-;;25796:88;:::o;26285:436::-;-1:-1:-1;;;;;26400:21:0;;26392:67;;;;-1:-1:-1;;;26392:67:0;;17629:2:1;26392:67:0;;;17611:21:1;17668:2;17648:18;;;17641:30;17707:34;17687:18;;;17680:62;-1:-1:-1;;;17758:18:1;;;17751:31;17799:19;;26392:67:0;17601:223:1;26392:67:0;26472:16;26516:13;;;;;;;;;;;-1:-1:-1;;;;;26516:22:0;;;;;;;;;:32;;2294:10;;26542:6;;26516:22;:32;;26542:6;;26516:32;:::i;:::-;;;;-1:-1:-1;;26564:57:0;;;18185:25:1;;;18241:2;18226:18;;18219:34;;;-1:-1:-1;;;;;26564:57:0;;;;26597:1;;26564:57;;;;;;18158:18:1;26564:57:0;;;;;;;26634:79;26665:8;26683:1;26687:7;26696:2;26700:6;26708:4;26634:30;:79::i;:::-;26285:436;;;;;:::o;30349:762::-;-1:-1:-1;;;;;30578:13:0;;3610:20;3649:8;30574:530;;30614:72;;-1:-1:-1;;;30614:72:0;;-1:-1:-1;;;;;30614:38:0;;;;;:72;;30653:8;;30663:4;;30669:2;;30673:6;;30681:4;;30614:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30614:72:0;;;;;;;;-1:-1:-1;;30614:72:0;;;;;;;;;;;;:::i;:::-;;;30610:483;;;;:::i;:::-;-1:-1:-1;;;;;;30736:59:0;;-1:-1:-1;;;30736:59:0;30732:158;;30820:50;;-1:-1:-1;;;30820:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:2;;;369:1;366;359:12;328:2;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;88:394;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:2;;650:1;647;640:12;665:755;;772:3;765:4;757:6;753:17;749:27;739:2;;794:5;787;780:20;739:2;834:6;821:20;860:4;883:43;923:2;883:43;:::i;:::-;955:2;949:9;967:31;995:2;987:6;967:31;:::i;:::-;1033:18;;;1067:15;;;;-1:-1:-1;1102:15:1;;;1152:1;1148:10;;;1136:23;;1132:32;;1129:41;-1:-1:-1;1126:2:1;;;1187:5;1180;1173:20;1126:2;1213:5;1227:163;1241:2;1238:1;1235:9;1227:163;;;1298:17;;1286:30;;1336:12;;;;1368;;;;1259:1;1252:9;1227:163;;;-1:-1:-1;1408:6:1;;729:691;-1:-1:-1;;;;;;;729:691:1:o;1425:228::-;;1520:3;1513:4;1505:6;1501:17;1497:27;1487:2;;1542:5;1535;1528:20;1487:2;1568:79;1643:3;1634:6;1621:20;1614:4;1606:6;1602:17;1568:79;:::i;:::-;1559:88;1477:176;-1:-1:-1;;;1477:176:1:o;1658:196::-;;1770:2;1758:9;1749:7;1745:23;1741:32;1738:2;;;1791:6;1783;1776:22;1738:2;1819:29;1838:9;1819:29;:::i;1859:270::-;;;1988:2;1976:9;1967:7;1963:23;1959:32;1956:2;;;2009:6;2001;1994:22;1956:2;2037:29;2056:9;2037:29;:::i;:::-;2027:39;;2085:38;2119:2;2108:9;2104:18;2085:38;:::i;:::-;2075:48;;1946:183;;;;;:::o;2134:983::-;;;;;;2373:3;2361:9;2352:7;2348:23;2344:33;2341:2;;;2395:6;2387;2380:22;2341:2;2423:29;2442:9;2423:29;:::i;:::-;2413:39;;2471:38;2505:2;2494:9;2490:18;2471:38;:::i;:::-;2461:48;;2560:2;2549:9;2545:18;2532:32;2583:18;2624:2;2616:6;2613:14;2610:2;;;2645:6;2637;2630:22;2610:2;2673:61;2726:7;2717:6;2706:9;2702:22;2673:61;:::i;:::-;2663:71;;2787:2;2776:9;2772:18;2759:32;2743:48;;2816:2;2806:8;2803:16;2800:2;;;2837:6;2829;2822:22;2800:2;2865:63;2920:7;2909:8;2898:9;2894:24;2865:63;:::i;:::-;2855:73;;2981:3;2970:9;2966:19;2953:33;2937:49;;3011:2;3001:8;2998:16;2995:2;;;3032:6;3024;3017:22;2995:2;;3060:51;3103:7;3092:8;3081:9;3077:24;3060:51;:::i;:::-;3050:61;;;2331:786;;;;;;;;:::o;3122:626::-;;;;;;3311:3;3299:9;3290:7;3286:23;3282:33;3279:2;;;3333:6;3325;3318:22;3279:2;3361:29;3380:9;3361:29;:::i;:::-;3351:39;;3409:38;3443:2;3432:9;3428:18;3409:38;:::i;:::-;3399:48;;3494:2;3483:9;3479:18;3466:32;3456:42;;3545:2;3534:9;3530:18;3517:32;3507:42;;3600:3;3589:9;3585:19;3572:33;3628:18;3620:6;3617:30;3614:2;;;3665:6;3657;3650:22;3614:2;3693:49;3734:7;3725:6;3714:9;3710:22;3693:49;:::i;3753:367::-;;;3879:2;3867:9;3858:7;3854:23;3850:32;3847:2;;;3900:6;3892;3885:22;3847:2;3928:29;3947:9;3928:29;:::i;:::-;3918:39;;4007:2;3996:9;3992:18;3979:32;4054:5;4047:13;4040:21;4033:5;4030:32;4020:2;;4081:6;4073;4066:22;4020:2;4109:5;4099:15;;;3837:283;;;;;:::o;4125:264::-;;;4254:2;4242:9;4233:7;4229:23;4225:32;4222:2;;;4275:6;4267;4260:22;4222:2;4303:29;4322:9;4303:29;:::i;:::-;4293:39;4379:2;4364:18;;;;4351:32;;-1:-1:-1;;;4212:177:1:o;4394:1274::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4594:6;4586;4579:22;4541:2;4639:9;4626:23;4668:18;4709:2;4701:6;4698:14;4695:2;;;4730:6;4722;4715:22;4695:2;4773:6;4762:9;4758:22;4748:32;;4818:7;4811:4;4807:2;4803:13;4799:27;4789:2;;4845:6;4837;4830:22;4789:2;4886;4873:16;4908:4;4931:43;4971:2;4931:43;:::i;:::-;5003:2;4997:9;5015:31;5043:2;5035:6;5015:31;:::i;:::-;5081:18;;;5115:15;;;;-1:-1:-1;5150:11:1;;;5192:1;5188:10;;;5180:19;;5176:28;;5173:41;-1:-1:-1;5170:2:1;;;5232:6;5224;5217:22;5170:2;5259:6;5250:15;;5274:169;5288:2;5285:1;5282:9;5274:169;;;5345:23;5364:3;5345:23;:::i;:::-;5333:36;;5306:1;5299:9;;;;;5389:12;;;;5421;;5274:169;;;-1:-1:-1;5462:6:1;-1:-1:-1;;5506:18:1;;5493:32;;-1:-1:-1;;5537:16:1;;;5534:2;;;5571:6;5563;5556:22;5534:2;;5599:63;5654:7;5643:8;5632:9;5628:24;5599:63;:::i;:::-;5589:73;;;4531:1137;;;;;:::o;5673:255::-;;5784:2;5772:9;5763:7;5759:23;5755:32;5752:2;;;5805:6;5797;5790:22;5752:2;5849:9;5836:23;5868:30;5892:5;5868:30;:::i;5933:259::-;;6055:2;6043:9;6034:7;6030:23;6026:32;6023:2;;;6076:6;6068;6061:22;6023:2;6113:9;6107:16;6132:30;6156:5;6132:30;:::i;6197:480::-;;6319:2;6307:9;6298:7;6294:23;6290:32;6287:2;;;6340:6;6332;6325:22;6287:2;6385:9;6372:23;6418:18;6410:6;6407:30;6404:2;;;6455:6;6447;6440:22;6404:2;6483:22;;6536:4;6528:13;;6524:27;-1:-1:-1;6514:2:1;;6570:6;6562;6555:22;6514:2;6598:73;6663:7;6658:2;6645:16;6640:2;6636;6632:11;6598:73;:::i;6682:190::-;;6794:2;6782:9;6773:7;6769:23;6765:32;6762:2;;;6815:6;6807;6800:22;6762:2;-1:-1:-1;6843:23:1;;6752:120;-1:-1:-1;6752:120:1:o;6877:437::-;;6968:5;6962:12;6995:6;6990:3;6983:19;7021:4;7050:2;7045:3;7041:12;7034:19;;7087:2;7080:5;7076:14;7108:3;7120:169;7134:6;7131:1;7128:13;7120:169;;;7195:13;;7183:26;;7229:12;;;;7264:15;;;;7156:1;7149:9;7120:169;;;-1:-1:-1;7305:3:1;;6938:376;-1:-1:-1;;;;;6938:376:1:o;7319:257::-;;7398:5;7392:12;7425:6;7420:3;7413:19;7441:63;7497:6;7490:4;7485:3;7481:14;7474:4;7467:5;7463:16;7441:63;:::i;:::-;7558:2;7537:15;-1:-1:-1;;7533:29:1;7524:39;;;;7565:4;7520:50;;7368:208;-1:-1:-1;;7368:208:1:o;7581:185::-;;7661:5;7655:12;7676:52;7721:6;7716:3;7709:4;7702:5;7698:16;7676:52;:::i;:::-;7744:16;;;;;7631:135;-1:-1:-1;;7631:135:1:o;8201:1178::-;;8406:3;8441:6;8435:13;8471:3;8493:1;8521:9;8517:2;8513:18;8503:28;;8581:2;8570:9;8566:18;8603;8593:2;;8647:4;8639:6;8635:17;8625:27;;8593:2;8673;8721;8713:6;8710:14;8690:18;8687:38;8684:2;;;-1:-1:-1;;;8748:33:1;;8804:4;8801:1;8794:15;8834:4;8755:3;8822:17;8684:2;8865:18;8892:104;;;;9010:1;9005:322;;;;8858:469;;8892:104;-1:-1:-1;;8925:24:1;;8913:37;;8970:16;;;;-1:-1:-1;8892:104:1;;9005:322;18452:127;18518:17;;;18568:4;18552:21;;9100:3;9116:165;9130:6;9127:1;9124:13;9116:165;;;9208:14;;9195:11;;;9188:35;9251:16;;;;9145:10;;9116:165;;;9120:3;;9310:6;9305:3;9301:16;9294:23;;8858:469;;;;;;;9343:30;9369:3;9361:6;9343:30;:::i;:::-;9336:37;8385:994;-1:-1:-1;;;;;8385:994:1:o;9592:826::-;-1:-1:-1;;;;;9989:15:1;;;9971:34;;10041:15;;10036:2;10021:18;;10014:43;9951:3;10088:2;10073:18;;10066:31;;;9592:826;;10120:57;;10157:19;;10149:6;10120:57;:::i;:::-;10225:9;10217:6;10213:22;10208:2;10197:9;10193:18;10186:50;10259:44;10296:6;10288;10259:44;:::i;:::-;10245:58;;10352:9;10344:6;10340:22;10334:3;10323:9;10319:19;10312:51;10380:32;10405:6;10397;10380:32;:::i;:::-;10372:40;9923:495;-1:-1:-1;;;;;;;;9923:495:1:o;10423:560::-;-1:-1:-1;;;;;10720:15:1;;;10702:34;;10772:15;;10767:2;10752:18;;10745:43;10819:2;10804:18;;10797:34;;;10862:2;10847:18;;10840:34;;;10682:3;10905;10890:19;;10883:32;;;10423:560;;10932:45;;10957:19;;10949:6;10932:45;:::i;:::-;10924:53;10654:329;-1:-1:-1;;;;;;;10654:329:1:o;10988:261::-;;11167:2;11156:9;11149:21;11187:56;11239:2;11228:9;11224:18;11216:6;11187:56;:::i;11254:465::-;;11511:2;11500:9;11493:21;11537:56;11589:2;11578:9;11574:18;11566:6;11537:56;:::i;:::-;11641:9;11633:6;11629:22;11624:2;11613:9;11609:18;11602:50;11669:44;11706:6;11698;11669:44;:::i;11916:219::-;;12065:2;12054:9;12047:21;12085:44;12125:2;12114:9;12110:18;12102:6;12085:44;:::i;12561:404::-;12763:2;12745:21;;;12802:2;12782:18;;;12775:30;12841:34;12836:2;12821:18;;12814:62;-1:-1:-1;;;12907:2:1;12892:18;;12885:38;12955:3;12940:19;;12735:230::o;14601:401::-;14803:2;14785:21;;;14842:2;14822:18;;;14815:30;14881:34;14876:2;14861:18;;14854:62;-1:-1:-1;;;14947:2:1;14932:18;;14925:35;14992:3;14977:19;;14775:227::o;15426:406::-;15628:2;15610:21;;;15667:2;15647:18;;;15640:30;15706:34;15701:2;15686:18;;15679:62;-1:-1:-1;;;15772:2:1;15757:18;;15750:40;15822:3;15807:19;;15600:232::o;15837:356::-;16039:2;16021:21;;;16058:18;;;16051:30;16117:34;16112:2;16097:18;;16090:62;16184:2;16169:18;;16011:182::o;18264:183::-;;18357:18;18349:6;18346:30;18343:2;;;18379:18;;:::i;:::-;-1:-1:-1;18424:1:1;18420:14;18436:4;18416:25;;18333:114::o;18584:224::-;;18651:6;18684:2;18681:1;18677:10;18714:2;18711:1;18707:10;18745:3;18741:2;18737:12;18732:3;18729:21;18726:2;;;18753:18;;:::i;:::-;18789:13;;18631:177;-1:-1:-1;;;;18631:177:1:o;18813:128::-;;18884:1;18880:6;18877:1;18874:13;18871:2;;;18890:18;;:::i;:::-;-1:-1:-1;18926:9:1;;18861:80::o;18946:120::-;;19012:1;19002:2;;19017:18;;:::i;:::-;-1:-1:-1;19051:9:1;;18992:74::o;19071:125::-;;19139:1;19136;19133:8;19130:2;;;19144:18;;:::i;:::-;-1:-1:-1;19181:9:1;;19120:76::o;19201:258::-;19273:1;19283:113;19297:6;19294:1;19291:13;19283:113;;;19373:11;;;19367:18;19354:11;;;19347:39;19319:2;19312:10;19283:113;;;19414:6;19411:1;19408:13;19405:2;;;19449:1;19440:6;19435:3;19431:16;19424:27;19405:2;;19254:205;;;:::o;19464:380::-;19543:1;19539:12;;;;19586;;;19607:2;;19661:4;19653:6;19649:17;19639:27;;19607:2;19714;19706:6;19703:14;19683:18;19680:38;19677:2;;;19760:10;19755:3;19751:20;19748:1;19741:31;19795:4;19792:1;19785:15;19823:4;19820:1;19813:15;19677:2;;19519:325;;;:::o;19849:249::-;19959:2;19940:13;;-1:-1:-1;;19936:27:1;19924:40;;19994:18;19979:34;;20015:22;;;19976:62;19973:2;;;20041:18;;:::i;:::-;20077:2;20070:22;-1:-1:-1;;19896:202:1:o;20103:135::-;;-1:-1:-1;;20163:17:1;;20160:2;;;20183:18;;:::i;:::-;-1:-1:-1;20230:1:1;20219:13;;20150:88::o;20243:112::-;;20301:1;20291:2;;20306:18;;:::i;:::-;-1:-1:-1;20340:9:1;;20281:74::o;20360:127::-;20421:10;20416:3;20412:20;20409:1;20402:31;20452:4;20449:1;20442:15;20476:4;20473:1;20466:15;20492:127;20553:10;20548:3;20544:20;20541:1;20534:31;20584:4;20581:1;20574:15;20608:4;20605:1;20598:15;20624:127;20685:10;20680:3;20676:20;20673:1;20666:31;20716:4;20713:1;20706:15;20740:4;20737:1;20730:15;20756:185;;20833:1;20815:16;20812:23;20809:2;;;20883:1;20878:3;20873;20858:27;20914:10;20909:3;20905:20;20799:142;:::o;20946:671::-;;21027:4;21009:16;21006:26;21003:2;;;21035:5;;21003:2;21069;21063:9;-1:-1:-1;;21134:16:1;21130:25;;21127:1;21063:9;21106:50;21185:4;21179:11;21209:16;21244:18;21315:2;21308:4;21300:6;21296:17;21293:25;21288:2;21280:6;21277:14;21274:45;21271:2;;;21322:5;;;;;;;21271:2;21359:6;21353:4;21349:17;21338:28;;21395:3;21389:10;21422:2;21414:6;21411:14;21408:2;;;21428:5;;;;;;;;21408:2;21512;21493:16;21487:4;21483:27;21479:36;21472:4;21463:6;21458:3;21454:16;21450:27;21447:69;21444:2;;;21519:5;;;;;;;;21444:2;21535:57;21586:4;21577:6;21569;21565:19;21561:30;21555:4;21535:57;:::i;:::-;-1:-1:-1;21608:3:1;;-1:-1:-1;;;;;20993:624:1;:::o;21622:131::-;-1:-1:-1;;;;;;21696:32:1;;21686:43;;21676:2;;21743:1;21740;21733:12

Swarm Source

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