ETH Price: $3,684.73 (-6.29%)

Token

 

Overview

Max Total Supply

7

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xccba31057d456e37cae60f4b7dfbfdb8e49e562d
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:
BlueCheckToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : contract-1a588777ce.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/[email protected]/token/ERC1155/ERC1155.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Supply.sol";

contract BlueCheckToken is ERC1155, Ownable, ERC1155Supply {
    uint256 public minimumDonationAmount;
    constructor() ERC1155("") {}

    function setMinimumDonationAmount(uint256 newDonationAmount) public onlyOwner {
        minimumDonationAmount = newDonationAmount;
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function mint()
        public
        payable
    {
        require(msg.value >= minimumDonationAmount, 'Amount was lower than minimum donation');
        _mint(msg.sender, 1, 1, "");
        payable(owner()).transfer(msg.value);
    }

    // The following functions are overrides required by Solidity.

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

File 2 of 11 : 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 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 4 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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: address zero is not a valid owner");
        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 token owner or 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: caller is not token owner or 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}.
     *
     * 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 _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`
     *
     * Emits a {TransferSingle} event.
     *
     * 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}.
     *
     * Emits a {TransferBatch} event.
     *
     * 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 an {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 `ids` and `amounts` 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 11 : 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 9 of 11 : 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 10 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 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 11 of 11 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","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":[],"name":"minimumDonationAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDonationAmount","type":"uint256"}],"name":"setMinimumDonationAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200005a60201b60201c565b5062000054620000486200006f60201b60201c565b6200007760201b60201c565b6200049e565b80600290816200006b9190620003b7565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001bf57607f821691505b602082108103620001d557620001d462000177565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200023f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000200565b6200024b868362000200565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000298620002926200028c8462000263565b6200026d565b62000263565b9050919050565b6000819050919050565b620002b48362000277565b620002cc620002c3826200029f565b8484546200020d565b825550505050565b600090565b620002e3620002d4565b620002f0818484620002a9565b505050565b5b8181101562000318576200030c600082620002d9565b600181019050620002f6565b5050565b601f82111562000367576200033181620001db565b6200033c84620001f0565b810160208510156200034c578190505b620003646200035b85620001f0565b830182620002f5565b50505b505050565b600082821c905092915050565b60006200038c600019846008026200036c565b1980831691505092915050565b6000620003a7838362000379565b9150826002028217905092915050565b620003c2826200013d565b67ffffffffffffffff811115620003de57620003dd62000148565b5b620003ea8254620001a6565b620003f78282856200031c565b600060209050601f8311600181146200042f57600084156200041a578287015190505b62000426858262000399565b86555062000496565b601f1984166200043f86620001db565b60005b82811015620004695784890151825560018201915060208501945060208101905062000442565b8683101562000489578489015162000485601f89168262000379565b8355505b6001600288020188555050505b505050505050565b61346180620004ae6000396000f3fe6080604052600436106100fd5760003560e01c80634f558e7911610095578063bd85b03911610064578063bd85b03914610325578063c43e99c214610362578063e985e9c51461038b578063f242432a146103c8578063f2fde38b146103f1576100fd565b80634f558e791461027d578063715018a6146102ba5780638da5cb5b146102d1578063a22cb465146102fc576100fd565b806310f5f356116100d157806310f5f356146101e25780631249c58b1461020d5780632eb2c2d6146102175780634e1273f414610240576100fd565b8062fdd58e1461010257806301ffc9a71461013f57806302fe53051461017c5780630e89341c146101a5575b600080fd5b34801561010e57600080fd5b5061012960048036038101906101249190611cb6565b61041a565b6040516101369190611d05565b60405180910390f35b34801561014b57600080fd5b5061016660048036038101906101619190611d78565b6104e2565b6040516101739190611dc0565b60405180910390f35b34801561018857600080fd5b506101a3600480360381019061019e9190611f21565b6105c4565b005b3480156101b157600080fd5b506101cc60048036038101906101c79190611f6a565b6105d8565b6040516101d99190612016565b60405180910390f35b3480156101ee57600080fd5b506101f761066c565b6040516102049190611d05565b60405180910390f35b610215610672565b005b34801561022357600080fd5b5061023e600480360381019061023991906121a1565b610723565b005b34801561024c57600080fd5b5061026760048036038101906102629190612333565b6107c4565b6040516102749190612469565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190611f6a565b6108dd565b6040516102b19190611dc0565b60405180910390f35b3480156102c657600080fd5b506102cf6108f1565b005b3480156102dd57600080fd5b506102e6610905565b6040516102f3919061249a565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e91906124e1565b61092f565b005b34801561033157600080fd5b5061034c60048036038101906103479190611f6a565b610945565b6040516103599190611d05565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190611f6a565b610962565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612521565b610974565b6040516103bf9190611dc0565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612561565b610a08565b005b3480156103fd57600080fd5b50610418600480360381019061041391906125f8565b610aa9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361048a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048190612697565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ad57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bd57506105bc82610b2c565b5b9050919050565b6105cc610b96565b6105d581610c14565b50565b6060600280546105e7906126e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610613906126e6565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b50505050509050919050565b60055481565b6005543410156106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90612789565b60405180910390fd5b6106d33360018060405180602001604052806000815250610c27565b6106db610905565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610720573d6000803e3d6000fd5b50565b61072b610dd7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061077157506107708561076b610dd7565b610974565b5b6107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061281b565b60405180910390fd5b6107bd8585858585610ddf565b5050505050565b6060815183511461080a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610801906128ad565b60405180910390fd5b6000835167ffffffffffffffff81111561082757610826611df6565b5b6040519080825280602002602001820160405280156108555781602001602082028036833780820191505090505b50905060005b84518110156108d2576108a285828151811061087a576108796128cd565b5b6020026020010151858381518110610895576108946128cd565b5b602002602001015161041a565b8282815181106108b5576108b46128cd565b5b602002602001018181525050806108cb9061292b565b905061085b565b508091505092915050565b6000806108e983610945565b119050919050565b6108f9610b96565b6109036000611100565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61094161093a610dd7565b83836111c6565b5050565b600060046000838152602001908152602001600020549050919050565b61096a610b96565b8060058190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a10610dd7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a565750610a5585610a50610dd7565b610974565b5b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c9061281b565b60405180910390fd5b610aa28585858585611332565b5050505050565b610ab1610b96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906129e5565b60405180910390fd5b610b2981611100565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610b9e610dd7565b73ffffffffffffffffffffffffffffffffffffffff16610bbc610905565b73ffffffffffffffffffffffffffffffffffffffff1614610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990612a51565b60405180910390fd5b565b8060029081610c239190612c1d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90612d61565b60405180910390fd5b6000610ca0610dd7565b90506000610cad856115cd565b90506000610cba856115cd565b9050610ccb83600089858589611647565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d2a9190612d81565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610da8929190612db5565b60405180910390a4610dbf8360008985858961165d565b610dce83600089898989611665565b50505050505050565b600033905090565b8151835114610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990612ee2565b60405180910390fd5b6000610e9c610dd7565b9050610eac818787878787611647565b60005b845181101561105d576000858281518110610ecd57610ecc6128cd565b5b602002602001015190506000858381518110610eec57610eeb6128cd565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490612f74565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110429190612d81565b92505081905550505050806110569061292b565b9050610eaf565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110d4929190612f94565b60405180910390a46110ea81878787878761165d565b6110f881878787878761183c565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061303d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113259190611dc0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890612ee2565b60405180910390fd5b60006113ab610dd7565b905060006113b8856115cd565b905060006113c5856115cd565b90506113d5838989858589611647565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390612f74565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115219190612d81565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161159e929190612db5565b60405180910390a46115b4848a8a86868a61165d565b6115c2848a8a8a8a8a611665565b505050505050505050565b60606000600167ffffffffffffffff8111156115ec576115eb611df6565b5b60405190808252806020026020018201604052801561161a5781602001602082028036833780820191505090505b5090508281600081518110611632576116316128cd565b5b60200260200101818152505080915050919050565b611655868686868686611a13565b505050505050565b505050505050565b6116848473ffffffffffffffffffffffffffffffffffffffff16611be3565b15611834578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016116ca9594939291906130b2565b6020604051808303816000875af192505050801561170657506040513d601f19601f820116820180604052508101906117039190613121565b60015b6117ab5761171261315b565b806308c379a00361176e575061172661317d565b806117315750611770565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117659190612016565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a29061327f565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613311565b60405180910390fd5b505b505050505050565b61185b8473ffffffffffffffffffffffffffffffffffffffff16611be3565b15611a0b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118a1959493929190613331565b6020604051808303816000875af19250505080156118dd57506040513d601f19601f820116820180604052508101906118da9190613121565b60015b611982576118e961315b565b806308c379a00361194557506118fd61317d565b806119085750611947565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c9190612016565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119799061327f565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613311565b60405180910390fd5b505b505050505050565b611a21868686868686611c06565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ad25760005b8351811015611ad057828181518110611a7457611a736128cd565b5b602002602001015160046000868481518110611a9357611a926128cd565b5b602002602001015181526020019081526020016000206000828254611ab89190612d81565b9250508190555080611ac99061292b565b9050611a58565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bdb5760005b8351811015611bd9576000848281518110611b2757611b266128cd565b5b602002602001015190506000848381518110611b4657611b456128cd565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba29061340b565b60405180910390fd5b818103600460008581526020019081526020016000208190555050505080611bd29061292b565b9050611b09565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c4d82611c22565b9050919050565b611c5d81611c42565b8114611c6857600080fd5b50565b600081359050611c7a81611c54565b92915050565b6000819050919050565b611c9381611c80565b8114611c9e57600080fd5b50565b600081359050611cb081611c8a565b92915050565b60008060408385031215611ccd57611ccc611c18565b5b6000611cdb85828601611c6b565b9250506020611cec85828601611ca1565b9150509250929050565b611cff81611c80565b82525050565b6000602082019050611d1a6000830184611cf6565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d5581611d20565b8114611d6057600080fd5b50565b600081359050611d7281611d4c565b92915050565b600060208284031215611d8e57611d8d611c18565b5b6000611d9c84828501611d63565b91505092915050565b60008115159050919050565b611dba81611da5565b82525050565b6000602082019050611dd56000830184611db1565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e2e82611de5565b810181811067ffffffffffffffff82111715611e4d57611e4c611df6565b5b80604052505050565b6000611e60611c0e565b9050611e6c8282611e25565b919050565b600067ffffffffffffffff821115611e8c57611e8b611df6565b5b611e9582611de5565b9050602081019050919050565b82818337600083830152505050565b6000611ec4611ebf84611e71565b611e56565b905082815260208101848484011115611ee057611edf611de0565b5b611eeb848285611ea2565b509392505050565b600082601f830112611f0857611f07611ddb565b5b8135611f18848260208601611eb1565b91505092915050565b600060208284031215611f3757611f36611c18565b5b600082013567ffffffffffffffff811115611f5557611f54611c1d565b5b611f6184828501611ef3565b91505092915050565b600060208284031215611f8057611f7f611c18565b5b6000611f8e84828501611ca1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fd1578082015181840152602081019050611fb6565b60008484015250505050565b6000611fe882611f97565b611ff28185611fa2565b9350612002818560208601611fb3565b61200b81611de5565b840191505092915050565b600060208201905081810360008301526120308184611fdd565b905092915050565b600067ffffffffffffffff82111561205357612052611df6565b5b602082029050602081019050919050565b600080fd5b600061207c61207784612038565b611e56565b9050808382526020820190506020840283018581111561209f5761209e612064565b5b835b818110156120c857806120b48882611ca1565b8452602084019350506020810190506120a1565b5050509392505050565b600082601f8301126120e7576120e6611ddb565b5b81356120f7848260208601612069565b91505092915050565b600067ffffffffffffffff82111561211b5761211a611df6565b5b61212482611de5565b9050602081019050919050565b600061214461213f84612100565b611e56565b9050828152602081018484840111156121605761215f611de0565b5b61216b848285611ea2565b509392505050565b600082601f83011261218857612187611ddb565b5b8135612198848260208601612131565b91505092915050565b600080600080600060a086880312156121bd576121bc611c18565b5b60006121cb88828901611c6b565b95505060206121dc88828901611c6b565b945050604086013567ffffffffffffffff8111156121fd576121fc611c1d565b5b612209888289016120d2565b935050606086013567ffffffffffffffff81111561222a57612229611c1d565b5b612236888289016120d2565b925050608086013567ffffffffffffffff81111561225757612256611c1d565b5b61226388828901612173565b9150509295509295909350565b600067ffffffffffffffff82111561228b5761228a611df6565b5b602082029050602081019050919050565b60006122af6122aa84612270565b611e56565b905080838252602082019050602084028301858111156122d2576122d1612064565b5b835b818110156122fb57806122e78882611c6b565b8452602084019350506020810190506122d4565b5050509392505050565b600082601f83011261231a57612319611ddb565b5b813561232a84826020860161229c565b91505092915050565b6000806040838503121561234a57612349611c18565b5b600083013567ffffffffffffffff81111561236857612367611c1d565b5b61237485828601612305565b925050602083013567ffffffffffffffff81111561239557612394611c1d565b5b6123a1858286016120d2565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6123e081611c80565b82525050565b60006123f283836123d7565b60208301905092915050565b6000602082019050919050565b6000612416826123ab565b61242081856123b6565b935061242b836123c7565b8060005b8381101561245c57815161244388826123e6565b975061244e836123fe565b92505060018101905061242f565b5085935050505092915050565b60006020820190508181036000830152612483818461240b565b905092915050565b61249481611c42565b82525050565b60006020820190506124af600083018461248b565b92915050565b6124be81611da5565b81146124c957600080fd5b50565b6000813590506124db816124b5565b92915050565b600080604083850312156124f8576124f7611c18565b5b600061250685828601611c6b565b9250506020612517858286016124cc565b9150509250929050565b6000806040838503121561253857612537611c18565b5b600061254685828601611c6b565b925050602061255785828601611c6b565b9150509250929050565b600080600080600060a0868803121561257d5761257c611c18565b5b600061258b88828901611c6b565b955050602061259c88828901611c6b565b94505060406125ad88828901611ca1565b93505060606125be88828901611ca1565b925050608086013567ffffffffffffffff8111156125df576125de611c1d565b5b6125eb88828901612173565b9150509295509295909350565b60006020828403121561260e5761260d611c18565b5b600061261c84828501611c6b565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612681602a83611fa2565b915061268c82612625565b604082019050919050565b600060208201905081810360008301526126b081612674565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126fe57607f821691505b602082108103612711576127106126b7565b5b50919050565b7f416d6f756e7420776173206c6f776572207468616e206d696e696d756d20646f60008201527f6e6174696f6e0000000000000000000000000000000000000000000000000000602082015250565b6000612773602683611fa2565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612805602e83611fa2565b9150612810826127a9565b604082019050919050565b60006020820190508181036000830152612834816127f8565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612897602983611fa2565b91506128a28261283b565b604082019050919050565b600060208201905081810360008301526128c68161288a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061293682611c80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612968576129676128fc565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129cf602683611fa2565b91506129da82612973565b604082019050919050565b600060208201905081810360008301526129fe816129c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a3b602083611fa2565b9150612a4682612a05565b602082019050919050565b60006020820190508181036000830152612a6a81612a2e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ad37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a96565b612add8683612a96565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612b1a612b15612b1084611c80565b612af5565b611c80565b9050919050565b6000819050919050565b612b3483612aff565b612b48612b4082612b21565b848454612aa3565b825550505050565b600090565b612b5d612b50565b612b68818484612b2b565b505050565b5b81811015612b8c57612b81600082612b55565b600181019050612b6e565b5050565b601f821115612bd157612ba281612a71565b612bab84612a86565b81016020851015612bba578190505b612bce612bc685612a86565b830182612b6d565b50505b505050565b600082821c905092915050565b6000612bf460001984600802612bd6565b1980831691505092915050565b6000612c0d8383612be3565b9150826002028217905092915050565b612c2682611f97565b67ffffffffffffffff811115612c3f57612c3e611df6565b5b612c4982546126e6565b612c54828285612b90565b600060209050601f831160018114612c875760008415612c75578287015190505b612c7f8582612c01565b865550612ce7565b601f198416612c9586612a71565b60005b82811015612cbd57848901518255600182019150602085019450602081019050612c98565b86831015612cda5784890151612cd6601f891682612be3565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d4b602183611fa2565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82611c80565b9150612d9783611c80565b9250828201905080821115612daf57612dae6128fc565b5b92915050565b6000604082019050612dca6000830185611cf6565b612dd76020830184611cf6565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612e3a602883611fa2565b9150612e4582612dde565b604082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ecc602583611fa2565b9150612ed782612e70565b604082019050919050565b60006020820190508181036000830152612efb81612ebf565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612f5e602a83611fa2565b9150612f6982612f02565b604082019050919050565b60006020820190508181036000830152612f8d81612f51565b9050919050565b60006040820190508181036000830152612fae818561240b565b90508181036020830152612fc2818461240b565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613027602983611fa2565b915061303282612fcb565b604082019050919050565b600060208201905081810360008301526130568161301a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130848261305d565b61308e8185613068565b935061309e818560208601611fb3565b6130a781611de5565b840191505092915050565b600060a0820190506130c7600083018861248b565b6130d4602083018761248b565b6130e16040830186611cf6565b6130ee6060830185611cf6565b81810360808301526131008184613079565b90509695505050505050565b60008151905061311b81611d4c565b92915050565b60006020828403121561313757613136611c18565b5b60006131458482850161310c565b91505092915050565b60008160e01c9050919050565b600060033d111561317a5760046000803e61317760005161314e565b90505b90565b600060443d1061320a5761318f611c0e565b60043d036004823e80513d602482011167ffffffffffffffff821117156131b757505061320a565b808201805167ffffffffffffffff8111156131d5575050505061320a565b80602083010160043d0385018111156131f257505050505061320a565b61320182602001850186611e25565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613269603483611fa2565b91506132748261320d565b604082019050919050565b600060208201905081810360008301526132988161325c565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006132fb602883611fa2565b91506133068261329f565b604082019050919050565b6000602082019050818103600083015261332a816132ee565b9050919050565b600060a082019050613346600083018861248b565b613353602083018761248b565b8181036040830152613365818661240b565b90508181036060830152613379818561240b565b9050818103608083015261338d8184613079565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006133f5602883611fa2565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b905091905056fea2646970667358221220fc9a39e145a203dd30b8895ec612c8195afcbf92172d3e57e2f95a8b50d5d37064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106100fd5760003560e01c80634f558e7911610095578063bd85b03911610064578063bd85b03914610325578063c43e99c214610362578063e985e9c51461038b578063f242432a146103c8578063f2fde38b146103f1576100fd565b80634f558e791461027d578063715018a6146102ba5780638da5cb5b146102d1578063a22cb465146102fc576100fd565b806310f5f356116100d157806310f5f356146101e25780631249c58b1461020d5780632eb2c2d6146102175780634e1273f414610240576100fd565b8062fdd58e1461010257806301ffc9a71461013f57806302fe53051461017c5780630e89341c146101a5575b600080fd5b34801561010e57600080fd5b5061012960048036038101906101249190611cb6565b61041a565b6040516101369190611d05565b60405180910390f35b34801561014b57600080fd5b5061016660048036038101906101619190611d78565b6104e2565b6040516101739190611dc0565b60405180910390f35b34801561018857600080fd5b506101a3600480360381019061019e9190611f21565b6105c4565b005b3480156101b157600080fd5b506101cc60048036038101906101c79190611f6a565b6105d8565b6040516101d99190612016565b60405180910390f35b3480156101ee57600080fd5b506101f761066c565b6040516102049190611d05565b60405180910390f35b610215610672565b005b34801561022357600080fd5b5061023e600480360381019061023991906121a1565b610723565b005b34801561024c57600080fd5b5061026760048036038101906102629190612333565b6107c4565b6040516102749190612469565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190611f6a565b6108dd565b6040516102b19190611dc0565b60405180910390f35b3480156102c657600080fd5b506102cf6108f1565b005b3480156102dd57600080fd5b506102e6610905565b6040516102f3919061249a565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e91906124e1565b61092f565b005b34801561033157600080fd5b5061034c60048036038101906103479190611f6a565b610945565b6040516103599190611d05565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190611f6a565b610962565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612521565b610974565b6040516103bf9190611dc0565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612561565b610a08565b005b3480156103fd57600080fd5b50610418600480360381019061041391906125f8565b610aa9565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361048a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048190612697565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ad57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bd57506105bc82610b2c565b5b9050919050565b6105cc610b96565b6105d581610c14565b50565b6060600280546105e7906126e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610613906126e6565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b50505050509050919050565b60055481565b6005543410156106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90612789565b60405180910390fd5b6106d33360018060405180602001604052806000815250610c27565b6106db610905565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610720573d6000803e3d6000fd5b50565b61072b610dd7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061077157506107708561076b610dd7565b610974565b5b6107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061281b565b60405180910390fd5b6107bd8585858585610ddf565b5050505050565b6060815183511461080a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610801906128ad565b60405180910390fd5b6000835167ffffffffffffffff81111561082757610826611df6565b5b6040519080825280602002602001820160405280156108555781602001602082028036833780820191505090505b50905060005b84518110156108d2576108a285828151811061087a576108796128cd565b5b6020026020010151858381518110610895576108946128cd565b5b602002602001015161041a565b8282815181106108b5576108b46128cd565b5b602002602001018181525050806108cb9061292b565b905061085b565b508091505092915050565b6000806108e983610945565b119050919050565b6108f9610b96565b6109036000611100565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61094161093a610dd7565b83836111c6565b5050565b600060046000838152602001908152602001600020549050919050565b61096a610b96565b8060058190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a10610dd7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a565750610a5585610a50610dd7565b610974565b5b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c9061281b565b60405180910390fd5b610aa28585858585611332565b5050505050565b610ab1610b96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906129e5565b60405180910390fd5b610b2981611100565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610b9e610dd7565b73ffffffffffffffffffffffffffffffffffffffff16610bbc610905565b73ffffffffffffffffffffffffffffffffffffffff1614610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990612a51565b60405180910390fd5b565b8060029081610c239190612c1d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90612d61565b60405180910390fd5b6000610ca0610dd7565b90506000610cad856115cd565b90506000610cba856115cd565b9050610ccb83600089858589611647565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d2a9190612d81565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610da8929190612db5565b60405180910390a4610dbf8360008985858961165d565b610dce83600089898989611665565b50505050505050565b600033905090565b8151835114610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990612ee2565b60405180910390fd5b6000610e9c610dd7565b9050610eac818787878787611647565b60005b845181101561105d576000858281518110610ecd57610ecc6128cd565b5b602002602001015190506000858381518110610eec57610eeb6128cd565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490612f74565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110429190612d81565b92505081905550505050806110569061292b565b9050610eaf565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110d4929190612f94565b60405180910390a46110ea81878787878761165d565b6110f881878787878761183c565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061303d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113259190611dc0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890612ee2565b60405180910390fd5b60006113ab610dd7565b905060006113b8856115cd565b905060006113c5856115cd565b90506113d5838989858589611647565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390612f74565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115219190612d81565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161159e929190612db5565b60405180910390a46115b4848a8a86868a61165d565b6115c2848a8a8a8a8a611665565b505050505050505050565b60606000600167ffffffffffffffff8111156115ec576115eb611df6565b5b60405190808252806020026020018201604052801561161a5781602001602082028036833780820191505090505b5090508281600081518110611632576116316128cd565b5b60200260200101818152505080915050919050565b611655868686868686611a13565b505050505050565b505050505050565b6116848473ffffffffffffffffffffffffffffffffffffffff16611be3565b15611834578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016116ca9594939291906130b2565b6020604051808303816000875af192505050801561170657506040513d601f19601f820116820180604052508101906117039190613121565b60015b6117ab5761171261315b565b806308c379a00361176e575061172661317d565b806117315750611770565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117659190612016565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a29061327f565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613311565b60405180910390fd5b505b505050505050565b61185b8473ffffffffffffffffffffffffffffffffffffffff16611be3565b15611a0b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118a1959493929190613331565b6020604051808303816000875af19250505080156118dd57506040513d601f19601f820116820180604052508101906118da9190613121565b60015b611982576118e961315b565b806308c379a00361194557506118fd61317d565b806119085750611947565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c9190612016565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119799061327f565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613311565b60405180910390fd5b505b505050505050565b611a21868686868686611c06565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ad25760005b8351811015611ad057828181518110611a7457611a736128cd565b5b602002602001015160046000868481518110611a9357611a926128cd565b5b602002602001015181526020019081526020016000206000828254611ab89190612d81565b9250508190555080611ac99061292b565b9050611a58565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bdb5760005b8351811015611bd9576000848281518110611b2757611b266128cd565b5b602002602001015190506000848381518110611b4657611b456128cd565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba29061340b565b60405180910390fd5b818103600460008581526020019081526020016000208190555050505080611bd29061292b565b9050611b09565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c4d82611c22565b9050919050565b611c5d81611c42565b8114611c6857600080fd5b50565b600081359050611c7a81611c54565b92915050565b6000819050919050565b611c9381611c80565b8114611c9e57600080fd5b50565b600081359050611cb081611c8a565b92915050565b60008060408385031215611ccd57611ccc611c18565b5b6000611cdb85828601611c6b565b9250506020611cec85828601611ca1565b9150509250929050565b611cff81611c80565b82525050565b6000602082019050611d1a6000830184611cf6565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d5581611d20565b8114611d6057600080fd5b50565b600081359050611d7281611d4c565b92915050565b600060208284031215611d8e57611d8d611c18565b5b6000611d9c84828501611d63565b91505092915050565b60008115159050919050565b611dba81611da5565b82525050565b6000602082019050611dd56000830184611db1565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e2e82611de5565b810181811067ffffffffffffffff82111715611e4d57611e4c611df6565b5b80604052505050565b6000611e60611c0e565b9050611e6c8282611e25565b919050565b600067ffffffffffffffff821115611e8c57611e8b611df6565b5b611e9582611de5565b9050602081019050919050565b82818337600083830152505050565b6000611ec4611ebf84611e71565b611e56565b905082815260208101848484011115611ee057611edf611de0565b5b611eeb848285611ea2565b509392505050565b600082601f830112611f0857611f07611ddb565b5b8135611f18848260208601611eb1565b91505092915050565b600060208284031215611f3757611f36611c18565b5b600082013567ffffffffffffffff811115611f5557611f54611c1d565b5b611f6184828501611ef3565b91505092915050565b600060208284031215611f8057611f7f611c18565b5b6000611f8e84828501611ca1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fd1578082015181840152602081019050611fb6565b60008484015250505050565b6000611fe882611f97565b611ff28185611fa2565b9350612002818560208601611fb3565b61200b81611de5565b840191505092915050565b600060208201905081810360008301526120308184611fdd565b905092915050565b600067ffffffffffffffff82111561205357612052611df6565b5b602082029050602081019050919050565b600080fd5b600061207c61207784612038565b611e56565b9050808382526020820190506020840283018581111561209f5761209e612064565b5b835b818110156120c857806120b48882611ca1565b8452602084019350506020810190506120a1565b5050509392505050565b600082601f8301126120e7576120e6611ddb565b5b81356120f7848260208601612069565b91505092915050565b600067ffffffffffffffff82111561211b5761211a611df6565b5b61212482611de5565b9050602081019050919050565b600061214461213f84612100565b611e56565b9050828152602081018484840111156121605761215f611de0565b5b61216b848285611ea2565b509392505050565b600082601f83011261218857612187611ddb565b5b8135612198848260208601612131565b91505092915050565b600080600080600060a086880312156121bd576121bc611c18565b5b60006121cb88828901611c6b565b95505060206121dc88828901611c6b565b945050604086013567ffffffffffffffff8111156121fd576121fc611c1d565b5b612209888289016120d2565b935050606086013567ffffffffffffffff81111561222a57612229611c1d565b5b612236888289016120d2565b925050608086013567ffffffffffffffff81111561225757612256611c1d565b5b61226388828901612173565b9150509295509295909350565b600067ffffffffffffffff82111561228b5761228a611df6565b5b602082029050602081019050919050565b60006122af6122aa84612270565b611e56565b905080838252602082019050602084028301858111156122d2576122d1612064565b5b835b818110156122fb57806122e78882611c6b565b8452602084019350506020810190506122d4565b5050509392505050565b600082601f83011261231a57612319611ddb565b5b813561232a84826020860161229c565b91505092915050565b6000806040838503121561234a57612349611c18565b5b600083013567ffffffffffffffff81111561236857612367611c1d565b5b61237485828601612305565b925050602083013567ffffffffffffffff81111561239557612394611c1d565b5b6123a1858286016120d2565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6123e081611c80565b82525050565b60006123f283836123d7565b60208301905092915050565b6000602082019050919050565b6000612416826123ab565b61242081856123b6565b935061242b836123c7565b8060005b8381101561245c57815161244388826123e6565b975061244e836123fe565b92505060018101905061242f565b5085935050505092915050565b60006020820190508181036000830152612483818461240b565b905092915050565b61249481611c42565b82525050565b60006020820190506124af600083018461248b565b92915050565b6124be81611da5565b81146124c957600080fd5b50565b6000813590506124db816124b5565b92915050565b600080604083850312156124f8576124f7611c18565b5b600061250685828601611c6b565b9250506020612517858286016124cc565b9150509250929050565b6000806040838503121561253857612537611c18565b5b600061254685828601611c6b565b925050602061255785828601611c6b565b9150509250929050565b600080600080600060a0868803121561257d5761257c611c18565b5b600061258b88828901611c6b565b955050602061259c88828901611c6b565b94505060406125ad88828901611ca1565b93505060606125be88828901611ca1565b925050608086013567ffffffffffffffff8111156125df576125de611c1d565b5b6125eb88828901612173565b9150509295509295909350565b60006020828403121561260e5761260d611c18565b5b600061261c84828501611c6b565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000612681602a83611fa2565b915061268c82612625565b604082019050919050565b600060208201905081810360008301526126b081612674565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126fe57607f821691505b602082108103612711576127106126b7565b5b50919050565b7f416d6f756e7420776173206c6f776572207468616e206d696e696d756d20646f60008201527f6e6174696f6e0000000000000000000000000000000000000000000000000000602082015250565b6000612773602683611fa2565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612805602e83611fa2565b9150612810826127a9565b604082019050919050565b60006020820190508181036000830152612834816127f8565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612897602983611fa2565b91506128a28261283b565b604082019050919050565b600060208201905081810360008301526128c68161288a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061293682611c80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612968576129676128fc565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129cf602683611fa2565b91506129da82612973565b604082019050919050565b600060208201905081810360008301526129fe816129c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a3b602083611fa2565b9150612a4682612a05565b602082019050919050565b60006020820190508181036000830152612a6a81612a2e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ad37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a96565b612add8683612a96565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612b1a612b15612b1084611c80565b612af5565b611c80565b9050919050565b6000819050919050565b612b3483612aff565b612b48612b4082612b21565b848454612aa3565b825550505050565b600090565b612b5d612b50565b612b68818484612b2b565b505050565b5b81811015612b8c57612b81600082612b55565b600181019050612b6e565b5050565b601f821115612bd157612ba281612a71565b612bab84612a86565b81016020851015612bba578190505b612bce612bc685612a86565b830182612b6d565b50505b505050565b600082821c905092915050565b6000612bf460001984600802612bd6565b1980831691505092915050565b6000612c0d8383612be3565b9150826002028217905092915050565b612c2682611f97565b67ffffffffffffffff811115612c3f57612c3e611df6565b5b612c4982546126e6565b612c54828285612b90565b600060209050601f831160018114612c875760008415612c75578287015190505b612c7f8582612c01565b865550612ce7565b601f198416612c9586612a71565b60005b82811015612cbd57848901518255600182019150602085019450602081019050612c98565b86831015612cda5784890151612cd6601f891682612be3565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d4b602183611fa2565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82611c80565b9150612d9783611c80565b9250828201905080821115612daf57612dae6128fc565b5b92915050565b6000604082019050612dca6000830185611cf6565b612dd76020830184611cf6565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612e3a602883611fa2565b9150612e4582612dde565b604082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ecc602583611fa2565b9150612ed782612e70565b604082019050919050565b60006020820190508181036000830152612efb81612ebf565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612f5e602a83611fa2565b9150612f6982612f02565b604082019050919050565b60006020820190508181036000830152612f8d81612f51565b9050919050565b60006040820190508181036000830152612fae818561240b565b90508181036020830152612fc2818461240b565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613027602983611fa2565b915061303282612fcb565b604082019050919050565b600060208201905081810360008301526130568161301a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130848261305d565b61308e8185613068565b935061309e818560208601611fb3565b6130a781611de5565b840191505092915050565b600060a0820190506130c7600083018861248b565b6130d4602083018761248b565b6130e16040830186611cf6565b6130ee6060830185611cf6565b81810360808301526131008184613079565b90509695505050505050565b60008151905061311b81611d4c565b92915050565b60006020828403121561313757613136611c18565b5b60006131458482850161310c565b91505092915050565b60008160e01c9050919050565b600060033d111561317a5760046000803e61317760005161314e565b90505b90565b600060443d1061320a5761318f611c0e565b60043d036004823e80513d602482011167ffffffffffffffff821117156131b757505061320a565b808201805167ffffffffffffffff8111156131d5575050505061320a565b80602083010160043d0385018111156131f257505050505061320a565b61320182602001850186611e25565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613269603483611fa2565b91506132748261320d565b604082019050919050565b600060208201905081810360008301526132988161325c565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006132fb602883611fa2565b91506133068261329f565b604082019050919050565b6000602082019050818103600083015261332a816132ee565b9050919050565b600060a082019050613346600083018861248b565b613353602083018761248b565b8181036040830152613365818661240b565b90508181036060830152613379818561240b565b9050818103608083015261338d8184613079565b90509695505050505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006133f5602883611fa2565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b905091905056fea2646970667358221220fc9a39e145a203dd30b8895ec612c8195afcbf92172d3e57e2f95a8b50d5d37064736f6c63430008110033

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.