ETH Price: $2,437.69 (+6.22%)

Token

 

Overview

Max Total Supply

131

Holders

116

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bobamor.eth
0x7401572D8B4E07F89579D804e267ac000C8C67cC
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:
DeadHeadsWearables

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 13 : DeadHeadsWearables.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title DeadHeads Wearables
 * @dev Extends ERC1155 
 */

contract DeadHeadsWearables is ERC1155, ERC1155Burnable, ERC1155Pausable, Ownable {
    mapping(uint256 => uint256) private _totalSupply;

    constructor() ERC1155("https://www.deadheads.io/") {
    }

    /**
    *  @dev mint a wearable collection
    */
    function mint(uint256 id, uint256 amount) public onlyOwner {
        _mint(msg.sender, id, amount, "");
        _totalSupply[id] += amount;
    }

    /**
    *  @dev mint a batch of token collections
    */
    function mintBatch(
        uint256[] memory ids,
        uint256[] memory amounts
    ) public onlyOwner  {
        _mintBatch(msg.sender, ids, amounts, "");
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }

    /**
    *  @dev set token base uri
    */
    function setURI(string memory baseURI) public onlyOwner {
        _setURI(baseURI);
    }

    /**
     *  @dev Pauses all token transfers.
     */
    function pause() public onlyOwner {
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     */
    function unpause() public onlyOwner {
        _unpause();
    }

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

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

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

}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 4 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

File 5 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

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.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

File 7 of 13 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

File 8 of 13 : ERC1155Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    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);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

