ETH Price: $3,456.06 (-0.78%)
Gas: 2 Gwei

Token

Fuzzle Space Cases (FSPCA)
 

Overview

Max Total Supply

0 FSPCA

Holders

5,087

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x22d11f427ff1ae9c32d11588cca20a34fe6dda48
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:
FuzzleSpaceCases

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : FuzzleSpaceCases.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./BlackholePrevention.sol";

contract FuzzleSpaceCases is 
    ERC1155, 
    Pausable, 
    Ownable,
    ERC1155Burnable, 
    ERC1155Supply, 
    BlackholePrevention, 
    ReentrancyGuard 
{
    using ECDSA for bytes32;

    uint256 public immutable RED_DWARF;
    uint256 public immutable BLUE_DWARF;
    uint256 public immutable CYBER_LIME;
    uint256 public immutable GALACTIC_AMETHYST;
    uint256 public immutable THERMAL_EMISSION;
    uint256 public immutable COSMIC_RUBY;

    uint256 public immutable QUANTITY;

    enum Phase { 
        MoH, 
        Whitelisted, 
        Public 
    }

    Phase public currentPhase;

    bytes32 private whitelistMerkleRoot;
    bytes32 internal passcode = "protected";

    mapping(address => mapping(Phase => bool)) private claimedList;
    mapping(uint256 => uint16) public maxSupplies;

    event MintSpaceCase(
        address indexed receiver,
        uint8 indexed id,
        uint8 indexed phase,
        uint256 timestamp
    ); 
   
    constructor() ERC1155("ipfs://Qmef7vu2wPMS1e8wyAoxMQ8mQCCU7qdK4yWaNKjLHWmRSN/{id}.json") {
        RED_DWARF = 0;
        BLUE_DWARF = 1;
        CYBER_LIME = 2;
        GALACTIC_AMETHYST = 3;
        THERMAL_EMISSION = 4;
        COSMIC_RUBY = 5;

        maxSupplies[RED_DWARF] = 2500;
        maxSupplies[BLUE_DWARF] = 2000;
        maxSupplies[CYBER_LIME] = 2000;
        maxSupplies[GALACTIC_AMETHYST] = 1500;
        maxSupplies[THERMAL_EMISSION] = 1000;
        maxSupplies[COSMIC_RUBY] = 1000;

        QUANTITY = 1;

        currentPhase = Phase.MoH;
    } 

    function name() external pure returns (string memory) {
        return "Fuzzle Space Cases";
    }

    function symbol() external pure returns (string memory) {
        return "FSPCA";
    } 

    function getClaimedPhase(address minter, Phase phase) external view returns (bool) {
        return claimedList[minter][phase];
    }

    function setCurrentPhase(Phase phase, bytes32 newMerkleRoot) external onlyOwner {
        require(uint8(phase) <= 2, 'invalid phase');
        currentPhase = phase;
        if (phase != Phase.Public) {
            require(newMerkleRoot != "", 'newMerkleRoot empty');
            whitelistMerkleRoot = newMerkleRoot;
        } else {
            whitelistMerkleRoot = '';
        }
    }

    function mintSpaceCase(
        uint8 id,
        bytes32[] calldata merkleProof, 
        bytes32 pCode
    )
        external 
        whenNotPaused
        nonReentrant
    {     
        require(
            pCode ==
            keccak256(bytes.concat(passcode, bytes20(address(msg.sender)))),
            "invalid passcode"
        );
        require(uint8(id) <= 5, 'invalid id');  
        require(uint8(currentPhase) <= 2, 'invalid phase');
        require(totalSupply(id) < maxSupplies[id], 'reached max supply'); 

        address minter = msg.sender;

        require(!claimedList[minter][currentPhase], 'already claimed');
        claimedList[minter][currentPhase] = true;

        if (currentPhase != Phase.Public) {
            require(whitelistMerkleRoot != "", 'merkle tree not set');
            bytes32 leaf = keccak256(abi.encodePacked(minter));
            require(MerkleProof.verify(merkleProof, whitelistMerkleRoot, leaf), 'invalid Merkle Proof');           
        } 

        _mintSpaceCase(minter, id); 
    }

    function _mintSpaceCase(address minter, uint8 id) internal {        
        _mint(minter, id, QUANTITY, "");
        emit MintSpaceCase(minter, id, uint8(currentPhase), block.timestamp);       
    }

    function uri(uint256 tokenId) override public pure returns (string memory) {
        return (
            string(abi.encodePacked(
                "ipfs://Qmef7vu2wPMS1e8wyAoxMQ8mQCCU7qdK4yWaNKjLHWmRSN/",
                Strings.toString(tokenId),
                ".json"
            ))
        );
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }  

    function _beforeTokenTransfer(
        address operator, 
        address from, 
        address to, 
        uint256[] memory ids, 
        uint256[] memory amounts, 
        bytes memory data
    )
        internal
        whenNotPaused
        override(ERC1155, ERC1155Supply)
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function setPasscode(string memory strPasscode) external onlyOwner {
        require(bytes(strPasscode).length <= 32, "less than 32 bytes");
        bytes32 passcode_;
        if (bytes(strPasscode).length == 0) {
            passcode_ = 0x0;
        } else {
            assembly {
                passcode_ := mload(add(strPasscode, 32))
            }
        }
        passcode = passcode_;
    }
    
    /***********************************|
    |            Only Admin             |
    |      (blackhole prevention)       |
    |__________________________________*/

    function withdrawEther(address payable receiver, uint256 amount) external virtual onlyOwner {
        _withdrawEther(receiver, amount);
    }
    
    function withdrawERC1155(address payable receiver, address tokenAddress, uint256 tokenId, uint256 amount) external virtual onlyOwner {
        _withdrawERC1155(receiver, tokenAddress, tokenId, amount);
    }
}

File 2 of 18 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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 3 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 5 of 18 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 6 of 18 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 7 of 18 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 8 of 18 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 9 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 10 of 18 : BlackholePrevention.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";

