POL Price: $0.385646 (+1.40%)
Gas: 33 GWei
 

Overview

Max Total Supply

108,587 OHMIE

Holders

108,453

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 OHMIE
0x8737ae65c6f2c14f67ef4e7371fe5be594b776b8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
OhmieDay

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : OhmieDay.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";


contract OhmieDay is ERC721, ERC721URIStorage, ERC721Burnable, AccessControl, Ownable {
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    Counters.Counter private _tokenIdCounter;
    string private _baseTokenURI;

    constructor(string memory bURI) ERC721("OhmieDay", "OHMIE") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
        _baseTokenURI = bURI;
    }

    function safeMint(
        address to,
        uint256 tokenId
    ) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Requires minter role");
        require(
            tokenId <= _tokenIdCounter.current(),
            "OhmieDay: cannot mint a single token that hasn't been minted already"
        );
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, Strings.toString(tokenId));
    }

    function safeMint(address to) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Requires minter role");
        _tokenIdCounter.increment();
        _safeMint(to, _tokenIdCounter.current()); 
        _setTokenURI(_tokenIdCounter.current(), Strings.toString(_tokenIdCounter.current()));
    }

    function batchMint(address [] memory _list) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Requires minter role");
        require(_list.length <= 250, "Max 250 addresses at once");
        for (uint8 i = 0; i < _list.length; i++) {
            safeMint(_list[i]);
        }
    }

    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

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

    function totalSupply() public view virtual returns (uint256) {
        return _tokenIdCounter.current();
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function baseURI() public view returns (string memory) {
        return _baseURI();
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        _setupRole(DEFAULT_ADMIN_ROLE, newOwner);
        _setupRole(MINTER_ROLE, newOwner);
        revokeRole(MINTER_ROLE, msg.sender);
        revokeRole(DEFAULT_ADMIN_ROLE, msg.sender);
        super.transferOwnership(newOwner);
    }
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 5 of 15 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _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 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]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        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 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 granted `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}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 6 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 8 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

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 9 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 10 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 12 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"bURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620049f1380380620049f18339818101604052810190620000379190620004c1565b6040518060400160405280600881526020017f4f686d69654461790000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f484d49450000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200039f565b508060019080519060200190620000d49291906200039f565b505050620000f7620000eb6200015e60201b60201c565b6200016660201b60201c565b6200010c6000801b336200022c60201b60201c565b6200013e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200022c60201b60201c565b80600a9080519060200190620001569291906200039f565b505062000637565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023e82826200024260201b60201c565b5050565b6200025482826200033460201b60201c565b620003305760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002d56200015e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620003ad90620005a3565b90600052602060002090601f016020900481019282620003d157600085556200041d565b82601f10620003ec57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041c578251825591602001919060010190620003ff565b5b5090506200042c919062000430565b5090565b5b808211156200044b57600081600090555060010162000431565b5090565b60006200046662000460846200053a565b62000506565b9050828152602081018484840111156200047f57600080fd5b6200048c8482856200056d565b509392505050565b600082601f830112620004a657600080fd5b8151620004b88482602086016200044f565b91505092915050565b600060208284031215620004d457600080fd5b600082015167ffffffffffffffff811115620004ef57600080fd5b620004fd8482850162000494565b91505092915050565b6000604051905081810181811067ffffffffffffffff8211171562000530576200052f62000608565b5b8060405250919050565b600067ffffffffffffffff82111562000558576200055762000608565b5b601f19601f8301169050602081019050919050565b60005b838110156200058d57808201518184015260208101905062000570565b838111156200059d576000848401525b50505050565b60006002820490506001821680620005bc57607f821691505b60208210811415620005d357620005d2620005d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143aa80620006476000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063d547741f11610071578063d547741f14610518578063d67b06c114610534578063e985e9c514610550578063f2fde38b14610580576101cf565b8063a22cb46514610492578063b88d4fde146104ae578063c87b56dd146104ca578063d5391393146104fa576101cf565b806391d14854116100de57806391d148541461040a57806395d89b411461043a578063a144819414610458578063a217fddf14610474576101cf565b806370a08231146103b2578063715018a6146103e25780638da5cb5b146103ec576101cf565b80632f2ff15d1161017157806342842e0e1161014b57806342842e0e1461032c57806342966c68146103485780636352211e146103645780636c0360eb14610394576101cf565b80632f2ff15d146102d857806336568abe146102f457806340d097c314610310576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c578063248a9ca3146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612fc4565b61059c565b6040516101fb9190613b0f565b60405180910390f35b61020c6105ae565b6040516102199190613b45565b60405180910390f35b61023c60048036038101906102379190613016565b610640565b6040516102499190613aa8565b60405180910390f35b61026c60048036038101906102679190612ee2565b6106c5565b005b6102766107dd565b6040516102839190613e67565b60405180910390f35b6102a660048036038101906102a19190612ddc565b6107ee565b005b6102c260048036038101906102bd9190612f5f565b61084e565b6040516102cf9190613b2a565b60405180910390f35b6102f260048036038101906102ed9190612f88565b61086e565b005b61030e60048036038101906103099190612f88565b610897565b005b61032a60048036038101906103259190612d77565b61091a565b005b61034660048036038101906103419190612ddc565b6109c7565b005b610362600480360381019061035d9190613016565b6109e7565b005b61037e60048036038101906103799190613016565b610a43565b60405161038b9190613aa8565b60405180910390f35b61039c610af5565b6040516103a99190613b45565b60405180910390f35b6103cc60048036038101906103c79190612d77565b610b04565b6040516103d99190613e67565b60405180910390f35b6103ea610bbc565b005b6103f4610c44565b6040516104019190613aa8565b60405180910390f35b610424600480360381019061041f9190612f88565b610c6e565b6040516104319190613b0f565b60405180910390f35b610442610cd9565b60405161044f9190613b45565b60405180910390f35b610472600480360381019061046d9190612ee2565b610d6b565b005b61047c610e40565b6040516104899190613b2a565b60405180910390f35b6104ac60048036038101906104a79190612ea6565b610e47565b005b6104c860048036038101906104c39190612e2b565b610fc8565b005b6104e460048036038101906104df9190613016565b61102a565b6040516104f19190613b45565b60405180910390f35b61050261103c565b60405161050f9190613b2a565b60405180910390f35b610532600480360381019061052d9190612f88565b611060565b005b61054e60048036038101906105499190612f1e565b611089565b005b61056a60048036038101906105659190612da0565b6111a9565b6040516105779190613b0f565b60405180910390f35b61059a60048036038101906105959190612d77565b61123d565b005b60006105a782611333565b9050919050565b6060600080546105bd9061415e565b80601f01602080910402602001604051908101604052809291908181526020018280546105e99061415e565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b600061064b826113ad565b61068a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068190613d67565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d082610a43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890613de7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610760611419565b73ffffffffffffffffffffffffffffffffffffffff16148061078f575061078e81610789611419565b6111a9565b5b6107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590613ca7565b60405180910390fd5b6107d88383611421565b505050565b60006107e960096114da565b905090565b6107ff6107f9611419565b826114e8565b61083e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083590613e07565b60405180910390fd5b6108498383836115c6565b505050565b600060076000838152602001908152602001600020600101549050919050565b6108778261084e565b61088881610883611419565b611822565b61089283836118bf565b505050565b61089f611419565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390613e47565b60405180910390fd5b61091682826119a0565b5050565b6109447f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c6e565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613be7565b60405180910390fd5b61098d6009611a82565b6109a08161099b60096114da565b611a98565b6109c46109ad60096114da565b6109bf6109ba60096114da565b611ab6565b611c63565b50565b6109e283838360405180602001604052806000815250610fc8565b505050565b6109f86109f2611419565b826114e8565b610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90613e27565b60405180910390fd5b610a4081611cd7565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613ce7565b60405180910390fd5b80915050919050565b6060610aff611ce3565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90613cc7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc4611419565b73ffffffffffffffffffffffffffffffffffffffff16610be2610c44565b73ffffffffffffffffffffffffffffffffffffffff1614610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90613d87565b60405180910390fd5b610c426000611d75565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610ce89061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d149061415e565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b5050505050905090565b610d957f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c6e565b610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613be7565b60405180910390fd5b610dde60096114da565b811115610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613c27565b60405180910390fd5b610e2a8282611a98565b610e3c81610e3783611ab6565b611c63565b5050565b6000801b81565b610e4f611419565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613c67565b60405180910390fd5b8060056000610eca611419565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f77611419565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fbc9190613b0f565b60405180910390a35050565b610fd9610fd3611419565b836114e8565b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90613e07565b60405180910390fd5b61102484848484611e3b565b50505050565b606061103582611e97565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110698261084e565b61107a81611075611419565b611822565b61108483836119a0565b505050565b6110b37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c6e565b6110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613be7565b60405180910390fd5b60fa81511115611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613c07565b60405180910390fd5b60005b81518160ff1610156111a557611192828260ff1681518110611185577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161091a565b808061119d906141d9565b91505061113a565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611245611419565b73ffffffffffffffffffffffffffffffffffffffff16611263610c44565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613d87565b60405180910390fd5b6112c66000801b82611fe9565b6112f07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682611fe9565b61131a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611060565b6113276000801b33611060565b61133081611ff7565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113a657506113a5826120ef565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149483610a43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006114f3826113ad565b611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990613c87565b60405180910390fd5b600061153d83610a43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115ac57508373ffffffffffffffffffffffffffffffffffffffff1661159484610640565b73ffffffffffffffffffffffffffffffffffffffff16145b806115bd57506115bc81856111a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115e682610a43565b73ffffffffffffffffffffffffffffffffffffffff161461163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390613da7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390613c47565b60405180910390fd5b6116b78383836121d1565b6116c2600082611421565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117129190614033565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117699190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61182c8282610c6e565b6118bb576118518173ffffffffffffffffffffffffffffffffffffffff1660146121d6565b61185f8360001c60206121d6565b604051602001611870929190613a6e565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b29190613b45565b60405180910390fd5b5050565b6118c98282610c6e565b61199c5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611941611419565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119aa8282610c6e565b15611a7e5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a23611419565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b611ab28282604051806020016040528060008152506124d0565b5050565b60606000821415611afe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c5e565b600082905060005b60008214611b30578080611b1990614190565b915050600a82611b299190613fa8565b9150611b06565b60008167ffffffffffffffff811115611b72577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ba45781602001600182028036833780820191505090505b5090505b60008514611c5757600182611bbd9190614033565b9150600a85611bcc9190614203565b6030611bd89190613f52565b60f81b818381518110611c14577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c509190613fa8565b9450611ba8565b8093505050505b919050565b611c6c826113ad565b611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca290613d07565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cd2929190612b18565b505050565b611ce08161252b565b50565b6060600a8054611cf29061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e9061415e565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e468484846115c6565b611e528484848461257e565b611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890613b87565b60405180910390fd5b50505050565b6060611ea2826113ad565b611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed890613d47565b60405180910390fd5b6000600660008481526020019081526020016000208054611f019061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d9061415e565b8015611f7a5780601f10611f4f57610100808354040283529160200191611f7a565b820191906000526020600020905b815481529060010190602001808311611f5d57829003601f168201915b505050505090506000611f8b611ce3565b9050600081511415611fa1578192505050611fe4565b600082511115611fd6578082604051602001611fbe929190613a4a565b60405160208183030381529060405292505050611fe4565b611fdf84612715565b925050505b919050565b611ff382826118bf565b5050565b611fff611419565b73ffffffffffffffffffffffffffffffffffffffff1661201d610c44565b73ffffffffffffffffffffffffffffffffffffffff1614612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613d87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613ba7565b60405180910390fd5b6120ec81611d75565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121ca57506121c9826127bc565b5b9050919050565b505050565b6060600060028360026121e99190613fd9565b6121f39190613f52565b67ffffffffffffffff811115612232577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122645781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106122c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061234c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261238c9190613fd9565b6123969190613f52565b90505b6001811115612482577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061243b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061247b90614134565b9050612399565b50600084146124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613b67565b60405180910390fd5b8091505092915050565b6124da8383612826565b6124e7600084848461257e565b612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90613b87565b60405180910390fd5b505050565b612534816129f4565b60006006600083815260200190815260200160002080546125549061415e565b90501461257b5760066000828152602001908152602001600020600061257a9190612b9e565b5b50565b600061259f8473ffffffffffffffffffffffffffffffffffffffff16612b05565b15612708578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c8611419565b8786866040518563ffffffff1660e01b81526004016125ea9493929190613ac3565b602060405180830381600087803b15801561260457600080fd5b505af192505050801561263557506040513d601f19601f820116820180604052508101906126329190612fed565b60015b6126b8573d8060008114612665576040519150601f19603f3d011682016040523d82523d6000602084013e61266a565b606091505b506000815114156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790613b87565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061270d565b600190505b949350505050565b6060612720826113ad565b61275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690613dc7565b60405180910390fd5b6000612769611ce3565b9050600081511161278957604051806020016040528060008152506127b4565b8061279384611ab6565b6040516020016127a4929190613a4a565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90613d27565b60405180910390fd5b61289f816113ad565b156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690613bc7565b60405180910390fd5b6128eb600083836121d1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293b9190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006129ff82610a43565b9050612a0d816000846121d1565b612a18600083611421565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a689190614033565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b249061415e565b90600052602060002090601f016020900481019282612b465760008555612b8d565b82601f10612b5f57805160ff1916838001178555612b8d565b82800160010185558215612b8d579182015b82811115612b8c578251825591602001919060010190612b71565b5b509050612b9a9190612bde565b5090565b508054612baa9061415e565b6000825580601f10612bbc5750612bdb565b601f016020900490600052602060002090810190612bda9190612bde565b5b50565b5b80821115612bf7576000816000905550600101612bdf565b5090565b6000612c0e612c0984613eb3565b613e82565b90508083825260208201905082856020860282011115612c2d57600080fd5b60005b85811015612c5d5781612c438882612ca5565b845260208401935060208301925050600181019050612c30565b5050509392505050565b6000612c7a612c7584613edf565b613e82565b905082815260208101848484011115612c9257600080fd5b612c9d8482856140f2565b509392505050565b600081359050612cb481614301565b92915050565b600082601f830112612ccb57600080fd5b8135612cdb848260208601612bfb565b91505092915050565b600081359050612cf381614318565b92915050565b600081359050612d088161432f565b92915050565b600081359050612d1d81614346565b92915050565b600081519050612d3281614346565b92915050565b600082601f830112612d4957600080fd5b8135612d59848260208601612c67565b91505092915050565b600081359050612d718161435d565b92915050565b600060208284031215612d8957600080fd5b6000612d9784828501612ca5565b91505092915050565b60008060408385031215612db357600080fd5b6000612dc185828601612ca5565b9250506020612dd285828601612ca5565b9150509250929050565b600080600060608486031215612df157600080fd5b6000612dff86828701612ca5565b9350506020612e1086828701612ca5565b9250506040612e2186828701612d62565b9150509250925092565b60008060008060808587031215612e4157600080fd5b6000612e4f87828801612ca5565b9450506020612e6087828801612ca5565b9350506040612e7187828801612d62565b925050606085013567ffffffffffffffff811115612e8e57600080fd5b612e9a87828801612d38565b91505092959194509250565b60008060408385031215612eb957600080fd5b6000612ec785828601612ca5565b9250506020612ed885828601612ce4565b9150509250929050565b60008060408385031215612ef557600080fd5b6000612f0385828601612ca5565b9250506020612f1485828601612d62565b9150509250929050565b600060208284031215612f3057600080fd5b600082013567ffffffffffffffff811115612f4a57600080fd5b612f5684828501612cba565b91505092915050565b600060208284031215612f7157600080fd5b6000612f7f84828501612cf9565b91505092915050565b60008060408385031215612f9b57600080fd5b6000612fa985828601612cf9565b9250506020612fba85828601612ca5565b9150509250929050565b600060208284031215612fd657600080fd5b6000612fe484828501612d0e565b91505092915050565b600060208284031215612fff57600080fd5b600061300d84828501612d23565b91505092915050565b60006020828403121561302857600080fd5b600061303684828501612d62565b91505092915050565b61304881614067565b82525050565b61305781614079565b82525050565b61306681614085565b82525050565b600061307782613f0f565b6130818185613f25565b9350613091818560208601614101565b61309a816142f0565b840191505092915050565b60006130b082613f1a565b6130ba8185613f36565b93506130ca818560208601614101565b6130d3816142f0565b840191505092915050565b60006130e982613f1a565b6130f38185613f47565b9350613103818560208601614101565b80840191505092915050565b600061311c602083613f36565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061315c603283613f36565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131c2602683613f36565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613228601c83613f36565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613268601483613f36565b91507f5265717569726573206d696e74657220726f6c650000000000000000000000006000830152602082019050919050565b60006132a8601983613f36565b91507f4d61782032353020616464726573736573206174206f6e6365000000000000006000830152602082019050919050565b60006132e8604483613f36565b91507f4f686d69654461793a2063616e6e6f74206d696e7420612073696e676c65207460008301527f6f6b656e2074686174206861736e2774206265656e206d696e74656420616c7260208301527f65616479000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613374602483613f36565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133da601983613f36565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061341a602c83613f36565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613480603883613f36565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134e6602a83613f36565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061354c602983613f36565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b2602e83613f36565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613618602083613f36565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613658603183613f36565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006136be602c83613f36565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613724602083613f36565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613764602983613f36565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ca602f83613f36565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613830602183613f36565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613896603183613f36565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138fc601783613f47565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b600061393c603083613f36565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b60006139a2601183613f47565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006139e2602f83613f36565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b613a44816140db565b82525050565b6000613a5682856130de565b9150613a6282846130de565b91508190509392505050565b6000613a79826138ef565b9150613a8582856130de565b9150613a9082613995565b9150613a9c82846130de565b91508190509392505050565b6000602082019050613abd600083018461303f565b92915050565b6000608082019050613ad8600083018761303f565b613ae5602083018661303f565b613af26040830185613a3b565b8181036060830152613b04818461306c565b905095945050505050565b6000602082019050613b24600083018461304e565b92915050565b6000602082019050613b3f600083018461305d565b92915050565b60006020820190508181036000830152613b5f81846130a5565b905092915050565b60006020820190508181036000830152613b808161310f565b9050919050565b60006020820190508181036000830152613ba08161314f565b9050919050565b60006020820190508181036000830152613bc0816131b5565b9050919050565b60006020820190508181036000830152613be08161321b565b9050919050565b60006020820190508181036000830152613c008161325b565b9050919050565b60006020820190508181036000830152613c208161329b565b9050919050565b60006020820190508181036000830152613c40816132db565b9050919050565b60006020820190508181036000830152613c6081613367565b9050919050565b60006020820190508181036000830152613c80816133cd565b9050919050565b60006020820190508181036000830152613ca08161340d565b9050919050565b60006020820190508181036000830152613cc081613473565b9050919050565b60006020820190508181036000830152613ce0816134d9565b9050919050565b60006020820190508181036000830152613d008161353f565b9050919050565b60006020820190508181036000830152613d20816135a5565b9050919050565b60006020820190508181036000830152613d408161360b565b9050919050565b60006020820190508181036000830152613d608161364b565b9050919050565b60006020820190508181036000830152613d80816136b1565b9050919050565b60006020820190508181036000830152613da081613717565b9050919050565b60006020820190508181036000830152613dc081613757565b9050919050565b60006020820190508181036000830152613de0816137bd565b9050919050565b60006020820190508181036000830152613e0081613823565b9050919050565b60006020820190508181036000830152613e2081613889565b9050919050565b60006020820190508181036000830152613e408161392f565b9050919050565b60006020820190508181036000830152613e60816139d5565b9050919050565b6000602082019050613e7c6000830184613a3b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613ea957613ea86142c1565b5b8060405250919050565b600067ffffffffffffffff821115613ece57613ecd6142c1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613efa57613ef96142c1565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5d826140db565b9150613f68836140db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9d57613f9c614234565b5b828201905092915050565b6000613fb3826140db565b9150613fbe836140db565b925082613fce57613fcd614263565b5b828204905092915050565b6000613fe4826140db565b9150613fef836140db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402857614027614234565b5b828202905092915050565b600061403e826140db565b9150614049836140db565b92508282101561405c5761405b614234565b5b828203905092915050565b6000614072826140bb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561411f578082015181840152602081019050614104565b8381111561412e576000848401525b50505050565b600061413f826140db565b9150600082141561415357614152614234565b5b600182039050919050565b6000600282049050600182168061417657607f821691505b6020821081141561418a57614189614292565b5b50919050565b600061419b826140db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ce576141cd614234565b5b600182019050919050565b60006141e4826140e5565b915060ff8214156141f8576141f7614234565b5b600182019050919050565b600061420e826140db565b9150614219836140db565b92508261422957614228614263565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61430a81614067565b811461431557600080fd5b50565b61432181614079565b811461432c57600080fd5b50565b61433881614085565b811461434357600080fd5b50565b61434f8161408f565b811461435a57600080fd5b50565b614366816140db565b811461437157600080fd5b5056fea264697066735822122090672e56649231c4704b51818807d4277f18ded7eb15a09465b685a3bb3e2e4064736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6f6479737365792d6f686d69652d6461792e6f6c796d70757364616f2e66696e616e63652f323032322f0000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063d547741f11610071578063d547741f14610518578063d67b06c114610534578063e985e9c514610550578063f2fde38b14610580576101cf565b8063a22cb46514610492578063b88d4fde146104ae578063c87b56dd146104ca578063d5391393146104fa576101cf565b806391d14854116100de57806391d148541461040a57806395d89b411461043a578063a144819414610458578063a217fddf14610474576101cf565b806370a08231146103b2578063715018a6146103e25780638da5cb5b146103ec576101cf565b80632f2ff15d1161017157806342842e0e1161014b57806342842e0e1461032c57806342966c68146103485780636352211e146103645780636c0360eb14610394576101cf565b80632f2ff15d146102d857806336568abe146102f457806340d097c314610310576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c578063248a9ca3146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612fc4565b61059c565b6040516101fb9190613b0f565b60405180910390f35b61020c6105ae565b6040516102199190613b45565b60405180910390f35b61023c60048036038101906102379190613016565b610640565b6040516102499190613aa8565b60405180910390f35b61026c60048036038101906102679190612ee2565b6106c5565b005b6102766107dd565b6040516102839190613e67565b60405180910390f35b6102a660048036038101906102a19190612ddc565b6107ee565b005b6102c260048036038101906102bd9190612f5f565b61084e565b6040516102cf9190613b2a565b60405180910390f35b6102f260048036038101906102ed9190612f88565b61086e565b005b61030e60048036038101906103099190612f88565b610897565b005b61032a60048036038101906103259190612d77565b61091a565b005b61034660048036038101906103419190612ddc565b6109c7565b005b610362600480360381019061035d9190613016565b6109e7565b005b61037e60048036038101906103799190613016565b610a43565b60405161038b9190613aa8565b60405180910390f35b61039c610af5565b6040516103a99190613b45565b60405180910390f35b6103cc60048036038101906103c79190612d77565b610b04565b6040516103d99190613e67565b60405180910390f35b6103ea610bbc565b005b6103f4610c44565b6040516104019190613aa8565b60405180910390f35b610424600480360381019061041f9190612f88565b610c6e565b6040516104319190613b0f565b60405180910390f35b610442610cd9565b60405161044f9190613b45565b60405180910390f35b610472600480360381019061046d9190612ee2565b610d6b565b005b61047c610e40565b6040516104899190613b2a565b60405180910390f35b6104ac60048036038101906104a79190612ea6565b610e47565b005b6104c860048036038101906104c39190612e2b565b610fc8565b005b6104e460048036038101906104df9190613016565b61102a565b6040516104f19190613b45565b60405180910390f35b61050261103c565b60405161050f9190613b2a565b60405180910390f35b610532600480360381019061052d9190612f88565b611060565b005b61054e60048036038101906105499190612f1e565b611089565b005b61056a60048036038101906105659190612da0565b6111a9565b6040516105779190613b0f565b60405180910390f35b61059a60048036038101906105959190612d77565b61123d565b005b60006105a782611333565b9050919050565b6060600080546105bd9061415e565b80601f01602080910402602001604051908101604052809291908181526020018280546105e99061415e565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b600061064b826113ad565b61068a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068190613d67565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d082610a43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890613de7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610760611419565b73ffffffffffffffffffffffffffffffffffffffff16148061078f575061078e81610789611419565b6111a9565b5b6107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590613ca7565b60405180910390fd5b6107d88383611421565b505050565b60006107e960096114da565b905090565b6107ff6107f9611419565b826114e8565b61083e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083590613e07565b60405180910390fd5b6108498383836115c6565b505050565b600060076000838152602001908152602001600020600101549050919050565b6108778261084e565b61088881610883611419565b611822565b61089283836118bf565b505050565b61089f611419565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390613e47565b60405180910390fd5b61091682826119a0565b5050565b6109447f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c6e565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613be7565b60405180910390fd5b61098d6009611a82565b6109a08161099b60096114da565b611a98565b6109c46109ad60096114da565b6109bf6109ba60096114da565b611ab6565b611c63565b50565b6109e283838360405180602001604052806000815250610fc8565b505050565b6109f86109f2611419565b826114e8565b610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90613e27565b60405180910390fd5b610a4081611cd7565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613ce7565b60405180910390fd5b80915050919050565b6060610aff611ce3565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90613cc7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc4611419565b73ffffffffffffffffffffffffffffffffffffffff16610be2610c44565b73ffffffffffffffffffffffffffffffffffffffff1614610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90613d87565b60405180910390fd5b610c426000611d75565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610ce89061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d149061415e565b8015610d615780601f10610d3657610100808354040283529160200191610d61565b820191906000526020600020905b815481529060010190602001808311610d4457829003601f168201915b5050505050905090565b610d957f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c6e565b610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613be7565b60405180910390fd5b610dde60096114da565b811115610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613c27565b60405180910390fd5b610e2a8282611a98565b610e3c81610e3783611ab6565b611c63565b5050565b6000801b81565b610e4f611419565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613c67565b60405180910390fd5b8060056000610eca611419565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f77611419565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fbc9190613b0f565b60405180910390a35050565b610fd9610fd3611419565b836114e8565b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90613e07565b60405180910390fd5b61102484848484611e3b565b50505050565b606061103582611e97565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110698261084e565b61107a81611075611419565b611822565b61108483836119a0565b505050565b6110b37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610c6e565b6110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613be7565b60405180910390fd5b60fa81511115611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613c07565b60405180910390fd5b60005b81518160ff1610156111a557611192828260ff1681518110611185577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161091a565b808061119d906141d9565b91505061113a565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611245611419565b73ffffffffffffffffffffffffffffffffffffffff16611263610c44565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613d87565b60405180910390fd5b6112c66000801b82611fe9565b6112f07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682611fe9565b61131a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611060565b6113276000801b33611060565b61133081611ff7565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113a657506113a5826120ef565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149483610a43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006114f3826113ad565b611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990613c87565b60405180910390fd5b600061153d83610a43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115ac57508373ffffffffffffffffffffffffffffffffffffffff1661159484610640565b73ffffffffffffffffffffffffffffffffffffffff16145b806115bd57506115bc81856111a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115e682610a43565b73ffffffffffffffffffffffffffffffffffffffff161461163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390613da7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390613c47565b60405180910390fd5b6116b78383836121d1565b6116c2600082611421565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117129190614033565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117699190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61182c8282610c6e565b6118bb576118518173ffffffffffffffffffffffffffffffffffffffff1660146121d6565b61185f8360001c60206121d6565b604051602001611870929190613a6e565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b29190613b45565b60405180910390fd5b5050565b6118c98282610c6e565b61199c5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611941611419565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119aa8282610c6e565b15611a7e5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a23611419565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b611ab28282604051806020016040528060008152506124d0565b5050565b60606000821415611afe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c5e565b600082905060005b60008214611b30578080611b1990614190565b915050600a82611b299190613fa8565b9150611b06565b60008167ffffffffffffffff811115611b72577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ba45781602001600182028036833780820191505090505b5090505b60008514611c5757600182611bbd9190614033565b9150600a85611bcc9190614203565b6030611bd89190613f52565b60f81b818381518110611c14577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c509190613fa8565b9450611ba8565b8093505050505b919050565b611c6c826113ad565b611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca290613d07565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cd2929190612b18565b505050565b611ce08161252b565b50565b6060600a8054611cf29061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e9061415e565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e468484846115c6565b611e528484848461257e565b611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890613b87565b60405180910390fd5b50505050565b6060611ea2826113ad565b611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed890613d47565b60405180910390fd5b6000600660008481526020019081526020016000208054611f019061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d9061415e565b8015611f7a5780601f10611f4f57610100808354040283529160200191611f7a565b820191906000526020600020905b815481529060010190602001808311611f5d57829003601f168201915b505050505090506000611f8b611ce3565b9050600081511415611fa1578192505050611fe4565b600082511115611fd6578082604051602001611fbe929190613a4a565b60405160208183030381529060405292505050611fe4565b611fdf84612715565b925050505b919050565b611ff382826118bf565b5050565b611fff611419565b73ffffffffffffffffffffffffffffffffffffffff1661201d610c44565b73ffffffffffffffffffffffffffffffffffffffff1614612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613d87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613ba7565b60405180910390fd5b6120ec81611d75565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121ca57506121c9826127bc565b5b9050919050565b505050565b6060600060028360026121e99190613fd9565b6121f39190613f52565b67ffffffffffffffff811115612232577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122645781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106122c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061234c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261238c9190613fd9565b6123969190613f52565b90505b6001811115612482577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061243b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061247b90614134565b9050612399565b50600084146124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613b67565b60405180910390fd5b8091505092915050565b6124da8383612826565b6124e7600084848461257e565b612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90613b87565b60405180910390fd5b505050565b612534816129f4565b60006006600083815260200190815260200160002080546125549061415e565b90501461257b5760066000828152602001908152602001600020600061257a9190612b9e565b5b50565b600061259f8473ffffffffffffffffffffffffffffffffffffffff16612b05565b15612708578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c8611419565b8786866040518563ffffffff1660e01b81526004016125ea9493929190613ac3565b602060405180830381600087803b15801561260457600080fd5b505af192505050801561263557506040513d601f19601f820116820180604052508101906126329190612fed565b60015b6126b8573d8060008114612665576040519150601f19603f3d011682016040523d82523d6000602084013e61266a565b606091505b506000815114156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790613b87565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061270d565b600190505b949350505050565b6060612720826113ad565b61275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690613dc7565b60405180910390fd5b6000612769611ce3565b9050600081511161278957604051806020016040528060008152506127b4565b8061279384611ab6565b6040516020016127a4929190613a4a565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90613d27565b60405180910390fd5b61289f816113ad565b156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690613bc7565b60405180910390fd5b6128eb600083836121d1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293b9190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006129ff82610a43565b9050612a0d816000846121d1565b612a18600083611421565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a689190614033565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b249061415e565b90600052602060002090601f016020900481019282612b465760008555612b8d565b82601f10612b5f57805160ff1916838001178555612b8d565b82800160010185558215612b8d579182015b82811115612b8c578251825591602001919060010190612b71565b5b509050612b9a9190612bde565b5090565b508054612baa9061415e565b6000825580601f10612bbc5750612bdb565b601f016020900490600052602060002090810190612bda9190612bde565b5b50565b5b80821115612bf7576000816000905550600101612bdf565b5090565b6000612c0e612c0984613eb3565b613e82565b90508083825260208201905082856020860282011115612c2d57600080fd5b60005b85811015612c5d5781612c438882612ca5565b845260208401935060208301925050600181019050612c30565b5050509392505050565b6000612c7a612c7584613edf565b613e82565b905082815260208101848484011115612c9257600080fd5b612c9d8482856140f2565b509392505050565b600081359050612cb481614301565b92915050565b600082601f830112612ccb57600080fd5b8135612cdb848260208601612bfb565b91505092915050565b600081359050612cf381614318565b92915050565b600081359050612d088161432f565b92915050565b600081359050612d1d81614346565b92915050565b600081519050612d3281614346565b92915050565b600082601f830112612d4957600080fd5b8135612d59848260208601612c67565b91505092915050565b600081359050612d718161435d565b92915050565b600060208284031215612d8957600080fd5b6000612d9784828501612ca5565b91505092915050565b60008060408385031215612db357600080fd5b6000612dc185828601612ca5565b9250506020612dd285828601612ca5565b9150509250929050565b600080600060608486031215612df157600080fd5b6000612dff86828701612ca5565b9350506020612e1086828701612ca5565b9250506040612e2186828701612d62565b9150509250925092565b60008060008060808587031215612e4157600080fd5b6000612e4f87828801612ca5565b9450506020612e6087828801612ca5565b9350506040612e7187828801612d62565b925050606085013567ffffffffffffffff811115612e8e57600080fd5b612e9a87828801612d38565b91505092959194509250565b60008060408385031215612eb957600080fd5b6000612ec785828601612ca5565b9250506020612ed885828601612ce4565b9150509250929050565b60008060408385031215612ef557600080fd5b6000612f0385828601612ca5565b9250506020612f1485828601612d62565b9150509250929050565b600060208284031215612f3057600080fd5b600082013567ffffffffffffffff811115612f4a57600080fd5b612f5684828501612cba565b91505092915050565b600060208284031215612f7157600080fd5b6000612f7f84828501612cf9565b91505092915050565b60008060408385031215612f9b57600080fd5b6000612fa985828601612cf9565b9250506020612fba85828601612ca5565b9150509250929050565b600060208284031215612fd657600080fd5b6000612fe484828501612d0e565b91505092915050565b600060208284031215612fff57600080fd5b600061300d84828501612d23565b91505092915050565b60006020828403121561302857600080fd5b600061303684828501612d62565b91505092915050565b61304881614067565b82525050565b61305781614079565b82525050565b61306681614085565b82525050565b600061307782613f0f565b6130818185613f25565b9350613091818560208601614101565b61309a816142f0565b840191505092915050565b60006130b082613f1a565b6130ba8185613f36565b93506130ca818560208601614101565b6130d3816142f0565b840191505092915050565b60006130e982613f1a565b6130f38185613f47565b9350613103818560208601614101565b80840191505092915050565b600061311c602083613f36565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061315c603283613f36565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131c2602683613f36565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613228601c83613f36565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613268601483613f36565b91507f5265717569726573206d696e74657220726f6c650000000000000000000000006000830152602082019050919050565b60006132a8601983613f36565b91507f4d61782032353020616464726573736573206174206f6e6365000000000000006000830152602082019050919050565b60006132e8604483613f36565b91507f4f686d69654461793a2063616e6e6f74206d696e7420612073696e676c65207460008301527f6f6b656e2074686174206861736e2774206265656e206d696e74656420616c7260208301527f65616479000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613374602483613f36565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133da601983613f36565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061341a602c83613f36565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613480603883613f36565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134e6602a83613f36565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061354c602983613f36565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b2602e83613f36565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613618602083613f36565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613658603183613f36565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006136be602c83613f36565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613724602083613f36565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613764602983613f36565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ca602f83613f36565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613830602183613f36565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613896603183613f36565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138fc601783613f47565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b600061393c603083613f36565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b60006139a2601183613f47565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006139e2602f83613f36565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b613a44816140db565b82525050565b6000613a5682856130de565b9150613a6282846130de565b91508190509392505050565b6000613a79826138ef565b9150613a8582856130de565b9150613a9082613995565b9150613a9c82846130de565b91508190509392505050565b6000602082019050613abd600083018461303f565b92915050565b6000608082019050613ad8600083018761303f565b613ae5602083018661303f565b613af26040830185613a3b565b8181036060830152613b04818461306c565b905095945050505050565b6000602082019050613b24600083018461304e565b92915050565b6000602082019050613b3f600083018461305d565b92915050565b60006020820190508181036000830152613b5f81846130a5565b905092915050565b60006020820190508181036000830152613b808161310f565b9050919050565b60006020820190508181036000830152613ba08161314f565b9050919050565b60006020820190508181036000830152613bc0816131b5565b9050919050565b60006020820190508181036000830152613be08161321b565b9050919050565b60006020820190508181036000830152613c008161325b565b9050919050565b60006020820190508181036000830152613c208161329b565b9050919050565b60006020820190508181036000830152613c40816132db565b9050919050565b60006020820190508181036000830152613c6081613367565b9050919050565b60006020820190508181036000830152613c80816133cd565b9050919050565b60006020820190508181036000830152613ca08161340d565b9050919050565b60006020820190508181036000830152613cc081613473565b9050919050565b60006020820190508181036000830152613ce0816134d9565b9050919050565b60006020820190508181036000830152613d008161353f565b9050919050565b60006020820190508181036000830152613d20816135a5565b9050919050565b60006020820190508181036000830152613d408161360b565b9050919050565b60006020820190508181036000830152613d608161364b565b9050919050565b60006020820190508181036000830152613d80816136b1565b9050919050565b60006020820190508181036000830152613da081613717565b9050919050565b60006020820190508181036000830152613dc081613757565b9050919050565b60006020820190508181036000830152613de0816137bd565b9050919050565b60006020820190508181036000830152613e0081613823565b9050919050565b60006020820190508181036000830152613e2081613889565b9050919050565b60006020820190508181036000830152613e408161392f565b9050919050565b60006020820190508181036000830152613e60816139d5565b9050919050565b6000602082019050613e7c6000830184613a3b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613ea957613ea86142c1565b5b8060405250919050565b600067ffffffffffffffff821115613ece57613ecd6142c1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613efa57613ef96142c1565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5d826140db565b9150613f68836140db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9d57613f9c614234565b5b828201905092915050565b6000613fb3826140db565b9150613fbe836140db565b925082613fce57613fcd614263565b5b828204905092915050565b6000613fe4826140db565b9150613fef836140db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402857614027614234565b5b828202905092915050565b600061403e826140db565b9150614049836140db565b92508282101561405c5761405b614234565b5b828203905092915050565b6000614072826140bb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561411f578082015181840152602081019050614104565b8381111561412e576000848401525b50505050565b600061413f826140db565b9150600082141561415357614152614234565b5b600182039050919050565b6000600282049050600182168061417657607f821691505b6020821081141561418a57614189614292565b5b50919050565b600061419b826140db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ce576141cd614234565b5b600182019050919050565b60006141e4826140e5565b915060ff8214156141f8576141f7614234565b5b600182019050919050565b600061420e826140db565b9150614219836140db565b92508261422957614228614263565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61430a81614067565b811461431557600080fd5b50565b61432181614079565b811461432c57600080fd5b50565b61433881614085565b811461434357600080fd5b50565b61434f8161408f565b811461435a57600080fd5b50565b614366816140db565b811461437157600080fd5b5056fea264697066735822122090672e56649231c4704b51818807d4277f18ded7eb15a09465b685a3bb3e2e4064736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f6f6479737365792d6f686d69652d6461792e6f6c796d70757364616f2e66696e616e63652f323032322f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : bURI (string): https://odyssey-ohmie-day.olympusdao.finance/2022/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 68747470733a2f2f6f6479737365792d6f686d69652d6461792e6f6c796d7075
Arg [3] : 7364616f2e66696e616e63652f323032322f0000000000000000000000000000


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.