ETH Price: $3,269.00 (+4.67%)
Gas: 1 Gwei

Token

The Squirrels Flow (TSF)
 

Overview

Max Total Supply

320 TSF

Holders

319

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x18d02a72a96b49E39522B3CBE9b76C47E030342c
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:
TheSquirrelsFlow

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-04
*/

// File: contracts/squirls.sol



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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/interfaces/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


// File: TheSquirrelsFlowAirdrop.sol



pragma solidity ^0.8.0;








contract TheSquirrelsFlow is Context, ERC165, IERC1155, IERC1155MetadataURI, Ownable {
    using Address for address;

    string public name;
    string public symbol;

    // 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() {
        name = "The Squirrels Flow";
        symbol = "TSF";
    }

    /**
     * @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.
     *
     * Overwrite to return the same URI for all airdropped tokens.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return "ipfs://bafybeihno6evm5yymsxoqff4zkqymgkbodvpr2o5rx6fxfa6vnf3vkxc34/tsf.json";
    }

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

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

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

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

        return batchBalances;
    }

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

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public 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();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

        address operator = _msgSender();

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    // Airdrop Functions
    function airdrop(address[] calldata recipients) public onlyOwner {
        for (uint16 i = 0; i < recipients.length; i++) {
            emit TransferSingle(msg.sender, msg.sender, recipients[i], i + 1, 1);
        }
    }
}

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":"recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506200001d336200008c565b6040805180820190915260128082527154686520537175697272656c7320466c6f7760701b60209092019182526200005891600191620000dc565b50604080518082019091526003808252622a29a360e91b60209092019182526200008591600291620000dc565b50620001be565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000ea9062000182565b90600052602060002090601f0160209004810192826200010e576000855562000159565b82601f106200012957805160ff191683800117855562000159565b8280016001018555821562000159579182015b82811115620001595782518255916020019190600101906200013c565b50620001679291506200016b565b5090565b5b808211156200016757600081556001016200016c565b600181811c908216806200019757607f821691505b602082108103620001b857634e487b7160e01b600052602260045260246000fd5b50919050565b6117d180620001ce6000396000f3fe608060405234801561001057600080fd5b50600436106100e95760003560e01c8063729ad39e1161008c578063a22cb46511610066578063a22cb465146101d2578063e985e9c5146101e5578063f242432a14610221578063f2fde38b1461023457600080fd5b8063729ad39e1461019c5780638da5cb5b146101af57806395d89b41146101ca57600080fd5b80630e89341c116100c85780630e89341c1461014c5780632eb2c2d61461015f5780634e1273f414610174578063715018a61461019457600080fd5b8062fdd58e146100ee57806301ffc9a71461011457806306fdde0314610137575b600080fd5b6101016100fc366004610e82565b610247565b6040519081526020015b60405180910390f35b610127610122366004610ec2565b6102e0565b604051901515815260200161010b565b61013f610332565b60405161010b9190610f33565b61013f61015a366004610f46565b6103c0565b61017261016d3660046110ab565b6103e1565b005b610187610182366004611155565b610478565b60405161010b919061125b565b6101726105a2565b6101726101aa36600461126e565b6105d8565b6000546040516001600160a01b03909116815260200161010b565b61013f6106a6565b6101726101e03660046112e3565b6106b3565b6101276101f336600461131f565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61017261022f366004611352565b610789565b6101726102423660046113b7565b610810565b60006001600160a01b0383166102b85760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061031157506001600160e01b031982166303a24d0760e21b145b8061032c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001805461033f906113d2565b80601f016020809104026020016040519081016040528092919081815260200182805461036b906113d2565b80156103b85780601f1061038d576101008083540402835291602001916103b8565b820191906000526020600020905b81548152906001019060200180831161039b57829003601f168201915b505050505081565b60606040518060800160405280604b8152602001611751604b913992915050565b6001600160a01b0385163314806103fd57506103fd85336101f3565b6104645760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016102af565b61047185858585856108ab565b5050505050565b606081518351146104dd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016102af565b6000835167ffffffffffffffff8111156104f9576104f9610f5f565b604051908082528060200260200182016040528015610522578160200160208202803683370190505b50905060005b845181101561059a5761056d8582815181106105465761054661140c565b60200260200101518583815181106105605761056061140c565b6020026020010151610247565b82828151811061057f5761057f61140c565b602090810291909101015261059381611438565b9050610528565b509392505050565b6000546001600160a01b031633146105cc5760405162461bcd60e51b81526004016102af90611451565b6105d66000610a8b565b565b6000546001600160a01b031633146106025760405162461bcd60e51b81526004016102af90611451565b60005b61ffff81168211156106a15782828261ffff168181106106275761062761140c565b905060200201602081019061063c91906113b7565b6001600160a01b031633807fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62610673856001611486565b6040805161ffff9092168252600160208301520160405180910390a480610699816114ac565b915050610605565b505050565b6002805461033f906113d2565b6001600160a01b038216330361071d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016102af565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b0385163314806107a557506107a585336101f3565b6108035760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016102af565b6104718585858585610adb565b6000546001600160a01b0316331461083a5760405162461bcd60e51b81526004016102af90611451565b6001600160a01b03811661089f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102af565b6108a881610a8b565b50565b815183511461090d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016102af565b6001600160a01b0384166109335760405162461bcd60e51b81526004016102af906114cd565b3360005b8451811015610a1d5760008582815181106109545761095461140c565b6020026020010151905060008583815181106109725761097261140c565b60209081029190910181015160008481526003835260408082206001600160a01b038e1683529093529190912054909150818110156109c35760405162461bcd60e51b81526004016102af90611512565b60008381526003602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610a0290849061155c565b9250508190555050505080610a1690611438565b9050610937565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610a6d929190611574565b60405180910390a4610a83818787878787610c05565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038416610b015760405162461bcd60e51b81526004016102af906114cd565b33610b1a818787610b1188610d60565b61047188610d60565b60008481526003602090815260408083206001600160a01b038a16845290915290205483811015610b5d5760405162461bcd60e51b81526004016102af90611512565b60008581526003602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610b9c90849061155c565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610bfc828888888888610dab565b50505050505050565b6001600160a01b0384163b15610a835760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610c4990899089908890889088906004016115a2565b6020604051808303816000875af1925050508015610c84575060408051601f3d908101601f19168201909252610c8191810190611600565b60015b610d3057610c9061161d565b806308c379a003610cc95750610ca4611639565b80610caf5750610ccb565b8060405162461bcd60e51b81526004016102af9190610f33565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016102af565b6001600160e01b0319811663bc197c8160e01b14610bfc5760405162461bcd60e51b81526004016102af906116c3565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610d9a57610d9a61140c565b602090810291909101015292915050565b6001600160a01b0384163b15610a835760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190610def908990899088908890889060040161170b565b6020604051808303816000875af1925050508015610e2a575060408051601f3d908101601f19168201909252610e2791810190611600565b60015b610e3657610c9061161d565b6001600160e01b0319811663f23a6e6160e01b14610bfc5760405162461bcd60e51b81526004016102af906116c3565b80356001600160a01b0381168114610e7d57600080fd5b919050565b60008060408385031215610e9557600080fd5b610e9e83610e66565b946020939093013593505050565b6001600160e01b0319811681146108a857600080fd5b600060208284031215610ed457600080fd5b8135610edf81610eac565b9392505050565b6000815180845260005b81811015610f0c57602081850181015186830182015201610ef0565b81811115610f1e576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610edf6020830184610ee6565b600060208284031215610f5857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715610f9b57610f9b610f5f565b6040525050565b600067ffffffffffffffff821115610fbc57610fbc610f5f565b5060051b60200190565b600082601f830112610fd757600080fd5b81356020610fe482610fa2565b604051610ff18282610f75565b83815260059390931b850182019282810191508684111561101157600080fd5b8286015b8481101561102c5780358352918301918301611015565b509695505050505050565b600082601f83011261104857600080fd5b813567ffffffffffffffff81111561106257611062610f5f565b604051611079601f8301601f191660200182610f75565b81815284602083860101111561108e57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156110c357600080fd5b6110cc86610e66565b94506110da60208701610e66565b9350604086013567ffffffffffffffff808211156110f757600080fd5b61110389838a01610fc6565b9450606088013591508082111561111957600080fd5b61112589838a01610fc6565b9350608088013591508082111561113b57600080fd5b5061114888828901611037565b9150509295509295909350565b6000806040838503121561116857600080fd5b823567ffffffffffffffff8082111561118057600080fd5b818501915085601f83011261119457600080fd5b813560206111a182610fa2565b6040516111ae8282610f75565b83815260059390931b85018201928281019150898411156111ce57600080fd5b948201945b838610156111f3576111e486610e66565b825294820194908201906111d3565b9650508601359250508082111561120957600080fd5b5061121685828601610fc6565b9150509250929050565b600081518084526020808501945080840160005b8381101561125057815187529582019590820190600101611234565b509495945050505050565b602081526000610edf6020830184611220565b6000806020838503121561128157600080fd5b823567ffffffffffffffff8082111561129957600080fd5b818501915085601f8301126112ad57600080fd5b8135818111156112bc57600080fd5b8660208260051b85010111156112d157600080fd5b60209290920196919550909350505050565b600080604083850312156112f657600080fd5b6112ff83610e66565b91506020830135801515811461131457600080fd5b809150509250929050565b6000806040838503121561133257600080fd5b61133b83610e66565b915061134960208401610e66565b90509250929050565b600080600080600060a0868803121561136a57600080fd5b61137386610e66565b945061138160208701610e66565b93506040860135925060608601359150608086013567ffffffffffffffff8111156113ab57600080fd5b61114888828901611037565b6000602082840312156113c957600080fd5b610edf82610e66565b600181811c908216806113e657607f821691505b60208210810361140657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161144a5761144a611422565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156114a3576114a3611422565b01949350505050565b600061ffff8083168181036114c3576114c3611422565b6001019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6000821982111561156f5761156f611422565b500190565b6040815260006115876040830185611220565b82810360208401526115998185611220565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906115ce90830186611220565b82810360608401526115e08186611220565b905082810360808401526115f48185610ee6565b98975050505050505050565b60006020828403121561161257600080fd5b8151610edf81610eac565b600060033d11156116365760046000803e5060005160e01c5b90565b600060443d10156116475790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561167757505050505090565b828501915081518181111561168f5750505050505090565b843d87010160208285010111156116a95750505050505090565b6116b860208286010187610f75565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061174590830184610ee6565b97965050505050505056fe697066733a2f2f62616679626569686e6f3665766d3579796d73786f716666347a6b71796d676b626f64767072326f357278366678666136766e6633766b786333342f7473662e6a736f6ea26469706673582212207d5442a2b128df62484a3a3fa569a55a0667ace9621a0b27ea9e430cd56f150164736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100e95760003560e01c8063729ad39e1161008c578063a22cb46511610066578063a22cb465146101d2578063e985e9c5146101e5578063f242432a14610221578063f2fde38b1461023457600080fd5b8063729ad39e1461019c5780638da5cb5b146101af57806395d89b41146101ca57600080fd5b80630e89341c116100c85780630e89341c1461014c5780632eb2c2d61461015f5780634e1273f414610174578063715018a61461019457600080fd5b8062fdd58e146100ee57806301ffc9a71461011457806306fdde0314610137575b600080fd5b6101016100fc366004610e82565b610247565b6040519081526020015b60405180910390f35b610127610122366004610ec2565b6102e0565b604051901515815260200161010b565b61013f610332565b60405161010b9190610f33565b61013f61015a366004610f46565b6103c0565b61017261016d3660046110ab565b6103e1565b005b610187610182366004611155565b610478565b60405161010b919061125b565b6101726105a2565b6101726101aa36600461126e565b6105d8565b6000546040516001600160a01b03909116815260200161010b565b61013f6106a6565b6101726101e03660046112e3565b6106b3565b6101276101f336600461131f565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61017261022f366004611352565b610789565b6101726102423660046113b7565b610810565b60006001600160a01b0383166102b85760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061031157506001600160e01b031982166303a24d0760e21b145b8061032c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001805461033f906113d2565b80601f016020809104026020016040519081016040528092919081815260200182805461036b906113d2565b80156103b85780601f1061038d576101008083540402835291602001916103b8565b820191906000526020600020905b81548152906001019060200180831161039b57829003601f168201915b505050505081565b60606040518060800160405280604b8152602001611751604b913992915050565b6001600160a01b0385163314806103fd57506103fd85336101f3565b6104645760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016102af565b61047185858585856108ab565b5050505050565b606081518351146104dd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016102af565b6000835167ffffffffffffffff8111156104f9576104f9610f5f565b604051908082528060200260200182016040528015610522578160200160208202803683370190505b50905060005b845181101561059a5761056d8582815181106105465761054661140c565b60200260200101518583815181106105605761056061140c565b6020026020010151610247565b82828151811061057f5761057f61140c565b602090810291909101015261059381611438565b9050610528565b509392505050565b6000546001600160a01b031633146105cc5760405162461bcd60e51b81526004016102af90611451565b6105d66000610a8b565b565b6000546001600160a01b031633146106025760405162461bcd60e51b81526004016102af90611451565b60005b61ffff81168211156106a15782828261ffff168181106106275761062761140c565b905060200201602081019061063c91906113b7565b6001600160a01b031633807fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62610673856001611486565b6040805161ffff9092168252600160208301520160405180910390a480610699816114ac565b915050610605565b505050565b6002805461033f906113d2565b6001600160a01b038216330361071d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016102af565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b0385163314806107a557506107a585336101f3565b6108035760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016102af565b6104718585858585610adb565b6000546001600160a01b0316331461083a5760405162461bcd60e51b81526004016102af90611451565b6001600160a01b03811661089f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102af565b6108a881610a8b565b50565b815183511461090d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016102af565b6001600160a01b0384166109335760405162461bcd60e51b81526004016102af906114cd565b3360005b8451811015610a1d5760008582815181106109545761095461140c565b6020026020010151905060008583815181106109725761097261140c565b60209081029190910181015160008481526003835260408082206001600160a01b038e1683529093529190912054909150818110156109c35760405162461bcd60e51b81526004016102af90611512565b60008381526003602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610a0290849061155c565b9250508190555050505080610a1690611438565b9050610937565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610a6d929190611574565b60405180910390a4610a83818787878787610c05565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038416610b015760405162461bcd60e51b81526004016102af906114cd565b33610b1a818787610b1188610d60565b61047188610d60565b60008481526003602090815260408083206001600160a01b038a16845290915290205483811015610b5d5760405162461bcd60e51b81526004016102af90611512565b60008581526003602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610b9c90849061155c565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610bfc828888888888610dab565b50505050505050565b6001600160a01b0384163b15610a835760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190610c4990899089908890889088906004016115a2565b6020604051808303816000875af1925050508015610c84575060408051601f3d908101601f19168201909252610c8191810190611600565b60015b610d3057610c9061161d565b806308c379a003610cc95750610ca4611639565b80610caf5750610ccb565b8060405162461bcd60e51b81526004016102af9190610f33565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016102af565b6001600160e01b0319811663bc197c8160e01b14610bfc5760405162461bcd60e51b81526004016102af906116c3565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610d9a57610d9a61140c565b602090810291909101015292915050565b6001600160a01b0384163b15610a835760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190610def908990899088908890889060040161170b565b6020604051808303816000875af1925050508015610e2a575060408051601f3d908101601f19168201909252610e2791810190611600565b60015b610e3657610c9061161d565b6001600160e01b0319811663f23a6e6160e01b14610bfc5760405162461bcd60e51b81526004016102af906116c3565b80356001600160a01b0381168114610e7d57600080fd5b919050565b60008060408385031215610e9557600080fd5b610e9e83610e66565b946020939093013593505050565b6001600160e01b0319811681146108a857600080fd5b600060208284031215610ed457600080fd5b8135610edf81610eac565b9392505050565b6000815180845260005b81811015610f0c57602081850181015186830182015201610ef0565b81811115610f1e576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610edf6020830184610ee6565b600060208284031215610f5857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715610f9b57610f9b610f5f565b6040525050565b600067ffffffffffffffff821115610fbc57610fbc610f5f565b5060051b60200190565b600082601f830112610fd757600080fd5b81356020610fe482610fa2565b604051610ff18282610f75565b83815260059390931b850182019282810191508684111561101157600080fd5b8286015b8481101561102c5780358352918301918301611015565b509695505050505050565b600082601f83011261104857600080fd5b813567ffffffffffffffff81111561106257611062610f5f565b604051611079601f8301601f191660200182610f75565b81815284602083860101111561108e57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156110c357600080fd5b6110cc86610e66565b94506110da60208701610e66565b9350604086013567ffffffffffffffff808211156110f757600080fd5b61110389838a01610fc6565b9450606088013591508082111561111957600080fd5b61112589838a01610fc6565b9350608088013591508082111561113b57600080fd5b5061114888828901611037565b9150509295509295909350565b6000806040838503121561116857600080fd5b823567ffffffffffffffff8082111561118057600080fd5b818501915085601f83011261119457600080fd5b813560206111a182610fa2565b6040516111ae8282610f75565b83815260059390931b85018201928281019150898411156111ce57600080fd5b948201945b838610156111f3576111e486610e66565b825294820194908201906111d3565b9650508601359250508082111561120957600080fd5b5061121685828601610fc6565b9150509250929050565b600081518084526020808501945080840160005b8381101561125057815187529582019590820190600101611234565b509495945050505050565b602081526000610edf6020830184611220565b6000806020838503121561128157600080fd5b823567ffffffffffffffff8082111561129957600080fd5b818501915085601f8301126112ad57600080fd5b8135818111156112bc57600080fd5b8660208260051b85010111156112d157600080fd5b60209290920196919550909350505050565b600080604083850312156112f657600080fd5b6112ff83610e66565b91506020830135801515811461131457600080fd5b809150509250929050565b6000806040838503121561133257600080fd5b61133b83610e66565b915061134960208401610e66565b90509250929050565b600080600080600060a0868803121561136a57600080fd5b61137386610e66565b945061138160208701610e66565b93506040860135925060608601359150608086013567ffffffffffffffff8111156113ab57600080fd5b61114888828901611037565b6000602082840312156113c957600080fd5b610edf82610e66565b600181811c908216806113e657607f821691505b60208210810361140657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161144a5761144a611422565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156114a3576114a3611422565b01949350505050565b600061ffff8083168181036114c3576114c3611422565b6001019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6000821982111561156f5761156f611422565b500190565b6040815260006115876040830185611220565b82810360208401526115998185611220565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906115ce90830186611220565b82810360608401526115e08186611220565b905082810360808401526115f48185610ee6565b98975050505050505050565b60006020828403121561161257600080fd5b8151610edf81610eac565b600060033d11156116365760046000803e5060005160e01c5b90565b600060443d10156116475790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561167757505050505090565b828501915081518181111561168f5750505050505090565b843d87010160208285010111156116a95750505050505090565b6116b860208286010187610f75565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061174590830184610ee6565b97965050505050505056fe697066733a2f2f62616679626569686e6f3665766d3579796d73786f716666347a6b71796d676b626f64767072326f357278366678666136766e6633766b786333342f7473662e6a736f6ea26469706673582212207d5442a2b128df62484a3a3fa569a55a0667ace9621a0b27ea9e430cd56f150164736f6c634300080d0033

Deployed Bytecode Sourcemap

21269:15456:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23176:231;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;23176:231:0;;;;;;;;22050:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;22050:310:0;1019:187:1;21395:18:0;;;:::i;:::-;;;;;;;:::i;22847:178::-;;;;;;:::i;:::-;;:::i;25271:442::-;;;;;;:::i;:::-;;:::i;:::-;;23573:524;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2644:103::-;;;:::i;36497:225::-;;;;;;:::i;:::-;;:::i;1993:87::-;2039:7;2066:6;1993:87;;-1:-1:-1;;;;;2066:6:0;;;7594:51:1;;7582:2;7567:18;1993:87:0;7448:203:1;21420:20:0;;;:::i;24170:311::-;;;;;;:::i;:::-;;:::i;24553:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24676:27:0;;;24652:4;24676:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;24553:168;24793:401;;;;;;:::i;:::-;;:::i;2902:201::-;;;;;;:::i;:::-;;:::i;23176:231::-;23262:7;-1:-1:-1;;;;;23290:21:0;;23282:77;;;;-1:-1:-1;;;23282:77:0;;9277:2:1;23282:77:0;;;9259:21:1;9316:2;9296:18;;;9289:30;9355:34;9335:18;;;9328:62;-1:-1:-1;;;9406:18:1;;;9399:41;9457:19;;23282:77:0;;;;;;;;;-1:-1:-1;23377:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;23377:22:0;;;;;;;;;;;;23176:231::o;22050:310::-;22152:4;-1:-1:-1;;;;;;22189:41:0;;-1:-1:-1;;;22189:41:0;;:110;;-1:-1:-1;;;;;;;22247:52:0;;-1:-1:-1;;;22247:52:0;22189:110;:163;;;-1:-1:-1;;;;;;;;;;13503:40:0;;;22316:36;22169:183;22050:310;-1:-1:-1;;22050:310:0:o;21395:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22847:178::-;22907:13;22933:84;;;;;;;;;;;;;;;;;;22847:178;-1:-1:-1;;22847:178:0:o;25271:442::-;-1:-1:-1;;;;;25504:20:0;;797:10;25504:20;;:60;;-1:-1:-1;25528:36:0;25545:4;797:10;24553:168;:::i;25528:36::-;25482:160;;;;-1:-1:-1;;;25482:160:0;;10074:2:1;25482:160:0;;;10056:21:1;10113:2;10093:18;;;10086:30;10152:34;10132:18;;;10125:62;-1:-1:-1;;;10203:18:1;;;10196:48;10261:19;;25482:160:0;9872:414:1;25482:160:0;25653:52;25676:4;25682:2;25686:3;25691:7;25700:4;25653:22;:52::i;:::-;25271:442;;;;;:::o;23573:524::-;23729:16;23790:3;:10;23771:8;:15;:29;23763:83;;;;-1:-1:-1;;;23763:83:0;;10493:2:1;23763:83:0;;;10475:21:1;10532:2;10512:18;;;10505:30;10571:34;10551:18;;;10544:62;-1:-1:-1;;;10622:18:1;;;10615:39;10671:19;;23763:83:0;10291:405:1;23763:83:0;23859:30;23906:8;:15;23892:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23892:30:0;;23859:63;;23940:9;23935:122;23959:8;:15;23955:1;:19;23935:122;;;24015:30;24025:8;24034:1;24025:11;;;;;;;;:::i;:::-;;;;;;;24038:3;24042:1;24038:6;;;;;;;;:::i;:::-;;;;;;;24015:9;:30::i;:::-;23996:13;24010:1;23996:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;23976:3;;;:::i;:::-;;;23935:122;;;-1:-1:-1;24076:13:0;23573:524;-1:-1:-1;;;23573:524:0:o;2644:103::-;2039:7;2066:6;-1:-1:-1;;;;;2066:6:0;797:10;2213:23;2205:68;;;;-1:-1:-1;;;2205:68:0;;;;;;;:::i;:::-;2709:30:::1;2736:1;2709:18;:30::i;:::-;2644:103::o:0;36497:225::-;2039:7;2066:6;-1:-1:-1;;;;;2066:6:0;797:10;2213:23;2205:68;;;;-1:-1:-1;;;2205:68:0;;;;;;;:::i;:::-;36578:8:::1;36573:142;36592:21;::::0;::::1;::::0;-1:-1:-1;36573:142:0::1;;;36679:10;;36690:1;36679:13;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36640:63:0::1;36667:10;::::0;36640:63:::1;36694:5;:1:::0;36698::::1;36694:5;:::i;:::-;36640:63;::::0;;11906:6:1;11894:19;;;11876:38;;36701:1:0::1;11945:2:1::0;11930:18;;11923:34;11849:18;36640:63:0::1;;;;;;;36615:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36573:142;;;;36497:225:::0;;:::o;21420:20::-;;;;;;;:::i;24170:311::-;-1:-1:-1;;;;;24273:24:0;;797:10;24273:24;24265:78;;;;-1:-1:-1;;;24265:78:0;;12372:2:1;24265:78:0;;;12354:21:1;12411:2;12391:18;;;12384:30;12450:34;12430:18;;;12423:62;-1:-1:-1;;;12501:18:1;;;12494:39;12550:19;;24265:78:0;12170:405:1;24265:78:0;797:10;24356:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24356:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24356:53:0;;;;;;;;;;24425:48;;1159:41:1;;;24356:42:0;;797:10;24425:48;;1132:18:1;24425:48:0;;;;;;;24170:311;;:::o;24793:401::-;-1:-1:-1;;;;;25001:20:0;;797:10;25001:20;;:60;;-1:-1:-1;25025:36:0;25042:4;797:10;24553:168;:::i;25025:36::-;24979:151;;;;-1:-1:-1;;;24979:151:0;;12782:2:1;24979:151:0;;;12764:21:1;12821:2;12801:18;;;12794:30;12860:34;12840:18;;;12833:62;-1:-1:-1;;;12911:18:1;;;12904:39;12960:19;;24979:151:0;12580:405:1;24979:151:0;25141:45;25159:4;25165:2;25169;25173:6;25181:4;25141:17;:45::i;2902:201::-;2039:7;2066:6;-1:-1:-1;;;;;2066:6:0;797:10;2213:23;2205:68;;;;-1:-1:-1;;;2205:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2991:22:0;::::1;2983:73;;;::::0;-1:-1:-1;;;2983:73:0;;13192:2:1;2983:73:0::1;::::0;::::1;13174:21:1::0;13231:2;13211:18;;;13204:30;13270:34;13250:18;;;13243:62;-1:-1:-1;;;13321:18:1;;;13314:36;13367:19;;2983:73:0::1;12990:402:1::0;2983:73:0::1;3067:28;3086:8;3067:18;:28::i;:::-;2902:201:::0;:::o;27355:1074::-;27582:7;:14;27568:3;:10;:28;27560:81;;;;-1:-1:-1;;;27560:81:0;;13599:2:1;27560:81:0;;;13581:21:1;13638:2;13618:18;;;13611:30;13677:34;13657:18;;;13650:62;-1:-1:-1;;;13728:18:1;;;13721:38;13776:19;;27560:81:0;13397:404:1;27560:81:0;-1:-1:-1;;;;;27660:16:0;;27652:66;;;;-1:-1:-1;;;27652:66:0;;;;;;;:::i;:::-;797:10;27731:16;27848:421;27872:3;:10;27868:1;:14;27848:421;;;27904:10;27917:3;27921:1;27917:6;;;;;;;;:::i;:::-;;;;;;;27904:19;;27938:14;27955:7;27963:1;27955:10;;;;;;;;:::i;:::-;;;;;;;;;;;;27982:19;28004:13;;;:9;:13;;;;;;-1:-1:-1;;;;;28004:19:0;;;;;;;;;;;;27955:10;;-1:-1:-1;28046:21:0;;;;28038:76;;;;-1:-1:-1;;;28038:76:0;;;;;;;:::i;:::-;28158:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28158:19:0;;;;;;;;;;28180:20;;;28158:42;;28230:17;;;;;;;:27;;28180:20;;28158:13;28230:27;;28180:20;;28230:27;:::i;:::-;;;;;;;;27889:380;;;27884:3;;;;:::i;:::-;;;27848:421;;;;28316:2;-1:-1:-1;;;;;28286:47:0;28310:4;-1:-1:-1;;;;;28286:47:0;28300:8;-1:-1:-1;;;;;28286:47:0;;28320:3;28325:7;28286:47;;;;;;;:::i;:::-;;;;;;;;28346:75;28382:8;28392:4;28398:2;28402:3;28407:7;28416:4;28346:35;:75::i;:::-;27549:880;27355:1074;;;;;:::o;3263:191::-;3337:16;3356:6;;-1:-1:-1;;;;;3373:17:0;;;-1:-1:-1;;;;;;3373:17:0;;;;;;3406:40;;3356:6;;;;;;;3406:40;;3337:16;3406:40;3326:128;3263:191;:::o;26177:820::-;-1:-1:-1;;;;;26365:16:0;;26357:66;;;;-1:-1:-1;;;26357:66:0;;;;;;;:::i;:::-;797:10;26480:96;797:10;26511:4;26517:2;26521:21;26539:2;26521:17;:21::i;:::-;26544:25;26562:6;26544:17;:25::i;26480:96::-;26589:19;26611:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26611:19:0;;;;;;;;;;26649:21;;;;26641:76;;;;-1:-1:-1;;;26641:76:0;;;;;;;:::i;:::-;26753:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26753:19:0;;;;;;;;;;26775:20;;;26753:42;;26817:17;;;;;;;:27;;26775:20;;26753:13;26817:27;;26775:20;;26817:27;:::i;:::-;;;;-1:-1:-1;;26862:46:0;;;15400:25:1;;;15456:2;15441:18;;15434:34;;;-1:-1:-1;;;;;26862:46:0;;;;;;;;;;;;;;15373:18:1;26862:46:0;;;;;;;26921:68;26952:8;26962:4;26968:2;26972;26976:6;26984:4;26921:30;:68::i;:::-;26346:651;;26177:820;;;;;:::o;35444:813::-;-1:-1:-1;;;;;35684:13:0;;4604:20;4652:8;35680:570;;35720:79;;-1:-1:-1;;;35720:79:0;;-1:-1:-1;;;;;35720:43:0;;;;;:79;;35764:8;;35774:4;;35780:3;;35785:7;;35794:4;;35720:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35720:79:0;;;;;;;;-1:-1:-1;;35720:79:0;;;;;;;;;;;;:::i;:::-;;;35716:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36112:6;36105:14;;-1:-1:-1;;;36105:14:0;;;;;;;;:::i;35716:523::-;;;36161:62;;-1:-1:-1;;;36161:62:0;;17627:2:1;36161:62:0;;;17609:21:1;17666:2;17646:18;;;17639:30;17705:34;17685:18;;;17678:62;-1:-1:-1;;;17756:18:1;;;17749:50;17816:19;;36161:62:0;17425:416:1;35716:523:0;-1:-1:-1;;;;;;35881:60:0;;-1:-1:-1;;;35881:60:0;35877:159;;35966:50;;-1:-1:-1;;;35966:50:0;;;;;;;:::i;36265:198::-;36385:16;;;36399:1;36385:16;;;;;;;;;36331;;36360:22;;36385:16;;;;;;;;;;;;-1:-1:-1;36385:16:0;36360:41;;36423:7;36412:5;36418:1;36412:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;36450:5;36265:198;-1:-1:-1;;36265:198:0:o;34692:744::-;-1:-1:-1;;;;;34907:13:0;;4604:20;4652:8;34903:526;;34943:72;;-1:-1:-1;;;34943:72:0;;-1:-1:-1;;;;;34943:38:0;;;;;:72;;34982:8;;34992:4;;34998:2;;35002:6;;35010:4;;34943:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34943:72:0;;;;;;;;-1:-1:-1;;34943:72:0;;;;;;;;;;;;:::i;:::-;;;34939:479;;;;:::i;:::-;-1:-1:-1;;;;;;35065:55:0;;-1:-1:-1;;;35065:55:0;35061:154;;35145:50;;-1:-1:-1;;;35145:50:0;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:472::-;1253:3;1291:5;1285:12;1318:6;1313:3;1306:19;1343:1;1353:162;1367:6;1364:1;1361:13;1353:162;;;1429:4;1485:13;;;1481:22;;1475:29;1457:11;;;1453:20;;1446:59;1382:12;1353:162;;;1533:6;1530:1;1527:13;1524:87;;;1599:1;1592:4;1583:6;1578:3;1574:16;1570:27;1563:38;1524:87;-1:-1:-1;1665:2:1;1644:15;-1:-1:-1;;1640:29:1;1631:39;;;;1672:4;1627:50;;1211:472;-1:-1:-1;;1211:472:1:o;1688:220::-;1837:2;1826:9;1819:21;1800:4;1857:45;1898:2;1887:9;1883:18;1875:6;1857:45;:::i;1913:180::-;1972:6;2025:2;2013:9;2004:7;2000:23;1996:32;1993:52;;;2041:1;2038;2031:12;1993:52;-1:-1:-1;2064:23:1;;1913:180;-1:-1:-1;1913:180:1:o;2098:127::-;2159:10;2154:3;2150:20;2147:1;2140:31;2190:4;2187:1;2180:15;2214:4;2211:1;2204:15;2230:249;2340:2;2321:13;;-1:-1:-1;;2317:27:1;2305:40;;2375:18;2360:34;;2396:22;;;2357:62;2354:88;;;2422:18;;:::i;:::-;2458:2;2451:22;-1:-1:-1;;2230:249:1:o;2484:183::-;2544:4;2577:18;2569:6;2566:30;2563:56;;;2599:18;;:::i;:::-;-1:-1:-1;2644:1:1;2640:14;2656:4;2636:25;;2484:183::o;2672:724::-;2726:5;2779:3;2772:4;2764:6;2760:17;2756:27;2746:55;;2797:1;2794;2787:12;2746:55;2833:6;2820:20;2859:4;2882:43;2922:2;2882:43;:::i;:::-;2954:2;2948:9;2966:31;2994:2;2986:6;2966:31;:::i;:::-;3032:18;;;3124:1;3120:10;;;;3108:23;;3104:32;;;3066:15;;;;-1:-1:-1;3148:15:1;;;3145:35;;;3176:1;3173;3166:12;3145:35;3212:2;3204:6;3200:15;3224:142;3240:6;3235:3;3232:15;3224:142;;;3306:17;;3294:30;;3344:12;;;;3257;;3224:142;;;-1:-1:-1;3384:6:1;2672:724;-1:-1:-1;;;;;;2672:724:1:o;3401:555::-;3443:5;3496:3;3489:4;3481:6;3477:17;3473:27;3463:55;;3514:1;3511;3504:12;3463:55;3550:6;3537:20;3576:18;3572:2;3569:26;3566:52;;;3598:18;;:::i;:::-;3647:2;3641:9;3659:67;3714:2;3695:13;;-1:-1:-1;;3691:27:1;3720:4;3687:38;3641:9;3659:67;:::i;:::-;3750:2;3742:6;3735:18;3796:3;3789:4;3784:2;3776:6;3772:15;3768:26;3765:35;3762:55;;;3813:1;3810;3803:12;3762:55;3877:2;3870:4;3862:6;3858:17;3851:4;3843:6;3839:17;3826:54;3924:1;3900:15;;;3917:4;3896:26;3889:37;;;;3904:6;3401:555;-1:-1:-1;;;3401:555:1:o;3961:943::-;4115:6;4123;4131;4139;4147;4200:3;4188:9;4179:7;4175:23;4171:33;4168:53;;;4217:1;4214;4207:12;4168:53;4240:29;4259:9;4240:29;:::i;:::-;4230:39;;4288:38;4322:2;4311:9;4307:18;4288:38;:::i;:::-;4278:48;;4377:2;4366:9;4362:18;4349:32;4400:18;4441:2;4433:6;4430:14;4427:34;;;4457:1;4454;4447:12;4427:34;4480:61;4533:7;4524:6;4513:9;4509:22;4480:61;:::i;:::-;4470:71;;4594:2;4583:9;4579:18;4566:32;4550:48;;4623:2;4613:8;4610:16;4607:36;;;4639:1;4636;4629:12;4607:36;4662:63;4717:7;4706:8;4695:9;4691:24;4662:63;:::i;:::-;4652:73;;4778:3;4767:9;4763:19;4750:33;4734:49;;4808:2;4798:8;4795:16;4792:36;;;4824:1;4821;4814:12;4792:36;;4847:51;4890:7;4879:8;4868:9;4864:24;4847:51;:::i;:::-;4837:61;;;3961:943;;;;;;;;:::o;4909:1208::-;5027:6;5035;5088:2;5076:9;5067:7;5063:23;5059:32;5056:52;;;5104:1;5101;5094:12;5056:52;5144:9;5131:23;5173:18;5214:2;5206:6;5203:14;5200:34;;;5230:1;5227;5220:12;5200:34;5268:6;5257:9;5253:22;5243:32;;5313:7;5306:4;5302:2;5298:13;5294:27;5284:55;;5335:1;5332;5325:12;5284:55;5371:2;5358:16;5393:4;5416:43;5456:2;5416:43;:::i;:::-;5488:2;5482:9;5500:31;5528:2;5520:6;5500:31;:::i;:::-;5566:18;;;5654:1;5650:10;;;;5642:19;;5638:28;;;5600:15;;;;-1:-1:-1;5678:19:1;;;5675:39;;;5710:1;5707;5700:12;5675:39;5734:11;;;;5754:148;5770:6;5765:3;5762:15;5754:148;;;5836:23;5855:3;5836:23;:::i;:::-;5824:36;;5787:12;;;;5880;;;;5754:148;;;5921:6;-1:-1:-1;;5965:18:1;;5952:32;;-1:-1:-1;;5996:16:1;;;5993:36;;;6025:1;6022;6015:12;5993:36;;6048:63;6103:7;6092:8;6081:9;6077:24;6048:63;:::i;:::-;6038:73;;;4909:1208;;;;;:::o;6122:435::-;6175:3;6213:5;6207:12;6240:6;6235:3;6228:19;6266:4;6295:2;6290:3;6286:12;6279:19;;6332:2;6325:5;6321:14;6353:1;6363:169;6377:6;6374:1;6371:13;6363:169;;;6438:13;;6426:26;;6472:12;;;;6507:15;;;;6399:1;6392:9;6363:169;;;-1:-1:-1;6548:3:1;;6122:435;-1:-1:-1;;;;;6122:435:1:o;6562:261::-;6741:2;6730:9;6723:21;6704:4;6761:56;6813:2;6802:9;6798:18;6790:6;6761:56;:::i;6828:615::-;6914:6;6922;6975:2;6963:9;6954:7;6950:23;6946:32;6943:52;;;6991:1;6988;6981:12;6943:52;7031:9;7018:23;7060:18;7101:2;7093:6;7090:14;7087:34;;;7117:1;7114;7107:12;7087:34;7155:6;7144:9;7140:22;7130:32;;7200:7;7193:4;7189:2;7185:13;7181:27;7171:55;;7222:1;7219;7212:12;7171:55;7262:2;7249:16;7288:2;7280:6;7277:14;7274:34;;;7304:1;7301;7294:12;7274:34;7357:7;7352:2;7342:6;7339:1;7335:14;7331:2;7327:23;7323:32;7320:45;7317:65;;;7378:1;7375;7368:12;7317:65;7409:2;7401:11;;;;;7431:6;;-1:-1:-1;6828:615:1;;-1:-1:-1;;;;6828:615:1:o;7656:347::-;7721:6;7729;7782:2;7770:9;7761:7;7757:23;7753:32;7750:52;;;7798:1;7795;7788:12;7750:52;7821:29;7840:9;7821:29;:::i;:::-;7811:39;;7900:2;7889:9;7885:18;7872:32;7947:5;7940:13;7933:21;7926:5;7923:32;7913:60;;7969:1;7966;7959:12;7913:60;7992:5;7982:15;;;7656:347;;;;;:::o;8008:260::-;8076:6;8084;8137:2;8125:9;8116:7;8112:23;8108:32;8105:52;;;8153:1;8150;8143:12;8105:52;8176:29;8195:9;8176:29;:::i;:::-;8166:39;;8224:38;8258:2;8247:9;8243:18;8224:38;:::i;:::-;8214:48;;8008:260;;;;;:::o;8273:606::-;8377:6;8385;8393;8401;8409;8462:3;8450:9;8441:7;8437:23;8433:33;8430:53;;;8479:1;8476;8469:12;8430:53;8502:29;8521:9;8502:29;:::i;:::-;8492:39;;8550:38;8584:2;8573:9;8569:18;8550:38;:::i;:::-;8540:48;;8635:2;8624:9;8620:18;8607:32;8597:42;;8686:2;8675:9;8671:18;8658:32;8648:42;;8741:3;8730:9;8726:19;8713:33;8769:18;8761:6;8758:30;8755:50;;;8801:1;8798;8791:12;8755:50;8824:49;8865:7;8856:6;8845:9;8841:22;8824:49;:::i;8884:186::-;8943:6;8996:2;8984:9;8975:7;8971:23;8967:32;8964:52;;;9012:1;9009;9002:12;8964:52;9035:29;9054:9;9035:29;:::i;9487:380::-;9566:1;9562:12;;;;9609;;;9630:61;;9684:4;9676:6;9672:17;9662:27;;9630:61;9737:2;9729:6;9726:14;9706:18;9703:38;9700:161;;9783:10;9778:3;9774:20;9771:1;9764:31;9818:4;9815:1;9808:15;9846:4;9843:1;9836:15;9700:161;;9487:380;;;:::o;10701:127::-;10762:10;10757:3;10753:20;10750:1;10743:31;10793:4;10790:1;10783:15;10817:4;10814:1;10807:15;10833:127;10894:10;10889:3;10885:20;10882:1;10875:31;10925:4;10922:1;10915:15;10949:4;10946:1;10939:15;10965:135;11004:3;11025:17;;;11022:43;;11045:18;;:::i;:::-;-1:-1:-1;11092:1:1;11081:13;;10965:135::o;11105:356::-;11307:2;11289:21;;;11326:18;;;11319:30;11385:34;11380:2;11365:18;;11358:62;11452:2;11437:18;;11105:356::o;11466:224::-;11505:3;11533:6;11566:2;11563:1;11559:10;11596:2;11593:1;11589:10;11627:3;11623:2;11619:12;11614:3;11611:21;11608:47;;;11635:18;;:::i;:::-;11671:13;;11466:224;-1:-1:-1;;;;11466:224:1:o;11968:197::-;12006:3;12034:6;12075:2;12068:5;12064:14;12102:2;12093:7;12090:15;12087:41;;12108:18;;:::i;:::-;12157:1;12144:15;;11968:197;-1:-1:-1;;;11968:197:1:o;13806:401::-;14008:2;13990:21;;;14047:2;14027:18;;;14020:30;14086:34;14081:2;14066:18;;14059:62;-1:-1:-1;;;14152:2:1;14137:18;;14130:35;14197:3;14182:19;;13806:401::o;14212:406::-;14414:2;14396:21;;;14453:2;14433:18;;;14426:30;14492:34;14487:2;14472:18;;14465:62;-1:-1:-1;;;14558:2:1;14543:18;;14536:40;14608:3;14593:19;;14212:406::o;14623:128::-;14663:3;14694:1;14690:6;14687:1;14684:13;14681:39;;;14700:18;;:::i;:::-;-1:-1:-1;14736:9:1;;14623:128::o;14756:465::-;15013:2;15002:9;14995:21;14976:4;15039:56;15091:2;15080:9;15076:18;15068:6;15039:56;:::i;:::-;15143:9;15135:6;15131:22;15126:2;15115:9;15111:18;15104:50;15171:44;15208:6;15200;15171:44;:::i;:::-;15163:52;14756:465;-1:-1:-1;;;;;14756:465:1:o;15479:827::-;-1:-1:-1;;;;;15876:15:1;;;15858:34;;15928:15;;15923:2;15908:18;;15901:43;15838:3;15975:2;15960:18;;15953:31;;;15801:4;;16007:57;;16044:19;;16036:6;16007:57;:::i;:::-;16112:9;16104:6;16100:22;16095:2;16084:9;16080:18;16073:50;16146:44;16183:6;16175;16146:44;:::i;:::-;16132:58;;16239:9;16231:6;16227:22;16221:3;16210:9;16206:19;16199:51;16267:33;16293:6;16285;16267:33;:::i;:::-;16259:41;15479:827;-1:-1:-1;;;;;;;;15479:827:1:o;16311:249::-;16380:6;16433:2;16421:9;16412:7;16408:23;16404:32;16401:52;;;16449:1;16446;16439:12;16401:52;16481:9;16475:16;16500:30;16524:5;16500:30;:::i;16565:179::-;16600:3;16642:1;16624:16;16621:23;16618:120;;;16688:1;16685;16682;16667:23;-1:-1:-1;16725:1:1;16719:8;16714:3;16710:18;16618:120;16565:179;:::o;16749:671::-;16788:3;16830:4;16812:16;16809:26;16806:39;;;16749:671;:::o;16806:39::-;16872:2;16866:9;-1:-1:-1;;16937:16:1;16933:25;;16930:1;16866:9;16909:50;16988:4;16982:11;17012:16;17047:18;17118:2;17111:4;17103:6;17099:17;17096:25;17091:2;17083:6;17080:14;17077:45;17074:58;;;17125:5;;;;;16749:671;:::o;17074:58::-;17162:6;17156:4;17152:17;17141:28;;17198:3;17192:10;17225:2;17217:6;17214:14;17211:27;;;17231:5;;;;;;16749:671;:::o;17211:27::-;17315:2;17296:16;17290:4;17286:27;17282:36;17275:4;17266:6;17261:3;17257:16;17253:27;17250:69;17247:82;;;17322:5;;;;;;16749:671;:::o;17247:82::-;17338:57;17389:4;17380:6;17372;17368:19;17364:30;17358:4;17338:57;:::i;:::-;-1:-1:-1;17411:3:1;;16749:671;-1:-1:-1;;;;;16749:671:1:o;17846:404::-;18048:2;18030:21;;;18087:2;18067:18;;;18060:30;18126:34;18121:2;18106:18;;18099:62;-1:-1:-1;;;18192:2:1;18177:18;;18170:38;18240:3;18225:19;;17846:404::o;18255:561::-;-1:-1:-1;;;;;18552:15:1;;;18534:34;;18604:15;;18599:2;18584:18;;18577:43;18651:2;18636:18;;18629:34;;;18694:2;18679:18;;18672:34;;;18514:3;18737;18722:19;;18715:32;;;18477:4;;18764:46;;18790:19;;18782:6;18764:46;:::i;:::-;18756:54;18255:561;-1:-1:-1;;;;;;;18255:561:1:o

Swarm Source

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