ETH Price: $3,486.61 (+3.41%)
Gas: 3 Gwei

Token

Squads Access Pass (SAP)
 

Overview

Max Total Supply

11,192 SAP

Holders

9,924

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
maiantiem.eth
0xfd86d28a6df8635c47af7c6ac5597893070d6336
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This NFT unlocks access to NFT Squads, membership in our community and grants special TBA superpowers.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PrysmAccessPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : PrysmAccessPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "./IERC2981Royalties.sol";
import "./ERC2981Base.sol";

/// @custom:security-contact [email protected]
contract PrysmAccessPass is ERC1155, Ownable, Pausable, ERC1155Supply, ERC2981Base {
    RoyaltyInfo private _royalties;
    string public name = "Squads Access Pass";
    string public symbol = "SAP";

    constructor() ERC1155("") {
        _setRoyalties(msg.sender, 0);
        _pause();
    }

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

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

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

    function mint(address account, uint256 id, uint256 amount, bytes memory data)
    public
    onlyOwner
    {
        bool wasPaused = paused();
        if (wasPaused) {
            unpause();
        }
        _mint(account, id, amount, data);
        if (wasPaused) {
            pause();
        }
    }

    function mintDistribute(address[] memory toAccounts, uint256 id, uint256 amount, bytes memory data)
    public
    onlyOwner
    {
        bool wasPaused = paused();
        if (wasPaused) {
            unpause();
        }
        for (uint256 i = 0; i < toAccounts.length; ++i) {
            _mint(toAccounts[i], id, amount, data);
        }
        if (wasPaused) {
            pause();
        }
    }

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

    // Value is in basis points so 10000 = 100% , 100 = 1% etc
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, 'ERC2981Royalties: Too high');
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    function setRoyalties(address recipient, uint256 value)
    public
    onlyOwner
    {
        _setRoyalties(recipient, value);
    }

    function royaltyInfo(uint256, uint256 value)
    external
    view
    override
    returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }

    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC1155, ERC2981Base)
    returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 17 : ERC2981Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import './IERC2981Royalties.sol';

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc ERC165
    function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override
    returns (bool)
    {
        return
        interfaceId == type(IERC2981Royalties).interfaceId ||
        super.supportsInterface(interfaceId);
    }
}

File 3 of 17 : IERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IERC2981Royalties {

    function royaltyInfo(uint256 _tokenId, uint256 _value)
    external
    view
    returns (address _receiver, uint256 _royaltyAmount);
}

File 4 of 17 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

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

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

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

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

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

File 5 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 6 of 17 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 8 of 17 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

        return array;
    }
}

