ETH Price: $2,415.68 (+4.07%)

Token

MakeLove420 onChain PFP (MLPFP)
 

Overview

Max Total Supply

420 MLPFP

Holders

194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xe17a32c49f490a3a9c0e0060881bdc8c1b2681c0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This PFP was drawn 4 me by my daughter as a present to set as Telegram profile PFP in 2021. We converted it to code and put on-chain forever. Probably the first ever on-chain PFP on ERC-1155. The code is the law.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MakeLove

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : MakeLove.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC1155Base.sol";

contract MakeLove is ERC1155Base{
    bool private _isActive = false;

    uint256 public maxCountPerAccount = 1; 
    
    uint256 public price = 0.42 ether;

    uint8 constant MASTER = 0;
    uint8 constant VIP = 1;

    uint16 constant MAX_SUPPLY_MASTER = 420;
    uint16 constant MAX_SUPPLY_VIP = 42;

    mapping (uint256 => string) internal _tokenURIs;
    mapping (uint256 => string) internal _tokenMeta;

    struct Holder {
      address walletAddress;
      uint256 numMaster;
      uint256 numVip;
    }

    address constant I_am_g13m = 0xfBfF1eBff67093A239bC1343aE6a5e3372A14Ac0;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC1155(_uri) {
        name_ = _name;
        symbol_ = _symbol;
    }

    
    function ownerMint(address to, uint8 _amountMaster, uint8 _amountVip) external onlyOwner {
        uint256 totalAmount = _amountMaster + _amountVip;
        require(totalAmount != 0, "Invalid amount of tokens");
        require(
            totalSupply(VIP) + _amountVip <= MAX_SUPPLY_VIP &&
                totalSupply(MASTER) + _amountMaster <= MAX_SUPPLY_MASTER,
            "Max supply reached"
        );
        if (_amountMaster > 0) {
            _mintToken(to, MASTER, _amountMaster);
        }

        if (_amountVip > 0) {
            _mintToken(to, VIP, _amountVip);
        }
    }

    
    function publicMint(uint8 _amount) external payable {   
        require(_isActive,"Mint not live");
        _mintTokens(msg.sender, _amount);
        uint256 balance = address(this).balance;
        Address.sendValue(payable(I_am_g13m), balance);
    }

    function _mintTokens(address to, uint8 _amount) private {
        require(_amount != 0 && _amount <=maxCountPerAccount, "Invalid amount of tokens");
        require(
                totalSupply(MASTER) + _amount <= MAX_SUPPLY_MASTER,
            "Max supply reached"
        );

       require(
            msg.value >= _amount * price,
            "Invalid amount of funds sent"
        );

        if (_amount > 0) {
            _mintToken(to, MASTER, _amount);
        }
   }
    
    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxMintPerAddr(uint256 _count) external onlyOwner {
        maxCountPerAccount = _count;
    }

    function _mintToken(address to, uint8 _tokenId, uint8 _amount) private {
        _mint(to, _tokenId, _amount, "");
    }

    function setTokenURI(uint256 tokenId, string calldata uri_) external onlyOwner {
        _tokenURIs[tokenId] = uri_;
    }
    
    function setTokenMeta(uint256 tokenId, string calldata meta_) external onlyOwner {
        _tokenMeta[tokenId] = meta_;
    }

    function startMint() external onlyOwner{
        _isActive=true;
    }

    function stopMint() external onlyOwner{
        _isActive=false;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(I_am_g13m), balance);
    }
 
    function uri(uint256 _id) public view override returns (string memory) {
       require(exists(_id), "Token does not exist");
       string memory metadata = Base64.encode(bytes(abi.encodePacked('{',_tokenMeta[_id],', "image":"data:image/svg+xml;base64,',Base64.encode(bytes(_tokenURIs[_id])),'"}')));
       return string(abi.encodePacked('data:application/json;base64,', metadata));
    }
}

File 2 of 14 : ERC1155Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

abstract contract ERC1155Base is
    Ownable,
    ERC1155,
    ERC1155Supply,
    ReentrancyGuard
{
    string name_;
    string symbol_;


    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }

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

File 3 of 14 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

import "../ERC1155.sol";

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

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

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

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

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

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

File 7 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    string private _uri;

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