File 9 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601981526020017f68747470733a2f2f7777772e6465616468656164732e696f2f000000000000008152506200006281620000b6640100000000026401000000009004565b506000600360006101000a81548160ff021916908315150217905550620000b06200009b620000d2640100000000026401000000009004565b620000da640100000000026401000000009004565b620002b5565b8060029080519060200190620000ce929190620001a0565b5050565b600033905090565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ae9062000250565b90600052602060002090601f016020900481019282620001d257600085556200021e565b82601f10620001ed57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021d57825182559160200191906001019062000200565b5b5090506200022d919062000231565b5090565b5b808211156200024c57600081600090555060010162000232565b5090565b600060028204905060018216806200026957607f821691505b6020821081141562000280576200027f62000286565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61443080620002c56000396000f3fe608060405234801561001057600080fd5b5060043610610153576000357c0100000000000000000000000000000000000000000000000000000000900480636b20c454116100d5578063bd85b03911610099578063bd85b0391461032e578063d351cfdc1461035e578063e985e9c51461037a578063f242432a146103aa578063f2fde38b146103c6578063f5298aca146103e257610153565b80636b20c454146102c4578063715018a6146102e05780638456cb59146102ea5780638da5cb5b146102f4578063a22cb4651461031257610153565b80632eb2c2d61161011c5780632eb2c2d6146102205780633f4ba83a1461023c5780634e1273f4146102465780634f558e79146102765780635c975abb146102a657610153565b8062fdd58e1461015857806301ffc9a71461018857806302fe5305146101b85780630e89341c146101d45780631b2ef1ca14610204575b600080fd5b610172600480360381019061016d9190612fdb565b6103fe565b60405161017f9190613983565b60405180910390f35b6101a2600480360381019061019d919061313e565b6104c7565b6040516101af9190613706565b60405180910390f35b6101d260048036038101906101cd9190613190565b6105a9565b005b6101ee60048036038101906101e991906131d1565b610631565b6040516101fb9190613721565b60405180910390f35b61021e600480360381019061021991906131fa565b6106c5565b005b61023a60048036038101906102359190612dd2565b61078a565b005b61024461082b565b005b610260600480360381019061025b9190613066565b6108b1565b60405161026d91906136ad565b60405180910390f35b610290600480360381019061028b91906131d1565b610a62565b60405161029d9190613706565b60405180910390f35b6102ae610a76565b6040516102bb9190613706565b60405180910390f35b6102de60048036038101906102d99190612f20565b610a8d565b005b6102e8610b2a565b005b6102f2610bb2565b005b6102fc610c38565b60405161030991906135d0565b60405180910390f35b61032c60048036038101906103279190612f9f565b610c62565b005b610348600480360381019061034391906131d1565b610de3565b6040516103559190613983565b60405180910390f35b610378600480360381019061037391906130d2565b610e00565b005b610394600480360381019061038f9190612d96565b610f63565b6040516103a19190613706565b60405180910390f35b6103c460048036038101906103bf9190612e91565b610ff7565b005b6103e060048036038101906103db9190612d6d565b611098565b005b6103fc60048036038101906103f79190613017565b611190565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561046f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610466906137a3565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a257506105a18261122d565b5b9050919050565b6105b1611297565b73ffffffffffffffffffffffffffffffffffffffff166105cf610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061c906138e3565b60405180910390fd5b61062e8161129f565b50565b60606002805461064090613c57565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90613c57565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b50505050509050919050565b6106cd611297565b73ffffffffffffffffffffffffffffffffffffffff166106eb610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610738906138e3565b60405180910390fd5b61075c338383604051806020016040528060008152506112b9565b8060046000848152602001908152602001600020600082825461077f9190613b17565b925050819055505050565b610792611297565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107d857506107d7856107d2611297565b610f63565b5b610817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080e90613883565b60405180910390fd5b610824858585858561144f565b5050505050565b610833611297565b73ffffffffffffffffffffffffffffffffffffffff16610851610c38565b73ffffffffffffffffffffffffffffffffffffffff16146108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e906138e3565b60405180910390fd5b6108af6117af565b565b606081518351146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90613923565b60405180910390fd5b6000835167ffffffffffffffff81111561093a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109685781602001602082028036833780820191505090505b50905060005b8451811015610a5757610a018582815181106109b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106109f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516103fe565b828281518110610a3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610a5090613cba565b905061096e565b508091505092915050565b600080610a6e83610de3565b119050919050565b6000600360009054906101000a900460ff16905090565b610a95611297565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610adb5750610ada83610ad5611297565b610f63565b5b610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613823565b60405180910390fd5b610b25838383611851565b505050565b610b32611297565b73ffffffffffffffffffffffffffffffffffffffff16610b50610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906138e3565b60405180910390fd5b610bb06000611929565b565b610bba611297565b73ffffffffffffffffffffffffffffffffffffffff16610bd8610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c25906138e3565b60405180910390fd5b610c366119ef565b565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610c81611297565b73ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613903565b60405180910390fd5b8060016000610ce5611297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d92611297565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dd79190613706565b60405180910390a35050565b600060046000838152602001908152602001600020549050919050565b610e08611297565b73ffffffffffffffffffffffffffffffffffffffff16610e26610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e73906138e3565b60405180910390fd5b610e9733838360405180602001604052806000815250611a92565b60005b8251811015610f5e57818181518110610edc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000858481518110610f21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254610f469190613b17565b9250508190555080610f5790613cba565b9050610e9a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fff611297565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061104557506110448561103f611297565b610f63565b5b611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613823565b60405180910390fd5b6110918585858585611cfc565b5050505050565b6110a0611297565b73ffffffffffffffffffffffffffffffffffffffff166110be610c38565b73ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906138e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b906137c3565b60405180910390fd5b61118d81611929565b50565b611198611297565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111de57506111dd836111d8611297565b610f63565b5b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613823565b60405180910390fd5b611228838383611f7e565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600290805190602001906112b5929190612a65565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613963565b60405180910390fd5b6000611333611297565b90506113548160008761134588611fb8565b61134e88611fb8565b8761207e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b39190613b17565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161143192919061399e565b60405180910390a461144881600087878787612094565b5050505050565b8151835114611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613863565b60405180910390fd5b600061150d611297565b905061151d81878787878761207e565b60005b845181101561171a576000858281518110611564577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106115a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906138c3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ff9190613b17565b925050819055505050508061171390613cba565b9050611520565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117919291906136cf565b60405180910390a46117a78187878787876122b3565b505050505050565b6117b7610a76565b6117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90613783565b60405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61183a611297565b60405161184791906135d0565b60405180910390a1565b61185c8383836124d2565b60005b8251811015611923578181815181106118a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008584815181106118e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825461190b9190613b6d565b925050819055508061191c90613cba565b905061185f565b50505050565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119f7610a76565b15611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613843565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a7b611297565b604051611a8891906135d0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990613963565b60405180910390fd5b8151835114611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613943565b60405180910390fd5b6000611b50611297565b9050611b618160008787878761207e565b60005b8451811015611c6657838181518110611ba6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611bea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4c9190613b17565b925050819055508080611c5e90613cba565b915050611b64565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611cde9291906136cf565b60405180910390a4611cf5816000878787876122b3565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613863565b60405180910390fd5b6000611d76611297565b9050611d96818787611d8788611fb8565b611d9088611fb8565b8761207e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906138c3565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee29190613b17565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611f5f92919061399e565b60405180910390a4611f75828888888888612094565b50505050505050565b611f898383836127cf565b80600460008481526020019081526020016000206000828254611fac9190613b6d565b92505081905550505050565b60606000600167ffffffffffffffff811115611ffd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561202b5781602001602082028036833780820191505090505b5090508281600081518110612069577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61208c8686868686866129ec565b505050505050565b6120b38473ffffffffffffffffffffffffffffffffffffffff16612a4a565b156122ab578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612115959493929190613653565b602060405180830381600087803b15801561212f57600080fd5b505af192505050801561216057506040513d601f19601f8201168201806040525081019061215d9190613167565b60015b6122065761216c613d90565b806308c379a014156121c95750612181614308565b8061218c57506121cb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c09190613721565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90613743565b60405180910390fd5b63f23a6e617c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613763565b60405180910390fd5b505b505050505050565b6122d28473ffffffffffffffffffffffffffffffffffffffff16612a4a565b156124ca578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016123349594939291906135eb565b602060405180830381600087803b15801561234e57600080fd5b505af192505050801561237f57506040513d601f19601f8201168201806040525081019061237c9190613167565b60015b6124255761238b613d90565b806308c379a014156123e857506123a0614308565b806123ab57506123ea565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df9190613721565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90613743565b60405180910390fd5b63bc197c817c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90613763565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906138a3565b60405180910390fd5b8051825114612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90613943565b60405180910390fd5b6000612590611297565b90506125b08185600086866040518060200160405280600081525061207e565b60005b83518110156127495760008482815181106125f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600084838151811061263c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d4906137e3565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061274190613cba565b9150506125b3565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516127c19291906136cf565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561283f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612836906138a3565b60405180910390fd5b6000612849611297565b90506128798185600061285b87611fb8565b61286487611fb8565b6040518060200160405280600081525061207e565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612907906137e3565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516129dd92919061399e565b60405180910390a45050505050565b6129fa868686868686612a5d565b612a02610a76565b15612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613803565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b828054612a7190613c57565b90600052602060002090601f016020900481019282612a935760008555612ada565b82601f10612aac57805160ff1916838001178555612ada565b82800160010185558215612ada579182015b82811115612ad9578251825591602001919060010190612abe565b5b509050612ae79190612aeb565b5090565b5b80821115612b04576000816000905550600101612aec565b5090565b6000612b1b612b16846139ec565b6139c7565b90508083825260208201905082856020860282011115612b3a57600080fd5b60005b85811015612b6a5781612b508882612c5c565b845260208401935060208301925050600181019050612b3d565b5050509392505050565b6000612b87612b8284613a18565b6139c7565b90508083825260208201905082856020860282011115612ba657600080fd5b60005b85811015612bd65781612bbc8882612d58565b845260208401935060208301925050600181019050612ba9565b5050509392505050565b6000612bf3612bee84613a44565b6139c7565b905082815260208101848484011115612c0b57600080fd5b612c16848285613c15565b509392505050565b6000612c31612c2c84613a75565b6139c7565b905082815260208101848484011115612c4957600080fd5b612c54848285613c15565b509392505050565b600081359050612c6b8161439e565b92915050565b600082601f830112612c8257600080fd5b8135612c92848260208601612b08565b91505092915050565b600082601f830112612cac57600080fd5b8135612cbc848260208601612b74565b91505092915050565b600081359050612cd4816143b5565b92915050565b600081359050612ce9816143cc565b92915050565b600081519050612cfe816143cc565b92915050565b600082601f830112612d1557600080fd5b8135612d25848260208601612be0565b91505092915050565b600082601f830112612d3f57600080fd5b8135612d4f848260208601612c1e565b91505092915050565b600081359050612d67816143e3565b92915050565b600060208284031215612d7f57600080fd5b6000612d8d84828501612c5c565b91505092915050565b60008060408385031215612da957600080fd5b6000612db785828601612c5c565b9250506020612dc885828601612c5c565b9150509250929050565b600080600080600060a08688031215612dea57600080fd5b6000612df888828901612c5c565b9550506020612e0988828901612c5c565b945050604086013567ffffffffffffffff811115612e2657600080fd5b612e3288828901612c9b565b935050606086013567ffffffffffffffff811115612e4f57600080fd5b612e5b88828901612c9b565b925050608086013567ffffffffffffffff811115612e7857600080fd5b612e8488828901612d04565b9150509295509295909350565b600080600080600060a08688031215612ea957600080fd5b6000612eb788828901612c5c565b9550506020612ec888828901612c5c565b9450506040612ed988828901612d58565b9350506060612eea88828901612d58565b925050608086013567ffffffffffffffff811115612f0757600080fd5b612f1388828901612d04565b9150509295509295909350565b600080600060608486031215612f3557600080fd5b6000612f4386828701612c5c565b935050602084013567ffffffffffffffff811115612f6057600080fd5b612f6c86828701612c9b565b925050604084013567ffffffffffffffff811115612f8957600080fd5b612f9586828701612c9b565b9150509250925092565b60008060408385031215612fb257600080fd5b6000612fc085828601612c5c565b9250506020612fd185828601612cc5565b9150509250929050565b60008060408385031215612fee57600080fd5b6000612ffc85828601612c5c565b925050602061300d85828601612d58565b9150509250929050565b60008060006060848603121561302c57600080fd5b600061303a86828701612c5c565b935050602061304b86828701612d58565b925050604061305c86828701612d58565b9150509250925092565b6000806040838503121561307957600080fd5b600083013567ffffffffffffffff81111561309357600080fd5b61309f85828601612c71565b925050602083013567ffffffffffffffff8111156130bc57600080fd5b6130c885828601612c9b565b9150509250929050565b600080604083850312156130e557600080fd5b600083013567ffffffffffffffff8111156130ff57600080fd5b61310b85828601612c9b565b925050602083013567ffffffffffffffff81111561312857600080fd5b61313485828601612c9b565b9150509250929050565b60006020828403121561315057600080fd5b600061315e84828501612cda565b91505092915050565b60006020828403121561317957600080fd5b600061318784828501612cef565b91505092915050565b6000602082840312156131a257600080fd5b600082013567ffffffffffffffff8111156131bc57600080fd5b6131c884828501612d2e565b91505092915050565b6000602082840312156131e357600080fd5b60006131f184828501612d58565b91505092915050565b6000806040838503121561320d57600080fd5b600061321b85828601612d58565b925050602061322c85828601612d58565b9150509250929050565b600061324283836135b2565b60208301905092915050565b61325781613ba1565b82525050565b600061326882613ab6565b6132728185613ae4565b935061327d83613aa6565b8060005b838110156132ae5781516132958882613236565b97506132a083613ad7565b925050600181019050613281565b5085935050505092915050565b6132c481613bb3565b82525050565b60006132d582613ac1565b6132df8185613af5565b93506132ef818560208601613c24565b6132f881613db2565b840191505092915050565b600061330e82613acc565b6133188185613b06565b9350613328818560208601613c24565b61333181613db2565b840191505092915050565b6000613349603483613b06565b915061335482613dec565b604082019050919050565b600061336c602883613b06565b915061337782613e3b565b604082019050919050565b600061338f601483613b06565b915061339a82613e8a565b602082019050919050565b60006133b2602b83613b06565b91506133bd82613eb3565b604082019050919050565b60006133d5602683613b06565b91506133e082613f02565b604082019050919050565b60006133f8602483613b06565b915061340382613f51565b604082019050919050565b600061341b602c83613b06565b915061342682613fa0565b604082019050919050565b600061343e602983613b06565b915061344982613fef565b604082019050919050565b6000613461601083613b06565b915061346c8261403e565b602082019050919050565b6000613484602583613b06565b915061348f82614067565b604082019050919050565b60006134a7603283613b06565b91506134b2826140b6565b604082019050919050565b60006134ca602383613b06565b91506134d582614105565b604082019050919050565b60006134ed602a83613b06565b91506134f882614154565b604082019050919050565b6000613510602083613b06565b915061351b826141a3565b602082019050919050565b6000613533602983613b06565b915061353e826141cc565b604082019050919050565b6000613556602983613b06565b91506135618261421b565b604082019050919050565b6000613579602883613b06565b91506135848261426a565b604082019050919050565b600061359c602183613b06565b91506135a7826142b9565b604082019050919050565b6135bb81613c0b565b82525050565b6135ca81613c0b565b82525050565b60006020820190506135e5600083018461324e565b92915050565b600060a082019050613600600083018861324e565b61360d602083018761324e565b818103604083015261361f818661325d565b90508181036060830152613633818561325d565b9050818103608083015261364781846132ca565b90509695505050505050565b600060a082019050613668600083018861324e565b613675602083018761324e565b61368260408301866135c1565b61368f60608301856135c1565b81810360808301526136a181846132ca565b90509695505050505050565b600060208201905081810360008301526136c7818461325d565b905092915050565b600060408201905081810360008301526136e9818561325d565b905081810360208301526136fd818461325d565b90509392505050565b600060208201905061371b60008301846132bb565b92915050565b6000602082019050818103600083015261373b8184613303565b905092915050565b6000602082019050818103600083015261375c8161333c565b9050919050565b6000602082019050818103600083015261377c8161335f565b9050919050565b6000602082019050818103600083015261379c81613382565b9050919050565b600060208201905081810360008301526137bc816133a5565b9050919050565b600060208201905081810360008301526137dc816133c8565b9050919050565b600060208201905081810360008301526137fc816133eb565b9050919050565b6000602082019050818103600083015261381c8161340e565b9050919050565b6000602082019050818103600083015261383c81613431565b9050919050565b6000602082019050818103600083015261385c81613454565b9050919050565b6000602082019050818103600083015261387c81613477565b9050919050565b6000602082019050818103600083015261389c8161349a565b9050919050565b600060208201905081810360008301526138bc816134bd565b9050919050565b600060208201905081810360008301526138dc816134e0565b9050919050565b600060208201905081810360008301526138fc81613503565b9050919050565b6000602082019050818103600083015261391c81613526565b9050919050565b6000602082019050818103600083015261393c81613549565b9050919050565b6000602082019050818103600083015261395c8161356c565b9050919050565b6000602082019050818103600083015261397c8161358f565b9050919050565b600060208201905061399860008301846135c1565b92915050565b60006040820190506139b360008301856135c1565b6139c060208301846135c1565b9392505050565b60006139d16139e2565b90506139dd8282613c89565b919050565b6000604051905090565b600067ffffffffffffffff821115613a0757613a06613d61565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a3357613a32613d61565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a5f57613a5e613d61565b5b613a6882613db2565b9050602081019050919050565b600067ffffffffffffffff821115613a9057613a8f613d61565b5b613a9982613db2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613b2282613c0b565b9150613b2d83613c0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6257613b61613d03565b5b828201905092915050565b6000613b7882613c0b565b9150613b8383613c0b565b925082821015613b9657613b95613d03565b5b828203905092915050565b6000613bac82613beb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c42578082015181840152602081019050613c27565b83811115613c51576000848401525b50505050565b60006002820490506001821680613c6f57607f821691505b60208210811415613c8357613c82613d32565b5b50919050565b613c9282613db2565b810181811067ffffffffffffffff82111715613cb157613cb0613d61565b5b80604052505050565b6000613cc582613c0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cf857613cf7613d03565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613daf5760046000803e613dac600051613dc3565b90505b90565b6000601f19601f8301169050919050565b60007c010000000000000000000000000000000000000000000000000000000082049050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156143185761439b565b6143206139e2565b60043d036004823e80513d602482011167ffffffffffffffff8211171561434857505061439b565b808201805167ffffffffffffffff811115614366575050505061439b565b80602083010160043d03850181111561438357505050505061439b565b61439282602001850186613c89565b82955050505050505b90565b6143a781613ba1565b81146143b257600080fd5b50565b6143be81613bb3565b81146143c957600080fd5b50565b6143d581613bbf565b81146143e057600080fd5b50565b6143ec81613c0b565b81146143f757600080fd5b5056fea26469706673582212206d74b7339d4c0903c66e95041cd8190241d5db55190b1c2010050636632e154964736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610153576000357c0100000000000000000000000000000000000000000000000000000000900480636b20c454116100d5578063bd85b03911610099578063bd85b0391461032e578063d351cfdc1461035e578063e985e9c51461037a578063f242432a146103aa578063f2fde38b146103c6578063f5298aca146103e257610153565b80636b20c454146102c4578063715018a6146102e05780638456cb59146102ea5780638da5cb5b146102f4578063a22cb4651461031257610153565b80632eb2c2d61161011c5780632eb2c2d6146102205780633f4ba83a1461023c5780634e1273f4146102465780634f558e79146102765780635c975abb146102a657610153565b8062fdd58e1461015857806301ffc9a71461018857806302fe5305146101b85780630e89341c146101d45780631b2ef1ca14610204575b600080fd5b610172600480360381019061016d9190612fdb565b6103fe565b60405161017f9190613983565b60405180910390f35b6101a2600480360381019061019d919061313e565b6104c7565b6040516101af9190613706565b60405180910390f35b6101d260048036038101906101cd9190613190565b6105a9565b005b6101ee60048036038101906101e991906131d1565b610631565b6040516101fb9190613721565b60405180910390f35b61021e600480360381019061021991906131fa565b6106c5565b005b61023a60048036038101906102359190612dd2565b61078a565b005b61024461082b565b005b610260600480360381019061025b9190613066565b6108b1565b60405161026d91906136ad565b60405180910390f35b610290600480360381019061028b91906131d1565b610a62565b60405161029d9190613706565b60405180910390f35b6102ae610a76565b6040516102bb9190613706565b60405180910390f35b6102de60048036038101906102d99190612f20565b610a8d565b005b6102e8610b2a565b005b6102f2610bb2565b005b6102fc610c38565b60405161030991906135d0565b60405180910390f35b61032c60048036038101906103279190612f9f565b610c62565b005b610348600480360381019061034391906131d1565b610de3565b6040516103559190613983565b60405180910390f35b610378600480360381019061037391906130d2565b610e00565b005b610394600480360381019061038f9190612d96565b610f63565b6040516103a19190613706565b60405180910390f35b6103c460048036038101906103bf9190612e91565b610ff7565b005b6103e060048036038101906103db9190612d6d565b611098565b005b6103fc60048036038101906103f79190613017565b611190565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561046f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610466906137a3565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a257506105a18261122d565b5b9050919050565b6105b1611297565b73ffffffffffffffffffffffffffffffffffffffff166105cf610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061c906138e3565b60405180910390fd5b61062e8161129f565b50565b60606002805461064090613c57565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90613c57565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b50505050509050919050565b6106cd611297565b73ffffffffffffffffffffffffffffffffffffffff166106eb610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610738906138e3565b60405180910390fd5b61075c338383604051806020016040528060008152506112b9565b8060046000848152602001908152602001600020600082825461077f9190613b17565b925050819055505050565b610792611297565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107d857506107d7856107d2611297565b610f63565b5b610817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080e90613883565b60405180910390fd5b610824858585858561144f565b5050505050565b610833611297565b73ffffffffffffffffffffffffffffffffffffffff16610851610c38565b73ffffffffffffffffffffffffffffffffffffffff16146108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e906138e3565b60405180910390fd5b6108af6117af565b565b606081518351146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90613923565b60405180910390fd5b6000835167ffffffffffffffff81111561093a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109685781602001602082028036833780820191505090505b50905060005b8451811015610a5757610a018582815181106109b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106109f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516103fe565b828281518110610a3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610a5090613cba565b905061096e565b508091505092915050565b600080610a6e83610de3565b119050919050565b6000600360009054906101000a900460ff16905090565b610a95611297565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610adb5750610ada83610ad5611297565b610f63565b5b610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613823565b60405180910390fd5b610b25838383611851565b505050565b610b32611297565b73ffffffffffffffffffffffffffffffffffffffff16610b50610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906138e3565b60405180910390fd5b610bb06000611929565b565b610bba611297565b73ffffffffffffffffffffffffffffffffffffffff16610bd8610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c25906138e3565b60405180910390fd5b610c366119ef565b565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610c81611297565b73ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613903565b60405180910390fd5b8060016000610ce5611297565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d92611297565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dd79190613706565b60405180910390a35050565b600060046000838152602001908152602001600020549050919050565b610e08611297565b73ffffffffffffffffffffffffffffffffffffffff16610e26610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e73906138e3565b60405180910390fd5b610e9733838360405180602001604052806000815250611a92565b60005b8251811015610f5e57818181518110610edc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000858481518110610f21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254610f469190613b17565b9250508190555080610f5790613cba565b9050610e9a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fff611297565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061104557506110448561103f611297565b610f63565b5b611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613823565b60405180910390fd5b6110918585858585611cfc565b5050505050565b6110a0611297565b73ffffffffffffffffffffffffffffffffffffffff166110be610c38565b73ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906138e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b906137c3565b60405180910390fd5b61118d81611929565b50565b611198611297565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111de57506111dd836111d8611297565b610f63565b5b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613823565b60405180910390fd5b611228838383611f7e565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600290805190602001906112b5929190612a65565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613963565b60405180910390fd5b6000611333611297565b90506113548160008761134588611fb8565b61134e88611fb8565b8761207e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b39190613b17565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161143192919061399e565b60405180910390a461144881600087878787612094565b5050505050565b8151835114611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613863565b60405180910390fd5b600061150d611297565b905061151d81878787878761207e565b60005b845181101561171a576000858281518110611564577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106115a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906138c3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ff9190613b17565b925050819055505050508061171390613cba565b9050611520565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117919291906136cf565b60405180910390a46117a78187878787876122b3565b505050505050565b6117b7610a76565b6117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90613783565b60405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61183a611297565b60405161184791906135d0565b60405180910390a1565b61185c8383836124d2565b60005b8251811015611923578181815181106118a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008584815181106118e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825461190b9190613b6d565b925050819055508061191c90613cba565b905061185f565b50505050565b6000600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119f7610a76565b15611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613843565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a7b611297565b604051611a8891906135d0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990613963565b60405180910390fd5b8151835114611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613943565b60405180910390fd5b6000611b50611297565b9050611b618160008787878761207e565b60005b8451811015611c6657838181518110611ba6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611bea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4c9190613b17565b925050819055508080611c5e90613cba565b915050611b64565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611cde9291906136cf565b60405180910390a4611cf5816000878787876122b3565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613863565b60405180910390fd5b6000611d76611297565b9050611d96818787611d8788611fb8565b611d9088611fb8565b8761207e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e24906138c3565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee29190613b17565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611f5f92919061399e565b60405180910390a4611f75828888888888612094565b50505050505050565b611f898383836127cf565b80600460008481526020019081526020016000206000828254611fac9190613b6d565b92505081905550505050565b60606000600167ffffffffffffffff811115611ffd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561202b5781602001602082028036833780820191505090505b5090508281600081518110612069577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61208c8686868686866129ec565b505050505050565b6120b38473ffffffffffffffffffffffffffffffffffffffff16612a4a565b156122ab578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612115959493929190613653565b602060405180830381600087803b15801561212f57600080fd5b505af192505050801561216057506040513d601f19601f8201168201806040525081019061215d9190613167565b60015b6122065761216c613d90565b806308c379a014156121c95750612181614308565b8061218c57506121cb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c09190613721565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90613743565b60405180910390fd5b63f23a6e617c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613763565b60405180910390fd5b505b505050505050565b6122d28473ffffffffffffffffffffffffffffffffffffffff16612a4a565b156124ca578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016123349594939291906135eb565b602060405180830381600087803b15801561234e57600080fd5b505af192505050801561237f57506040513d601f19601f8201168201806040525081019061237c9190613167565b60015b6124255761238b613d90565b806308c379a014156123e857506123a0614308565b806123ab57506123ea565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df9190613721565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90613743565b60405180910390fd5b63bc197c817c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90613763565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612539906138a3565b60405180910390fd5b8051825114612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90613943565b60405180910390fd5b6000612590611297565b90506125b08185600086866040518060200160405280600081525061207e565b60005b83518110156127495760008482815181106125f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600084838151811061263c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d4906137e3565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061274190613cba565b9150506125b3565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516127c19291906136cf565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561283f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612836906138a3565b60405180910390fd5b6000612849611297565b90506128798185600061285b87611fb8565b61286487611fb8565b6040518060200160405280600081525061207e565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612907906137e3565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516129dd92919061399e565b60405180910390a45050505050565b6129fa868686868686612a5d565b612a02610a76565b15612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613803565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b828054612a7190613c57565b90600052602060002090601f016020900481019282612a935760008555612ada565b82601f10612aac57805160ff1916838001178555612ada565b82800160010185558215612ada579182015b82811115612ad9578251825591602001919060010190612abe565b5b509050612ae79190612aeb565b5090565b5b80821115612b04576000816000905550600101612aec565b5090565b6000612b1b612b16846139ec565b6139c7565b90508083825260208201905082856020860282011115612b3a57600080fd5b60005b85811015612b6a5781612b508882612c5c565b845260208401935060208301925050600181019050612b3d565b5050509392505050565b6000612b87612b8284613a18565b6139c7565b90508083825260208201905082856020860282011115612ba657600080fd5b60005b85811015612bd65781612bbc8882612d58565b845260208401935060208301925050600181019050612ba9565b5050509392505050565b6000612bf3612bee84613a44565b6139c7565b905082815260208101848484011115612c0b57600080fd5b612c16848285613c15565b509392505050565b6000612c31612c2c84613a75565b6139c7565b905082815260208101848484011115612c4957600080fd5b612c54848285613c15565b509392505050565b600081359050612c6b8161439e565b92915050565b600082601f830112612c8257600080fd5b8135612c92848260208601612b08565b91505092915050565b600082601f830112612cac57600080fd5b8135612cbc848260208601612b74565b91505092915050565b600081359050612cd4816143b5565b92915050565b600081359050612ce9816143cc565b92915050565b600081519050612cfe816143cc565b92915050565b600082601f830112612d1557600080fd5b8135612d25848260208601612be0565b91505092915050565b600082601f830112612d3f57600080fd5b8135612d4f848260208601612c1e565b91505092915050565b600081359050612d67816143e3565b92915050565b600060208284031215612d7f57600080fd5b6000612d8d84828501612c5c565b91505092915050565b60008060408385031215612da957600080fd5b6000612db785828601612c5c565b9250506020612dc885828601612c5c565b9150509250929050565b600080600080600060a08688031215612dea57600080fd5b6000612df888828901612c5c565b9550506020612e0988828901612c5c565b945050604086013567ffffffffffffffff811115612e2657600080fd5b612e3288828901612c9b565b935050606086013567ffffffffffffffff811115612e4f57600080fd5b612e5b88828901612c9b565b925050608086013567ffffffffffffffff811115612e7857600080fd5b612e8488828901612d04565b9150509295509295909350565b600080600080600060a08688031215612ea957600080fd5b6000612eb788828901612c5c565b9550506020612ec888828901612c5c565b9450506040612ed988828901612d58565b9350506060612eea88828901612d58565b925050608086013567ffffffffffffffff811115612f0757600080fd5b612f1388828901612d04565b9150509295509295909350565b600080600060608486031215612f3557600080fd5b6000612f4386828701612c5c565b935050602084013567ffffffffffffffff811115612f6057600080fd5b612f6c86828701612c9b565b925050604084013567ffffffffffffffff811115612f8957600080fd5b612f9586828701612c9b565b9150509250925092565b60008060408385031215612fb257600080fd5b6000612fc085828601612c5c565b9250506020612fd185828601612cc5565b9150509250929050565b60008060408385031215612fee57600080fd5b6000612ffc85828601612c5c565b925050602061300d85828601612d58565b9150509250929050565b60008060006060848603121561302c57600080fd5b600061303a86828701612c5c565b935050602061304b86828701612d58565b925050604061305c86828701612d58565b9150509250925092565b6000806040838503121561307957600080fd5b600083013567ffffffffffffffff81111561309357600080fd5b61309f85828601612c71565b925050602083013567ffffffffffffffff8111156130bc57600080fd5b6130c885828601612c9b565b9150509250929050565b600080604083850312156130e557600080fd5b600083013567ffffffffffffffff8111156130ff57600080fd5b61310b85828601612c9b565b925050602083013567ffffffffffffffff81111561312857600080fd5b61313485828601612c9b565b9150509250929050565b60006020828403121561315057600080fd5b600061315e84828501612cda565b91505092915050565b60006020828403121561317957600080fd5b600061318784828501612cef565b91505092915050565b6000602082840312156131a257600080fd5b600082013567ffffffffffffffff8111156131bc57600080fd5b6131c884828501612d2e565b91505092915050565b6000602082840312156131e357600080fd5b60006131f184828501612d58565b91505092915050565b6000806040838503121561320d57600080fd5b600061321b85828601612d58565b925050602061322c85828601612d58565b9150509250929050565b600061324283836135b2565b60208301905092915050565b61325781613ba1565b82525050565b600061326882613ab6565b6132728185613ae4565b935061327d83613aa6565b8060005b838110156132ae5781516132958882613236565b97506132a083613ad7565b925050600181019050613281565b5085935050505092915050565b6132c481613bb3565b82525050565b60006132d582613ac1565b6132df8185613af5565b93506132ef818560208601613c24565b6132f881613db2565b840191505092915050565b600061330e82613acc565b6133188185613b06565b9350613328818560208601613c24565b61333181613db2565b840191505092915050565b6000613349603483613b06565b915061335482613dec565b604082019050919050565b600061336c602883613b06565b915061337782613e3b565b604082019050919050565b600061338f601483613b06565b915061339a82613e8a565b602082019050919050565b60006133b2602b83613b06565b91506133bd82613eb3565b604082019050919050565b60006133d5602683613b06565b91506133e082613f02565b604082019050919050565b60006133f8602483613b06565b915061340382613f51565b604082019050919050565b600061341b602c83613b06565b915061342682613fa0565b604082019050919050565b600061343e602983613b06565b915061344982613fef565b604082019050919050565b6000613461601083613b06565b915061346c8261403e565b602082019050919050565b6000613484602583613b06565b915061348f82614067565b604082019050919050565b60006134a7603283613b06565b91506134b2826140b6565b604082019050919050565b60006134ca602383613b06565b91506134d582614105565b604082019050919050565b60006134ed602a83613b06565b91506134f882614154565b604082019050919050565b6000613510602083613b06565b915061351b826141a3565b602082019050919050565b6000613533602983613b06565b915061353e826141cc565b604082019050919050565b6000613556602983613b06565b91506135618261421b565b604082019050919050565b6000613579602883613b06565b91506135848261426a565b604082019050919050565b600061359c602183613b06565b91506135a7826142b9565b604082019050919050565b6135bb81613c0b565b82525050565b6135ca81613c0b565b82525050565b60006020820190506135e5600083018461324e565b92915050565b600060a082019050613600600083018861324e565b61360d602083018761324e565b818103604083015261361f818661325d565b90508181036060830152613633818561325d565b9050818103608083015261364781846132ca565b90509695505050505050565b600060a082019050613668600083018861324e565b613675602083018761324e565b61368260408301866135c1565b61368f60608301856135c1565b81810360808301526136a181846132ca565b90509695505050505050565b600060208201905081810360008301526136c7818461325d565b905092915050565b600060408201905081810360008301526136e9818561325d565b905081810360208301526136fd818461325d565b90509392505050565b600060208201905061371b60008301846132bb565b92915050565b6000602082019050818103600083015261373b8184613303565b905092915050565b6000602082019050818103600083015261375c8161333c565b9050919050565b6000602082019050818103600083015261377c8161335f565b9050919050565b6000602082019050818103600083015261379c81613382565b9050919050565b600060208201905081810360008301526137bc816133a5565b9050919050565b600060208201905081810360008301526137dc816133c8565b9050919050565b600060208201905081810360008301526137fc816133eb565b9050919050565b6000602082019050818103600083015261381c8161340e565b9050919050565b6000602082019050818103600083015261383c81613431565b9050919050565b6000602082019050818103600083015261385c81613454565b9050919050565b6000602082019050818103600083015261387c81613477565b9050919050565b6000602082019050818103600083015261389c8161349a565b9050919050565b600060208201905081810360008301526138bc816134bd565b9050919050565b600060208201905081810360008301526138dc816134e0565b9050919050565b600060208201905081810360008301526138fc81613503565b9050919050565b6000602082019050818103600083015261391c81613526565b9050919050565b6000602082019050818103600083015261393c81613549565b9050919050565b6000602082019050818103600083015261395c8161356c565b9050919050565b6000602082019050818103600083015261397c8161358f565b9050919050565b600060208201905061399860008301846135c1565b92915050565b60006040820190506139b360008301856135c1565b6139c060208301846135c1565b9392505050565b60006139d16139e2565b90506139dd8282613c89565b919050565b6000604051905090565b600067ffffffffffffffff821115613a0757613a06613d61565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a3357613a32613d61565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a5f57613a5e613d61565b5b613a6882613db2565b9050602081019050919050565b600067ffffffffffffffff821115613a9057613a8f613d61565b5b613a9982613db2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613b2282613c0b565b9150613b2d83613c0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6257613b61613d03565b5b828201905092915050565b6000613b7882613c0b565b9150613b8383613c0b565b925082821015613b9657613b95613d03565b5b828203905092915050565b6000613bac82613beb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c42578082015181840152602081019050613c27565b83811115613c51576000848401525b50505050565b60006002820490506001821680613c6f57607f821691505b60208210811415613c8357613c82613d32565b5b50919050565b613c9282613db2565b810181811067ffffffffffffffff82111715613cb157613cb0613d61565b5b80604052505050565b6000613cc582613c0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cf857613cf7613d03565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613daf5760046000803e613dac600051613dc3565b90505b90565b6000601f19601f8301169050919050565b60007c010000000000000000000000000000000000000000000000000000000082049050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156143185761439b565b6143206139e2565b60043d036004823e80513d602482011167ffffffffffffffff8211171561434857505061439b565b808201805167ffffffffffffffff811115614366575050505061439b565b80602083010160043d03850181111561438357505050505061439b565b61439282602001850186613c89565b82955050505050505b90565b6143a781613ba1565b81146143b257600080fd5b50565b6143be81613bb3565b81146143c957600080fd5b50565b6143d581613bbf565b81146143e057600080fd5b50565b6143ec81613c0b565b81146143f757600080fd5b5056fea26469706673582212206d74b7339d4c0903c66e95041cd8190241d5db55190b1c2010050636632e154964736f6c63430008020033

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.