ETH Price: $2,466.63 (-8.17%)

Token

Honorary Internet Frens (HIF)
 

Overview

Max Total Supply

34 HIF

Holders

30

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
beachkilla.eth
0x8a6b86cad5cf85a6deacb967eea5b96a6ed88063
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:
HonoraryInternetFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-29
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
.__                                                                                  
|  |__   ____   ____   ________________ _______ ___.__.                              
|  |  \ /  _ \ /    \ /  _ \_  __ \__  \\_  __ <   |  |                              
|   Y  (  <_> )   |  (  <_> )  | \// __ \|  | \/\___  |                              
|___|  /\____/|___|  /\____/|__|  (____  /__|   / ____|                              
     \/            \/                  \/       \/                                   
.__        __                              __      _____                             
|__| _____/  |_  ___________  ____   _____/  |_  _/ ____\______  ____   ____   ______
|  |/    \   __\/ __ \_  __ \/    \_/ __ \   __\ \   __\\_  __ \/ __ \ /    \ /  ___/
|  |   |  \  | \  ___/|  | \/   |  \  ___/|  |    |  |   |  | \|  ___/|   |  \\___ \ 
|__|___|  /__|  \___  >__|  |___|  /\___  >__|    |__|   |__|   \___  >___|  /____  >
        \/          \/           \/     \/                          \/     \/     \/ 
*/

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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol


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

pragma solidity ^0.8.0;


/**
 * @dev _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.
     *
     * NOTE: 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.
     *
     * NOTE: 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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







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

    // 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 private _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) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @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 {
        _setApprovalForAll(_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 virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(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 virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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 memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

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

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

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        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");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

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

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

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

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

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

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

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

// File: contracts/HonoraryInternetFrens.sol

/**
.__                                                                                  
|  |__   ____   ____   ________________ _______ ___.__.                              
|  |  \ /  _ \ /    \ /  _ \_  __ \__  \\_  __ <   |  |                              
|   Y  (  <_> )   |  (  <_> )  | \// __ \|  | \/\___  |                              
|___|  /\____/|___|  /\____/|__|  (____  /__|   / ____|                              
     \/            \/                  \/       \/                                   
.__        __                              __      _____                             
|__| _____/  |_  ___________  ____   _____/  |_  _/ ____\______  ____   ____   ______
|  |/    \   __\/ __ \_  __ \/    \_/ __ \   __\ \   __\\_  __ \/ __ \ /    \ /  ___/
|  |   |  \  | \  ___/|  | \/   |  \  ___/|  |    |  |   |  | \|  ___/|   |  \\___ \ 
|__|___|  /__|  \___  >__|  |___|  /\___  >__|    |__|   |__|   \___  >___|  /____  >
        \/          \/           \/     \/                          \/     \/     \/ 
*/

pragma solidity ^0.8.0;

contract HonoraryInternetFrens is ERC1155, Ownable {
    
  string public name;
  string public symbol;

  mapping(uint => string) public tokenURI;

  constructor() ERC1155("") {
    name = "Honorary Internet Frens";
    symbol = "HIF";
  }

  function mint(address _to, uint _id, uint _amount) external onlyOwner {
    _mint(_to, _id, _amount, "");
  }

  function mintBatch(address _to, uint[] memory _ids, uint[] memory _amounts) external onlyOwner {
    _mintBatch(_to, _ids, _amounts, "");
  }

  function burn(uint _id, uint _amount) external {
    _burn(msg.sender, _id, _amount);
  }

  function burnBatch(uint[] memory _ids, uint[] memory _amounts) external {
    _burnBatch(msg.sender, _ids, _amounts);
  }

  function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) external onlyOwner {
    _burnBatch(_from, _burnIds, _burnAmounts);
    _mintBatch(_from, _mintIds, _mintAmounts, "");
  }

  function setURI(uint _id, string memory _uri) external onlyOwner {
    tokenURI[_id] = _uri;
    emit URI(_uri, _id);
  }

  function uri(uint _id) public override view returns (string memory) {
    return tokenURI[_id];
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_burnAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"burnForMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"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":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040805160208101909152600081526200002c81620000b2565b506200003833620000cb565b6040805180820190915260178082527f486f6e6f7261727920496e7465726e6574204672656e7300000000000000000060209092019182526200007e916004916200011d565b50604080518082019091526003808252622424a360e91b6020909201918252620000ab916005916200011d565b5062000200565b8051620000c79060029060208401906200011d565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012b90620001c3565b90600052602060002090601f0160209004810192826200014f57600085556200019a565b82601f106200016a57805160ff19168380011785556200019a565b828001600101855582156200019a579182015b828111156200019a5782518255916020019190600101906200017d565b50620001a8929150620001ac565b5090565b5b80821115620001a85760008155600101620001ad565b600181811c90821680620001d857607f821691505b60208210811415620001fa57634e487b7160e01b600052602260045260246000fd5b50919050565b61214880620002106000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c8063862440e2116100ad578063c87b56dd11610071578063c87b56dd14610273578063d81d0a1514610286578063e985e9c514610299578063f242432a146102d5578063f2fde38b146102e857600080fd5b8063862440e2146102175780638da5cb5b1461022a57806395d89b4114610245578063a22cb4651461024d578063b390c0ab1461026057600080fd5b80632eb2c2d6116100f45780632eb2c2d6146101b65780634e1273f4146101c9578063510f4104146101e9578063715018a6146101fc57806383ca4b6f1461020457600080fd5b8062fdd58e1461013057806301ffc9a71461015657806306fdde03146101795780630e89341c1461018e578063156e29f6146101a1575b600080fd5b61014361013e366004611979565b6102fb565b6040519081526020015b60405180910390f35b610169610164366004611af4565b610392565b604051901515815260200161014d565b6101816103e4565b60405161014d9190611d26565b61018161019c366004611b2e565b610472565b6101b46101af3660046119a3565b610514565b005b6101b46101c4366004611709565b61055e565b6101dc6101d73660046119d6565b6105f5565b60405161014d9190611ce5565b6101b46101f736600461188c565b61071f565b6101b461076f565b6101b4610212366004611aa7565b6107a5565b6101b4610225366004611b47565b6107b4565b6003546040516001600160a01b03909116815260200161014d565b61018161083a565b6101b461025b36600461193d565b610847565b6101b461026e366004611b98565b610852565b610181610281366004611b2e565b61085d565b6101b4610294366004611818565b610876565b6101696102a73660046116d6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101b46102e33660046117b3565b6108bb565b6101b46102f63660046116bb565b610942565b60006001600160a01b03831661036c5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103c357506001600160e01b031982166303a24d0760e21b145b806103de57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600480546103f190611f91565b80601f016020809104026020016040519081016040528092919081815260200182805461041d90611f91565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b505050505081565b600081815260066020526040902080546060919061048f90611f91565b80601f01602080910402602001604051908101604052809291908181526020018280546104bb90611f91565b80156105085780601f106104dd57610100808354040283529160200191610508565b820191906000526020600020905b8154815290600101906020018083116104eb57829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461053e5760405162461bcd60e51b815260040161036390611e97565b610559838383604051806020016040528060008152506109dd565b505050565b6001600160a01b03851633148061057a575061057a85336102a7565b6105e15760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610363565b6105ee8585858585610ab7565b5050505050565b6060815183511461065a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610363565b6000835167ffffffffffffffff81111561067657610676612040565b60405190808252806020026020018201604052801561069f578160200160208202803683370190505b50905060005b8451811015610717576106ea8582815181106106c3576106c361202a565b60200260200101518583815181106106dd576106dd61202a565b60200260200101516102fb565b8282815181106106fc576106fc61202a565b602090810291909101015261071081611ff9565b90506106a5565b509392505050565b6003546001600160a01b031633146107495760405162461bcd60e51b815260040161036390611e97565b610754858585610c53565b6105ee85838360405180602001604052806000815250610dde565b6003546001600160a01b031633146107995760405162461bcd60e51b815260040161036390611e97565b6107a36000610f29565b565b6107b0338383610c53565b5050565b6003546001600160a01b031633146107de5760405162461bcd60e51b815260040161036390611e97565b600082815260066020908152604090912082516107fd9284019061150a565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161082e9190611d26565b60405180910390a25050565b600580546103f190611f91565b6107b0338383610f7b565b6107b033838361105c565b600660205260009081526040902080546103f190611f91565b6003546001600160a01b031633146108a05760405162461bcd60e51b815260040161036390611e97565b61055983838360405180602001604052806000815250610dde565b6001600160a01b0385163314806108d757506108d785336102a7565b6109355760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610363565b6105ee8585858585611160565b6003546001600160a01b0316331461096c5760405162461bcd60e51b815260040161036390611e97565b6001600160a01b0381166109d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610363565b6109da81610f29565b50565b6001600160a01b038416610a035760405162461bcd60e51b815260040161036390611f14565b336000610a0f8561128a565b90506000610a1c8561128a565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610a4e908490611f79565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610aae836000898989896112d5565b50505050505050565b8151835114610ad85760405162461bcd60e51b815260040161036390611ecc565b6001600160a01b038416610afe5760405162461bcd60e51b815260040161036390611dc5565b3360005b8451811015610be5576000858281518110610b1f57610b1f61202a565b602002602001015190506000858381518110610b3d57610b3d61202a565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610b8d5760405162461bcd60e51b815260040161036390611e4d565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610bca908490611f79565b9250508190555050505080610bde90611ff9565b9050610b02565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610c35929190611cf8565b60405180910390a4610c4b818787878787611440565b505050505050565b6001600160a01b038316610c795760405162461bcd60e51b815260040161036390611e0a565b8051825114610c9a5760405162461bcd60e51b815260040161036390611ecc565b604080516020810190915260009081905233905b8351811015610d70576000848281518110610ccb57610ccb61202a565b602002602001015190506000848381518110610ce957610ce961202a565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015610d395760405162461bcd60e51b815260040161036390611d81565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580610d6881611ff9565b915050610cae565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051610dc1929190611cf8565b60405180910390a460408051602081019091526000905250505050565b6001600160a01b038416610e045760405162461bcd60e51b815260040161036390611f14565b8151835114610e255760405162461bcd60e51b815260040161036390611ecc565b3360005b8451811015610ec157838181518110610e4457610e4461202a565b6020026020010151600080878481518110610e6157610e6161202a565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254610ea99190611f79565b90915550819050610eb981611ff9565b915050610e29565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f12929190611cf8565b60405180910390a46105ee81600087878787611440565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610fef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610363565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166110825760405162461bcd60e51b815260040161036390611e0a565b33600061108e8461128a565b9050600061109b8461128a565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156110e85760405162461bcd60e51b815260040161036390611d81565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052610aae565b6001600160a01b0384166111865760405162461bcd60e51b815260040161036390611dc5565b3360006111928561128a565b9050600061119f8561128a565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156111e25760405162461bcd60e51b815260040161036390611e4d565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061121f908490611f79565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461127f848a8a8a8a8a6112d5565b505050505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112c4576112c461202a565b602090810291909101015292915050565b6001600160a01b0384163b15610c4b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113199089908990889088908890600401611ca0565b602060405180830381600087803b15801561133357600080fd5b505af1925050508015611363575060408051601f3d908101601f1916820190925261136091810190611b11565b60015b6114105761136f612056565b806308c379a014156113a95750611384612072565b8061138f57506113ab565b8060405162461bcd60e51b81526004016103639190611d26565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610363565b6001600160e01b0319811663f23a6e6160e01b14610aae5760405162461bcd60e51b815260040161036390611d39565b6001600160a01b0384163b15610c4b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906114849089908990889088908890600401611c42565b602060405180830381600087803b15801561149e57600080fd5b505af19250505080156114ce575060408051601f3d908101601f191682019092526114cb91810190611b11565b60015b6114da5761136f612056565b6001600160e01b0319811663bc197c8160e01b14610aae5760405162461bcd60e51b815260040161036390611d39565b82805461151690611f91565b90600052602060002090601f016020900481019282611538576000855561157e565b82601f1061155157805160ff191683800117855561157e565b8280016001018555821561157e579182015b8281111561157e578251825591602001919060010190611563565b5061158a92915061158e565b5090565b5b8082111561158a576000815560010161158f565b600067ffffffffffffffff8311156115bd576115bd612040565b6040516115d4601f8501601f191660200182611fcc565b8091508381528484840111156115e957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461161857600080fd5b919050565b600082601f83011261162e57600080fd5b8135602061163b82611f55565b6040516116488282611fcc565b8381528281019150858301600585901b8701840188101561166857600080fd5b60005b858110156116875781358452928401929084019060010161166b565b5090979650505050505050565b600082601f8301126116a557600080fd5b6116b4838335602085016115a3565b9392505050565b6000602082840312156116cd57600080fd5b6116b482611601565b600080604083850312156116e957600080fd5b6116f283611601565b915061170060208401611601565b90509250929050565b600080600080600060a0868803121561172157600080fd5b61172a86611601565b945061173860208701611601565b9350604086013567ffffffffffffffff8082111561175557600080fd5b61176189838a0161161d565b9450606088013591508082111561177757600080fd5b61178389838a0161161d565b9350608088013591508082111561179957600080fd5b506117a688828901611694565b9150509295509295909350565b600080600080600060a086880312156117cb57600080fd5b6117d486611601565b94506117e260208701611601565b93506040860135925060608601359150608086013567ffffffffffffffff81111561180c57600080fd5b6117a688828901611694565b60008060006060848603121561182d57600080fd5b61183684611601565b9250602084013567ffffffffffffffff8082111561185357600080fd5b61185f8783880161161d565b9350604086013591508082111561187557600080fd5b506118828682870161161d565b9150509250925092565b600080600080600060a086880312156118a457600080fd5b6118ad86611601565b9450602086013567ffffffffffffffff808211156118ca57600080fd5b6118d689838a0161161d565b955060408801359150808211156118ec57600080fd5b6118f889838a0161161d565b9450606088013591508082111561190e57600080fd5b61191a89838a0161161d565b9350608088013591508082111561193057600080fd5b506117a68882890161161d565b6000806040838503121561195057600080fd5b61195983611601565b91506020830135801515811461196e57600080fd5b809150509250929050565b6000806040838503121561198c57600080fd5b61199583611601565b946020939093013593505050565b6000806000606084860312156119b857600080fd5b6119c184611601565b95602085013595506040909401359392505050565b600080604083850312156119e957600080fd5b823567ffffffffffffffff80821115611a0157600080fd5b818501915085601f830112611a1557600080fd5b81356020611a2282611f55565b604051611a2f8282611fcc565b8381528281019150858301600585901b870184018b1015611a4f57600080fd5b600096505b84871015611a7957611a6581611601565b835260019690960195918301918301611a54565b5096505086013592505080821115611a9057600080fd5b50611a9d8582860161161d565b9150509250929050565b60008060408385031215611aba57600080fd5b823567ffffffffffffffff80821115611ad257600080fd5b611ade8683870161161d565b93506020850135915080821115611a9057600080fd5b600060208284031215611b0657600080fd5b81356116b4816120fc565b600060208284031215611b2357600080fd5b81516116b4816120fc565b600060208284031215611b4057600080fd5b5035919050565b60008060408385031215611b5a57600080fd5b82359150602083013567ffffffffffffffff811115611b7857600080fd5b8301601f81018513611b8957600080fd5b611a9d858235602084016115a3565b60008060408385031215611bab57600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015611bea57815187529582019590820190600101611bce565b509495945050505050565b6000815180845260005b81811015611c1b57602081850181015186830182015201611bff565b81811115611c2d576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611c6e90830186611bba565b8281036060840152611c808186611bba565b90508281036080840152611c948185611bf5565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611cda90830184611bf5565b979650505050505050565b6020815260006116b46020830184611bba565b604081526000611d0b6040830185611bba565b8281036020840152611d1d8185611bba565b95945050505050565b6020815260006116b46020830184611bf5565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b600067ffffffffffffffff821115611f6f57611f6f612040565b5060051b60200190565b60008219821115611f8c57611f8c612014565b500190565b600181811c90821680611fa557607f821691505b60208210811415611fc657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611ff257611ff2612040565b6040525050565b600060001982141561200d5761200d612014565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561206f5760046000803e5060005160e01c5b90565b600060443d10156120805790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156120b057505050505090565b82850191508151818111156120c85750505050505090565b843d87010160208285010111156120e25750505050505090565b6120f160208286010187611fcc565b509095945050505050565b6001600160e01b0319811681146109da57600080fdfea2646970667358221220ebd5c1a8420a9038c29fbe206fc69e5b281c68d17b171412fbe93aa7a47fc79d64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c8063862440e2116100ad578063c87b56dd11610071578063c87b56dd14610273578063d81d0a1514610286578063e985e9c514610299578063f242432a146102d5578063f2fde38b146102e857600080fd5b8063862440e2146102175780638da5cb5b1461022a57806395d89b4114610245578063a22cb4651461024d578063b390c0ab1461026057600080fd5b80632eb2c2d6116100f45780632eb2c2d6146101b65780634e1273f4146101c9578063510f4104146101e9578063715018a6146101fc57806383ca4b6f1461020457600080fd5b8062fdd58e1461013057806301ffc9a71461015657806306fdde03146101795780630e89341c1461018e578063156e29f6146101a1575b600080fd5b61014361013e366004611979565b6102fb565b6040519081526020015b60405180910390f35b610169610164366004611af4565b610392565b604051901515815260200161014d565b6101816103e4565b60405161014d9190611d26565b61018161019c366004611b2e565b610472565b6101b46101af3660046119a3565b610514565b005b6101b46101c4366004611709565b61055e565b6101dc6101d73660046119d6565b6105f5565b60405161014d9190611ce5565b6101b46101f736600461188c565b61071f565b6101b461076f565b6101b4610212366004611aa7565b6107a5565b6101b4610225366004611b47565b6107b4565b6003546040516001600160a01b03909116815260200161014d565b61018161083a565b6101b461025b36600461193d565b610847565b6101b461026e366004611b98565b610852565b610181610281366004611b2e565b61085d565b6101b4610294366004611818565b610876565b6101696102a73660046116d6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101b46102e33660046117b3565b6108bb565b6101b46102f63660046116bb565b610942565b60006001600160a01b03831661036c5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103c357506001600160e01b031982166303a24d0760e21b145b806103de57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600480546103f190611f91565b80601f016020809104026020016040519081016040528092919081815260200182805461041d90611f91565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b505050505081565b600081815260066020526040902080546060919061048f90611f91565b80601f01602080910402602001604051908101604052809291908181526020018280546104bb90611f91565b80156105085780601f106104dd57610100808354040283529160200191610508565b820191906000526020600020905b8154815290600101906020018083116104eb57829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461053e5760405162461bcd60e51b815260040161036390611e97565b610559838383604051806020016040528060008152506109dd565b505050565b6001600160a01b03851633148061057a575061057a85336102a7565b6105e15760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610363565b6105ee8585858585610ab7565b5050505050565b6060815183511461065a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610363565b6000835167ffffffffffffffff81111561067657610676612040565b60405190808252806020026020018201604052801561069f578160200160208202803683370190505b50905060005b8451811015610717576106ea8582815181106106c3576106c361202a565b60200260200101518583815181106106dd576106dd61202a565b60200260200101516102fb565b8282815181106106fc576106fc61202a565b602090810291909101015261071081611ff9565b90506106a5565b509392505050565b6003546001600160a01b031633146107495760405162461bcd60e51b815260040161036390611e97565b610754858585610c53565b6105ee85838360405180602001604052806000815250610dde565b6003546001600160a01b031633146107995760405162461bcd60e51b815260040161036390611e97565b6107a36000610f29565b565b6107b0338383610c53565b5050565b6003546001600160a01b031633146107de5760405162461bcd60e51b815260040161036390611e97565b600082815260066020908152604090912082516107fd9284019061150a565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161082e9190611d26565b60405180910390a25050565b600580546103f190611f91565b6107b0338383610f7b565b6107b033838361105c565b600660205260009081526040902080546103f190611f91565b6003546001600160a01b031633146108a05760405162461bcd60e51b815260040161036390611e97565b61055983838360405180602001604052806000815250610dde565b6001600160a01b0385163314806108d757506108d785336102a7565b6109355760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610363565b6105ee8585858585611160565b6003546001600160a01b0316331461096c5760405162461bcd60e51b815260040161036390611e97565b6001600160a01b0381166109d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610363565b6109da81610f29565b50565b6001600160a01b038416610a035760405162461bcd60e51b815260040161036390611f14565b336000610a0f8561128a565b90506000610a1c8561128a565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610a4e908490611f79565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610aae836000898989896112d5565b50505050505050565b8151835114610ad85760405162461bcd60e51b815260040161036390611ecc565b6001600160a01b038416610afe5760405162461bcd60e51b815260040161036390611dc5565b3360005b8451811015610be5576000858281518110610b1f57610b1f61202a565b602002602001015190506000858381518110610b3d57610b3d61202a565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610b8d5760405162461bcd60e51b815260040161036390611e4d565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610bca908490611f79565b9250508190555050505080610bde90611ff9565b9050610b02565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610c35929190611cf8565b60405180910390a4610c4b818787878787611440565b505050505050565b6001600160a01b038316610c795760405162461bcd60e51b815260040161036390611e0a565b8051825114610c9a5760405162461bcd60e51b815260040161036390611ecc565b604080516020810190915260009081905233905b8351811015610d70576000848281518110610ccb57610ccb61202a565b602002602001015190506000848381518110610ce957610ce961202a565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015610d395760405162461bcd60e51b815260040161036390611d81565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580610d6881611ff9565b915050610cae565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051610dc1929190611cf8565b60405180910390a460408051602081019091526000905250505050565b6001600160a01b038416610e045760405162461bcd60e51b815260040161036390611f14565b8151835114610e255760405162461bcd60e51b815260040161036390611ecc565b3360005b8451811015610ec157838181518110610e4457610e4461202a565b6020026020010151600080878481518110610e6157610e6161202a565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254610ea99190611f79565b90915550819050610eb981611ff9565b915050610e29565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f12929190611cf8565b60405180910390a46105ee81600087878787611440565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610fef5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610363565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383166110825760405162461bcd60e51b815260040161036390611e0a565b33600061108e8461128a565b9050600061109b8461128a565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156110e85760405162461bcd60e51b815260040161036390611d81565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052610aae565b6001600160a01b0384166111865760405162461bcd60e51b815260040161036390611dc5565b3360006111928561128a565b9050600061119f8561128a565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156111e25760405162461bcd60e51b815260040161036390611e4d565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061121f908490611f79565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461127f848a8a8a8a8a6112d5565b505050505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112c4576112c461202a565b602090810291909101015292915050565b6001600160a01b0384163b15610c4b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113199089908990889088908890600401611ca0565b602060405180830381600087803b15801561133357600080fd5b505af1925050508015611363575060408051601f3d908101601f1916820190925261136091810190611b11565b60015b6114105761136f612056565b806308c379a014156113a95750611384612072565b8061138f57506113ab565b8060405162461bcd60e51b81526004016103639190611d26565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610363565b6001600160e01b0319811663f23a6e6160e01b14610aae5760405162461bcd60e51b815260040161036390611d39565b6001600160a01b0384163b15610c4b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906114849089908990889088908890600401611c42565b602060405180830381600087803b15801561149e57600080fd5b505af19250505080156114ce575060408051601f3d908101601f191682019092526114cb91810190611b11565b60015b6114da5761136f612056565b6001600160e01b0319811663bc197c8160e01b14610aae5760405162461bcd60e51b815260040161036390611d39565b82805461151690611f91565b90600052602060002090601f016020900481019282611538576000855561157e565b82601f1061155157805160ff191683800117855561157e565b8280016001018555821561157e579182015b8281111561157e578251825591602001919060010190611563565b5061158a92915061158e565b5090565b5b8082111561158a576000815560010161158f565b600067ffffffffffffffff8311156115bd576115bd612040565b6040516115d4601f8501601f191660200182611fcc565b8091508381528484840111156115e957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461161857600080fd5b919050565b600082601f83011261162e57600080fd5b8135602061163b82611f55565b6040516116488282611fcc565b8381528281019150858301600585901b8701840188101561166857600080fd5b60005b858110156116875781358452928401929084019060010161166b565b5090979650505050505050565b600082601f8301126116a557600080fd5b6116b4838335602085016115a3565b9392505050565b6000602082840312156116cd57600080fd5b6116b482611601565b600080604083850312156116e957600080fd5b6116f283611601565b915061170060208401611601565b90509250929050565b600080600080600060a0868803121561172157600080fd5b61172a86611601565b945061173860208701611601565b9350604086013567ffffffffffffffff8082111561175557600080fd5b61176189838a0161161d565b9450606088013591508082111561177757600080fd5b61178389838a0161161d565b9350608088013591508082111561179957600080fd5b506117a688828901611694565b9150509295509295909350565b600080600080600060a086880312156117cb57600080fd5b6117d486611601565b94506117e260208701611601565b93506040860135925060608601359150608086013567ffffffffffffffff81111561180c57600080fd5b6117a688828901611694565b60008060006060848603121561182d57600080fd5b61183684611601565b9250602084013567ffffffffffffffff8082111561185357600080fd5b61185f8783880161161d565b9350604086013591508082111561187557600080fd5b506118828682870161161d565b9150509250925092565b600080600080600060a086880312156118a457600080fd5b6118ad86611601565b9450602086013567ffffffffffffffff808211156118ca57600080fd5b6118d689838a0161161d565b955060408801359150808211156118ec57600080fd5b6118f889838a0161161d565b9450606088013591508082111561190e57600080fd5b61191a89838a0161161d565b9350608088013591508082111561193057600080fd5b506117a68882890161161d565b6000806040838503121561195057600080fd5b61195983611601565b91506020830135801515811461196e57600080fd5b809150509250929050565b6000806040838503121561198c57600080fd5b61199583611601565b946020939093013593505050565b6000806000606084860312156119b857600080fd5b6119c184611601565b95602085013595506040909401359392505050565b600080604083850312156119e957600080fd5b823567ffffffffffffffff80821115611a0157600080fd5b818501915085601f830112611a1557600080fd5b81356020611a2282611f55565b604051611a2f8282611fcc565b8381528281019150858301600585901b870184018b1015611a4f57600080fd5b600096505b84871015611a7957611a6581611601565b835260019690960195918301918301611a54565b5096505086013592505080821115611a9057600080fd5b50611a9d8582860161161d565b9150509250929050565b60008060408385031215611aba57600080fd5b823567ffffffffffffffff80821115611ad257600080fd5b611ade8683870161161d565b93506020850135915080821115611a9057600080fd5b600060208284031215611b0657600080fd5b81356116b4816120fc565b600060208284031215611b2357600080fd5b81516116b4816120fc565b600060208284031215611b4057600080fd5b5035919050565b60008060408385031215611b5a57600080fd5b82359150602083013567ffffffffffffffff811115611b7857600080fd5b8301601f81018513611b8957600080fd5b611a9d858235602084016115a3565b60008060408385031215611bab57600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015611bea57815187529582019590820190600101611bce565b509495945050505050565b6000815180845260005b81811015611c1b57602081850181015186830182015201611bff565b81811115611c2d576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611c6e90830186611bba565b8281036060840152611c808186611bba565b90508281036080840152611c948185611bf5565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611cda90830184611bf5565b979650505050505050565b6020815260006116b46020830184611bba565b604081526000611d0b6040830185611bba565b8281036020840152611d1d8185611bba565b95945050505050565b6020815260006116b46020830184611bf5565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b600067ffffffffffffffff821115611f6f57611f6f612040565b5060051b60200190565b60008219821115611f8c57611f8c612014565b500190565b600181811c90821680611fa557607f821691505b60208210811415611fc657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611ff257611ff2612040565b6040525050565b600060001982141561200d5761200d612014565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561206f5760046000803e5060005160e01c5b90565b600060443d10156120805790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156120b057505050505090565b82850191508151818111156120c85750505050505090565b843d87010160208285010111156120e25750505050505090565b6120f160208286010187611fcc565b509095945050505050565b6001600160e01b0319811681146109da57600080fdfea2646970667358221220ebd5c1a8420a9038c29fbe206fc69e5b281c68d17b171412fbe93aa7a47fc79d64736f6c63430008070033

Deployed Bytecode Sourcemap

41448:1255:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24938:231;;;;;;:::i;:::-;;:::i;:::-;;;19588:25:1;;;19576:2;19561:18;24938:231:0;;;;;;;;23961:310;;;;;;:::i;:::-;;:::i;:::-;;;13095:14:1;;13088:22;13070:41;;13058:2;13043:18;23961:310:0;12930:187:1;41510:18:0;;;:::i;:::-;;;;;;;:::i;42597:101::-;;;;;;:::i;:::-;;:::i;41704:111::-;;;;;;:::i;:::-;;:::i;:::-;;26877:442;;;;;;:::i;:::-;;:::i;25335:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42196:265::-;;;;;;:::i;:::-;;:::i;3796:103::-;;;:::i;42067:123::-;;;;;;:::i;:::-;;:::i;42467:124::-;;;;;;:::i;:::-;;:::i;3145:87::-;3218:6;;3145:87;;-1:-1:-1;;;;;3218:6:0;;;10736:51:1;;10724:2;10709:18;3145:87:0;10590:203:1;41533:20:0;;;:::i;25932:155::-;;;;;;:::i;:::-;;:::i;41970:91::-;;;;;;:::i;:::-;;:::i;41560:39::-;;;;;;:::i;:::-;;:::i;41821:143::-;;;;;;:::i;:::-;;:::i;26159:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26282:27:0;;;26258:4;26282:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;26159:168;26399:401;;;;;;:::i;:::-;;:::i;4054:201::-;;;;;;:::i;:::-;;:::i;24938:231::-;25024:7;-1:-1:-1;;;;;25052:21:0;;25044:77;;;;-1:-1:-1;;;25044:77:0;;14378:2:1;25044:77:0;;;14360:21:1;14417:2;14397:18;;;14390:30;14456:34;14436:18;;;14429:62;-1:-1:-1;;;14507:18:1;;;14500:41;14558:19;;25044:77:0;;;;;;;;;-1:-1:-1;25139:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;25139:22:0;;;;;;;;;;;;24938:231::o;23961:310::-;24063:4;-1:-1:-1;;;;;;24100:41:0;;-1:-1:-1;;;24100:41:0;;:110;;-1:-1:-1;;;;;;;24158:52:0;;-1:-1:-1;;;24158:52:0;24100:110;:163;;;-1:-1:-1;;;;;;;;;;15166:40:0;;;24227:36;24080:183;23961:310;-1:-1:-1;;23961:310:0:o;41510:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42597:101::-;42679:13;;;;:8;:13;;;;;42672:20;;42650:13;;42679;42672:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42597:101;;;:::o;41704:111::-;3218:6;;-1:-1:-1;;;;;3218:6:0;1896:10;3365:23;3357:68;;;;-1:-1:-1;;;3357:68:0;;;;;;;:::i;:::-;41781:28:::1;41787:3;41792;41797:7;41781:28;;;;;;;;;;;::::0;:5:::1;:28::i;:::-;41704:111:::0;;;:::o;26877:442::-;-1:-1:-1;;;;;27110:20:0;;1896:10;27110:20;;:60;;-1:-1:-1;27134:36:0;27151:4;1896:10;26159:168;:::i;27134:36::-;27088:160;;;;-1:-1:-1;;;27088:160:0;;16418:2:1;27088:160:0;;;16400:21:1;16457:2;16437:18;;;16430:30;16496:34;16476:18;;;16469:62;-1:-1:-1;;;16547:18:1;;;16540:48;16605:19;;27088:160:0;16216:414:1;27088:160:0;27259:52;27282:4;27288:2;27292:3;27297:7;27306:4;27259:22;:52::i;:::-;26877:442;;;;;:::o;25335:524::-;25491:16;25552:3;:10;25533:8;:15;:29;25525:83;;;;-1:-1:-1;;;25525:83:0;;18423:2:1;25525:83:0;;;18405:21:1;18462:2;18442:18;;;18435:30;18501:34;18481:18;;;18474:62;-1:-1:-1;;;18552:18:1;;;18545:39;18601:19;;25525:83:0;18221:405:1;25525:83:0;25621:30;25668:8;:15;25654:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25654:30:0;;25621:63;;25702:9;25697:122;25721:8;:15;25717:1;:19;25697:122;;;25777:30;25787:8;25796:1;25787:11;;;;;;;;:::i;:::-;;;;;;;25800:3;25804:1;25800:6;;;;;;;;:::i;:::-;;;;;;;25777:9;:30::i;:::-;25758:13;25772:1;25758:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25738:3;;;:::i;:::-;;;25697:122;;;-1:-1:-1;25838:13:0;25335:524;-1:-1:-1;;;25335:524:0:o;42196:265::-;3218:6;;-1:-1:-1;;;;;3218:6:0;1896:10;3365:23;3357:68;;;;-1:-1:-1;;;3357:68:0;;;;;;;:::i;:::-;42362:41:::1;42373:5;42380:8;42390:12;42362:10;:41::i;:::-;42410:45;42421:5;42428:8;42438:12;42410:45;;;;;;;;;;;::::0;:10:::1;:45::i;3796:103::-:0;3218:6;;-1:-1:-1;;;;;3218:6:0;1896:10;3365:23;3357:68;;;;-1:-1:-1;;;3357:68:0;;;;;;;:::i;:::-;3861:30:::1;3888:1;3861:18;:30::i;:::-;3796:103::o:0;42067:123::-;42146:38;42157:10;42169:4;42175:8;42146:10;:38::i;:::-;42067:123;;:::o;42467:124::-;3218:6;;-1:-1:-1;;;;;3218:6:0;1896:10;3365:23;3357:68;;;;-1:-1:-1;;;3357:68:0;;;;;;;:::i;:::-;42539:13:::1;::::0;;;:8:::1;:13;::::0;;;;;;;:20;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;42581:3;42571:14;42575:4;42571:14;;;;;;:::i;:::-;;;;;;;;42467:124:::0;;:::o;41533:20::-;;;;;;;:::i;25932:155::-;26027:52;1896:10;26060:8;26070;26027:18;:52::i;41970:91::-;42024:31;42030:10;42042:3;42047:7;42024:5;:31::i;41560:39::-;;;;;;;;;;;;;;;;:::i;41821:143::-;3218:6;;-1:-1:-1;;;;;3218:6:0;1896:10;3365:23;3357:68;;;;-1:-1:-1;;;3357:68:0;;;;;;;:::i;:::-;41923:35:::1;41934:3;41939:4;41945:8;41923:35;;;;;;;;;;;::::0;:10:::1;:35::i;26399:401::-:0;-1:-1:-1;;;;;26607:20:0;;1896:10;26607:20;;:60;;-1:-1:-1;26631:36:0;26648:4;1896:10;26159:168;:::i;26631:36::-;26585:151;;;;-1:-1:-1;;;26585:151:0;;15602:2:1;26585:151:0;;;15584:21:1;15641:2;15621:18;;;15614:30;15680:34;15660:18;;;15653:62;-1:-1:-1;;;15731:18:1;;;15724:39;15780:19;;26585:151:0;15400:405:1;26585:151:0;26747:45;26765:4;26771:2;26775;26779:6;26787:4;26747:17;:45::i;4054:201::-;3218:6;;-1:-1:-1;;;;;3218:6:0;1896:10;3365:23;3357:68;;;;-1:-1:-1;;;3357:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4143:22:0;::::1;4135:73;;;::::0;-1:-1:-1;;;4135:73:0;;14790:2:1;4135:73:0::1;::::0;::::1;14772:21:1::0;14829:2;14809:18;;;14802:30;14868:34;14848:18;;;14841:62;-1:-1:-1;;;14919:18:1;;;14912:36;14965:19;;4135:73:0::1;14588:402:1::0;4135:73:0::1;4219:28;4238:8;4219:18;:28::i;:::-;4054:201:::0;:::o;31579:729::-;-1:-1:-1;;;;;31732:16:0;;31724:62;;;;-1:-1:-1;;;31724:62:0;;;;;;;:::i;:::-;1896:10;31799:16;31864:21;31882:2;31864:17;:21::i;:::-;31841:44;;31896:24;31923:25;31941:6;31923:17;:25::i;:::-;31896:52;;32040:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32040:17:0;;;;;;;;;:27;;32061:6;;32040:9;:27;;32061:6;;32040:27;:::i;:::-;;;;-1:-1:-1;;32083:52:0;;;19798:25:1;;;19854:2;19839:18;;19832:34;;;-1:-1:-1;;;;;32083:52:0;;;;32116:1;;32083:52;;;;;;19771:18:1;32083:52:0;;;;;;;32226:74;32257:8;32275:1;32279:2;32283;32287:6;32295:4;32226:30;:74::i;:::-;31713:595;;;31579:729;;;;:::o;29115:1146::-;29342:7;:14;29328:3;:10;:28;29320:81;;;;-1:-1:-1;;;29320:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29420:16:0;;29412:66;;;;-1:-1:-1;;;29412:66:0;;;;;;;:::i;:::-;1896:10;29491:16;29608:421;29632:3;:10;29628:1;:14;29608:421;;;29664:10;29677:3;29681:1;29677:6;;;;;;;;:::i;:::-;;;;;;;29664:19;;29698:14;29715:7;29723:1;29715:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29742:19;29764:13;;;;;;;;;;-1:-1:-1;;;;;29764:19:0;;;;;;;;;;;;29715:10;;-1:-1:-1;29806:21:0;;;;29798:76;;;;-1:-1:-1;;;29798:76:0;;;;;;;:::i;:::-;29918:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29918:19:0;;;;;;;;;;29940:20;;;29918:42;;29990:17;;;;;;;:27;;29940:20;;29918:9;29990:27;;29940:20;;29990:27;:::i;:::-;;;;;;;;29649:380;;;29644:3;;;;:::i;:::-;;;29608:421;;;;30076:2;-1:-1:-1;;;;;30046:47:0;30070:4;-1:-1:-1;;;;;30046:47:0;30060:8;-1:-1:-1;;;;;30046:47:0;;30080:3;30085:7;30046:47;;;;;;;:::i;:::-;;;;;;;;30178:75;30214:8;30224:4;30230:2;30234:3;30239:7;30248:4;30178:35;:75::i;:::-;29309:952;29115:1146;;;;;:::o;34738:969::-;-1:-1:-1;;;;;34890:18:0;;34882:66;;;;-1:-1:-1;;;34882:66:0;;;;;;;:::i;:::-;34981:7;:14;34967:3;:10;:28;34959:81;;;;-1:-1:-1;;;34959:81:0;;;;;;;:::i;:::-;35097:66;;;;;;;;;35053:16;35097:66;;;;1896:10;;35176:373;35200:3;:10;35196:1;:14;35176:373;;;35232:10;35245:3;35249:1;35245:6;;;;;;;;:::i;:::-;;;;;;;35232:19;;35266:14;35283:7;35291:1;35283:10;;;;;;;;:::i;:::-;;;;;;;;;;;;35310:19;35332:13;;;;;;;;;;-1:-1:-1;;;;;35332:19:0;;;;;;;;;;;;35283:10;;-1:-1:-1;35374:21:0;;;;35366:70;;;;-1:-1:-1;;;35366:70:0;;;;;;;:::i;:::-;35480:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35480:19:0;;;;;;;;;;35502:20;;35480:42;;35212:3;;;;:::i;:::-;;;;35176:373;;;;35604:1;-1:-1:-1;;;;;35566:55:0;35590:4;-1:-1:-1;;;;;35566:55:0;35580:8;-1:-1:-1;;;;;35566:55:0;;35608:3;35613:7;35566:55;;;;;;;:::i;:::-;;;;;;;;35634:65;;;;;;;;;35678:1;35634:65;;34871:836;34738:969;;;:::o;32664:813::-;-1:-1:-1;;;;;32842:16:0;;32834:62;;;;-1:-1:-1;;;32834:62:0;;;;;;;:::i;:::-;32929:7;:14;32915:3;:10;:28;32907:81;;;;-1:-1:-1;;;32907:81:0;;;;;;;:::i;:::-;1896:10;33001:16;33124:103;33148:3;:10;33144:1;:14;33124:103;;;33205:7;33213:1;33205:10;;;;;;;;:::i;:::-;;;;;;;33180:9;:17;33190:3;33194:1;33190:6;;;;;;;;:::i;:::-;;;;;;;33180:17;;;;;;;;;;;:21;33198:2;-1:-1:-1;;;;;33180:21:0;-1:-1:-1;;;;;33180:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;33160:3:0;;-1:-1:-1;33160:3:0;;;:::i;:::-;;;;33124:103;;;;33280:2;-1:-1:-1;;;;;33244:53:0;33276:1;-1:-1:-1;;;;;33244:53:0;33258:8;-1:-1:-1;;;;;33244:53:0;;33284:3;33289:7;33244:53;;;;;;;:::i;:::-;;;;;;;;33388:81;33424:8;33442:1;33446:2;33450:3;33455:7;33464:4;33388:35;:81::i;4415:191::-;4508:6;;;-1:-1:-1;;;;;4525:17:0;;;-1:-1:-1;;;;;;4525:17:0;;;;;;;4558:40;;4508:6;;;4525:17;4508:6;;4558:40;;4489:16;;4558:40;4478:128;4415:191;:::o;35849:331::-;36004:8;-1:-1:-1;;;;;35995:17:0;:5;-1:-1:-1;;;;;35995:17:0;;;35987:71;;;;-1:-1:-1;;;35987:71:0;;18013:2:1;35987:71:0;;;17995:21:1;18052:2;18032:18;;;18025:30;18091:34;18071:18;;;18064:62;-1:-1:-1;;;18142:18:1;;;18135:39;18191:19;;35987:71:0;17811:405:1;35987:71:0;-1:-1:-1;;;;;36069:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36069:46:0;;;;;;;;;;36131:41;;13070::1;;;36131::0;;13043:18:1;36131:41:0;;;;;;;35849:331;;;:::o;33727:808::-;-1:-1:-1;;;;;33854:18:0;;33846:66;;;;-1:-1:-1;;;33846:66:0;;;;;;;:::i;:::-;1896:10;33925:16;33990:21;34008:2;33990:17;:21::i;:::-;33967:44;;34022:24;34049:25;34067:6;34049:17;:25::i;:::-;34087:66;;;;;;;;;-1:-1:-1;34087:66:0;;;;34188:13;;;;;;;;;-1:-1:-1;;;;;34188:19:0;;;;;;;;34022:52;;-1:-1:-1;34226:21:0;;;;34218:70;;;;-1:-1:-1;;;34218:70:0;;;;;;;:::i;:::-;34324:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34324:19:0;;;;;;;;;;;;34346:20;;;34324:42;;34395:54;;19798:25:1;;;19839:18;;;19832:34;;;34324:19:0;;34395:54;;;;;;19771:18:1;34395:54:0;;;;;;;34462:65;;;;;;;;;34506:1;34462:65;;;29115:1146;27783:974;-1:-1:-1;;;;;27971:16:0;;27963:66;;;;-1:-1:-1;;;27963:66:0;;;;;;;:::i;:::-;1896:10;28042:16;28107:21;28125:2;28107:17;:21::i;:::-;28084:44;;28139:24;28166:25;28184:6;28166:17;:25::i;:::-;28139:52;;28277:19;28299:13;;;;;;;;;;;-1:-1:-1;;;;;28299:19:0;;;;;;;;;;28337:21;;;;28329:76;;;;-1:-1:-1;;;28329:76:0;;;;;;;:::i;:::-;28441:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28441:19:0;;;;;;;;;;28463:20;;;28441:42;;28505:17;;;;;;;:27;;28463:20;;28441:9;28505:27;;28463:20;;28505:27;:::i;:::-;;;;-1:-1:-1;;28550:46:0;;;19798:25:1;;;19854:2;19839:18;;19832:34;;;-1:-1:-1;;;;;28550:46:0;;;;;;;;;;;;;;19771:18:1;28550:46:0;;;;;;;28681:68;28712:8;28722:4;28728:2;28732;28736:6;28744:4;28681:30;:68::i;:::-;27952:805;;;;27783:974;;;;;:::o;40113:198::-;40233:16;;;40247:1;40233:16;;;;;;;;;40179;;40208:22;;40233:16;;;;;;;;;;;;-1:-1:-1;40233:16:0;40208:41;;40271:7;40260:5;40266:1;40260:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;40298:5;40113:198;-1:-1:-1;;40113:198:0:o;38540:744::-;-1:-1:-1;;;;;38755:13:0;;6194:19;:23;38751:526;;38791:72;;-1:-1:-1;;;38791:72:0;;-1:-1:-1;;;;;38791:38:0;;;;;:72;;38830:8;;38840:4;;38846:2;;38850:6;;38858:4;;38791:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38791:72:0;;;;;;;;-1:-1:-1;;38791:72:0;;;;;;;;;;;;:::i;:::-;;;38787:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39139:6;39132:14;;-1:-1:-1;;;39132:14:0;;;;;;;;:::i;38787:479::-;;;39188:62;;-1:-1:-1;;;39188:62:0;;13548:2:1;39188:62:0;;;13530:21:1;13587:2;13567:18;;;13560:30;13626:34;13606:18;;;13599:62;-1:-1:-1;;;13677:18:1;;;13670:50;13737:19;;39188:62:0;13346:416:1;38787:479:0;-1:-1:-1;;;;;;38913:55:0;;-1:-1:-1;;;38913:55:0;38909:154;;38993:50;;-1:-1:-1;;;38993:50:0;;;;;;;:::i;39292:813::-;-1:-1:-1;;;;;39532:13:0;;6194:19;:23;39528:570;;39568:79;;-1:-1:-1;;;39568:79:0;;-1:-1:-1;;;;;39568:43:0;;;;;:79;;39612:8;;39622:4;;39628:3;;39633:7;;39642:4;;39568:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39568:79:0;;;;;;;;-1:-1:-1;;39568:79:0;;;;;;;;;;;;:::i;:::-;;;39564:523;;;;:::i;:::-;-1:-1:-1;;;;;;39729:60:0;;-1:-1:-1;;;39729:60:0;39725:159;;39814:50;;-1:-1:-1;;;39814:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;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:45;;;369:1;366;359:12;328:45;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;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:669::-;3772:6;3780;3788;3841:2;3829:9;3820:7;3816:23;3812:32;3809:52;;;3857:1;3854;3847:12;3809:52;3880:29;3899:9;3880:29;:::i;:::-;3870:39;;3960:2;3949:9;3945:18;3932:32;3983:18;4024:2;4016:6;4013:14;4010:34;;;4040:1;4037;4030:12;4010:34;4063:61;4116:7;4107:6;4096:9;4092:22;4063:61;:::i;:::-;4053:71;;4177:2;4166:9;4162:18;4149:32;4133:48;;4206:2;4196:8;4193:16;4190:36;;;4222:1;4219;4212:12;4190:36;;4245:63;4300:7;4289:8;4278:9;4274:24;4245:63;:::i;:::-;4235:73;;;3645:669;;;;;:::o;4319:1123::-;4514:6;4522;4530;4538;4546;4599:3;4587:9;4578:7;4574:23;4570:33;4567:53;;;4616:1;4613;4606:12;4567:53;4639:29;4658:9;4639:29;:::i;:::-;4629:39;;4719:2;4708:9;4704:18;4691:32;4742:18;4783:2;4775:6;4772:14;4769:34;;;4799:1;4796;4789:12;4769:34;4822:61;4875:7;4866:6;4855:9;4851:22;4822:61;:::i;:::-;4812:71;;4936:2;4925:9;4921:18;4908:32;4892:48;;4965:2;4955:8;4952:16;4949:36;;;4981:1;4978;4971:12;4949:36;5004:63;5059:7;5048:8;5037:9;5033:24;5004:63;:::i;:::-;4994:73;;5120:2;5109:9;5105:18;5092:32;5076:48;;5149:2;5139:8;5136:16;5133:36;;;5165:1;5162;5155:12;5133:36;5188:63;5243:7;5232:8;5221:9;5217:24;5188:63;:::i;:::-;5178:73;;5304:3;5293:9;5289:19;5276:33;5260:49;;5334:2;5324:8;5321:16;5318:36;;;5350:1;5347;5340:12;5318:36;;5373:63;5428:7;5417:8;5406:9;5402:24;5373:63;:::i;5447:347::-;5512:6;5520;5573:2;5561:9;5552:7;5548:23;5544:32;5541:52;;;5589:1;5586;5579:12;5541:52;5612:29;5631:9;5612:29;:::i;:::-;5602:39;;5691:2;5680:9;5676:18;5663:32;5738:5;5731:13;5724:21;5717:5;5714:32;5704:60;;5760:1;5757;5750:12;5704:60;5783:5;5773:15;;;5447:347;;;;;:::o;5799:254::-;5867:6;5875;5928:2;5916:9;5907:7;5903:23;5899:32;5896:52;;;5944:1;5941;5934:12;5896:52;5967:29;5986:9;5967:29;:::i;:::-;5957:39;6043:2;6028:18;;;;6015:32;;-1:-1:-1;;;5799:254:1:o;6058:322::-;6135:6;6143;6151;6204:2;6192:9;6183:7;6179:23;6175:32;6172:52;;;6220:1;6217;6210:12;6172:52;6243:29;6262:9;6243:29;:::i;:::-;6233:39;6319:2;6304:18;;6291:32;;-1:-1:-1;6370:2:1;6355:18;;;6342:32;;6058:322;-1:-1:-1;;;6058:322:1:o;6385:1219::-;6503:6;6511;6564:2;6552:9;6543:7;6539:23;6535:32;6532:52;;;6580:1;6577;6570:12;6532:52;6620:9;6607:23;6649:18;6690:2;6682:6;6679:14;6676:34;;;6706:1;6703;6696:12;6676:34;6744:6;6733:9;6729:22;6719:32;;6789:7;6782:4;6778:2;6774:13;6770:27;6760:55;;6811:1;6808;6801:12;6760:55;6847:2;6834:16;6869:4;6892:43;6932:2;6892:43;:::i;:::-;6964:2;6958:9;6976:31;7004:2;6996:6;6976:31;:::i;:::-;7042:18;;;7076:15;;;;-1:-1:-1;7111:11:1;;;7153:1;7149:10;;;7141:19;;7137:28;;7134:41;-1:-1:-1;7131:61:1;;;7188:1;7185;7178:12;7131:61;7210:1;7201:10;;7220:169;7234:2;7231:1;7228:9;7220:169;;;7291:23;7310:3;7291:23;:::i;:::-;7279:36;;7252:1;7245:9;;;;;7335:12;;;;7367;;7220:169;;;-1:-1:-1;7408:6:1;-1:-1:-1;;7452:18:1;;7439:32;;-1:-1:-1;;7483:16:1;;;7480:36;;;7512:1;7509;7502:12;7480:36;;7535:63;7590:7;7579:8;7568:9;7564:24;7535:63;:::i;:::-;7525:73;;;6385:1219;;;;;:::o;7609:595::-;7727:6;7735;7788:2;7776:9;7767:7;7763:23;7759:32;7756:52;;;7804:1;7801;7794:12;7756:52;7844:9;7831:23;7873:18;7914:2;7906:6;7903:14;7900:34;;;7930:1;7927;7920:12;7900:34;7953:61;8006:7;7997:6;7986:9;7982:22;7953:61;:::i;:::-;7943:71;;8067:2;8056:9;8052:18;8039:32;8023:48;;8096:2;8086:8;8083:16;8080:36;;;8112:1;8109;8102:12;8209:245;8267:6;8320:2;8308:9;8299:7;8295:23;8291:32;8288:52;;;8336:1;8333;8326:12;8288:52;8375:9;8362:23;8394:30;8418:5;8394:30;:::i;8459:249::-;8528:6;8581:2;8569:9;8560:7;8556:23;8552:32;8549:52;;;8597:1;8594;8587:12;8549:52;8629:9;8623:16;8648:30;8672:5;8648:30;:::i;8713:180::-;8772:6;8825:2;8813:9;8804:7;8800:23;8796:32;8793:52;;;8841:1;8838;8831:12;8793:52;-1:-1:-1;8864:23:1;;8713:180;-1:-1:-1;8713:180:1:o;8898:518::-;8976:6;8984;9037:2;9025:9;9016:7;9012:23;9008:32;9005:52;;;9053:1;9050;9043:12;9005:52;9089:9;9076:23;9066:33;;9150:2;9139:9;9135:18;9122:32;9177:18;9169:6;9166:30;9163:50;;;9209:1;9206;9199:12;9163:50;9232:22;;9285:4;9277:13;;9273:27;-1:-1:-1;9263:55:1;;9314:1;9311;9304:12;9263:55;9337:73;9402:7;9397:2;9384:16;9379:2;9375;9371:11;9337:73;:::i;9421:248::-;9489:6;9497;9550:2;9538:9;9529:7;9525:23;9521:32;9518:52;;;9566:1;9563;9556:12;9518:52;-1:-1:-1;;9589:23:1;;;9659:2;9644:18;;;9631:32;;-1:-1:-1;9421:248:1:o;9674:435::-;9727:3;9765:5;9759:12;9792:6;9787:3;9780:19;9818:4;9847:2;9842:3;9838:12;9831:19;;9884:2;9877:5;9873:14;9905:1;9915:169;9929:6;9926:1;9923:13;9915:169;;;9990:13;;9978:26;;10024:12;;;;10059:15;;;;9951:1;9944:9;9915:169;;;-1:-1:-1;10100:3:1;;9674:435;-1:-1:-1;;;;;9674:435:1:o;10114:471::-;10155:3;10193:5;10187:12;10220:6;10215:3;10208:19;10245:1;10255:162;10269:6;10266:1;10263:13;10255:162;;;10331:4;10387:13;;;10383:22;;10377:29;10359:11;;;10355:20;;10348:59;10284:12;10255:162;;;10435:6;10432:1;10429:13;10426:87;;;10501:1;10494:4;10485:6;10480:3;10476:16;10472:27;10465:38;10426:87;-1:-1:-1;10567:2:1;10546:15;-1:-1:-1;;10542:29:1;10533:39;;;;10574:4;10529:50;;10114:471;-1:-1:-1;;10114:471:1:o;10798:826::-;-1:-1:-1;;;;;11195:15:1;;;11177:34;;11247:15;;11242:2;11227:18;;11220:43;11157:3;11294:2;11279:18;;11272:31;;;11120:4;;11326:57;;11363:19;;11355:6;11326:57;:::i;:::-;11431:9;11423:6;11419:22;11414:2;11403:9;11399:18;11392:50;11465:44;11502:6;11494;11465:44;:::i;:::-;11451:58;;11558:9;11550:6;11546:22;11540:3;11529:9;11525:19;11518:51;11586:32;11611:6;11603;11586:32;:::i;:::-;11578:40;10798:826;-1:-1:-1;;;;;;;;10798:826:1:o;11629:560::-;-1:-1:-1;;;;;11926:15:1;;;11908:34;;11978:15;;11973:2;11958:18;;11951:43;12025:2;12010:18;;12003:34;;;12068:2;12053:18;;12046:34;;;11888:3;12111;12096:19;;12089:32;;;11851:4;;12138:45;;12163:19;;12155:6;12138:45;:::i;:::-;12130:53;11629:560;-1:-1:-1;;;;;;;11629:560:1:o;12194:261::-;12373:2;12362:9;12355:21;12336:4;12393:56;12445:2;12434:9;12430:18;12422:6;12393:56;:::i;12460:465::-;12717:2;12706:9;12699:21;12680:4;12743:56;12795:2;12784:9;12780:18;12772:6;12743:56;:::i;:::-;12847:9;12839:6;12835:22;12830:2;12819:9;12815:18;12808:50;12875:44;12912:6;12904;12875:44;:::i;:::-;12867:52;12460:465;-1:-1:-1;;;;;12460:465:1:o;13122:219::-;13271:2;13260:9;13253:21;13234:4;13291:44;13331:2;13320:9;13316:18;13308:6;13291:44;:::i;13767:404::-;13969:2;13951:21;;;14008:2;13988:18;;;13981:30;14047:34;14042:2;14027:18;;14020:62;-1:-1:-1;;;14113:2:1;14098:18;;14091:38;14161:3;14146:19;;13767:404::o;14995:400::-;15197:2;15179:21;;;15236:2;15216:18;;;15209:30;15275:34;15270:2;15255:18;;15248:62;-1:-1:-1;;;15341:2:1;15326:18;;15319:34;15385:3;15370:19;;14995:400::o;15810:401::-;16012:2;15994:21;;;16051:2;16031:18;;;16024:30;16090:34;16085:2;16070:18;;16063:62;-1:-1:-1;;;16156:2:1;16141:18;;16134:35;16201:3;16186:19;;15810:401::o;16635:399::-;16837:2;16819:21;;;16876:2;16856:18;;;16849:30;16915:34;16910:2;16895:18;;16888:62;-1:-1:-1;;;16981:2:1;16966:18;;16959:33;17024:3;17009:19;;16635:399::o;17039:406::-;17241:2;17223:21;;;17280:2;17260:18;;;17253:30;17319:34;17314:2;17299:18;;17292:62;-1:-1:-1;;;17385:2:1;17370:18;;17363:40;17435:3;17420:19;;17039:406::o;17450:356::-;17652:2;17634:21;;;17671:18;;;17664:30;17730:34;17725:2;17710:18;;17703:62;17797:2;17782:18;;17450:356::o;18631:404::-;18833:2;18815:21;;;18872:2;18852:18;;;18845:30;18911:34;18906:2;18891:18;;18884:62;-1:-1:-1;;;18977:2:1;18962:18;;18955:38;19025:3;19010:19;;18631:404::o;19040:397::-;19242:2;19224:21;;;19281:2;19261:18;;;19254:30;19320:34;19315:2;19300:18;;19293:62;-1:-1:-1;;;19386:2:1;19371:18;;19364:31;19427:3;19412:19;;19040:397::o;19877:183::-;19937:4;19970:18;19962:6;19959:30;19956:56;;;19992:18;;:::i;:::-;-1:-1:-1;20037:1:1;20033:14;20049:4;20029:25;;19877:183::o;20065:128::-;20105:3;20136:1;20132:6;20129:1;20126:13;20123:39;;;20142:18;;:::i;:::-;-1:-1:-1;20178:9:1;;20065:128::o;20198:380::-;20277:1;20273:12;;;;20320;;;20341:61;;20395:4;20387:6;20383:17;20373:27;;20341:61;20448:2;20440:6;20437:14;20417:18;20414:38;20411:161;;;20494:10;20489:3;20485:20;20482:1;20475:31;20529:4;20526:1;20519:15;20557:4;20554:1;20547:15;20411:161;;20198:380;;;:::o;20583:249::-;20693:2;20674:13;;-1:-1:-1;;20670:27:1;20658:40;;20728:18;20713:34;;20749:22;;;20710:62;20707:88;;;20775:18;;:::i;:::-;20811:2;20804:22;-1:-1:-1;;20583:249:1:o;20837:135::-;20876:3;-1:-1:-1;;20897:17:1;;20894:43;;;20917:18;;:::i;:::-;-1:-1:-1;20964:1:1;20953:13;;20837:135::o;20977:127::-;21038:10;21033:3;21029:20;21026:1;21019:31;21069:4;21066:1;21059:15;21093:4;21090:1;21083:15;21109:127;21170:10;21165:3;21161:20;21158:1;21151:31;21201:4;21198:1;21191:15;21225:4;21222:1;21215:15;21241:127;21302:10;21297:3;21293:20;21290:1;21283:31;21333:4;21330:1;21323:15;21357:4;21354:1;21347:15;21373:179;21408:3;21450:1;21432:16;21429:23;21426:120;;;21496:1;21493;21490;21475:23;-1:-1:-1;21533:1:1;21527:8;21522:3;21518:18;21426:120;21373:179;:::o;21557:671::-;21596:3;21638:4;21620:16;21617:26;21614:39;;;21557:671;:::o;21614:39::-;21680:2;21674:9;-1:-1:-1;;21745:16:1;21741:25;;21738:1;21674:9;21717:50;21796:4;21790:11;21820:16;21855:18;21926:2;21919:4;21911:6;21907:17;21904:25;21899:2;21891:6;21888:14;21885:45;21882:58;;;21933:5;;;;;21557:671;:::o;21882:58::-;21970:6;21964:4;21960:17;21949:28;;22006:3;22000:10;22033:2;22025:6;22022:14;22019:27;;;22039:5;;;;;;21557:671;:::o;22019:27::-;22123:2;22104:16;22098:4;22094:27;22090:36;22083:4;22074:6;22069:3;22065:16;22061:27;22058:69;22055:82;;;22130:5;;;;;;21557:671;:::o;22055:82::-;22146:57;22197:4;22188:6;22180;22176:19;22172:30;22166:4;22146:57;:::i;:::-;-1:-1:-1;22219:3:1;;21557:671;-1:-1:-1;;;;;21557:671:1:o;22233:131::-;-1:-1:-1;;;;;;22307:32:1;;22297:43;;22287:71;;22354:1;22351;22344:12

Swarm Source

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