File 9 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 17 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 13 of 17 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 15 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 16 of 17 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 17 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAccounts","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintDistribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","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":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040526040518060400160405280601281526020017f53717561647320416363657373205061737300000000000000000000000000008152506006908051906020019062000051929190620003da565b506040518060400160405280600381526020017f5341500000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f929190620003da565b50348015620000ad57600080fd5b5060405180602001604052806000815250620000cf816200013460201b60201c565b50620000f0620000e46200015060201b60201c565b6200015860201b60201c565b6000600360146101000a81548160ff0219169083151502179055506200011e3360006200021e60201b60201c565b6200012e6200030b60201b60201c565b62000646565b80600290805190602001906200014c929190620003da565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61271081111562000266576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025d9062000506565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600560008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6200031b620003c360201b60201c565b156200035e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003559062000528565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003aa6200015060201b60201c565b604051620003b99190620004e9565b60405180910390a1565b6000600360149054906101000a900460ff16905090565b828054620003e8906200058f565b90600052602060002090601f0160209004810192826200040c576000855562000458565b82601f106200042757805160ff191683800117855562000458565b8280016001018555821562000458579182015b82811115620004575782518255916020019190600101906200043a565b5b5090506200046791906200046b565b5090565b5b80821115620004865760008160009055506001016200046c565b5090565b62000495816200055b565b82525050565b6000620004aa601a836200054a565b9150620004b782620005f4565b602082019050919050565b6000620004d16010836200054a565b9150620004de826200061d565b602082019050919050565b60006020820190506200050060008301846200048a565b92915050565b6000602082019050818103600083015262000521816200049b565b9050919050565b600060208201905081810360008301526200054381620004c2565b9050919050565b600082825260208201905092915050565b600062000568826200056f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620005a857607f821691505b60208210811415620005bf57620005be620005c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b613df780620006566000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c80635c975abb116100c357806395d89b411161007c57806395d89b4114610376578063a22cb46514610394578063bd85b039146103b0578063e985e9c5146103e0578063f242432a14610410578063f2fde38b1461042c5761014c565b80635c975abb146102ee578063715018a61461030c578063731133e9146103165780638456cb59146103325780638c7ea24b1461033c5780638da5cb5b146103585761014c565b8063268607c411610115578063268607c41461021b5780632a55205a146102375780632eb2c2d6146102685780633f4ba83a146102845780634e1273f41461028e5780634f558e79146102be5761014c565b8062fdd58e1461015157806301ffc9a71461018157806302fe5305146101b157806306fdde03146101cd5780630e89341c146101eb575b600080fd5b61016b6004803603810190610166919061294e565b610448565b6040516101789190613328565b60405180910390f35b61019b60048036038101906101969190612b28565b610511565b6040516101a891906130eb565b60405180910390f35b6101cb60048036038101906101c69190612b82565b610523565b005b6101d56105ab565b6040516101e29190613106565b60405180910390f35b61020560048036038101906102009190612bcb565b610639565b6040516102129190613106565b60405180910390f35b61023560048036038101906102309190612a89565b6106cd565b005b610251600480360381019061024c9190612bf8565b6107be565b60405161025f929190613069565b60405180910390f35b610282600480360381019061027d91906127a8565b61087e565b005b61028c61091f565b005b6102a860048036038101906102a39190612a11565b6109a5565b6040516102b59190613092565b60405180910390f35b6102d860048036038101906102d39190612bcb565b610abe565b6040516102e591906130eb565b60405180910390f35b6102f6610ad2565b60405161030391906130eb565b60405180910390f35b610314610ae9565b005b610330600480360381019061032b919061298e565b610b71565b005b61033a610c2a565b005b6103566004803603810190610351919061294e565b610cb0565b005b610360610d3a565b60405161036d9190612f8c565b60405180910390f35b61037e610d64565b60405161038b9190613106565b60405180910390f35b6103ae60048036038101906103a9919061290e565b610df2565b005b6103ca60048036038101906103c59190612bcb565b610e08565b6040516103d79190613328565b60405180910390f35b6103fa60048036038101906103f59190612768565b610e25565b60405161040791906130eb565b60405180910390f35b61042a60048036038101906104259190612877565b610eb9565b005b6104466004803603810190610441919061273b565b610f5a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b0906131a8565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061051c82611052565b9050919050565b61052b6110cc565b73ffffffffffffffffffffffffffffffffffffffff16610549610d3a565b73ffffffffffffffffffffffffffffffffffffffff161461059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690613288565b60405180910390fd5b6105a8816110d4565b50565b600680546105b890613687565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490613687565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b505050505081565b60606002805461064890613687565b80601f016020809104026020016040519081016040528092919081815260200182805461067490613687565b80156106c15780601f10610696576101008083540402835291602001916106c1565b820191906000526020600020905b8154815290600101906020018083116106a457829003601f168201915b50505050509050919050565b6106d56110cc565b73ffffffffffffffffffffffffffffffffffffffff166106f3610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074090613288565b60405180910390fd5b6000610753610ad2565b905080156107645761076361091f565b5b60005b85518110156107a757610796868281518110610786576107856137c0565b5b60200260200101518686866110ee565b806107a0906136ea565b9050610767565b5080156107b7576107b6610c2a565b5b5050505050565b600080600060056040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff168561086a9190613543565b6108749190613512565b9150509250929050565b6108866110cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108cc57506108cb856108c66110cc565b610e25565b5b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290613248565b60405180910390fd5b6109188585858585611284565b5050505050565b6109276110cc565b73ffffffffffffffffffffffffffffffffffffffff16610945610d3a565b73ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613288565b60405180910390fd5b6109a3611598565b565b606081518351146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e2906132c8565b60405180910390fd5b6000835167ffffffffffffffff811115610a0857610a076137ef565b5b604051908082528060200260200182016040528015610a365781602001602082028036833780820191505090505b50905060005b8451811015610ab357610a83858281518110610a5b57610a5a6137c0565b5b6020026020010151858381518110610a7657610a756137c0565b5b6020026020010151610448565b828281518110610a9657610a956137c0565b5b60200260200101818152505080610aac906136ea565b9050610a3c565b508091505092915050565b600080610aca83610e08565b119050919050565b6000600360149054906101000a900460ff16905090565b610af16110cc565b73ffffffffffffffffffffffffffffffffffffffff16610b0f610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90613288565b60405180910390fd5b610b6f600061163a565b565b610b796110cc565b73ffffffffffffffffffffffffffffffffffffffff16610b97610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613288565b60405180910390fd5b6000610bf7610ad2565b90508015610c0857610c0761091f565b5b610c14858585856110ee565b8015610c2357610c22610c2a565b5b5050505050565b610c326110cc565b73ffffffffffffffffffffffffffffffffffffffff16610c50610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613288565b60405180910390fd5b610cae611700565b565b610cb86110cc565b73ffffffffffffffffffffffffffffffffffffffff16610cd6610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390613288565b60405180910390fd5b610d3682826117a3565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60078054610d7190613687565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9d90613687565b8015610dea5780601f10610dbf57610100808354040283529160200191610dea565b820191906000526020600020905b815481529060010190602001808311610dcd57829003601f168201915b505050505081565b610e04610dfd6110cc565b838361188d565b5050565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ec16110cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f075750610f0685610f016110cc565b610e25565b5b610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d906131e8565b60405180910390fd5b610f5385858585856119fa565b5050505050565b610f626110cc565b73ffffffffffffffffffffffffffffffffffffffff16610f80610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613288565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906131c8565b60405180910390fd5b61104f8161163a565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110c557506110c482611c7c565b5b9050919050565b600033905090565b80600290805190602001906110ea929190612413565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613308565b60405180910390fd5b60006111686110cc565b90506111898160008761117a88611d5e565b61118388611d5e565b87611dd8565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e891906134bc565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611266929190613343565b60405180910390a461127d81600087878787611e36565b5050505050565b81518351146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906132e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613228565b60405180910390fd5b60006113426110cc565b9050611352818787878787611dd8565b60005b8451811015611503576000858281518110611373576113726137c0565b5b602002602001015190506000858381518110611392576113916137c0565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613268565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e891906134bc565b92505081905550505050806114fc906136ea565b9050611355565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161157a9291906130b4565b60405180910390a461159081878787878761201d565b505050505050565b6115a0610ad2565b6115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613168565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116236110cc565b6040516116309190612f8c565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611708610ad2565b15611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613208565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861178c6110cc565b6040516117999190612f8c565b60405180910390a1565b6127108111156117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613188565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600560008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f3906132a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ed91906130eb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613228565b60405180910390fd5b6000611a746110cc565b9050611a94818787611a8588611d5e565b611a8e88611d5e565b87611dd8565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613268565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be091906134bc565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611c5d929190613343565b60405180910390a4611c73828888888888611e36565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d4757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d575750611d5682612204565b5b9050919050565b60606000600167ffffffffffffffff811115611d7d57611d7c6137ef565b5b604051908082528060200260200182016040528015611dab5781602001602082028036833780820191505090505b5090508281600081518110611dc357611dc26137c0565b5b60200260200101818152505080915050919050565b611de0610ad2565b15611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613208565b60405180910390fd5b611e2e86868686868661226e565b505050505050565b611e558473ffffffffffffffffffffffffffffffffffffffff166123e8565b15612015578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611e9b95949392919061300f565b602060405180830381600087803b158015611eb557600080fd5b505af1925050508015611ee657506040513d601f19601f82011682018060405250810190611ee39190612b55565b60015b611f8c57611ef261381e565b806308c379a01415611f4f5750611f07613ccf565b80611f125750611f51565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f469190613106565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390613128565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613148565b60405180910390fd5b505b505050505050565b61203c8473ffffffffffffffffffffffffffffffffffffffff166123e8565b156121fc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612082959493929190612fa7565b602060405180830381600087803b15801561209c57600080fd5b505af19250505080156120cd57506040513d601f19601f820116820180604052508101906120ca9190612b55565b60015b612173576120d961381e565b806308c379a0141561213657506120ee613ccf565b806120f95750612138565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d9190613106565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a90613128565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613148565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61227c86868686868661240b565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561232e5760005b835181101561232c578281815181106122d0576122cf6137c0565b5b6020026020010151600460008684815181106122ef576122ee6137c0565b5b60200260200101518152602001908152602001600020600082825461231491906134bc565b9250508190555080612325906136ea565b90506122b4565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123e05760005b83518110156123de57828181518110612382576123816137c0565b5b6020026020010151600460008684815181106123a1576123a06137c0565b5b6020026020010151815260200190815260200160002060008282546123c6919061359d565b92505081905550806123d7906136ea565b9050612366565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b82805461241f90613687565b90600052602060002090601f0160209004810192826124415760008555612488565b82601f1061245a57805160ff1916838001178555612488565b82800160010185558215612488579182015b8281111561248757825182559160200191906001019061246c565b5b5090506124959190612499565b5090565b5b808211156124b257600081600090555060010161249a565b5090565b60006124c96124c484613391565b61336c565b905080838252602082019050828560208602820111156124ec576124eb613845565b5b60005b8581101561251c5781612502888261261a565b8452602084019350602083019250506001810190506124ef565b5050509392505050565b6000612539612534846133bd565b61336c565b9050808382526020820190508285602086028201111561255c5761255b613845565b5b60005b8581101561258c57816125728882612726565b84526020840193506020830192505060018101905061255f565b5050509392505050565b60006125a96125a4846133e9565b61336c565b9050828152602081018484840111156125c5576125c461384a565b5b6125d0848285613645565b509392505050565b60006125eb6125e68461341a565b61336c565b9050828152602081018484840111156126075761260661384a565b5b612612848285613645565b509392505050565b60008135905061262981613d65565b92915050565b600082601f83011261264457612643613840565b5b81356126548482602086016124b6565b91505092915050565b600082601f83011261267257612671613840565b5b8135612682848260208601612526565b91505092915050565b60008135905061269a81613d7c565b92915050565b6000813590506126af81613d93565b92915050565b6000815190506126c481613d93565b92915050565b600082601f8301126126df576126de613840565b5b81356126ef848260208601612596565b91505092915050565b600082601f83011261270d5761270c613840565b5b813561271d8482602086016125d8565b91505092915050565b60008135905061273581613daa565b92915050565b60006020828403121561275157612750613854565b5b600061275f8482850161261a565b91505092915050565b6000806040838503121561277f5761277e613854565b5b600061278d8582860161261a565b925050602061279e8582860161261a565b9150509250929050565b600080600080600060a086880312156127c4576127c3613854565b5b60006127d28882890161261a565b95505060206127e38882890161261a565b945050604086013567ffffffffffffffff8111156128045761280361384f565b5b6128108882890161265d565b935050606086013567ffffffffffffffff8111156128315761283061384f565b5b61283d8882890161265d565b925050608086013567ffffffffffffffff81111561285e5761285d61384f565b5b61286a888289016126ca565b9150509295509295909350565b600080600080600060a0868803121561289357612892613854565b5b60006128a18882890161261a565b95505060206128b28882890161261a565b94505060406128c388828901612726565b93505060606128d488828901612726565b925050608086013567ffffffffffffffff8111156128f5576128f461384f565b5b612901888289016126ca565b9150509295509295909350565b6000806040838503121561292557612924613854565b5b60006129338582860161261a565b92505060206129448582860161268b565b9150509250929050565b6000806040838503121561296557612964613854565b5b60006129738582860161261a565b925050602061298485828601612726565b9150509250929050565b600080600080608085870312156129a8576129a7613854565b5b60006129b68782880161261a565b94505060206129c787828801612726565b93505060406129d887828801612726565b925050606085013567ffffffffffffffff8111156129f9576129f861384f565b5b612a05878288016126ca565b91505092959194509250565b60008060408385031215612a2857612a27613854565b5b600083013567ffffffffffffffff811115612a4657612a4561384f565b5b612a528582860161262f565b925050602083013567ffffffffffffffff811115612a7357612a7261384f565b5b612a7f8582860161265d565b9150509250929050565b60008060008060808587031215612aa357612aa2613854565b5b600085013567ffffffffffffffff811115612ac157612ac061384f565b5b612acd8782880161262f565b9450506020612ade87828801612726565b9350506040612aef87828801612726565b925050606085013567ffffffffffffffff811115612b1057612b0f61384f565b5b612b1c878288016126ca565b91505092959194509250565b600060208284031215612b3e57612b3d613854565b5b6000612b4c848285016126a0565b91505092915050565b600060208284031215612b6b57612b6a613854565b5b6000612b79848285016126b5565b91505092915050565b600060208284031215612b9857612b97613854565b5b600082013567ffffffffffffffff811115612bb657612bb561384f565b5b612bc2848285016126f8565b91505092915050565b600060208284031215612be157612be0613854565b5b6000612bef84828501612726565b91505092915050565b60008060408385031215612c0f57612c0e613854565b5b6000612c1d85828601612726565b9250506020612c2e85828601612726565b9150509250929050565b6000612c448383612f6e565b60208301905092915050565b612c59816135d1565b82525050565b6000612c6a8261345b565b612c748185613489565b9350612c7f8361344b565b8060005b83811015612cb0578151612c978882612c38565b9750612ca28361347c565b925050600181019050612c83565b5085935050505092915050565b612cc6816135e3565b82525050565b6000612cd782613466565b612ce1818561349a565b9350612cf1818560208601613654565b612cfa81613859565b840191505092915050565b6000612d1082613471565b612d1a81856134ab565b9350612d2a818560208601613654565b612d3381613859565b840191505092915050565b6000612d4b6034836134ab565b9150612d5682613877565b604082019050919050565b6000612d6e6028836134ab565b9150612d79826138c6565b604082019050919050565b6000612d916014836134ab565b9150612d9c82613915565b602082019050919050565b6000612db4601a836134ab565b9150612dbf8261393e565b602082019050919050565b6000612dd7602b836134ab565b9150612de282613967565b604082019050919050565b6000612dfa6026836134ab565b9150612e05826139b6565b604082019050919050565b6000612e1d6029836134ab565b9150612e2882613a05565b604082019050919050565b6000612e406010836134ab565b9150612e4b82613a54565b602082019050919050565b6000612e636025836134ab565b9150612e6e82613a7d565b604082019050919050565b6000612e866032836134ab565b9150612e9182613acc565b604082019050919050565b6000612ea9602a836134ab565b9150612eb482613b1b565b604082019050919050565b6000612ecc6020836134ab565b9150612ed782613b6a565b602082019050919050565b6000612eef6029836134ab565b9150612efa82613b93565b604082019050919050565b6000612f126029836134ab565b9150612f1d82613be2565b604082019050919050565b6000612f356028836134ab565b9150612f4082613c31565b604082019050919050565b6000612f586021836134ab565b9150612f6382613c80565b604082019050919050565b612f778161363b565b82525050565b612f868161363b565b82525050565b6000602082019050612fa16000830184612c50565b92915050565b600060a082019050612fbc6000830188612c50565b612fc96020830187612c50565b8181036040830152612fdb8186612c5f565b90508181036060830152612fef8185612c5f565b905081810360808301526130038184612ccc565b90509695505050505050565b600060a0820190506130246000830188612c50565b6130316020830187612c50565b61303e6040830186612f7d565b61304b6060830185612f7d565b818103608083015261305d8184612ccc565b90509695505050505050565b600060408201905061307e6000830185612c50565b61308b6020830184612f7d565b9392505050565b600060208201905081810360008301526130ac8184612c5f565b905092915050565b600060408201905081810360008301526130ce8185612c5f565b905081810360208301526130e28184612c5f565b90509392505050565b60006020820190506131006000830184612cbd565b92915050565b600060208201905081810360008301526131208184612d05565b905092915050565b6000602082019050818103600083015261314181612d3e565b9050919050565b6000602082019050818103600083015261316181612d61565b9050919050565b6000602082019050818103600083015261318181612d84565b9050919050565b600060208201905081810360008301526131a181612da7565b9050919050565b600060208201905081810360008301526131c181612dca565b9050919050565b600060208201905081810360008301526131e181612ded565b9050919050565b6000602082019050818103600083015261320181612e10565b9050919050565b6000602082019050818103600083015261322181612e33565b9050919050565b6000602082019050818103600083015261324181612e56565b9050919050565b6000602082019050818103600083015261326181612e79565b9050919050565b6000602082019050818103600083015261328181612e9c565b9050919050565b600060208201905081810360008301526132a181612ebf565b9050919050565b600060208201905081810360008301526132c181612ee2565b9050919050565b600060208201905081810360008301526132e181612f05565b9050919050565b6000602082019050818103600083015261330181612f28565b9050919050565b6000602082019050818103600083015261332181612f4b565b9050919050565b600060208201905061333d6000830184612f7d565b92915050565b60006040820190506133586000830185612f7d565b6133656020830184612f7d565b9392505050565b6000613376613387565b905061338282826136b9565b919050565b6000604051905090565b600067ffffffffffffffff8211156133ac576133ab6137ef565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133d8576133d76137ef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613404576134036137ef565b5b61340d82613859565b9050602081019050919050565b600067ffffffffffffffff821115613435576134346137ef565b5b61343e82613859565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006134c78261363b565b91506134d28361363b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350757613506613733565b5b828201905092915050565b600061351d8261363b565b91506135288361363b565b92508261353857613537613762565b5b828204905092915050565b600061354e8261363b565b91506135598361363b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359257613591613733565b5b828202905092915050565b60006135a88261363b565b91506135b38361363b565b9250828210156135c6576135c5613733565b5b828203905092915050565b60006135dc8261361b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613672578082015181840152602081019050613657565b83811115613681576000848401525b50505050565b6000600282049050600182168061369f57607f821691505b602082108114156136b3576136b2613791565b5b50919050565b6136c282613859565b810181811067ffffffffffffffff821117156136e1576136e06137ef565b5b80604052505050565b60006136f58261363b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561372857613727613733565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561383d5760046000803e61383a60005161386a565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613cdf57613d62565b613ce7613387565b60043d036004823e80513d602482011167ffffffffffffffff82111715613d0f575050613d62565b808201805167ffffffffffffffff811115613d2d5750505050613d62565b80602083010160043d038501811115613d4a575050505050613d62565b613d59826020018501866136b9565b82955050505050505b90565b613d6e816135d1565b8114613d7957600080fd5b50565b613d85816135e3565b8114613d9057600080fd5b50565b613d9c816135ef565b8114613da757600080fd5b50565b613db38161363b565b8114613dbe57600080fd5b5056fea26469706673582212202a3a4053a0d06a3d4b782991b5d1e04e84135e0e859c2f2a841bafa178c9fb9664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014c5760003560e01c80635c975abb116100c357806395d89b411161007c57806395d89b4114610376578063a22cb46514610394578063bd85b039146103b0578063e985e9c5146103e0578063f242432a14610410578063f2fde38b1461042c5761014c565b80635c975abb146102ee578063715018a61461030c578063731133e9146103165780638456cb59146103325780638c7ea24b1461033c5780638da5cb5b146103585761014c565b8063268607c411610115578063268607c41461021b5780632a55205a146102375780632eb2c2d6146102685780633f4ba83a146102845780634e1273f41461028e5780634f558e79146102be5761014c565b8062fdd58e1461015157806301ffc9a71461018157806302fe5305146101b157806306fdde03146101cd5780630e89341c146101eb575b600080fd5b61016b6004803603810190610166919061294e565b610448565b6040516101789190613328565b60405180910390f35b61019b60048036038101906101969190612b28565b610511565b6040516101a891906130eb565b60405180910390f35b6101cb60048036038101906101c69190612b82565b610523565b005b6101d56105ab565b6040516101e29190613106565b60405180910390f35b61020560048036038101906102009190612bcb565b610639565b6040516102129190613106565b60405180910390f35b61023560048036038101906102309190612a89565b6106cd565b005b610251600480360381019061024c9190612bf8565b6107be565b60405161025f929190613069565b60405180910390f35b610282600480360381019061027d91906127a8565b61087e565b005b61028c61091f565b005b6102a860048036038101906102a39190612a11565b6109a5565b6040516102b59190613092565b60405180910390f35b6102d860048036038101906102d39190612bcb565b610abe565b6040516102e591906130eb565b60405180910390f35b6102f6610ad2565b60405161030391906130eb565b60405180910390f35b610314610ae9565b005b610330600480360381019061032b919061298e565b610b71565b005b61033a610c2a565b005b6103566004803603810190610351919061294e565b610cb0565b005b610360610d3a565b60405161036d9190612f8c565b60405180910390f35b61037e610d64565b60405161038b9190613106565b60405180910390f35b6103ae60048036038101906103a9919061290e565b610df2565b005b6103ca60048036038101906103c59190612bcb565b610e08565b6040516103d79190613328565b60405180910390f35b6103fa60048036038101906103f59190612768565b610e25565b60405161040791906130eb565b60405180910390f35b61042a60048036038101906104259190612877565b610eb9565b005b6104466004803603810190610441919061273b565b610f5a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b0906131a8565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061051c82611052565b9050919050565b61052b6110cc565b73ffffffffffffffffffffffffffffffffffffffff16610549610d3a565b73ffffffffffffffffffffffffffffffffffffffff161461059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690613288565b60405180910390fd5b6105a8816110d4565b50565b600680546105b890613687565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490613687565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b505050505081565b60606002805461064890613687565b80601f016020809104026020016040519081016040528092919081815260200182805461067490613687565b80156106c15780601f10610696576101008083540402835291602001916106c1565b820191906000526020600020905b8154815290600101906020018083116106a457829003601f168201915b50505050509050919050565b6106d56110cc565b73ffffffffffffffffffffffffffffffffffffffff166106f3610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074090613288565b60405180910390fd5b6000610753610ad2565b905080156107645761076361091f565b5b60005b85518110156107a757610796868281518110610786576107856137c0565b5b60200260200101518686866110ee565b806107a0906136ea565b9050610767565b5080156107b7576107b6610c2a565b5b5050505050565b600080600060056040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff168561086a9190613543565b6108749190613512565b9150509250929050565b6108866110cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108cc57506108cb856108c66110cc565b610e25565b5b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290613248565b60405180910390fd5b6109188585858585611284565b5050505050565b6109276110cc565b73ffffffffffffffffffffffffffffffffffffffff16610945610d3a565b73ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613288565b60405180910390fd5b6109a3611598565b565b606081518351146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e2906132c8565b60405180910390fd5b6000835167ffffffffffffffff811115610a0857610a076137ef565b5b604051908082528060200260200182016040528015610a365781602001602082028036833780820191505090505b50905060005b8451811015610ab357610a83858281518110610a5b57610a5a6137c0565b5b6020026020010151858381518110610a7657610a756137c0565b5b6020026020010151610448565b828281518110610a9657610a956137c0565b5b60200260200101818152505080610aac906136ea565b9050610a3c565b508091505092915050565b600080610aca83610e08565b119050919050565b6000600360149054906101000a900460ff16905090565b610af16110cc565b73ffffffffffffffffffffffffffffffffffffffff16610b0f610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90613288565b60405180910390fd5b610b6f600061163a565b565b610b796110cc565b73ffffffffffffffffffffffffffffffffffffffff16610b97610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613288565b60405180910390fd5b6000610bf7610ad2565b90508015610c0857610c0761091f565b5b610c14858585856110ee565b8015610c2357610c22610c2a565b5b5050505050565b610c326110cc565b73ffffffffffffffffffffffffffffffffffffffff16610c50610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613288565b60405180910390fd5b610cae611700565b565b610cb86110cc565b73ffffffffffffffffffffffffffffffffffffffff16610cd6610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390613288565b60405180910390fd5b610d3682826117a3565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60078054610d7190613687565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9d90613687565b8015610dea5780601f10610dbf57610100808354040283529160200191610dea565b820191906000526020600020905b815481529060010190602001808311610dcd57829003601f168201915b505050505081565b610e04610dfd6110cc565b838361188d565b5050565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ec16110cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f075750610f0685610f016110cc565b610e25565b5b610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d906131e8565b60405180910390fd5b610f5385858585856119fa565b5050505050565b610f626110cc565b73ffffffffffffffffffffffffffffffffffffffff16610f80610d3a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613288565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906131c8565b60405180910390fd5b61104f8161163a565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110c557506110c482611c7c565b5b9050919050565b600033905090565b80600290805190602001906110ea929190612413565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613308565b60405180910390fd5b60006111686110cc565b90506111898160008761117a88611d5e565b61118388611d5e565b87611dd8565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e891906134bc565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611266929190613343565b60405180910390a461127d81600087878787611e36565b5050505050565b81518351146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906132e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613228565b60405180910390fd5b60006113426110cc565b9050611352818787878787611dd8565b60005b8451811015611503576000858281518110611373576113726137c0565b5b602002602001015190506000858381518110611392576113916137c0565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613268565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e891906134bc565b92505081905550505050806114fc906136ea565b9050611355565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161157a9291906130b4565b60405180910390a461159081878787878761201d565b505050505050565b6115a0610ad2565b6115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613168565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116236110cc565b6040516116309190612f8c565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611708610ad2565b15611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613208565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861178c6110cc565b6040516117999190612f8c565b60405180910390a1565b6127108111156117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613188565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600560008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f3906132a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ed91906130eb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613228565b60405180910390fd5b6000611a746110cc565b9050611a94818787611a8588611d5e565b611a8e88611d5e565b87611dd8565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613268565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be091906134bc565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611c5d929190613343565b60405180910390a4611c73828888888888611e36565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d4757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d575750611d5682612204565b5b9050919050565b60606000600167ffffffffffffffff811115611d7d57611d7c6137ef565b5b604051908082528060200260200182016040528015611dab5781602001602082028036833780820191505090505b5090508281600081518110611dc357611dc26137c0565b5b60200260200101818152505080915050919050565b611de0610ad2565b15611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613208565b60405180910390fd5b611e2e86868686868661226e565b505050505050565b611e558473ffffffffffffffffffffffffffffffffffffffff166123e8565b15612015578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611e9b95949392919061300f565b602060405180830381600087803b158015611eb557600080fd5b505af1925050508015611ee657506040513d601f19601f82011682018060405250810190611ee39190612b55565b60015b611f8c57611ef261381e565b806308c379a01415611f4f5750611f07613ccf565b80611f125750611f51565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f469190613106565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390613128565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613148565b60405180910390fd5b505b505050505050565b61203c8473ffffffffffffffffffffffffffffffffffffffff166123e8565b156121fc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612082959493929190612fa7565b602060405180830381600087803b15801561209c57600080fd5b505af19250505080156120cd57506040513d601f19601f820116820180604052508101906120ca9190612b55565b60015b612173576120d961381e565b806308c379a0141561213657506120ee613ccf565b806120f95750612138565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d9190613106565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a90613128565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613148565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61227c86868686868661240b565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561232e5760005b835181101561232c578281815181106122d0576122cf6137c0565b5b6020026020010151600460008684815181106122ef576122ee6137c0565b5b60200260200101518152602001908152602001600020600082825461231491906134bc565b9250508190555080612325906136ea565b90506122b4565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123e05760005b83518110156123de57828181518110612382576123816137c0565b5b6020026020010151600460008684815181106123a1576123a06137c0565b5b6020026020010151815260200190815260200160002060008282546123c6919061359d565b92505081905550806123d7906136ea565b9050612366565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b82805461241f90613687565b90600052602060002090601f0160209004810192826124415760008555612488565b82601f1061245a57805160ff1916838001178555612488565b82800160010185558215612488579182015b8281111561248757825182559160200191906001019061246c565b5b5090506124959190612499565b5090565b5b808211156124b257600081600090555060010161249a565b5090565b60006124c96124c484613391565b61336c565b905080838252602082019050828560208602820111156124ec576124eb613845565b5b60005b8581101561251c5781612502888261261a565b8452602084019350602083019250506001810190506124ef565b5050509392505050565b6000612539612534846133bd565b61336c565b9050808382526020820190508285602086028201111561255c5761255b613845565b5b60005b8581101561258c57816125728882612726565b84526020840193506020830192505060018101905061255f565b5050509392505050565b60006125a96125a4846133e9565b61336c565b9050828152602081018484840111156125c5576125c461384a565b5b6125d0848285613645565b509392505050565b60006125eb6125e68461341a565b61336c565b9050828152602081018484840111156126075761260661384a565b5b612612848285613645565b509392505050565b60008135905061262981613d65565b92915050565b600082601f83011261264457612643613840565b5b81356126548482602086016124b6565b91505092915050565b600082601f83011261267257612671613840565b5b8135612682848260208601612526565b91505092915050565b60008135905061269a81613d7c565b92915050565b6000813590506126af81613d93565b92915050565b6000815190506126c481613d93565b92915050565b600082601f8301126126df576126de613840565b5b81356126ef848260208601612596565b91505092915050565b600082601f83011261270d5761270c613840565b5b813561271d8482602086016125d8565b91505092915050565b60008135905061273581613daa565b92915050565b60006020828403121561275157612750613854565b5b600061275f8482850161261a565b91505092915050565b6000806040838503121561277f5761277e613854565b5b600061278d8582860161261a565b925050602061279e8582860161261a565b9150509250929050565b600080600080600060a086880312156127c4576127c3613854565b5b60006127d28882890161261a565b95505060206127e38882890161261a565b945050604086013567ffffffffffffffff8111156128045761280361384f565b5b6128108882890161265d565b935050606086013567ffffffffffffffff8111156128315761283061384f565b5b61283d8882890161265d565b925050608086013567ffffffffffffffff81111561285e5761285d61384f565b5b61286a888289016126ca565b9150509295509295909350565b600080600080600060a0868803121561289357612892613854565b5b60006128a18882890161261a565b95505060206128b28882890161261a565b94505060406128c388828901612726565b93505060606128d488828901612726565b925050608086013567ffffffffffffffff8111156128f5576128f461384f565b5b612901888289016126ca565b9150509295509295909350565b6000806040838503121561292557612924613854565b5b60006129338582860161261a565b92505060206129448582860161268b565b9150509250929050565b6000806040838503121561296557612964613854565b5b60006129738582860161261a565b925050602061298485828601612726565b9150509250929050565b600080600080608085870312156129a8576129a7613854565b5b60006129b68782880161261a565b94505060206129c787828801612726565b93505060406129d887828801612726565b925050606085013567ffffffffffffffff8111156129f9576129f861384f565b5b612a05878288016126ca565b91505092959194509250565b60008060408385031215612a2857612a27613854565b5b600083013567ffffffffffffffff811115612a4657612a4561384f565b5b612a528582860161262f565b925050602083013567ffffffffffffffff811115612a7357612a7261384f565b5b612a7f8582860161265d565b9150509250929050565b60008060008060808587031215612aa357612aa2613854565b5b600085013567ffffffffffffffff811115612ac157612ac061384f565b5b612acd8782880161262f565b9450506020612ade87828801612726565b9350506040612aef87828801612726565b925050606085013567ffffffffffffffff811115612b1057612b0f61384f565b5b612b1c878288016126ca565b91505092959194509250565b600060208284031215612b3e57612b3d613854565b5b6000612b4c848285016126a0565b91505092915050565b600060208284031215612b6b57612b6a613854565b5b6000612b79848285016126b5565b91505092915050565b600060208284031215612b9857612b97613854565b5b600082013567ffffffffffffffff811115612bb657612bb561384f565b5b612bc2848285016126f8565b91505092915050565b600060208284031215612be157612be0613854565b5b6000612bef84828501612726565b91505092915050565b60008060408385031215612c0f57612c0e613854565b5b6000612c1d85828601612726565b9250506020612c2e85828601612726565b9150509250929050565b6000612c448383612f6e565b60208301905092915050565b612c59816135d1565b82525050565b6000612c6a8261345b565b612c748185613489565b9350612c7f8361344b565b8060005b83811015612cb0578151612c978882612c38565b9750612ca28361347c565b925050600181019050612c83565b5085935050505092915050565b612cc6816135e3565b82525050565b6000612cd782613466565b612ce1818561349a565b9350612cf1818560208601613654565b612cfa81613859565b840191505092915050565b6000612d1082613471565b612d1a81856134ab565b9350612d2a818560208601613654565b612d3381613859565b840191505092915050565b6000612d4b6034836134ab565b9150612d5682613877565b604082019050919050565b6000612d6e6028836134ab565b9150612d79826138c6565b604082019050919050565b6000612d916014836134ab565b9150612d9c82613915565b602082019050919050565b6000612db4601a836134ab565b9150612dbf8261393e565b602082019050919050565b6000612dd7602b836134ab565b9150612de282613967565b604082019050919050565b6000612dfa6026836134ab565b9150612e05826139b6565b604082019050919050565b6000612e1d6029836134ab565b9150612e2882613a05565b604082019050919050565b6000612e406010836134ab565b9150612e4b82613a54565b602082019050919050565b6000612e636025836134ab565b9150612e6e82613a7d565b604082019050919050565b6000612e866032836134ab565b9150612e9182613acc565b604082019050919050565b6000612ea9602a836134ab565b9150612eb482613b1b565b604082019050919050565b6000612ecc6020836134ab565b9150612ed782613b6a565b602082019050919050565b6000612eef6029836134ab565b9150612efa82613b93565b604082019050919050565b6000612f126029836134ab565b9150612f1d82613be2565b604082019050919050565b6000612f356028836134ab565b9150612f4082613c31565b604082019050919050565b6000612f586021836134ab565b9150612f6382613c80565b604082019050919050565b612f778161363b565b82525050565b612f868161363b565b82525050565b6000602082019050612fa16000830184612c50565b92915050565b600060a082019050612fbc6000830188612c50565b612fc96020830187612c50565b8181036040830152612fdb8186612c5f565b90508181036060830152612fef8185612c5f565b905081810360808301526130038184612ccc565b90509695505050505050565b600060a0820190506130246000830188612c50565b6130316020830187612c50565b61303e6040830186612f7d565b61304b6060830185612f7d565b818103608083015261305d8184612ccc565b90509695505050505050565b600060408201905061307e6000830185612c50565b61308b6020830184612f7d565b9392505050565b600060208201905081810360008301526130ac8184612c5f565b905092915050565b600060408201905081810360008301526130ce8185612c5f565b905081810360208301526130e28184612c5f565b90509392505050565b60006020820190506131006000830184612cbd565b92915050565b600060208201905081810360008301526131208184612d05565b905092915050565b6000602082019050818103600083015261314181612d3e565b9050919050565b6000602082019050818103600083015261316181612d61565b9050919050565b6000602082019050818103600083015261318181612d84565b9050919050565b600060208201905081810360008301526131a181612da7565b9050919050565b600060208201905081810360008301526131c181612dca565b9050919050565b600060208201905081810360008301526131e181612ded565b9050919050565b6000602082019050818103600083015261320181612e10565b9050919050565b6000602082019050818103600083015261322181612e33565b9050919050565b6000602082019050818103600083015261324181612e56565b9050919050565b6000602082019050818103600083015261326181612e79565b9050919050565b6000602082019050818103600083015261328181612e9c565b9050919050565b600060208201905081810360008301526132a181612ebf565b9050919050565b600060208201905081810360008301526132c181612ee2565b9050919050565b600060208201905081810360008301526132e181612f05565b9050919050565b6000602082019050818103600083015261330181612f28565b9050919050565b6000602082019050818103600083015261332181612f4b565b9050919050565b600060208201905061333d6000830184612f7d565b92915050565b60006040820190506133586000830185612f7d565b6133656020830184612f7d565b9392505050565b6000613376613387565b905061338282826136b9565b919050565b6000604051905090565b600067ffffffffffffffff8211156133ac576133ab6137ef565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133d8576133d76137ef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613404576134036137ef565b5b61340d82613859565b9050602081019050919050565b600067ffffffffffffffff821115613435576134346137ef565b5b61343e82613859565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006134c78261363b565b91506134d28361363b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350757613506613733565b5b828201905092915050565b600061351d8261363b565b91506135288361363b565b92508261353857613537613762565b5b828204905092915050565b600061354e8261363b565b91506135598361363b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359257613591613733565b5b828202905092915050565b60006135a88261363b565b91506135b38361363b565b9250828210156135c6576135c5613733565b5b828203905092915050565b60006135dc8261361b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613672578082015181840152602081019050613657565b83811115613681576000848401525b50505050565b6000600282049050600182168061369f57607f821691505b602082108114156136b3576136b2613791565b5b50919050565b6136c282613859565b810181811067ffffffffffffffff821117156136e1576136e06137ef565b5b80604052505050565b60006136f58261363b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561372857613727613733565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561383d5760046000803e61383a60005161386a565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613cdf57613d62565b613ce7613387565b60043d036004823e80513d602482011167ffffffffffffffff82111715613d0f575050613d62565b808201805167ffffffffffffffff811115613d2d5750505050613d62565b80602083010160043d038501811115613d4a575050505050613d62565b613d59826020018501866136b9565b82955050505050505b90565b613d6e816135d1565b8114613d7957600080fd5b50565b613d85816135e3565b8114613d9057600080fd5b50565b613d9c816135ef565b8114613da757600080fd5b50565b613db38161363b565b8114613dbe57600080fd5b5056fea26469706673582212202a3a4053a0d06a3d4b782991b5d1e04e84135e0e859c2f2a841bafa178c9fb9664736f6c63430008070033

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.