File 13 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCountPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"to","type":"address"},{"internalType":"uint8","name":"_amountMaster","type":"uint8"},{"internalType":"uint8","name":"_amountVip","type":"uint8"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"meta_","type":"string"}],"name":"setTokenMeta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff02191690831515021790555060016009556705d423c655aa0000600a553480156200003d57600080fd5b5060405162004929380380620049298339818101604052810190620000639190620002ef565b806200008462000078620000d960201b60201c565b620000e160201b60201c565b6200009581620001a560201b60201c565b5060016005819055508260069080519060200190620000b6929190620001c1565b508160079080519060200190620000cf929190620001c1565b505050506200052c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060039080519060200190620001bd929190620001c1565b5050565b828054620001cf906200043d565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b6000620002886200028284620003d1565b620003a8565b905082815260208101848484011115620002a757620002a66200050c565b5b620002b484828562000407565b509392505050565b600082601f830112620002d457620002d362000507565b5b8151620002e684826020860162000271565b91505092915050565b6000806000606084860312156200030b576200030a62000516565b5b600084015167ffffffffffffffff8111156200032c576200032b62000511565b5b6200033a86828701620002bc565b935050602084015167ffffffffffffffff8111156200035e576200035d62000511565b5b6200036c86828701620002bc565b925050604084015167ffffffffffffffff81111562000390576200038f62000511565b5b6200039e86828701620002bc565b9150509250925092565b6000620003b4620003c7565b9050620003c2828262000473565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ef57620003ee620004d8565b5b620003fa826200051b565b9050602081019050919050565b60005b83811015620004275780820151818401526020810190506200040a565b8381111562000437576000848401525b50505050565b600060028204905060018216806200045657607f821691505b602082108114156200046d576200046c620004a9565b5b50919050565b6200047e826200051b565b810181811067ffffffffffffffff82111715620004a0576200049f620004d8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6143ed806200053c6000396000f3fe6080604052600436106101805760003560e01c8063858e83b5116100d1578063b0d1643d1161008a578063d558296511610064578063d55829651461054a578063e985e9c514610561578063f242432a1461059e578063f2fde38b146105c757610180565b8063b0d1643d146104b9578063bd85b039146104e4578063bea1f0511461052157610180565b8063858e83b5146103ca5780638da5cb5b146103e657806391b7f5ed1461041157806395d89b411461043a578063a035b1fe14610465578063a22cb4651461049057610180565b8063162094c41161013e5780633ccfd60b116101185780633ccfd60b146103225780634e1273f4146103395780634f558e7914610376578063715018a6146103b357610180565b8063162094c4146102b95780632be09561146102e25780632eb2c2d6146102f957610180565b8062fdd58e1461018557806301ffc9a7146101c257806306fdde03146101ff5780630e89341c1461022a578063110575db146102675780631300c01414610290575b600080fd5b34801561019157600080fd5b506101ac60048036038101906101a79190612ae8565b6105f0565b6040516101b991906136f8565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e49190612bf3565b6106ba565b6040516101f6919061341b565b60405180910390f35b34801561020b57600080fd5b5061021461079c565b6040516102219190613436565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c9190612c4d565b61082e565b60405161025e9190613436565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612b28565b610983565b005b34801561029c57600080fd5b506102b760048036038101906102b29190612c4d565b610aa8565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612c7a565b610aba565b005b3480156102ee57600080fd5b506102f7610aea565b005b34801561030557600080fd5b50610320600480360381019061031b9190612942565b610b0f565b005b34801561032e57600080fd5b50610337610bb0565b005b34801561034557600080fd5b50610360600480360381019061035b9190612b7b565b610c34565b60405161036d91906133c2565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612c4d565b610d4d565b6040516103aa919061341b565b60405180910390f35b3480156103bf57600080fd5b506103c8610d61565b005b6103e460048036038101906103df9190612cda565b610d75565b005b3480156103f257600080fd5b506103fb610df5565b60405161040891906132e5565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190612c4d565b610e1e565b005b34801561044657600080fd5b5061044f610e30565b60405161045c9190613436565b60405180910390f35b34801561047157600080fd5b5061047a610ec2565b60405161048791906136f8565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612aa8565b610ec8565b005b3480156104c557600080fd5b506104ce610ede565b6040516104db91906136f8565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612c4d565b610ee4565b60405161051891906136f8565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612c7a565b610f01565b005b34801561055657600080fd5b5061055f610f31565b005b34801561056d57600080fd5b5061058860048036038101906105839190612902565b610f56565b604051610595919061341b565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612a11565b610fea565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906128d5565b61108b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906134d8565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079557506107948261110f565b5b9050919050565b6060600680546107ab90613a61565b80601f01602080910402602001604051908101604052809291908181526020018280546107d790613a61565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b606061083982610d4d565b610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90613558565b60405180910390fd5b6000610959600c6000858152602001908152602001600020610934600b600087815260200190815260200160002080546108b190613a61565b80601f01602080910402602001604051908101604052809291908181526020018280546108dd90613a61565b801561092a5780601f106108ff5761010080835404028352916020019161092a565b820191906000526020600020905b81548152906001019060200180831161090d57829003601f168201915b5050505050611179565b604051602001610945929190613269565b604051602081830303815290604052611179565b90508060405160200161096c91906132ae565b604051602081830303815290604052915050919050565b61098b6112dd565b6000818361099991906138dc565b60ff16905060008114156109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d990613618565b60405180910390fd5b602a61ffff168260ff166109f9600160ff16610ee4565b610a039190613886565b11158015610a3157506101a461ffff168360ff16610a24600060ff16610ee4565b610a2e9190613886565b11155b610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790613638565b60405180910390fd5b60008360ff161115610a8957610a888460008561135b565b5b60008260ff161115610aa257610aa18460018461135b565b5b50505050565b610ab06112dd565b8060098190555050565b610ac26112dd565b8181600b60008681526020019081526020016000209190610ae49291906125b2565b50505050565b610af26112dd565b6001600860006101000a81548160ff021916908315150217905550565b610b17611381565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b5d5750610b5c85610b57611381565b610f56565b5b610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390613478565b60405180910390fd5b610ba98585858585611389565b5050505050565b610bb86112dd565b60026005541415610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906136d8565b60405180910390fd5b60026005819055506000479050610c2973fbff1ebff67093a239bc1343ae6a5e3372a14ac0826116ae565b506001600581905550565b60608151835114610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190613678565b60405180910390fd5b6000835167ffffffffffffffff811115610c9757610c96613bc9565b5b604051908082528060200260200182016040528015610cc55781602001602082028036833780820191505090505b50905060005b8451811015610d4257610d12858281518110610cea57610ce9613b9a565b5b6020026020010151858381518110610d0557610d04613b9a565b5b60200260200101516105f0565b828281518110610d2557610d24613b9a565b5b60200260200101818152505080610d3b90613ac4565b9050610ccb565b508091505092915050565b600080610d5983610ee4565b119050919050565b610d696112dd565b610d7360006117a2565b565b600860009054906101000a900460ff16610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906134f8565b60405180910390fd5b610dce3382611866565b6000479050610df173fbff1ebff67093a239bc1343ae6a5e3372a14ac0826116ae565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e266112dd565b80600a8190555050565b606060078054610e3f90613a61565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6b90613a61565b8015610eb85780601f10610e8d57610100808354040283529160200191610eb8565b820191906000526020600020905b815481529060010190602001808311610e9b57829003601f168201915b5050505050905090565b600a5481565b610eda610ed3611381565b8383611991565b5050565b60095481565b600060046000838152602001908152602001600020549050919050565b610f096112dd565b8181600c60008681526020019081526020016000209190610f2b9291906125b2565b50505050565b610f396112dd565b6000600860006101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ff2611381565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611038575061103785611032611381565b610f56565b5b611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613478565b60405180910390fd5b6110848585858585611afe565b5050505050565b6110936112dd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906134b8565b60405180910390fd5b61110c816117a2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008251141561119c576040518060200160405280600081525090506112d8565b600060405180606001604052806040815260200161437860409139905060006003600285516111cb9190613886565b6111d59190613913565b60046111e19190613944565b67ffffffffffffffff8111156111fa576111f9613bc9565b5b6040519080825280601f01601f19166020018201604052801561122c5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611298576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061123d565b50506003865106600181146112b457600281146112c7576112cf565b603d6001830353603d60028303536112cf565b603d60018303535b50505080925050505b919050565b6112e5611381565b73ffffffffffffffffffffffffffffffffffffffff16611303610df5565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906135d8565b60405180910390fd5b565b61137c838360ff168360ff1660405180602001604052806000815250611d9d565b505050565b600033905090565b81518351146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613698565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490613598565b60405180910390fd5b6000611447611381565b9050611457818787878787611f4f565b60005b845181101561160b57600085828151811061147857611477613b9a565b5b60200260200101519050600085838151811061149757611496613b9a565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906135b8565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115f09190613886565b925050819055505050508061160490613ac4565b905061145a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116829291906133e4565b60405180910390a4611698818787878787611f65565b6116a6818787878787611f6d565b505050505050565b804710156116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890613578565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611717906132d0565b60006040518083038185875af1925050503d8060008114611754576040519150601f19603f3d011682016040523d82523d6000602084013e611759565b606091505b505090508061179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490613538565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008160ff161415801561187f57506009548160ff1611155b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613618565b60405180910390fd5b6101a461ffff168160ff166118d6600060ff16610ee4565b6118e09190613886565b1115611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890613638565b60405180910390fd5b600a548160ff166119329190613944565b341015611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613518565b60405180910390fd5b60008160ff16111561198d5761198c8260008361135b565b5b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613658565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af1919061341b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613598565b60405180910390fd5b6000611b78611381565b90506000611b8585612154565b90506000611b9285612154565b9050611ba2838989858589611f4f565b60006001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c31906135b8565b60405180910390fd5b8581036001600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856001600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf19190613886565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611d6e929190613713565b60405180910390a4611d84848a8a86868a611f65565b611d92848a8a8a8a8a6121ce565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e04906136b8565b60405180910390fd5b6000611e17611381565b90506000611e2485612154565b90506000611e3185612154565b9050611e4283600089858589611f4f565b846001600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea29190613886565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611f20929190613713565b60405180910390a4611f3783600089858589611f65565b611f46836000898989896121ce565b50505050505050565b611f5d8686868686866123b5565b505050505050565b505050505050565b611f8c8473ffffffffffffffffffffffffffffffffffffffff16612587565b1561214c578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611fd2959493929190613300565b602060405180830381600087803b158015611fec57600080fd5b505af192505050801561201d57506040513d601f19601f8201168201806040525081019061201a9190612c20565b60015b6120c357612029613bf8565b806308c379a01415612086575061203e61426e565b806120495750612088565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9190613436565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613458565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190613498565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561217357612172613bc9565b5b6040519080825280602002602001820160405280156121a15781602001602082028036833780820191505090505b50905082816000815181106121b9576121b8613b9a565b5b60200260200101818152505080915050919050565b6121ed8473ffffffffffffffffffffffffffffffffffffffff16612587565b156123ad578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612233959493929190613368565b602060405180830381600087803b15801561224d57600080fd5b505af192505050801561227e57506040513d601f19601f8201168201806040525081019061227b9190612c20565b60015b6123245761228a613bf8565b806308c379a014156122e7575061229f61426e565b806122aa57506122e9565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122de9190613436565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90613458565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290613498565b60405180910390fd5b505b505050505050565b6123c38686868686866125aa565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124755760005b83518110156124735782818151811061241757612416613b9a565b5b60200260200101516004600086848151811061243657612435613b9a565b5b60200260200101518152602001908152602001600020600082825461245b9190613886565b925050819055508061246c90613ac4565b90506123fb565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561257f5760005b835181101561257d5760008482815181106124cb576124ca613b9a565b5b6020026020010151905060008483815181106124ea576124e9613b9a565b5b602002602001015190506000600460008481526020019081526020016000205490508181101561254f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612546906135f8565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061257690613ac4565b90506124ad565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546125be90613a61565b90600052602060002090601f0160209004810192826125e05760008555612627565b82601f106125f957803560ff1916838001178555612627565b82800160010185558215612627579182015b8281111561262657823582559160200191906001019061260b565b5b5090506126349190612638565b5090565b5b80821115612651576000816000905550600101612639565b5090565b600061266861266384613761565b61373c565b9050808382526020820190508285602086028201111561268b5761268a613c24565b5b60005b858110156126bb57816126a18882612777565b84526020840193506020830192505060018101905061268e565b5050509392505050565b60006126d86126d38461378d565b61373c565b905080838252602082019050828560208602820111156126fb576126fa613c24565b5b60005b8581101561272b578161271188826128ab565b8452602084019350602083019250506001810190506126fe565b5050509392505050565b6000612748612743846137b9565b61373c565b90508281526020810184848401111561276457612763613c29565b5b61276f848285613a1f565b509392505050565b60008135905061278681614304565b92915050565b600082601f8301126127a1576127a0613c1f565b5b81356127b1848260208601612655565b91505092915050565b600082601f8301126127cf576127ce613c1f565b5b81356127df8482602086016126c5565b91505092915050565b6000813590506127f78161431b565b92915050565b60008135905061280c81614332565b92915050565b60008151905061282181614332565b92915050565b600082601f83011261283c5761283b613c1f565b5b813561284c848260208601612735565b91505092915050565b60008083601f84011261286b5761286a613c1f565b5b8235905067ffffffffffffffff81111561288857612887613c1a565b5b6020830191508360018202830111156128a4576128a3613c24565b5b9250929050565b6000813590506128ba81614349565b92915050565b6000813590506128cf81614360565b92915050565b6000602082840312156128eb576128ea613c33565b5b60006128f984828501612777565b91505092915050565b6000806040838503121561291957612918613c33565b5b600061292785828601612777565b925050602061293885828601612777565b9150509250929050565b600080600080600060a0868803121561295e5761295d613c33565b5b600061296c88828901612777565b955050602061297d88828901612777565b945050604086013567ffffffffffffffff81111561299e5761299d613c2e565b5b6129aa888289016127ba565b935050606086013567ffffffffffffffff8111156129cb576129ca613c2e565b5b6129d7888289016127ba565b925050608086013567ffffffffffffffff8111156129f8576129f7613c2e565b5b612a0488828901612827565b9150509295509295909350565b600080600080600060a08688031215612a2d57612a2c613c33565b5b6000612a3b88828901612777565b9550506020612a4c88828901612777565b9450506040612a5d888289016128ab565b9350506060612a6e888289016128ab565b925050608086013567ffffffffffffffff811115612a8f57612a8e613c2e565b5b612a9b88828901612827565b9150509295509295909350565b60008060408385031215612abf57612abe613c33565b5b6000612acd85828601612777565b9250506020612ade858286016127e8565b9150509250929050565b60008060408385031215612aff57612afe613c33565b5b6000612b0d85828601612777565b9250506020612b1e858286016128ab565b9150509250929050565b600080600060608486031215612b4157612b40613c33565b5b6000612b4f86828701612777565b9350506020612b60868287016128c0565b9250506040612b71868287016128c0565b9150509250925092565b60008060408385031215612b9257612b91613c33565b5b600083013567ffffffffffffffff811115612bb057612baf613c2e565b5b612bbc8582860161278c565b925050602083013567ffffffffffffffff811115612bdd57612bdc613c2e565b5b612be9858286016127ba565b9150509250929050565b600060208284031215612c0957612c08613c33565b5b6000612c17848285016127fd565b91505092915050565b600060208284031215612c3657612c35613c33565b5b6000612c4484828501612812565b91505092915050565b600060208284031215612c6357612c62613c33565b5b6000612c71848285016128ab565b91505092915050565b600080600060408486031215612c9357612c92613c33565b5b6000612ca1868287016128ab565b935050602084013567ffffffffffffffff811115612cc257612cc1613c2e565b5b612cce86828701612855565b92509250509250925092565b600060208284031215612cf057612cef613c33565b5b6000612cfe848285016128c0565b91505092915050565b6000612d13838361324b565b60208301905092915050565b612d288161399e565b82525050565b6000612d398261380f565b612d43818561383d565b9350612d4e836137ea565b8060005b83811015612d7f578151612d668882612d07565b9750612d7183613830565b925050600181019050612d52565b5085935050505092915050565b612d95816139b0565b82525050565b6000612da68261381a565b612db0818561384e565b9350612dc0818560208601613a2e565b612dc981613c38565b840191505092915050565b6000612ddf82613825565b612de9818561386a565b9350612df9818560208601613a2e565b612e0281613c38565b840191505092915050565b6000612e1882613825565b612e22818561387b565b9350612e32818560208601613a2e565b80840191505092915050565b60008154612e4b81613a61565b612e55818661387b565b94506001821660008114612e705760018114612e8157612eb4565b60ff19831686528186019350612eb4565b612e8a856137fa565b60005b83811015612eac57815481890152600182019150602081019050612e8d565b838801955050505b50505092915050565b6000612eca60348361386a565b9150612ed582613c56565b604082019050919050565b6000612eed602f8361386a565b9150612ef882613ca5565b604082019050919050565b6000612f1060288361386a565b9150612f1b82613cf4565b604082019050919050565b6000612f3360268361386a565b9150612f3e82613d43565b604082019050919050565b6000612f56602a8361386a565b9150612f6182613d92565b604082019050919050565b6000612f79600d8361386a565b9150612f8482613de1565b602082019050919050565b6000612f9c601c8361386a565b9150612fa782613e0a565b602082019050919050565b6000612fbf603a8361386a565b9150612fca82613e33565b604082019050919050565b6000612fe260148361386a565b9150612fed82613e82565b602082019050919050565b6000613005601d8361386a565b915061301082613eab565b602082019050919050565b600061302860258361386a565b915061303382613ed4565b604082019050919050565b600061304b60028361387b565b915061305682613f23565b600282019050919050565b600061306e602a8361386a565b915061307982613f4c565b604082019050919050565b600061309160208361386a565b915061309c82613f9b565b602082019050919050565b60006130b460288361386a565b91506130bf82613fc4565b604082019050919050565b60006130d760018361387b565b91506130e282614013565b600182019050919050565b60006130fa60188361386a565b91506131058261403c565b602082019050919050565b600061311d60258361387b565b915061312882614065565b602582019050919050565b6000613140601d8361387b565b915061314b826140b4565b601d82019050919050565b600061316360008361385f565b915061316e826140dd565b600082019050919050565b600061318660128361386a565b9150613191826140e0565b602082019050919050565b60006131a960298361386a565b91506131b482614109565b604082019050919050565b60006131cc60298361386a565b91506131d782614158565b604082019050919050565b60006131ef60288361386a565b91506131fa826141a7565b604082019050919050565b600061321260218361386a565b915061321d826141f6565b604082019050919050565b6000613235601f8361386a565b915061324082614245565b602082019050919050565b61325481613a08565b82525050565b61326381613a08565b82525050565b6000613274826130ca565b91506132808285612e3e565b915061328b82613110565b91506132978284612e0d565b91506132a28261303e565b91508190509392505050565b60006132b982613133565b91506132c58284612e0d565b915081905092915050565b60006132db82613156565b9150819050919050565b60006020820190506132fa6000830184612d1f565b92915050565b600060a0820190506133156000830188612d1f565b6133226020830187612d1f565b81810360408301526133348186612d2e565b905081810360608301526133488185612d2e565b9050818103608083015261335c8184612d9b565b90509695505050505050565b600060a08201905061337d6000830188612d1f565b61338a6020830187612d1f565b613397604083018661325a565b6133a4606083018561325a565b81810360808301526133b68184612d9b565b90509695505050505050565b600060208201905081810360008301526133dc8184612d2e565b905092915050565b600060408201905081810360008301526133fe8185612d2e565b905081810360208301526134128184612d2e565b90509392505050565b60006020820190506134306000830184612d8c565b92915050565b600060208201905081810360008301526134508184612dd4565b905092915050565b6000602082019050818103600083015261347181612ebd565b9050919050565b6000602082019050818103600083015261349181612ee0565b9050919050565b600060208201905081810360008301526134b181612f03565b9050919050565b600060208201905081810360008301526134d181612f26565b9050919050565b600060208201905081810360008301526134f181612f49565b9050919050565b6000602082019050818103600083015261351181612f6c565b9050919050565b6000602082019050818103600083015261353181612f8f565b9050919050565b6000602082019050818103600083015261355181612fb2565b9050919050565b6000602082019050818103600083015261357181612fd5565b9050919050565b6000602082019050818103600083015261359181612ff8565b9050919050565b600060208201905081810360008301526135b18161301b565b9050919050565b600060208201905081810360008301526135d181613061565b9050919050565b600060208201905081810360008301526135f181613084565b9050919050565b60006020820190508181036000830152613611816130a7565b9050919050565b60006020820190508181036000830152613631816130ed565b9050919050565b6000602082019050818103600083015261365181613179565b9050919050565b600060208201905081810360008301526136718161319c565b9050919050565b60006020820190508181036000830152613691816131bf565b9050919050565b600060208201905081810360008301526136b1816131e2565b9050919050565b600060208201905081810360008301526136d181613205565b9050919050565b600060208201905081810360008301526136f181613228565b9050919050565b600060208201905061370d600083018461325a565b92915050565b6000604082019050613728600083018561325a565b613735602083018461325a565b9392505050565b6000613746613757565b90506137528282613a93565b919050565b6000604051905090565b600067ffffffffffffffff82111561377c5761377b613bc9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137a8576137a7613bc9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137d4576137d3613bc9565b5b6137dd82613c38565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061389182613a08565b915061389c83613a08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d1576138d0613b0d565b5b828201905092915050565b60006138e782613a12565b91506138f283613a12565b92508260ff0382111561390857613907613b0d565b5b828201905092915050565b600061391e82613a08565b915061392983613a08565b92508261393957613938613b3c565b5b828204905092915050565b600061394f82613a08565b915061395a83613a08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399357613992613b0d565b5b828202905092915050565b60006139a9826139e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a4c578082015181840152602081019050613a31565b83811115613a5b576000848401525b50505050565b60006002820490506001821680613a7957607f821691505b60208210811415613a8d57613a8c613b6b565b5b50919050565b613a9c82613c38565b810181811067ffffffffffffffff82111715613abb57613aba613bc9565b5b80604052505050565b6000613acf82613a08565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0257613b01613b0d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613c175760046000803e613c14600051613c49565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f4d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74206f662066756e64732073656e7400000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74206f6620746f6b656e730000000000000000600082015250565b7f2c2022696d616765223a22646174613a696d6167652f7376672b786d6c3b626160008201527f736536342c000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b50565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600060443d101561427e57614301565b614286613757565b60043d036004823e80513d602482011167ffffffffffffffff821117156142ae575050614301565b808201805167ffffffffffffffff8111156142cc5750505050614301565b80602083010160043d0385018111156142e9575050505050614301565b6142f882602001850186613a93565b82955050505050505b90565b61430d8161399e565b811461431857600080fd5b50565b614324816139b0565b811461432f57600080fd5b50565b61433b816139bc565b811461434657600080fd5b50565b61435281613a08565b811461435d57600080fd5b50565b61436981613a12565b811461437457600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220bcf3eb98bd99f0336dc743b3a2393192765ef05a4d413c5a81cd21bfdfa4f76764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000174d616b654c6f7665343230206f6e436861696e2050465000000000000000000000000000000000000000000000000000000000000000000000000000000000054d4c5046500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101805760003560e01c8063858e83b5116100d1578063b0d1643d1161008a578063d558296511610064578063d55829651461054a578063e985e9c514610561578063f242432a1461059e578063f2fde38b146105c757610180565b8063b0d1643d146104b9578063bd85b039146104e4578063bea1f0511461052157610180565b8063858e83b5146103ca5780638da5cb5b146103e657806391b7f5ed1461041157806395d89b411461043a578063a035b1fe14610465578063a22cb4651461049057610180565b8063162094c41161013e5780633ccfd60b116101185780633ccfd60b146103225780634e1273f4146103395780634f558e7914610376578063715018a6146103b357610180565b8063162094c4146102b95780632be09561146102e25780632eb2c2d6146102f957610180565b8062fdd58e1461018557806301ffc9a7146101c257806306fdde03146101ff5780630e89341c1461022a578063110575db146102675780631300c01414610290575b600080fd5b34801561019157600080fd5b506101ac60048036038101906101a79190612ae8565b6105f0565b6040516101b991906136f8565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e49190612bf3565b6106ba565b6040516101f6919061341b565b60405180910390f35b34801561020b57600080fd5b5061021461079c565b6040516102219190613436565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c9190612c4d565b61082e565b60405161025e9190613436565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612b28565b610983565b005b34801561029c57600080fd5b506102b760048036038101906102b29190612c4d565b610aa8565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612c7a565b610aba565b005b3480156102ee57600080fd5b506102f7610aea565b005b34801561030557600080fd5b50610320600480360381019061031b9190612942565b610b0f565b005b34801561032e57600080fd5b50610337610bb0565b005b34801561034557600080fd5b50610360600480360381019061035b9190612b7b565b610c34565b60405161036d91906133c2565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612c4d565b610d4d565b6040516103aa919061341b565b60405180910390f35b3480156103bf57600080fd5b506103c8610d61565b005b6103e460048036038101906103df9190612cda565b610d75565b005b3480156103f257600080fd5b506103fb610df5565b60405161040891906132e5565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190612c4d565b610e1e565b005b34801561044657600080fd5b5061044f610e30565b60405161045c9190613436565b60405180910390f35b34801561047157600080fd5b5061047a610ec2565b60405161048791906136f8565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612aa8565b610ec8565b005b3480156104c557600080fd5b506104ce610ede565b6040516104db91906136f8565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612c4d565b610ee4565b60405161051891906136f8565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612c7a565b610f01565b005b34801561055657600080fd5b5061055f610f31565b005b34801561056d57600080fd5b5061058860048036038101906105839190612902565b610f56565b604051610595919061341b565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612a11565b610fea565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906128d5565b61108b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906134d8565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079557506107948261110f565b5b9050919050565b6060600680546107ab90613a61565b80601f01602080910402602001604051908101604052809291908181526020018280546107d790613a61565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b606061083982610d4d565b610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90613558565b60405180910390fd5b6000610959600c6000858152602001908152602001600020610934600b600087815260200190815260200160002080546108b190613a61565b80601f01602080910402602001604051908101604052809291908181526020018280546108dd90613a61565b801561092a5780601f106108ff5761010080835404028352916020019161092a565b820191906000526020600020905b81548152906001019060200180831161090d57829003601f168201915b5050505050611179565b604051602001610945929190613269565b604051602081830303815290604052611179565b90508060405160200161096c91906132ae565b604051602081830303815290604052915050919050565b61098b6112dd565b6000818361099991906138dc565b60ff16905060008114156109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d990613618565b60405180910390fd5b602a61ffff168260ff166109f9600160ff16610ee4565b610a039190613886565b11158015610a3157506101a461ffff168360ff16610a24600060ff16610ee4565b610a2e9190613886565b11155b610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790613638565b60405180910390fd5b60008360ff161115610a8957610a888460008561135b565b5b60008260ff161115610aa257610aa18460018461135b565b5b50505050565b610ab06112dd565b8060098190555050565b610ac26112dd565b8181600b60008681526020019081526020016000209190610ae49291906125b2565b50505050565b610af26112dd565b6001600860006101000a81548160ff021916908315150217905550565b610b17611381565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b5d5750610b5c85610b57611381565b610f56565b5b610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390613478565b60405180910390fd5b610ba98585858585611389565b5050505050565b610bb86112dd565b60026005541415610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906136d8565b60405180910390fd5b60026005819055506000479050610c2973fbff1ebff67093a239bc1343ae6a5e3372a14ac0826116ae565b506001600581905550565b60608151835114610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190613678565b60405180910390fd5b6000835167ffffffffffffffff811115610c9757610c96613bc9565b5b604051908082528060200260200182016040528015610cc55781602001602082028036833780820191505090505b50905060005b8451811015610d4257610d12858281518110610cea57610ce9613b9a565b5b6020026020010151858381518110610d0557610d04613b9a565b5b60200260200101516105f0565b828281518110610d2557610d24613b9a565b5b60200260200101818152505080610d3b90613ac4565b9050610ccb565b508091505092915050565b600080610d5983610ee4565b119050919050565b610d696112dd565b610d7360006117a2565b565b600860009054906101000a900460ff16610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906134f8565b60405180910390fd5b610dce3382611866565b6000479050610df173fbff1ebff67093a239bc1343ae6a5e3372a14ac0826116ae565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e266112dd565b80600a8190555050565b606060078054610e3f90613a61565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6b90613a61565b8015610eb85780601f10610e8d57610100808354040283529160200191610eb8565b820191906000526020600020905b815481529060010190602001808311610e9b57829003601f168201915b5050505050905090565b600a5481565b610eda610ed3611381565b8383611991565b5050565b60095481565b600060046000838152602001908152602001600020549050919050565b610f096112dd565b8181600c60008681526020019081526020016000209190610f2b9291906125b2565b50505050565b610f396112dd565b6000600860006101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ff2611381565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611038575061103785611032611381565b610f56565b5b611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613478565b60405180910390fd5b6110848585858585611afe565b5050505050565b6110936112dd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906134b8565b60405180910390fd5b61110c816117a2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008251141561119c576040518060200160405280600081525090506112d8565b600060405180606001604052806040815260200161437860409139905060006003600285516111cb9190613886565b6111d59190613913565b60046111e19190613944565b67ffffffffffffffff8111156111fa576111f9613bc9565b5b6040519080825280601f01601f19166020018201604052801561122c5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611298576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061123d565b50506003865106600181146112b457600281146112c7576112cf565b603d6001830353603d60028303536112cf565b603d60018303535b50505080925050505b919050565b6112e5611381565b73ffffffffffffffffffffffffffffffffffffffff16611303610df5565b73ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906135d8565b60405180910390fd5b565b61137c838360ff168360ff1660405180602001604052806000815250611d9d565b505050565b600033905090565b81518351146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613698565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490613598565b60405180910390fd5b6000611447611381565b9050611457818787878787611f4f565b60005b845181101561160b57600085828151811061147857611477613b9a565b5b60200260200101519050600085838151811061149757611496613b9a565b5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906135b8565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115f09190613886565b925050819055505050508061160490613ac4565b905061145a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116829291906133e4565b60405180910390a4611698818787878787611f65565b6116a6818787878787611f6d565b505050505050565b804710156116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890613578565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611717906132d0565b60006040518083038185875af1925050503d8060008114611754576040519150601f19603f3d011682016040523d82523d6000602084013e611759565b606091505b505090508061179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490613538565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008160ff161415801561187f57506009548160ff1611155b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613618565b60405180910390fd5b6101a461ffff168160ff166118d6600060ff16610ee4565b6118e09190613886565b1115611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890613638565b60405180910390fd5b600a548160ff166119329190613944565b341015611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613518565b60405180910390fd5b60008160ff16111561198d5761198c8260008361135b565b5b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613658565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af1919061341b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613598565b60405180910390fd5b6000611b78611381565b90506000611b8585612154565b90506000611b9285612154565b9050611ba2838989858589611f4f565b60006001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c31906135b8565b60405180910390fd5b8581036001600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856001600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf19190613886565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611d6e929190613713565b60405180910390a4611d84848a8a86868a611f65565b611d92848a8a8a8a8a6121ce565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e04906136b8565b60405180910390fd5b6000611e17611381565b90506000611e2485612154565b90506000611e3185612154565b9050611e4283600089858589611f4f565b846001600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea29190613886565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611f20929190613713565b60405180910390a4611f3783600089858589611f65565b611f46836000898989896121ce565b50505050505050565b611f5d8686868686866123b5565b505050505050565b505050505050565b611f8c8473ffffffffffffffffffffffffffffffffffffffff16612587565b1561214c578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611fd2959493929190613300565b602060405180830381600087803b158015611fec57600080fd5b505af192505050801561201d57506040513d601f19601f8201168201806040525081019061201a9190612c20565b60015b6120c357612029613bf8565b806308c379a01415612086575061203e61426e565b806120495750612088565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9190613436565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613458565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190613498565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561217357612172613bc9565b5b6040519080825280602002602001820160405280156121a15781602001602082028036833780820191505090505b50905082816000815181106121b9576121b8613b9a565b5b60200260200101818152505080915050919050565b6121ed8473ffffffffffffffffffffffffffffffffffffffff16612587565b156123ad578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612233959493929190613368565b602060405180830381600087803b15801561224d57600080fd5b505af192505050801561227e57506040513d601f19601f8201168201806040525081019061227b9190612c20565b60015b6123245761228a613bf8565b806308c379a014156122e7575061229f61426e565b806122aa57506122e9565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122de9190613436565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90613458565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a290613498565b60405180910390fd5b505b505050505050565b6123c38686868686866125aa565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124755760005b83518110156124735782818151811061241757612416613b9a565b5b60200260200101516004600086848151811061243657612435613b9a565b5b60200260200101518152602001908152602001600020600082825461245b9190613886565b925050819055508061246c90613ac4565b90506123fb565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561257f5760005b835181101561257d5760008482815181106124cb576124ca613b9a565b5b6020026020010151905060008483815181106124ea576124e9613b9a565b5b602002602001015190506000600460008481526020019081526020016000205490508181101561254f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612546906135f8565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061257690613ac4565b90506124ad565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546125be90613a61565b90600052602060002090601f0160209004810192826125e05760008555612627565b82601f106125f957803560ff1916838001178555612627565b82800160010185558215612627579182015b8281111561262657823582559160200191906001019061260b565b5b5090506126349190612638565b5090565b5b80821115612651576000816000905550600101612639565b5090565b600061266861266384613761565b61373c565b9050808382526020820190508285602086028201111561268b5761268a613c24565b5b60005b858110156126bb57816126a18882612777565b84526020840193506020830192505060018101905061268e565b5050509392505050565b60006126d86126d38461378d565b61373c565b905080838252602082019050828560208602820111156126fb576126fa613c24565b5b60005b8581101561272b578161271188826128ab565b8452602084019350602083019250506001810190506126fe565b5050509392505050565b6000612748612743846137b9565b61373c565b90508281526020810184848401111561276457612763613c29565b5b61276f848285613a1f565b509392505050565b60008135905061278681614304565b92915050565b600082601f8301126127a1576127a0613c1f565b5b81356127b1848260208601612655565b91505092915050565b600082601f8301126127cf576127ce613c1f565b5b81356127df8482602086016126c5565b91505092915050565b6000813590506127f78161431b565b92915050565b60008135905061280c81614332565b92915050565b60008151905061282181614332565b92915050565b600082601f83011261283c5761283b613c1f565b5b813561284c848260208601612735565b91505092915050565b60008083601f84011261286b5761286a613c1f565b5b8235905067ffffffffffffffff81111561288857612887613c1a565b5b6020830191508360018202830111156128a4576128a3613c24565b5b9250929050565b6000813590506128ba81614349565b92915050565b6000813590506128cf81614360565b92915050565b6000602082840312156128eb576128ea613c33565b5b60006128f984828501612777565b91505092915050565b6000806040838503121561291957612918613c33565b5b600061292785828601612777565b925050602061293885828601612777565b9150509250929050565b600080600080600060a0868803121561295e5761295d613c33565b5b600061296c88828901612777565b955050602061297d88828901612777565b945050604086013567ffffffffffffffff81111561299e5761299d613c2e565b5b6129aa888289016127ba565b935050606086013567ffffffffffffffff8111156129cb576129ca613c2e565b5b6129d7888289016127ba565b925050608086013567ffffffffffffffff8111156129f8576129f7613c2e565b5b612a0488828901612827565b9150509295509295909350565b600080600080600060a08688031215612a2d57612a2c613c33565b5b6000612a3b88828901612777565b9550506020612a4c88828901612777565b9450506040612a5d888289016128ab565b9350506060612a6e888289016128ab565b925050608086013567ffffffffffffffff811115612a8f57612a8e613c2e565b5b612a9b88828901612827565b9150509295509295909350565b60008060408385031215612abf57612abe613c33565b5b6000612acd85828601612777565b9250506020612ade858286016127e8565b9150509250929050565b60008060408385031215612aff57612afe613c33565b5b6000612b0d85828601612777565b9250506020612b1e858286016128ab565b9150509250929050565b600080600060608486031215612b4157612b40613c33565b5b6000612b4f86828701612777565b9350506020612b60868287016128c0565b9250506040612b71868287016128c0565b9150509250925092565b60008060408385031215612b9257612b91613c33565b5b600083013567ffffffffffffffff811115612bb057612baf613c2e565b5b612bbc8582860161278c565b925050602083013567ffffffffffffffff811115612bdd57612bdc613c2e565b5b612be9858286016127ba565b9150509250929050565b600060208284031215612c0957612c08613c33565b5b6000612c17848285016127fd565b91505092915050565b600060208284031215612c3657612c35613c33565b5b6000612c4484828501612812565b91505092915050565b600060208284031215612c6357612c62613c33565b5b6000612c71848285016128ab565b91505092915050565b600080600060408486031215612c9357612c92613c33565b5b6000612ca1868287016128ab565b935050602084013567ffffffffffffffff811115612cc257612cc1613c2e565b5b612cce86828701612855565b92509250509250925092565b600060208284031215612cf057612cef613c33565b5b6000612cfe848285016128c0565b91505092915050565b6000612d13838361324b565b60208301905092915050565b612d288161399e565b82525050565b6000612d398261380f565b612d43818561383d565b9350612d4e836137ea565b8060005b83811015612d7f578151612d668882612d07565b9750612d7183613830565b925050600181019050612d52565b5085935050505092915050565b612d95816139b0565b82525050565b6000612da68261381a565b612db0818561384e565b9350612dc0818560208601613a2e565b612dc981613c38565b840191505092915050565b6000612ddf82613825565b612de9818561386a565b9350612df9818560208601613a2e565b612e0281613c38565b840191505092915050565b6000612e1882613825565b612e22818561387b565b9350612e32818560208601613a2e565b80840191505092915050565b60008154612e4b81613a61565b612e55818661387b565b94506001821660008114612e705760018114612e8157612eb4565b60ff19831686528186019350612eb4565b612e8a856137fa565b60005b83811015612eac57815481890152600182019150602081019050612e8d565b838801955050505b50505092915050565b6000612eca60348361386a565b9150612ed582613c56565b604082019050919050565b6000612eed602f8361386a565b9150612ef882613ca5565b604082019050919050565b6000612f1060288361386a565b9150612f1b82613cf4565b604082019050919050565b6000612f3360268361386a565b9150612f3e82613d43565b604082019050919050565b6000612f56602a8361386a565b9150612f6182613d92565b604082019050919050565b6000612f79600d8361386a565b9150612f8482613de1565b602082019050919050565b6000612f9c601c8361386a565b9150612fa782613e0a565b602082019050919050565b6000612fbf603a8361386a565b9150612fca82613e33565b604082019050919050565b6000612fe260148361386a565b9150612fed82613e82565b602082019050919050565b6000613005601d8361386a565b915061301082613eab565b602082019050919050565b600061302860258361386a565b915061303382613ed4565b604082019050919050565b600061304b60028361387b565b915061305682613f23565b600282019050919050565b600061306e602a8361386a565b915061307982613f4c565b604082019050919050565b600061309160208361386a565b915061309c82613f9b565b602082019050919050565b60006130b460288361386a565b91506130bf82613fc4565b604082019050919050565b60006130d760018361387b565b91506130e282614013565b600182019050919050565b60006130fa60188361386a565b91506131058261403c565b602082019050919050565b600061311d60258361387b565b915061312882614065565b602582019050919050565b6000613140601d8361387b565b915061314b826140b4565b601d82019050919050565b600061316360008361385f565b915061316e826140dd565b600082019050919050565b600061318660128361386a565b9150613191826140e0565b602082019050919050565b60006131a960298361386a565b91506131b482614109565b604082019050919050565b60006131cc60298361386a565b91506131d782614158565b604082019050919050565b60006131ef60288361386a565b91506131fa826141a7565b604082019050919050565b600061321260218361386a565b915061321d826141f6565b604082019050919050565b6000613235601f8361386a565b915061324082614245565b602082019050919050565b61325481613a08565b82525050565b61326381613a08565b82525050565b6000613274826130ca565b91506132808285612e3e565b915061328b82613110565b91506132978284612e0d565b91506132a28261303e565b91508190509392505050565b60006132b982613133565b91506132c58284612e0d565b915081905092915050565b60006132db82613156565b9150819050919050565b60006020820190506132fa6000830184612d1f565b92915050565b600060a0820190506133156000830188612d1f565b6133226020830187612d1f565b81810360408301526133348186612d2e565b905081810360608301526133488185612d2e565b9050818103608083015261335c8184612d9b565b90509695505050505050565b600060a08201905061337d6000830188612d1f565b61338a6020830187612d1f565b613397604083018661325a565b6133a4606083018561325a565b81810360808301526133b68184612d9b565b90509695505050505050565b600060208201905081810360008301526133dc8184612d2e565b905092915050565b600060408201905081810360008301526133fe8185612d2e565b905081810360208301526134128184612d2e565b90509392505050565b60006020820190506134306000830184612d8c565b92915050565b600060208201905081810360008301526134508184612dd4565b905092915050565b6000602082019050818103600083015261347181612ebd565b9050919050565b6000602082019050818103600083015261349181612ee0565b9050919050565b600060208201905081810360008301526134b181612f03565b9050919050565b600060208201905081810360008301526134d181612f26565b9050919050565b600060208201905081810360008301526134f181612f49565b9050919050565b6000602082019050818103600083015261351181612f6c565b9050919050565b6000602082019050818103600083015261353181612f8f565b9050919050565b6000602082019050818103600083015261355181612fb2565b9050919050565b6000602082019050818103600083015261357181612fd5565b9050919050565b6000602082019050818103600083015261359181612ff8565b9050919050565b600060208201905081810360008301526135b18161301b565b9050919050565b600060208201905081810360008301526135d181613061565b9050919050565b600060208201905081810360008301526135f181613084565b9050919050565b60006020820190508181036000830152613611816130a7565b9050919050565b60006020820190508181036000830152613631816130ed565b9050919050565b6000602082019050818103600083015261365181613179565b9050919050565b600060208201905081810360008301526136718161319c565b9050919050565b60006020820190508181036000830152613691816131bf565b9050919050565b600060208201905081810360008301526136b1816131e2565b9050919050565b600060208201905081810360008301526136d181613205565b9050919050565b600060208201905081810360008301526136f181613228565b9050919050565b600060208201905061370d600083018461325a565b92915050565b6000604082019050613728600083018561325a565b613735602083018461325a565b9392505050565b6000613746613757565b90506137528282613a93565b919050565b6000604051905090565b600067ffffffffffffffff82111561377c5761377b613bc9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137a8576137a7613bc9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137d4576137d3613bc9565b5b6137dd82613c38565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061389182613a08565b915061389c83613a08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d1576138d0613b0d565b5b828201905092915050565b60006138e782613a12565b91506138f283613a12565b92508260ff0382111561390857613907613b0d565b5b828201905092915050565b600061391e82613a08565b915061392983613a08565b92508261393957613938613b3c565b5b828204905092915050565b600061394f82613a08565b915061395a83613a08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399357613992613b0d565b5b828202905092915050565b60006139a9826139e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a4c578082015181840152602081019050613a31565b83811115613a5b576000848401525b50505050565b60006002820490506001821680613a7957607f821691505b60208210811415613a8d57613a8c613b6b565b5b50919050565b613a9c82613c38565b810181811067ffffffffffffffff82111715613abb57613aba613bc9565b5b80604052505050565b6000613acf82613a08565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0257613b01613b0d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613c175760046000803e613c14600051613c49565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f4d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74206f662066756e64732073656e7400000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74206f6620746f6b656e730000000000000000600082015250565b7f2c2022696d616765223a22646174613a696d6167652f7376672b786d6c3b626160008201527f736536342c000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b50565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600060443d101561427e57614301565b614286613757565b60043d036004823e80513d602482011167ffffffffffffffff821117156142ae575050614301565b808201805167ffffffffffffffff8111156142cc5750505050614301565b80602083010160043d0385018111156142e9575050505050614301565b6142f882602001850186613a93565b82955050505050505b90565b61430d8161399e565b811461431857600080fd5b50565b614324816139b0565b811461432f57600080fd5b50565b61433b816139bc565b811461434657600080fd5b50565b61435281613a08565b811461435d57600080fd5b50565b61436981613a12565b811461437457600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220bcf3eb98bd99f0336dc743b3a2393192765ef05a4d413c5a81cd21bfdfa4f76764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000174d616b654c6f7665343230206f6e436861696e2050465000000000000000000000000000000000000000000000000000000000000000000000000000000000054d4c5046500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MakeLove420 onChain PFP
Arg [1] : _symbol (string): MLPFP
Arg [2] : _uri (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [4] : 4d616b654c6f7665343230206f6e436861696e20504650000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4d4c504650000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.