/**
 * @notice Prevents ETH or Tokens from getting stuck in a contract by allowing
 *  the Owner/DAO to pull them out on behalf of a user
 * This is only meant to contracts that are not expected to hold tokens, but do handle transferring them.
 */
contract BlackholePrevention {
  using Address for address payable;

  event WithdrawStuckEther(address indexed receiver, uint256 amount);
  event WithdrawStuckERC1155(address indexed receiver, address indexed tokenAddress, uint256 indexed tokenId, uint256 amount);

  function _withdrawEther(address payable receiver, uint256 amount) internal virtual {
    require(receiver != address(0x0), "BHP:E-403");
    if (address(this).balance >= amount) {
      receiver.sendValue(amount);
      emit WithdrawStuckEther(receiver, amount);
    }
  }

  function _withdrawERC1155(address payable receiver, address tokenAddress, uint256 tokenId, uint256 amount) internal virtual {
    require(receiver != address(0x0), "BHP:E-403");
    if (IERC1155(tokenAddress).balanceOf(address(this), tokenId) >= amount) {
      IERC1155(tokenAddress).safeTransferFrom(address(this), receiver, tokenId, amount, "");
      emit WithdrawStuckERC1155(receiver, tokenAddress, tokenId, amount);
    }
  }
}

File 11 of 18 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 12 of 18 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 13 of 18 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @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 14 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// 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 15 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// 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 16 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 17 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 18 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

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":"receiver","type":"address"},{"indexed":true,"internalType":"uint8","name":"id","type":"uint8"},{"indexed":true,"internalType":"uint8","name":"phase","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"MintSpaceCase","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckERC1155","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckEther","type":"event"},{"inputs":[],"name":"BLUE_DWARF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COSMIC_RUBY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CYBER_LIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GALACTIC_AMETHYST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RED_DWARF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"THERMAL_EMISSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum FuzzleSpaceCases.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"enum FuzzleSpaceCases.Phase","name":"phase","type":"uint8"}],"name":"getClaimedPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupplies","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"pCode","type":"bytes32"}],"name":"mintSpaceCase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enum FuzzleSpaceCases.Phase","name":"phase","type":"uint8"},{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setCurrentPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"strPasscode","type":"string"}],"name":"setPasscode","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":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610160604052681c1c9bdd1958dd195960ba1b6008553480156200002257600080fd5b506040518060600160405280603f815260200162003443603f91396200004881620001b1565b506003805460ff191690556200005e33620001ca565b600160058181556000608081905260a0839052600260c052600360e052600461010052610120829052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3805461ffff199081166109c4179091557fbbc70db1b6c7afd11e79c0fb0051300458f1a3acb8ee9789d9b6b26c61ad9bc7805482166107d09081179091557fbff4442b8ed600beeb8e26b1279a0f0d14c6edfaec26d968ee13c86f7d4c2ba88054831690911790557fa856840544dc26124927add067d799967eac11be13e14d82cc281ea46fa39759805482166105dc1790557fe1eb2b2161a492c07c5a334e48012567cba93ec021043f53c1955516a3c5a841805482166103e8908117909155929091527ff35035bc2b01d44bd35a1dcdc552315cffb73da35cfd60570b7b777f98036f9f80549091169091179055610140526006805460ff1916905562000307565b8051620001c690600290602084019062000224565b5050565b600380546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023290620002ca565b90600052602060002090601f016020900481019282620002565760008555620002a1565b82601f106200027157805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a157825182559160200191906001019062000284565b50620002af929150620002b3565b5090565b5b80821115620002af5760008155600101620002b4565b600181811c90821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051610140516130da62000369600039600081816104a801526115b2015260006103a401526000610516015260006102ef015260006105d90152600061058c015260006104ef01526130da6000f3fe608060405234801561001057600080fd5b50600436106102105760003560e01c8063715018a611610125578063bd85b039116100ad578063f242432a1161007c578063f242432a14610574578063f246ec5114610587578063f2fde38b146105ae578063f5298aca146105c1578063fcf2df6b146105d457600080fd5b8063bd85b039146104ca578063cd3c8307146104ea578063e1e1d66214610511578063e985e9c51461053857600080fd5b80638da5cb5b116100f45780638da5cb5b1461043357806395d89b411461045c578063a0edb48b1461047d578063a22cb46514610490578063af1ff6ad146104a357600080fd5b8063715018a6146103d9578063738bbd97146103e15780638456cb59146103f457806387962dcc146103fc57600080fd5b80633bc3b2a6116101a8578063522f681511610177578063522f68151461036e5780635a042310146103815780635c975abb146103945780636af8db0e1461039f5780636b20c454146103c657600080fd5b80633bc3b2a6146103115780633f4ba83a146103245780634e1273f41461032c5780634f558e791461034c57600080fd5b80630e89341c116101e45780630e89341c146102af5780632eb2c2d6146102c257806330b38f19146102d7578063367acea8146102ea57600080fd5b8062fdd58e1461021557806301ffc9a71461023b578063055ad42e1461025e57806306fdde0314610278575b600080fd5b610228610223366004612416565b6105fb565b6040519081526020015b60405180910390f35b61024e610249366004612458565b610692565b6040519015158152602001610232565b60065461026b9060ff1681565b6040516102329190612492565b60408051808201909152601281527146757a7a6c6520537061636520436173657360701b60208201525b6040516102329190612512565b6102a26102bd366004612525565b6106e4565b6102d56102d0366004612694565b610715565b005b61024e6102e5366004612756565b6107ac565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b6102d561031f36600461278b565b610803565b6102d5610918565b61033f61033a3660046127a7565b610952565b60405161023291906128af565b61024e61035a366004612525565b600090815260046020526040902054151590565b6102d561037c366004612416565b610a7c565b6102d561038f3660046128c2565b610ab6565b60035460ff1661024e565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b6102d56103d4366004612956565b610ee5565b6102d5610f2d565b6102d56103ef3660046129cc565b610f67565b6102d5610fff565b61042061040a366004612525565b600a6020526000908152604090205461ffff1681565b60405161ffff9091168152602001610232565b60035461010090046001600160a01b03166040516001600160a01b039091168152602001610232565b604080518082019091526005815264465350434160d81b60208201526102a2565b6102d561048b366004612a15565b611037565b6102d561049e366004612a5b565b611079565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b6102286104d8366004612525565b60009081526004602052604090205490565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b61024e610546366004612a99565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102d5610582366004612ac7565b611084565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b6102d56105bc366004612b30565b6110c9565b6102d56105cf366004612b4d565b61116a565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160a01b03831661066c5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806106c357506001600160e01b031982166303a24d0760e21b145b806106de57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606106ef826111ad565b6040516020016106ff9190612b82565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061073157506107318533610546565b6107985760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610663565b6107a585858585856112b3565b5050505050565b6001600160a01b0382166000908152600960205260408120818360028111156107d7576107d761247c565b60028111156107e8576107e861247c565b815260208101919091526040016000205460ff169392505050565b6003546001600160a01b036101009091041633146108335760405162461bcd60e51b815260040161066390612bf5565b60028260028111156108475761084761247c565b60ff1611156108885760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706861736560981b6044820152606401610663565b6006805483919060ff191660018360028111156108a7576108a761247c565b021790555060028260028111156108c0576108c061247c565b1461090e57806109085760405162461bcd60e51b81526020600482015260136024820152726e65774d65726b6c65526f6f7420656d70747960681b6044820152606401610663565b60075550565b60006007555b5050565b6003546001600160a01b036101009091041633146109485760405162461bcd60e51b815260040161066390612bf5565b61095061145d565b565b606081518351146109b75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610663565b6000835167ffffffffffffffff8111156109d3576109d361253e565b6040519080825280602002602001820160405280156109fc578160200160208202803683370190505b50905060005b8451811015610a7457610a47858281518110610a2057610a20612c2a565b6020026020010151858381518110610a3a57610a3a612c2a565b60200260200101516105fb565b828281518110610a5957610a59612c2a565b6020908102919091010152610a6d81612c56565b9050610a02565b509392505050565b6003546001600160a01b03610100909104163314610aac5760405162461bcd60e51b815260040161066390612bf5565b61091482826114f0565b60035460ff1615610ad95760405162461bcd60e51b815260040161066390612c71565b60026005541415610b2c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610663565b60026005556008546040805160208101929092526bffffffffffffffffffffffff193360601b1690820152605401604051602081830303815290604052805190602001208114610bb15760405162461bcd60e51b815260206004820152601060248201526f696e76616c69642070617373636f646560801b6044820152606401610663565b60058460ff161115610bf25760405162461bcd60e51b815260206004820152600a6024820152691a5b9d985b1a59081a5960b21b6044820152606401610663565b60065460029060ff1681811115610c0b57610c0b61247c565b60ff161115610c4c5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706861736560981b6044820152606401610663565b60ff84166000818152600a602052604090205461ffff1690610c7a9060009081526004602052604090205490565b10610cbc5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610663565b33600081815260096020526040812060065490919060ff166002811115610ce557610ce561247c565b6002811115610cf657610cf661247c565b815260208101919091526040016000205460ff1615610d495760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610663565b6001600160a01b03811660009081526009602052604081206006546001929060ff166002811115610d7c57610d7c61247c565b6002811115610d8d57610d8d61247c565b81526020810191909152604001600020805460ff1916911515919091179055600260065460ff166002811115610dc557610dc561247c565b14610ecf57600754610e0f5760405162461bcd60e51b81526020600482015260136024820152721b595c9adb19481d1c9959481b9bdd081cd95d606a1b6044820152606401610663565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050610e8a858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506007549150849050611592565b610ecd5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21026b2b935b63290283937b7b360611b6044820152606401610663565b505b610ed981866115a8565b50506001600555505050565b6001600160a01b038316331480610f015750610f018333610546565b610f1d5760405162461bcd60e51b815260040161066390612c9b565b610f2883838361164b565b505050565b6003546001600160a01b03610100909104163314610f5d5760405162461bcd60e51b815260040161066390612bf5565b61095060006117e7565b6003546001600160a01b03610100909104163314610f975760405162461bcd60e51b815260040161066390612bf5565b602081511115610fde5760405162461bcd60e51b81526020600482015260126024820152716c657373207468616e20333220627974657360701b6044820152606401610663565b6000815160001415610ff257506000610ff9565b5060208101515b60085550565b6003546001600160a01b0361010090910416331461102f5760405162461bcd60e51b815260040161066390612bf5565b610950611841565b6003546001600160a01b036101009091041633146110675760405162461bcd60e51b815260040161066390612bf5565b61107384848484611899565b50505050565b610914338383611a20565b6001600160a01b0385163314806110a057506110a08533610546565b6110bc5760405162461bcd60e51b815260040161066390612c9b565b6107a58585858585611b01565b6003546001600160a01b036101009091041633146110f95760405162461bcd60e51b815260040161066390612bf5565b6001600160a01b03811661115e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610663565b611167816117e7565b50565b6001600160a01b03831633148061118657506111868333610546565b6111a25760405162461bcd60e51b815260040161066390612c9b565b610f28838383611c39565b6060816111d15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111fb57806111e581612c56565b91506111f49050600a83612cfa565b91506111d5565b60008167ffffffffffffffff8111156112165761121661253e565b6040519080825280601f01601f191660200182016040528015611240576020820181803683370190505b5090505b84156112ab57611255600183612d0e565b9150611262600a86612d25565b61126d906030612d39565b60f81b81838151811061128257611282612c2a565b60200101906001600160f81b031916908160001a9053506112a4600a86612cfa565b9450611244565b949350505050565b81518351146112d45760405162461bcd60e51b815260040161066390612d51565b6001600160a01b0384166112fa5760405162461bcd60e51b815260040161066390612d99565b33611309818787878787611d56565b60005b84518110156113ef57600085828151811061132957611329612c2a565b60200260200101519050600085838151811061134757611347612c2a565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113975760405162461bcd60e51b815260040161066390612dde565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906113d4908490612d39565b92505081905550505050806113e890612c56565b905061130c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161143f929190612e28565b60405180910390a4611455818787878787611d87565b505050505050565b60035460ff166114a65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610663565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166115325760405162461bcd60e51b81526020600482015260096024820152684248503a452d34303360b81b6044820152606401610663565b8047106109145761154c6001600160a01b03831682611ee3565b816001600160a01b03167eddb683bb45cd5d0ad8a200c6fae7152b1c236ee90a4a37db692407f5cc38bd8260405161158691815260200190565b60405180910390a25050565b60008261159f8584611ffc565b14949350505050565b6115e6828260ff167f000000000000000000000000000000000000000000000000000000000000000060405180602001604052806000815250612068565b60065460ff1660028111156115fd576115fd61247c565b60ff168160ff16836001600160a01b03167f5564f761719ff8863e51b050d7f2152e3c29941ada13632cac20569e04da9cf24260405161163f91815260200190565b60405180910390a45050565b6001600160a01b0383166116715760405162461bcd60e51b815260040161066390612e56565b80518251146116925760405162461bcd60e51b815260040161066390612d51565b60003390506116b581856000868660405180602001604052806000815250611d56565b60005b835181101561177a5760008482815181106116d5576116d5612c2a565b6020026020010151905060008483815181106116f3576116f3612c2a565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156117435760405162461bcd60e51b815260040161066390612e99565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061177281612c56565b9150506116b8565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516117cb929190612e28565b60405180910390a4604080516020810190915260009052611073565b600380546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156118645760405162461bcd60e51b815260040161066390612c71565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114d33390565b6001600160a01b0384166118db5760405162461bcd60e51b81526020600482015260096024820152684248503a452d34303360b81b6044820152606401610663565b604051627eeac760e11b81523060048201526024810183905281906001600160a01b0385169062fdd58e90604401602060405180830381865afa158015611926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194a9190612edd565b1061107357604051637921219560e11b81523060048201526001600160a01b038581166024830152604482018490526064820183905260a06084830152600060a483015284169063f242432a9060c401600060405180830381600087803b1580156119b457600080fd5b505af11580156119c8573d6000803e3d6000fd5b5050505081836001600160a01b0316856001600160a01b03167f620337bf89eea2b9ae2657beead83b5fa620452817118348aff96e201d52598b84604051611a1291815260200190565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03161415611a945760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610663565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611b275760405162461bcd60e51b815260040161066390612d99565b336000611b3385612182565b90506000611b4085612182565b9050611b50838989858589611d56565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015611b915760405162461bcd60e51b815260040161066390612dde565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611bce908490612d39565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c2e848a8a8a8a8a6121cd565b505050505050505050565b6001600160a01b038316611c5f5760405162461bcd60e51b815260040161066390612e56565b336000611c6b84612182565b90506000611c7884612182565b9050611c9883876000858560405180602001604052806000815250611d56565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015611cd95760405162461bcd60e51b815260040161066390612e99565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b60035460ff1615611d795760405162461bcd60e51b815260040161066390612c71565b611455868686868686612288565b6001600160a01b0384163b156114555760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611dcb9089908990889088908890600401612ef6565b6020604051808303816000875af1925050508015611e06575060408051601f3d908101601f19168201909252611e0391810190612f54565b60015b611eb357611e12612f71565b806308c379a01415611e4c5750611e27612f8d565b80611e325750611e4e565b8060405162461bcd60e51b81526004016106639190612512565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610663565b6001600160e01b0319811663bc197c8160e01b14611d4d5760405162461bcd60e51b815260040161066390613017565b80471015611f335760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610663565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b5050905080610f285760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610663565b600081815b8451811015610a7457600085828151811061201e5761201e612c2a565b602002602001015190508083116120445760008381526020829052604090209250612055565b600081815260208490526040902092505b508061206081612c56565b915050612001565b6001600160a01b0384166120c85760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610663565b3360006120d485612182565b905060006120e185612182565b90506120f283600089858589611d56565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290612122908490612d39565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d4d836000898989896121cd565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106121bc576121bc612c2a565b602090810291909101015292915050565b6001600160a01b0384163b156114555760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612211908990899088908890889060040161305f565b6020604051808303816000875af192505050801561224c575060408051601f3d908101601f1916820190925261224991810190612f54565b60015b61225857611e12612f71565b6001600160e01b0319811663f23a6e6160e01b14611d4d5760405162461bcd60e51b815260040161066390613017565b6001600160a01b03851661230f5760005b835181101561230d578281815181106122b4576122b4612c2a565b6020026020010151600460008684815181106122d2576122d2612c2a565b6020026020010151815260200190815260200160002060008282546122f79190612d39565b90915550612306905081612c56565b9050612299565b505b6001600160a01b0384166114555760005b8351811015611d4d57600084828151811061233d5761233d612c2a565b60200260200101519050600084838151811061235b5761235b612c2a565b60200260200101519050600060046000848152602001908152602001600020549050818110156123de5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610663565b600092835260046020526040909220910390556123fa81612c56565b9050612320565b6001600160a01b038116811461116757600080fd5b6000806040838503121561242957600080fd5b823561243481612401565b946020939093013593505050565b6001600160e01b03198116811461116757600080fd5b60006020828403121561246a57600080fd5b813561247581612442565b9392505050565b634e487b7160e01b600052602160045260246000fd5b60208101600383106124b457634e487b7160e01b600052602160045260246000fd5b91905290565b60005b838110156124d55781810151838201526020016124bd565b838111156110735750506000910152565b600081518084526124fe8160208601602086016124ba565b601f01601f19169290920160200192915050565b60208152600061247560208301846124e6565b60006020828403121561253757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561257a5761257a61253e565b6040525050565b600067ffffffffffffffff82111561259b5761259b61253e565b5060051b60200190565b600082601f8301126125b657600080fd5b813560206125c382612581565b6040516125d08282612554565b83815260059390931b85018201928281019150868411156125f057600080fd5b8286015b8481101561260b57803583529183019183016125f4565b509695505050505050565b600067ffffffffffffffff8311156126305761263061253e565b604051612647601f8501601f191660200182612554565b80915083815284848401111561265c57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261268557600080fd5b61247583833560208501612616565b600080600080600060a086880312156126ac57600080fd5b85356126b781612401565b945060208601356126c781612401565b9350604086013567ffffffffffffffff808211156126e457600080fd5b6126f089838a016125a5565b9450606088013591508082111561270657600080fd5b61271289838a016125a5565b9350608088013591508082111561272857600080fd5b5061273588828901612674565b9150509295509295909350565b80356003811061275157600080fd5b919050565b6000806040838503121561276957600080fd5b823561277481612401565b915061278260208401612742565b90509250929050565b6000806040838503121561279e57600080fd5b61243483612742565b600080604083850312156127ba57600080fd5b823567ffffffffffffffff808211156127d257600080fd5b818501915085601f8301126127e657600080fd5b813560206127f382612581565b6040516128008282612554565b83815260059390931b850182019282810191508984111561282057600080fd5b948201945b8386101561284757853561283881612401565b82529482019490820190612825565b9650508601359250508082111561285d57600080fd5b5061286a858286016125a5565b9150509250929050565b600081518084526020808501945080840160005b838110156128a457815187529582019590820190600101612888565b509495945050505050565b6020815260006124756020830184612874565b600080600080606085870312156128d857600080fd5b843560ff811681146128e957600080fd5b9350602085013567ffffffffffffffff8082111561290657600080fd5b818701915087601f83011261291a57600080fd5b81358181111561292957600080fd5b8860208260051b850101111561293e57600080fd5b95986020929092019750949560400135945092505050565b60008060006060848603121561296b57600080fd5b833561297681612401565b9250602084013567ffffffffffffffff8082111561299357600080fd5b61299f878388016125a5565b935060408601359150808211156129b557600080fd5b506129c2868287016125a5565b9150509250925092565b6000602082840312156129de57600080fd5b813567ffffffffffffffff8111156129f557600080fd5b8201601f81018413612a0657600080fd5b6112ab84823560208401612616565b60008060008060808587031215612a2b57600080fd5b8435612a3681612401565b93506020850135612a4681612401565b93969395505050506040820135916060013590565b60008060408385031215612a6e57600080fd5b8235612a7981612401565b915060208301358015158114612a8e57600080fd5b809150509250929050565b60008060408385031215612aac57600080fd5b8235612ab781612401565b91506020830135612a8e81612401565b600080600080600060a08688031215612adf57600080fd5b8535612aea81612401565b94506020860135612afa81612401565b93506040860135925060608601359150608086013567ffffffffffffffff811115612b2457600080fd5b61273588828901612674565b600060208284031215612b4257600080fd5b813561247581612401565b600080600060608486031215612b6257600080fd5b8335612b6d81612401565b95602085013595506040909401359392505050565b7f697066733a2f2f516d65663776753277504d533165387779416f784d51386d518152754343553771644b347957614e4b6a4c48576d52534e2f60501b602082015260008251612bd98160368501602087016124ba565b64173539b7b760d91b6036939091019283015250603b01919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612c6a57612c6a612c40565b5060010190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612d0957612d09612ce4565b500490565b600082821015612d2057612d20612c40565b500390565b600082612d3457612d34612ce4565b500690565b60008219821115612d4c57612d4c612c40565b500190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612e3b6040830185612874565b8281036020840152612e4d8185612874565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b600060208284031215612eef57600080fd5b5051919050565b6001600160a01b0386811682528516602082015260a060408201819052600090612f2290830186612874565b8281036060840152612f348186612874565b90508281036080840152612f4881856124e6565b98975050505050505050565b600060208284031215612f6657600080fd5b815161247581612442565b600060033d1115612f8a5760046000803e5060005160e01c5b90565b600060443d1015612f9b5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612fcb57505050505090565b8285019150815181811115612fe35750505050505090565b843d8701016020828501011115612ffd5750505050505090565b61300c60208286010187612554565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613099908301846124e6565b97965050505050505056fea26469706673582212205704d4a4c1865a0e785df6b8229ca83454218c3ef69800fe284f8ecddfa8d96564736f6c634300080c0033697066733a2f2f516d65663776753277504d533165387779416f784d51386d514343553771644b347957614e4b6a4c48576d52534e2f7b69647d2e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102105760003560e01c8063715018a611610125578063bd85b039116100ad578063f242432a1161007c578063f242432a14610574578063f246ec5114610587578063f2fde38b146105ae578063f5298aca146105c1578063fcf2df6b146105d457600080fd5b8063bd85b039146104ca578063cd3c8307146104ea578063e1e1d66214610511578063e985e9c51461053857600080fd5b80638da5cb5b116100f45780638da5cb5b1461043357806395d89b411461045c578063a0edb48b1461047d578063a22cb46514610490578063af1ff6ad146104a357600080fd5b8063715018a6146103d9578063738bbd97146103e15780638456cb59146103f457806387962dcc146103fc57600080fd5b80633bc3b2a6116101a8578063522f681511610177578063522f68151461036e5780635a042310146103815780635c975abb146103945780636af8db0e1461039f5780636b20c454146103c657600080fd5b80633bc3b2a6146103115780633f4ba83a146103245780634e1273f41461032c5780634f558e791461034c57600080fd5b80630e89341c116101e45780630e89341c146102af5780632eb2c2d6146102c257806330b38f19146102d7578063367acea8146102ea57600080fd5b8062fdd58e1461021557806301ffc9a71461023b578063055ad42e1461025e57806306fdde0314610278575b600080fd5b610228610223366004612416565b6105fb565b6040519081526020015b60405180910390f35b61024e610249366004612458565b610692565b6040519015158152602001610232565b60065461026b9060ff1681565b6040516102329190612492565b60408051808201909152601281527146757a7a6c6520537061636520436173657360701b60208201525b6040516102329190612512565b6102a26102bd366004612525565b6106e4565b6102d56102d0366004612694565b610715565b005b61024e6102e5366004612756565b6107ac565b6102287f000000000000000000000000000000000000000000000000000000000000000381565b6102d561031f36600461278b565b610803565b6102d5610918565b61033f61033a3660046127a7565b610952565b60405161023291906128af565b61024e61035a366004612525565b600090815260046020526040902054151590565b6102d561037c366004612416565b610a7c565b6102d561038f3660046128c2565b610ab6565b60035460ff1661024e565b6102287f000000000000000000000000000000000000000000000000000000000000000581565b6102d56103d4366004612956565b610ee5565b6102d5610f2d565b6102d56103ef3660046129cc565b610f67565b6102d5610fff565b61042061040a366004612525565b600a6020526000908152604090205461ffff1681565b60405161ffff9091168152602001610232565b60035461010090046001600160a01b03166040516001600160a01b039091168152602001610232565b604080518082019091526005815264465350434160d81b60208201526102a2565b6102d561048b366004612a15565b611037565b6102d561049e366004612a5b565b611079565b6102287f000000000000000000000000000000000000000000000000000000000000000181565b6102286104d8366004612525565b60009081526004602052604090205490565b6102287f000000000000000000000000000000000000000000000000000000000000000081565b6102287f000000000000000000000000000000000000000000000000000000000000000481565b61024e610546366004612a99565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102d5610582366004612ac7565b611084565b6102287f000000000000000000000000000000000000000000000000000000000000000181565b6102d56105bc366004612b30565b6110c9565b6102d56105cf366004612b4d565b61116a565b6102287f000000000000000000000000000000000000000000000000000000000000000281565b60006001600160a01b03831661066c5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806106c357506001600160e01b031982166303a24d0760e21b145b806106de57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606106ef826111ad565b6040516020016106ff9190612b82565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061073157506107318533610546565b6107985760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610663565b6107a585858585856112b3565b5050505050565b6001600160a01b0382166000908152600960205260408120818360028111156107d7576107d761247c565b60028111156107e8576107e861247c565b815260208101919091526040016000205460ff169392505050565b6003546001600160a01b036101009091041633146108335760405162461bcd60e51b815260040161066390612bf5565b60028260028111156108475761084761247c565b60ff1611156108885760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706861736560981b6044820152606401610663565b6006805483919060ff191660018360028111156108a7576108a761247c565b021790555060028260028111156108c0576108c061247c565b1461090e57806109085760405162461bcd60e51b81526020600482015260136024820152726e65774d65726b6c65526f6f7420656d70747960681b6044820152606401610663565b60075550565b60006007555b5050565b6003546001600160a01b036101009091041633146109485760405162461bcd60e51b815260040161066390612bf5565b61095061145d565b565b606081518351146109b75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610663565b6000835167ffffffffffffffff8111156109d3576109d361253e565b6040519080825280602002602001820160405280156109fc578160200160208202803683370190505b50905060005b8451811015610a7457610a47858281518110610a2057610a20612c2a565b6020026020010151858381518110610a3a57610a3a612c2a565b60200260200101516105fb565b828281518110610a5957610a59612c2a565b6020908102919091010152610a6d81612c56565b9050610a02565b509392505050565b6003546001600160a01b03610100909104163314610aac5760405162461bcd60e51b815260040161066390612bf5565b61091482826114f0565b60035460ff1615610ad95760405162461bcd60e51b815260040161066390612c71565b60026005541415610b2c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610663565b60026005556008546040805160208101929092526bffffffffffffffffffffffff193360601b1690820152605401604051602081830303815290604052805190602001208114610bb15760405162461bcd60e51b815260206004820152601060248201526f696e76616c69642070617373636f646560801b6044820152606401610663565b60058460ff161115610bf25760405162461bcd60e51b815260206004820152600a6024820152691a5b9d985b1a59081a5960b21b6044820152606401610663565b60065460029060ff1681811115610c0b57610c0b61247c565b60ff161115610c4c5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706861736560981b6044820152606401610663565b60ff84166000818152600a602052604090205461ffff1690610c7a9060009081526004602052604090205490565b10610cbc5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610663565b33600081815260096020526040812060065490919060ff166002811115610ce557610ce561247c565b6002811115610cf657610cf661247c565b815260208101919091526040016000205460ff1615610d495760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610663565b6001600160a01b03811660009081526009602052604081206006546001929060ff166002811115610d7c57610d7c61247c565b6002811115610d8d57610d8d61247c565b81526020810191909152604001600020805460ff1916911515919091179055600260065460ff166002811115610dc557610dc561247c565b14610ecf57600754610e0f5760405162461bcd60e51b81526020600482015260136024820152721b595c9adb19481d1c9959481b9bdd081cd95d606a1b6044820152606401610663565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050610e8a858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506007549150849050611592565b610ecd5760405162461bcd60e51b815260206004820152601460248201527334b73b30b634b21026b2b935b63290283937b7b360611b6044820152606401610663565b505b610ed981866115a8565b50506001600555505050565b6001600160a01b038316331480610f015750610f018333610546565b610f1d5760405162461bcd60e51b815260040161066390612c9b565b610f2883838361164b565b505050565b6003546001600160a01b03610100909104163314610f5d5760405162461bcd60e51b815260040161066390612bf5565b61095060006117e7565b6003546001600160a01b03610100909104163314610f975760405162461bcd60e51b815260040161066390612bf5565b602081511115610fde5760405162461bcd60e51b81526020600482015260126024820152716c657373207468616e20333220627974657360701b6044820152606401610663565b6000815160001415610ff257506000610ff9565b5060208101515b60085550565b6003546001600160a01b0361010090910416331461102f5760405162461bcd60e51b815260040161066390612bf5565b610950611841565b6003546001600160a01b036101009091041633146110675760405162461bcd60e51b815260040161066390612bf5565b61107384848484611899565b50505050565b610914338383611a20565b6001600160a01b0385163314806110a057506110a08533610546565b6110bc5760405162461bcd60e51b815260040161066390612c9b565b6107a58585858585611b01565b6003546001600160a01b036101009091041633146110f95760405162461bcd60e51b815260040161066390612bf5565b6001600160a01b03811661115e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610663565b611167816117e7565b50565b6001600160a01b03831633148061118657506111868333610546565b6111a25760405162461bcd60e51b815260040161066390612c9b565b610f28838383611c39565b6060816111d15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111fb57806111e581612c56565b91506111f49050600a83612cfa565b91506111d5565b60008167ffffffffffffffff8111156112165761121661253e565b6040519080825280601f01601f191660200182016040528015611240576020820181803683370190505b5090505b84156112ab57611255600183612d0e565b9150611262600a86612d25565b61126d906030612d39565b60f81b81838151811061128257611282612c2a565b60200101906001600160f81b031916908160001a9053506112a4600a86612cfa565b9450611244565b949350505050565b81518351146112d45760405162461bcd60e51b815260040161066390612d51565b6001600160a01b0384166112fa5760405162461bcd60e51b815260040161066390612d99565b33611309818787878787611d56565b60005b84518110156113ef57600085828151811061132957611329612c2a565b60200260200101519050600085838151811061134757611347612c2a565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113975760405162461bcd60e51b815260040161066390612dde565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906113d4908490612d39565b92505081905550505050806113e890612c56565b905061130c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161143f929190612e28565b60405180910390a4611455818787878787611d87565b505050505050565b60035460ff166114a65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610663565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166115325760405162461bcd60e51b81526020600482015260096024820152684248503a452d34303360b81b6044820152606401610663565b8047106109145761154c6001600160a01b03831682611ee3565b816001600160a01b03167eddb683bb45cd5d0ad8a200c6fae7152b1c236ee90a4a37db692407f5cc38bd8260405161158691815260200190565b60405180910390a25050565b60008261159f8584611ffc565b14949350505050565b6115e6828260ff167f000000000000000000000000000000000000000000000000000000000000000160405180602001604052806000815250612068565b60065460ff1660028111156115fd576115fd61247c565b60ff168160ff16836001600160a01b03167f5564f761719ff8863e51b050d7f2152e3c29941ada13632cac20569e04da9cf24260405161163f91815260200190565b60405180910390a45050565b6001600160a01b0383166116715760405162461bcd60e51b815260040161066390612e56565b80518251146116925760405162461bcd60e51b815260040161066390612d51565b60003390506116b581856000868660405180602001604052806000815250611d56565b60005b835181101561177a5760008482815181106116d5576116d5612c2a565b6020026020010151905060008483815181106116f3576116f3612c2a565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156117435760405162461bcd60e51b815260040161066390612e99565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061177281612c56565b9150506116b8565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516117cb929190612e28565b60405180910390a4604080516020810190915260009052611073565b600380546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156118645760405162461bcd60e51b815260040161066390612c71565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114d33390565b6001600160a01b0384166118db5760405162461bcd60e51b81526020600482015260096024820152684248503a452d34303360b81b6044820152606401610663565b604051627eeac760e11b81523060048201526024810183905281906001600160a01b0385169062fdd58e90604401602060405180830381865afa158015611926573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194a9190612edd565b1061107357604051637921219560e11b81523060048201526001600160a01b038581166024830152604482018490526064820183905260a06084830152600060a483015284169063f242432a9060c401600060405180830381600087803b1580156119b457600080fd5b505af11580156119c8573d6000803e3d6000fd5b5050505081836001600160a01b0316856001600160a01b03167f620337bf89eea2b9ae2657beead83b5fa620452817118348aff96e201d52598b84604051611a1291815260200190565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03161415611a945760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610663565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611b275760405162461bcd60e51b815260040161066390612d99565b336000611b3385612182565b90506000611b4085612182565b9050611b50838989858589611d56565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015611b915760405162461bcd60e51b815260040161066390612dde565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611bce908490612d39565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c2e848a8a8a8a8a6121cd565b505050505050505050565b6001600160a01b038316611c5f5760405162461bcd60e51b815260040161066390612e56565b336000611c6b84612182565b90506000611c7884612182565b9050611c9883876000858560405180602001604052806000815250611d56565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015611cd95760405162461bcd60e51b815260040161066390612e99565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b60035460ff1615611d795760405162461bcd60e51b815260040161066390612c71565b611455868686868686612288565b6001600160a01b0384163b156114555760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611dcb9089908990889088908890600401612ef6565b6020604051808303816000875af1925050508015611e06575060408051601f3d908101601f19168201909252611e0391810190612f54565b60015b611eb357611e12612f71565b806308c379a01415611e4c5750611e27612f8d565b80611e325750611e4e565b8060405162461bcd60e51b81526004016106639190612512565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610663565b6001600160e01b0319811663bc197c8160e01b14611d4d5760405162461bcd60e51b815260040161066390613017565b80471015611f335760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610663565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b5050905080610f285760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610663565b600081815b8451811015610a7457600085828151811061201e5761201e612c2a565b602002602001015190508083116120445760008381526020829052604090209250612055565b600081815260208490526040902092505b508061206081612c56565b915050612001565b6001600160a01b0384166120c85760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610663565b3360006120d485612182565b905060006120e185612182565b90506120f283600089858589611d56565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290612122908490612d39565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d4d836000898989896121cd565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106121bc576121bc612c2a565b602090810291909101015292915050565b6001600160a01b0384163b156114555760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612211908990899088908890889060040161305f565b6020604051808303816000875af192505050801561224c575060408051601f3d908101601f1916820190925261224991810190612f54565b60015b61225857611e12612f71565b6001600160e01b0319811663f23a6e6160e01b14611d4d5760405162461bcd60e51b815260040161066390613017565b6001600160a01b03851661230f5760005b835181101561230d578281815181106122b4576122b4612c2a565b6020026020010151600460008684815181106122d2576122d2612c2a565b6020026020010151815260200190815260200160002060008282546122f79190612d39565b90915550612306905081612c56565b9050612299565b505b6001600160a01b0384166114555760005b8351811015611d4d57600084828151811061233d5761233d612c2a565b60200260200101519050600084838151811061235b5761235b612c2a565b60200260200101519050600060046000848152602001908152602001600020549050818110156123de5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610663565b600092835260046020526040909220910390556123fa81612c56565b9050612320565b6001600160a01b038116811461116757600080fd5b6000806040838503121561242957600080fd5b823561243481612401565b946020939093013593505050565b6001600160e01b03198116811461116757600080fd5b60006020828403121561246a57600080fd5b813561247581612442565b9392505050565b634e487b7160e01b600052602160045260246000fd5b60208101600383106124b457634e487b7160e01b600052602160045260246000fd5b91905290565b60005b838110156124d55781810151838201526020016124bd565b838111156110735750506000910152565b600081518084526124fe8160208601602086016124ba565b601f01601f19169290920160200192915050565b60208152600061247560208301846124e6565b60006020828403121561253757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561257a5761257a61253e565b6040525050565b600067ffffffffffffffff82111561259b5761259b61253e565b5060051b60200190565b600082601f8301126125b657600080fd5b813560206125c382612581565b6040516125d08282612554565b83815260059390931b85018201928281019150868411156125f057600080fd5b8286015b8481101561260b57803583529183019183016125f4565b509695505050505050565b600067ffffffffffffffff8311156126305761263061253e565b604051612647601f8501601f191660200182612554565b80915083815284848401111561265c57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261268557600080fd5b61247583833560208501612616565b600080600080600060a086880312156126ac57600080fd5b85356126b781612401565b945060208601356126c781612401565b9350604086013567ffffffffffffffff808211156126e457600080fd5b6126f089838a016125a5565b9450606088013591508082111561270657600080fd5b61271289838a016125a5565b9350608088013591508082111561272857600080fd5b5061273588828901612674565b9150509295509295909350565b80356003811061275157600080fd5b919050565b6000806040838503121561276957600080fd5b823561277481612401565b915061278260208401612742565b90509250929050565b6000806040838503121561279e57600080fd5b61243483612742565b600080604083850312156127ba57600080fd5b823567ffffffffffffffff808211156127d257600080fd5b818501915085601f8301126127e657600080fd5b813560206127f382612581565b6040516128008282612554565b83815260059390931b850182019282810191508984111561282057600080fd5b948201945b8386101561284757853561283881612401565b82529482019490820190612825565b9650508601359250508082111561285d57600080fd5b5061286a858286016125a5565b9150509250929050565b600081518084526020808501945080840160005b838110156128a457815187529582019590820190600101612888565b509495945050505050565b6020815260006124756020830184612874565b600080600080606085870312156128d857600080fd5b843560ff811681146128e957600080fd5b9350602085013567ffffffffffffffff8082111561290657600080fd5b818701915087601f83011261291a57600080fd5b81358181111561292957600080fd5b8860208260051b850101111561293e57600080fd5b95986020929092019750949560400135945092505050565b60008060006060848603121561296b57600080fd5b833561297681612401565b9250602084013567ffffffffffffffff8082111561299357600080fd5b61299f878388016125a5565b935060408601359150808211156129b557600080fd5b506129c2868287016125a5565b9150509250925092565b6000602082840312156129de57600080fd5b813567ffffffffffffffff8111156129f557600080fd5b8201601f81018413612a0657600080fd5b6112ab84823560208401612616565b60008060008060808587031215612a2b57600080fd5b8435612a3681612401565b93506020850135612a4681612401565b93969395505050506040820135916060013590565b60008060408385031215612a6e57600080fd5b8235612a7981612401565b915060208301358015158114612a8e57600080fd5b809150509250929050565b60008060408385031215612aac57600080fd5b8235612ab781612401565b91506020830135612a8e81612401565b600080600080600060a08688031215612adf57600080fd5b8535612aea81612401565b94506020860135612afa81612401565b93506040860135925060608601359150608086013567ffffffffffffffff811115612b2457600080fd5b61273588828901612674565b600060208284031215612b4257600080fd5b813561247581612401565b600080600060608486031215612b6257600080fd5b8335612b6d81612401565b95602085013595506040909401359392505050565b7f697066733a2f2f516d65663776753277504d533165387779416f784d51386d518152754343553771644b347957614e4b6a4c48576d52534e2f60501b602082015260008251612bd98160368501602087016124ba565b64173539b7b760d91b6036939091019283015250603b01919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612c6a57612c6a612c40565b5060010190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612d0957612d09612ce4565b500490565b600082821015612d2057612d20612c40565b500390565b600082612d3457612d34612ce4565b500690565b60008219821115612d4c57612d4c612c40565b500190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612e3b6040830185612874565b8281036020840152612e4d8185612874565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b600060208284031215612eef57600080fd5b5051919050565b6001600160a01b0386811682528516602082015260a060408201819052600090612f2290830186612874565b8281036060840152612f348186612874565b90508281036080840152612f4881856124e6565b98975050505050505050565b600060208284031215612f6657600080fd5b815161247581612442565b600060033d1115612f8a5760046000803e5060005160e01c5b90565b600060443d1015612f9b5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612fcb57505050505090565b8285019150815181811115612fe35750505050505090565b843d8701016020828501011115612ffd5750505050505090565b61300c60208286010187612554565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613099908301846124e6565b97965050505050505056fea26469706673582212205704d4a4c1865a0e785df6b8229ca83454218c3ef69800fe284f8ecddfa8d96564736f6c634300080c0033

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.