ETH Price: $2,683.09 (+10.24%)
Gas: 2 Gwei

Token

AirdropHouses #1 (ADH)
 

Overview

Max Total Supply

576 ADH

Holders

193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
15 ADH
0xfda47d20e5dda48088fa9b171066c052c758013e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AirdropHouses

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : AirdropHouses.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract AirdropHouses is ERC721Enumerable, Ownable {
    using Strings for uint256;

    // 0 - Not started, 100 - presale, 199 - presale finished, 200 - public sale, 299 - public sale finished
    uint256 private _saleMode = 0;

    mapping(uint256 => mapping(uint256 => bytes32)) private _merkleRoots;

    uint256 private _presalePrice = 15 * 10**16; // 0.15 eth
    uint256 private _publicSalePrice = 3 * 10**17; // 0.3 eth
    uint256 private _risingPrice = 5 * 10**16; // 0.05 eth
    uint256 private _priceLastChangeTime; // price last change time

    uint256 private _sheetsPerPrice = 500;

    uint256 private _batchDuration = 1 hours;

    uint256 private _publicMintLimit = 10;

    uint256 private _adminMintCount = 0;

    uint256 _startDate;

    bool _reveal = false;
    string private _strBaseTokenURI =
        "https://airdrophouses.mypinata.cloud/ipfs/QmbrBECWQEq71ty4DR9VvEGHr3bJkRv5TffdGp3Yyvq664/";
    string private _strRevealTokenURI;

    event MerkelRootChanged(uint256 _groupNum, bytes32 _merkleRoot);
    event SaleModeChanged(uint256 _saleMode);
    event RisingPriceChanged(uint256 _risingPrice);
    event SheetsPerPriceChanged(uint256 _sheetsPerPrice);
    event BatchDurationChanged(uint256 _batchDuration);
    event publicMintLimitChanged(uint256 _publicMintLimit);
    event StartDateChanged(uint256 startDate);
    event MintNFT(address indexed _to, uint256 _number);
    event BaseURIChanged(string newURI);
    event RevealURIChanged(string revealURI);
    event Reveal(bool reveal);

    constructor() ERC721("AirdropHouses #1", "ADH") {
        _merkleRoots[1][
            2
        ] = 0xe97e36fe94ab55299bd6fc71e5bb372d6c6ec3c025a12d0b3abd74262e29518b;
        _merkleRoots[1][
            4
        ] = 0xb90a60f9dfa68cbf0fcdbfb13d1ee139e231a442e0a5bc4ccae80f3f597d7277;
        _merkleRoots[1][
            10
        ] = 0x7050923a8778164983621a0ed6efcbc90fc20bfee2b8ee5e2b9550a6930acc1a;
        _merkleRoots[2][
            2
        ] = 0x6a1875ff2c5da58feeb1fcdeb70959a85adb77c3b0a175f712f330cbb9dafdb0;
        _merkleRoots[2][
            4
        ] = 0x0096fec144dba363af0fdc820b2d27ceabd6c5f39b83e02c5d33e30f9706efff;
        _merkleRoots[2][
            40
        ] = 0x4e3a914bcefca51773ee88728998a00722e923dfef44ca959a115bcf04081bf5;
        _merkleRoots[3][
            2
        ] = 0x72ce262ec9701bcef075296b04891c5a423c4aef8e67b3a7c3d2a11c9f8cbf2c;
        _merkleRoots[4][
            2
        ] = 0xdec189405e58dd32a45ea81ea92fd3801b3f57877801fc49d9ea66e749852c89;
    }

    function getCurrentTimestamp() external view returns (uint256) {
        return block.timestamp;
    }

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

    function totalCount() public pure returns (uint256) {
        return 2000;
    }

    function getTimePast() public view returns (uint256) {
        return block.timestamp - _startDate;
    }

    // get count of sheets by past time and count of sheets that are sold out
    function getLeftPresale() public view returns (uint256) {
        uint256 normalCount = totalSupply() - _adminMintCount;
        if (normalCount >= _sheetsPerPrice * 3) return 0;
        uint256 batchNum = getUnlimitedBatchNum() / 3 + 1;
        return _sheetsPerPrice * batchNum - (normalCount % _sheetsPerPrice);
    }

    function getUnlimitedBatchNum() public view returns (uint256) {
        uint256 batch = getTimePast() / _batchDuration;
        return batch;
    }

    function getBatchNum() public view returns (uint256) {
        uint256 batch = getTimePast() / _batchDuration + 1;

        return batch >= 3 ? 3 : batch;
    }

    function price() public view returns (uint256) {
        if (_saleMode == 0) {
            return _presalePrice;
        }
        if (_saleMode == 199 || _saleMode == 200 || _saleMode == 299) {
            return _publicSalePrice;
        }
        uint256 normalCount = totalSupply() - _adminMintCount;
        uint256 countLevel = normalCount / _sheetsPerPrice;
        uint256 timeLevel = getTimePast() / _batchDuration / 3;
        uint256 max = countLevel > timeLevel ? countLevel : timeLevel;

        return _presalePrice + (max >= 2 ? 2 : max) * _risingPrice;
    }

    function safeMint(address to, uint256 number) public onlyOwner {
        for (uint256 i = 0; i < number; i++) {
            uint256 tokenId = totalSupply();
            _safeMint(to, tokenId);
        }
        _adminMintCount += number;

        emit MintNFT(to, number);
        // _setTokenURI(tokenId, tokenURI(tokenId));
    }

    function _burn(uint256 _tokenId) internal override {
        super._burn(_tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for non-existent token"
        );

        string memory baseURI = _baseURI();
        if (!_reveal) return baseURI;
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        _strRevealTokenURI,
                        (tokenId + 1).toString(),
                        ".json"
                    )
                )
                : "";
    }

    function payToMint(address recipiant, uint256 number) public payable {
        require(
            (_saleMode == 200),
            _saleMode == 299
                ? "Public mint finished"
                : "Public mint not started yet!"
        );

        require(msg.value >= price() * number, "Money is not enough!");

        require(
            (number <= totalCount() - count()),
            "There are less sheets left than you want!"
        );

        require(
            (balanceOf(recipiant) + number <= _publicMintLimit),
            "You can NOT buy more than _publicMintLimit sheets!"
        );

        for (uint256 i = 0; i < number; i++) {
            uint256 newItemid = totalSupply();
            _mint(recipiant, newItemid);
        }

        emit MintNFT(recipiant, number);
    }

    function payToWhiteMint(
        address recipiant,
        uint256 limit,
        bytes32[] memory proof,
        uint256 number
    ) public payable {
        require(
            _saleMode == 100,
            _saleMode == 199 ? "Presale finished" : "Presale is not suppoted!"
        );

        require(
            totalSupply() < _sheetsPerPrice * 3,
            "Too late, all presale NFTs are sold out"
        );

        require(
            getTimePast() <= 9 * _batchDuration,
            "You are too late, presale is finished"
        ); // check if preSale is finished

        require(msg.value >= price() * number, "Money is not enough!");

        require(
            balanceOf(recipiant) + number <= limit,
            "Mint amount limitation!"
        );

        require(
            (getLeftPresale() >= number),
            "There aren't enough nfts for you in this batch!"
        );

        bool isWhitelisted = verifyWhitelist(
            getBatchNum(),
            _leaf(recipiant),
            limit,
            proof
        );

        require(isWhitelisted, "Sorry, You are not a whitelist member.");

        if (getLeftPresale() == number) {
            setLastPriceChangeTime(block.timestamp);
        }

        for (uint256 i = 0; i < number; i++) {
            uint256 newItemid = totalSupply();

            _mint(recipiant, newItemid);
        }

        emit MintNFT(recipiant, number);
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function count() public view returns (uint256) {
        return totalSupply();
    }

    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function saleMode() external view returns (uint256) {
        return _saleMode;
    }

    function sheetsPerPrice() external view returns (uint256) {
        return _sheetsPerPrice;
    }

    function batchDuration() external view returns (uint256) {
        return _batchDuration;
    }

    function fromLastPriceTimeToNow() external view returns (uint256) {
        return block.timestamp - _priceLastChangeTime;
    }

    function verifyWhitelist(
        uint256 batchNum,
        bytes32 leaf,
        uint256 limit,
        bytes32[] memory proof
    ) public view returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash < proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        for (uint256 i = 1; i <= batchNum; i++) {
            if (_merkleRoots[i][limit] == computedHash) {
                return true;
            }
        }
        return false;
        // return computedHash == _merkleRoots[batchNum][limit] ;
    }

    function setMerkleRoot(
        uint256 batchNum,
        uint256 groupNum,
        bytes32 merkleRoot
    ) external onlyOwner {
        _merkleRoots[batchNum][groupNum] = merkleRoot;

        emit MerkelRootChanged(groupNum, merkleRoot);
    }

    function setStartDate(uint256 lunchTime) private {
        _startDate = lunchTime;

        emit StartDateChanged(lunchTime);
    }

    function setLastPriceChangeTime(uint256 lastTime) private {
        _priceLastChangeTime = lastTime;
    }

    function setSaleMode(uint256 mode) external onlyOwner {
        _saleMode = mode;
        if (mode == 100) {
            setStartDate(block.timestamp);
            setLastPriceChangeTime(block.timestamp);
        }
        emit SaleModeChanged(mode);
    }

    function setRisingPrice(uint256 risingPrice) external onlyOwner {
        _risingPrice = risingPrice;

        emit RisingPriceChanged(risingPrice);
    }

    function setSheetsPerPrice(uint256 sheets) external onlyOwner {
        _sheetsPerPrice = sheets;

        emit SheetsPerPriceChanged(sheets);
    }

    function setTimePerBatch(uint256 duration) external onlyOwner {
        _batchDuration = duration;

        emit BatchDurationChanged(duration);
    }

    function setPublicMintLimit(uint256 publicMintLimit) external onlyOwner {
        _publicMintLimit = publicMintLimit;

        emit publicMintLimitChanged(publicMintLimit);
    }

    function setBaseURI(string memory newURI) external onlyOwner {
        _strBaseTokenURI = newURI;
        emit BaseURIChanged(newURI);
    }

    function setRevealURI(string memory revealURI) external onlyOwner {
        _strRevealTokenURI = revealURI;
        emit RevealURIChanged(revealURI);
    }

    function setReveal(bool reveal) external onlyOwner {
        _reveal = reveal;
        emit Reveal(reveal);
    }
}

File 2 of 14 : console.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;

library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
	}

	function logUint(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1));
	}

	function log(uint p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1));
	}

	function log(uint p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1));
	}

	function log(uint p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1));
	}

	function log(string memory p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2));
	}

	function log(uint p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2));
	}

	function log(uint p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2));
	}

	function log(uint p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2));
	}

	function log(uint p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2));
	}

	function log(uint p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2));
	}

	function log(uint p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2));
	}

	function log(uint p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2));
	}

	function log(uint p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2));
	}

	function log(uint p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2));
	}

	function log(uint p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2));
	}

	function log(uint p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2));
	}

	function log(bool p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2));
	}

	function log(bool p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2));
	}

	function log(bool p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2));
	}

	function log(address p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2));
	}

	function log(address p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2));
	}

	function log(address p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}

}

File 3 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 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 13 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 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_batchDuration","type":"uint256"}],"name":"BatchDurationChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_groupNum","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"MerkelRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_number","type":"uint256"}],"name":"MintNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"reveal","type":"bool"}],"name":"Reveal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"revealURI","type":"string"}],"name":"RevealURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_risingPrice","type":"uint256"}],"name":"RisingPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_saleMode","type":"uint256"}],"name":"SaleModeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_sheetsPerPrice","type":"uint256"}],"name":"SheetsPerPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startDate","type":"uint256"}],"name":"StartDateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_publicMintLimit","type":"uint256"}],"name":"publicMintLimitChanged","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fromLastPriceTimeToNow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBatchNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLeftPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimePast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnlimitedBatchNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipiant","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"payToMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipiant","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"payToWhiteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchNum","type":"uint256"},{"internalType":"uint256","name":"groupNum","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"risingPrice","type":"uint256"}],"name":"setRisingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setSaleMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sheets","type":"uint256"}],"name":"setSheetsPerPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"setTimePerBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sheetsPerPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchNum","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b55670214e8348c4f0000600d55670429d069189e0000600e5566b1a2bc2ec50000600f556101f4601155610e10601255600a60135560006014556000601660006101000a81548160ff02191690831515021790555060405180608001604052806059815260200162005cb960599139601790805190602001906200008e929190620004a0565b503480156200009c57600080fd5b506040518060400160405280601081526020017f41697264726f70486f75736573202331000000000000000000000000000000008152506040518060400160405280600381526020017f4144480000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000121929190620004a0565b5080600190805190602001906200013a929190620004a0565b5050506200015d62000151620003d260201b60201c565b620003da60201b60201c565b7fe97e36fe94ab55299bd6fc71e5bb372d6c6ec3c025a12d0b3abd74262e29518b60001b600c600060018152602001908152602001600020600060028152602001908152602001600020819055507fb90a60f9dfa68cbf0fcdbfb13d1ee139e231a442e0a5bc4ccae80f3f597d727760001b600c600060018152602001908152602001600020600060048152602001908152602001600020819055507f7050923a8778164983621a0ed6efcbc90fc20bfee2b8ee5e2b9550a6930acc1a60001b600c6000600181526020019081526020016000206000600a8152602001908152602001600020819055507f6a1875ff2c5da58feeb1fcdeb70959a85adb77c3b0a175f712f330cbb9dafdb060001b600c600060028152602001908152602001600020600060028152602001908152602001600020819055507e96fec144dba363af0fdc820b2d27ceabd6c5f39b83e02c5d33e30f9706efff60001b600c600060028152602001908152602001600020600060048152602001908152602001600020819055507f4e3a914bcefca51773ee88728998a00722e923dfef44ca959a115bcf04081bf560001b600c600060028152602001908152602001600020600060288152602001908152602001600020819055507f72ce262ec9701bcef075296b04891c5a423c4aef8e67b3a7c3d2a11c9f8cbf2c60001b600c600060038152602001908152602001600020600060028152602001908152602001600020819055507fdec189405e58dd32a45ea81ea92fd3801b3f57877801fc49d9ea66e749852c8960001b600c60006004815260200190815260200160002060006002815260200190815260200160002081905550620005b5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004ae9062000550565b90600052602060002090601f016020900481019282620004d257600085556200051e565b82601f10620004ed57805160ff19168380011785556200051e565b828001600101855582156200051e579182015b828111156200051d57825182559160200191906001019062000500565b5b5090506200052d919062000531565b5090565b5b808211156200054c57600081600090555060010162000532565b5090565b600060028204905060018216806200056957607f821691505b6020821081141562000580576200057f62000586565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6156f480620005c56000396000f3fe6080604052600436106102725760003560e01c80635d0e22061161014f5780639c9563a2116100c1578063c8713cc51161007a578063c8713cc51461090e578063c87b56dd1461094b578063c958518014610988578063e985e9c5146109b3578063ef3e067c146109f0578063f2fde38b14610a1957610272565b80639c9563a214610814578063a035b1fe1461083f578063a14481941461086a578063a22cb46514610893578063a811a37b146108bc578063b88d4fde146108e557610272565b8063715018a611610113578063715018a61461072a578063757415a4146107415780638da5cb5b1461076a578063926af55f1461079557806395d89b41146107c05780639b961ceb146107eb57610272565b80635d0e2206146106405780636352211e1461065c57806367d50920146106995780636c9230db146106c257806370a08231146106ed57610272565b806323b872dd116101e857806339b516aa116101ac57806339b516aa146105465780633b31526a1461056f5780633ccfd60b1461059a57806342842e0e146105b15780634f6ccce7146105da57806355f804b31461061757610272565b806323b872dd146104615780632a3f300c1461048a5780632e7cf8b0146104b35780632f745c59146104de57806334eafb111461051b57610272565b8063095ea7b31161023a578063095ea7b3146103705780630deed6a61461039957806312da217b146103c457806318160ddd146103ef5780631aa6fa0b1461041a5780631c82e5231461043657610272565b806301ffc9a71461027757806306661abd146102b457806306fdde03146102df5780630745e9ac1461030a578063081812fc14610333575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613eda565b610a42565b6040516102ab919061467a565b60405180910390f35b3480156102c057600080fd5b506102c9610abc565b6040516102d691906149f7565b60405180910390f35b3480156102eb57600080fd5b506102f4610acb565b6040516103019190614695565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613f6d565b610b5d565b005b34801561033f57600080fd5b5061035a60048036038101906103559190613f6d565b610c36565b6040516103679190614613565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613dfa565b610cbb565b005b3480156103a557600080fd5b506103ae610dd3565b6040516103bb91906149f7565b60405180910390f35b3480156103d057600080fd5b506103d9610ddd565b6040516103e691906149f7565b60405180910390f35b3480156103fb57600080fd5b50610404610e1b565b60405161041191906149f7565b60405180910390f35b610434600480360381019061042f9190613dfa565b610e28565b005b34801561044257600080fd5b5061044b61107e565b60405161045891906149f7565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613cf4565b611093565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613eb1565b6110f3565b005b3480156104bf57600080fd5b506104c86111c3565b6040516104d591906149f7565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613dfa565b6111e4565b60405161051291906149f7565b60405180910390f35b34801561052757600080fd5b50610530611289565b60405161053d91906149f7565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190613f6d565b611293565b005b34801561057b57600080fd5b50610584611350565b60405161059191906149f7565b60405180910390f35b3480156105a657600080fd5b506105af6113db565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613cf4565b6114a0565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613f6d565b6114c0565b60405161060e91906149f7565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613f2c565b611557565b005b61065a60048036038101906106559190613e36565b611624565b005b34801561066857600080fd5b50610683600480360381019061067e9190613f6d565b61198f565b6040516106909190614613565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190614011565b611a41565b005b3480156106ce57600080fd5b506106d7611b24565b6040516106e491906149f7565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613c8f565b611b2c565b60405161072191906149f7565b60405180910390f35b34801561073657600080fd5b5061073f611be4565b005b34801561074d57600080fd5b5061076860048036038101906107639190613f6d565b611c6c565b005b34801561077657600080fd5b5061077f611d29565b60405161078c9190614613565b60405180910390f35b3480156107a157600080fd5b506107aa611d53565b6040516107b791906149f7565b60405180910390f35b3480156107cc57600080fd5b506107d5611d5d565b6040516107e29190614695565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190613f6d565b611def565b005b34801561082057600080fd5b50610829611eac565b60405161083691906149f7565b60405180910390f35b34801561084b57600080fd5b50610854611eb6565b60405161086191906149f7565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613dfa565b611f95565b005b34801561089f57600080fd5b506108ba60048036038101906108b59190613dbe565b6120b2565b005b3480156108c857600080fd5b506108e360048036038101906108de9190613f2c565b6120c8565b005b3480156108f157600080fd5b5061090c60048036038101906109079190613d43565b612195565b005b34801561091a57600080fd5b5061093560048036038101906109309190613f96565b6121f7565b604051610942919061467a565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613f6d565b61232e565b60405161097f9190614695565b60405180910390f35b34801561099457600080fd5b5061099d612400565b6040516109aa91906149f7565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190613cb8565b612415565b6040516109e7919061467a565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190613f6d565b6124a9565b005b348015610a2557600080fd5b50610a406004803603810190610a3b9190613c8f565b612566565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab55750610ab48261265e565b5b9050919050565b6000610ac6610e1b565b905090565b606060008054610ada90614d1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690614d1b565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b5050505050905090565b610b65612740565b73ffffffffffffffffffffffffffffffffffffffff16610b83611d29565b73ffffffffffffffffffffffffffffffffffffffff1614610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd0906148d7565b60405180910390fd5b80600b819055506064811415610bfc57610bf242612748565b610bfb42612789565b5b7fcab9c58670efd675f37069fb32cc379dbb18f1376b4f1d1a2d01404c55bf748281604051610c2b91906149f7565b60405180910390a150565b6000610c4182612793565b610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614897565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc68261198f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90614937565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d56612740565b73ffffffffffffffffffffffffffffffffffffffff161480610d855750610d8481610d7f612740565b612415565b5b610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614817565b60405180910390fd5b610dce83836127ff565b505050565b6000600b54905090565b6000806001601254610ded61107e565b610df79190614b9c565b610e019190614b46565b90506003811015610e125780610e15565b60035b91505090565b6000600880549050905090565b60c8600b541461012b600b5414610e74576040518060400160405280601c81526020017f5075626c6963206d696e74206e6f742073746172746564207965742100000000815250610eab565b6040518060400160405280601481526020017f5075626c6963206d696e742066696e69736865640000000000000000000000008152505b90610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39190614695565b60405180910390fd5b5080610ef6611eb6565b610f009190614bcd565b341015610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906148b7565b60405180910390fd5b610f4a610abc565b610f52611289565b610f5c9190614c27565b811115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590614777565b60405180910390fd5b60135481610fab84611b2c565b610fb59190614b46565b1115610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906147f7565b60405180910390fd5b60005b8181101561102b57600061100b610e1b565b905061101784826128b8565b50808061102390614d7e565b915050610ff9565b508173ffffffffffffffffffffffffffffffffffffffff167f1f89f147a58d1673945cf416187db98efc8208408c011b91887acd59fd8523c38260405161107291906149f7565b60405180910390a25050565b60006015544261108e9190614c27565b905090565b6110a461109e612740565b82612a92565b6110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614977565b60405180910390fd5b6110ee838383612b70565b505050565b6110fb612740565b73ffffffffffffffffffffffffffffffffffffffff16611119611d29565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906148d7565b60405180910390fd5b80601660006101000a81548160ff0219169083151502179055507f311b8ddb573d97ab5a5590f8484e2573d2b1795203685605ba21e27cd69a3894816040516111b8919061467a565b60405180910390a150565b6000806012546111d161107e565b6111db9190614b9c565b90508091505090565b60006111ef83611b2c565b8210611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906146d7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006107d0905090565b61129b612740565b73ffffffffffffffffffffffffffffffffffffffff166112b9611d29565b73ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906148d7565b60405180910390fd5b80600f819055507f8495ad6bb8245e65bb8dce76e79f1fdc7908dddbd23453171745fbd6ad48e1868160405161134591906149f7565b60405180910390a150565b60008060145461135e610e1b565b6113689190614c27565b905060036011546113799190614bcd565b81106113895760009150506113d8565b6000600160036113976111c3565b6113a19190614b9c565b6113ab9190614b46565b9050601154826113bb9190614df5565b816011546113c99190614bcd565b6113d39190614c27565b925050505b90565b6113e3612740565b73ffffffffffffffffffffffffffffffffffffffff16611401611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e906148d7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561149d573d6000803e3d6000fd5b50565b6114bb83838360405180602001604052806000815250612195565b505050565b60006114ca610e1b565b821061150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614997565b60405180910390fd5b60088281548110611545577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61155f612740565b73ffffffffffffffffffffffffffffffffffffffff1661157d611d29565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca906148d7565b60405180910390fd5b80601790805190602001906115e9929190613a08565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6816040516116199190614695565b60405180910390a150565b6064600b541460c7600b541461166f576040518060400160405280601881526020017f50726573616c65206973206e6f7420737570706f7465642100000000000000008152506116a6565b6040518060400160405280601081526020017f50726573616c652066696e6973686564000000000000000000000000000000008152505b906116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de9190614695565b60405180910390fd5b5060036011546116f79190614bcd565b6116ff610e1b565b1061173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690614957565b60405180910390fd5b601254600961174e9190614bcd565b61175661107e565b1115611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906146b7565b60405180910390fd5b806117a0611eb6565b6117aa9190614bcd565b3410156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e3906148b7565b60405180910390fd5b82816117f786611b2c565b6118019190614b46565b1115611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906148f7565b60405180910390fd5b8061184b611350565b101561188c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611883906149d7565b60405180910390fd5b60006118a9611899610ddd565b6118a287612dd7565b86866121f7565b9050806118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290614917565b60405180910390fd5b816118f4611350565b14156119045761190342612789565b5b60005b82811015611939576000611919610e1b565b905061192587826128b8565b50808061193190614d7e565b915050611907565b508473ffffffffffffffffffffffffffffffffffffffff167f1f89f147a58d1673945cf416187db98efc8208408c011b91887acd59fd8523c38360405161198091906149f7565b60405180910390a25050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90614857565b60405180910390fd5b80915050919050565b611a49612740565b73ffffffffffffffffffffffffffffffffffffffff16611a67611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906148d7565b60405180910390fd5b80600c60008581526020019081526020016000206000848152602001908152602001600020819055507f326c4fb4b40f17ba7e065a70f4368691128199363ab7a9a7e9677f50b2b5b1308282604051611b17929190614a12565b60405180910390a1505050565b600042905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490614837565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bec612740565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906148d7565b60405180910390fd5b611c6a6000612e07565b565b611c74612740565b73ffffffffffffffffffffffffffffffffffffffff16611c92611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf906148d7565b60405180910390fd5b806012819055507fe7d683309f8964a9b4e2b4fb63bea677e04453be654e25ed55ec6a458348f04081604051611d1e91906149f7565b60405180910390a150565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601154905090565b606060018054611d6c90614d1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9890614d1b565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b611df7612740565b73ffffffffffffffffffffffffffffffffffffffff16611e15611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e62906148d7565b60405180910390fd5b806011819055507f6bee2141d443a3d4859763efbb7f2c38181cf9d5dac82476eedf037736ca748681604051611ea191906149f7565b60405180910390a150565b6000601254905090565b600080600b541415611ecc57600d549050611f92565b60c7600b541480611edf575060c8600b54145b80611eed575061012b600b54145b15611efc57600e549050611f92565b6000601454611f09610e1b565b611f139190614c27565b9050600060115482611f259190614b9c565b905060006003601254611f3661107e565b611f409190614b9c565b611f4a9190614b9c565b90506000818311611f5b5781611f5d565b825b9050600f546002821015611f715781611f74565b60025b611f7e9190614bcd565b600d54611f8b9190614b46565b9450505050505b90565b611f9d612740565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611d29565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906148d7565b60405180910390fd5b60005b81811015612046576000612026610e1b565b90506120328482612ecd565b50808061203e90614d7e565b915050612014565b5080601460008282546120599190614b46565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f1f89f147a58d1673945cf416187db98efc8208408c011b91887acd59fd8523c3826040516120a691906149f7565b60405180910390a25050565b6120c46120bd612740565b8383612eeb565b5050565b6120d0612740565b73ffffffffffffffffffffffffffffffffffffffff166120ee611d29565b73ffffffffffffffffffffffffffffffffffffffff1614612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b906148d7565b60405180910390fd5b806018908051906020019061215a929190613a08565b507ff4151fcc2607f80a8da4abef10266a627165bad20adef1d44ed12ed33af3e6a98160405161218a9190614695565b60405180910390a150565b6121a66121a0612740565b83612a92565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614977565b60405180910390fd5b6121f184848484613058565b50505050565b60008084905060005b83518110156122c6576000848281518110612244577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808310156122865782816040516020016122699291906145b8565b6040516020818303038152906040528051906020012092506122b2565b80836040516020016122999291906145b8565b6040516020818303038152906040528051906020012092505b5080806122be90614d7e565b915050612200565b506000600190505b86811161231f5781600c6000838152602001908152602001600020600087815260200190815260200160002054141561230c57600192505050612326565b808061231790614d7e565b9150506122ce565b5060009150505b949350505050565b606061233982612793565b612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236f906149b7565b60405180910390fd5b60006123826130b4565b9050601660009054906101000a900460ff166123a157809150506123fb565b60008151116123bf57604051806020016040528060008152506123f7565b60186123d66001856123d19190614b46565b613146565b6040516020016123e79291906145e4565b6040516020818303038152906040525b9150505b919050565b6000601054426124109190614c27565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124b1612740565b73ffffffffffffffffffffffffffffffffffffffff166124cf611d29565b73ffffffffffffffffffffffffffffffffffffffff1614612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c906148d7565b60405180910390fd5b806013819055507f925f0509f81489238c7d12ec8acec9e0cc410642391ee2a6ca38b3197637f89a8160405161255b91906149f7565b60405180910390a150565b61256e612740565b73ffffffffffffffffffffffffffffffffffffffff1661258c611d29565b73ffffffffffffffffffffffffffffffffffffffff16146125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d9906148d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614717565b60405180910390fd5b61265b81612e07565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061272957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127395750612738826132f3565b5b9050919050565b600033905090565b806015819055507f340656eb96ec8f1ab4ba468e243fe2191f09ec5e2a832f96985750414221a7a58160405161277e91906149f7565b60405180910390a150565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128728361198f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90614877565b60405180910390fd5b61293181612793565b15612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890614757565b60405180910390fd5b61297d6000838361335d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129cd9190614b46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8e60008383613471565b5050565b6000612a9d82612793565b612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad3906147d7565b60405180910390fd5b6000612ae78361198f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b5657508373ffffffffffffffffffffffffffffffffffffffff16612b3e84610c36565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b675750612b668185612415565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b908261198f565b73ffffffffffffffffffffffffffffffffffffffff1614612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614737565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90614797565b60405180910390fd5b612c6183838361335d565b612c6c6000826127ff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cbc9190614c27565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d139190614b46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd2838383613471565b505050565b600081604051602001612dea919061459d565b604051602081830303815290604052805190602001209050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ee7828260405180602001604052806000815250613476565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f51906147b7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161304b919061467a565b60405180910390a3505050565b613063848484612b70565b61306f848484846134d1565b6130ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a5906146f7565b60405180910390fd5b50505050565b6060601780546130c390614d1b565b80601f01602080910402602001604051908101604052809291908181526020018280546130ef90614d1b565b801561313c5780601f106131115761010080835404028352916020019161313c565b820191906000526020600020905b81548152906001019060200180831161311f57829003601f168201915b5050505050905090565b6060600082141561318e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132ee565b600082905060005b600082146131c05780806131a990614d7e565b915050600a826131b99190614b9c565b9150613196565b60008167ffffffffffffffff811115613202577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132345781602001600182028036833780820191505090505b5090505b600085146132e75760018261324d9190614c27565b9150600a8561325c9190614df5565b60306132689190614b46565b60f81b8183815181106132a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132e09190614b9c565b9450613238565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613368838383613668565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133ab576133a68161366d565b6133ea565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133e9576133e883826136b6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561342d5761342881613823565b61346c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461346b5761346a8282613966565b5b5b505050565b505050565b61348083836128b8565b61348d60008484846134d1565b6134cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c3906146f7565b60405180910390fd5b505050565b60006134f28473ffffffffffffffffffffffffffffffffffffffff166139e5565b1561365b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261351b612740565b8786866040518563ffffffff1660e01b815260040161353d949392919061462e565b602060405180830381600087803b15801561355757600080fd5b505af192505050801561358857506040513d601f19601f820116820180604052508101906135859190613f03565b60015b61360b573d80600081146135b8576040519150601f19603f3d011682016040523d82523d6000602084013e6135bd565b606091505b50600081511415613603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fa906146f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613660565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136c384611b2c565b6136cd9190614c27565b90506000600760008481526020019081526020016000205490508181146137b2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138379190614c27565b905060006009600084815260200190815260200160002054905060006008838154811061388d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106138d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061394a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061397183611b2c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613a1490614d1b565b90600052602060002090601f016020900481019282613a365760008555613a7d565b82601f10613a4f57805160ff1916838001178555613a7d565b82800160010185558215613a7d579182015b82811115613a7c578251825591602001919060010190613a61565b5b509050613a8a9190613a8e565b5090565b5b80821115613aa7576000816000905550600101613a8f565b5090565b6000613abe613ab984614a60565b614a3b565b90508083825260208201905082856020860282011115613add57600080fd5b60005b85811015613b0d5781613af38882613be7565b845260208401935060208301925050600181019050613ae0565b5050509392505050565b6000613b2a613b2584614a8c565b614a3b565b905082815260208101848484011115613b4257600080fd5b613b4d848285614cd9565b509392505050565b6000613b68613b6384614abd565b614a3b565b905082815260208101848484011115613b8057600080fd5b613b8b848285614cd9565b509392505050565b600081359050613ba28161564b565b92915050565b600082601f830112613bb957600080fd5b8135613bc9848260208601613aab565b91505092915050565b600081359050613be181615662565b92915050565b600081359050613bf681615679565b92915050565b600081359050613c0b81615690565b92915050565b600081519050613c2081615690565b92915050565b600082601f830112613c3757600080fd5b8135613c47848260208601613b17565b91505092915050565b600082601f830112613c6157600080fd5b8135613c71848260208601613b55565b91505092915050565b600081359050613c89816156a7565b92915050565b600060208284031215613ca157600080fd5b6000613caf84828501613b93565b91505092915050565b60008060408385031215613ccb57600080fd5b6000613cd985828601613b93565b9250506020613cea85828601613b93565b9150509250929050565b600080600060608486031215613d0957600080fd5b6000613d1786828701613b93565b9350506020613d2886828701613b93565b9250506040613d3986828701613c7a565b9150509250925092565b60008060008060808587031215613d5957600080fd5b6000613d6787828801613b93565b9450506020613d7887828801613b93565b9350506040613d8987828801613c7a565b925050606085013567ffffffffffffffff811115613da657600080fd5b613db287828801613c26565b91505092959194509250565b60008060408385031215613dd157600080fd5b6000613ddf85828601613b93565b9250506020613df085828601613bd2565b9150509250929050565b60008060408385031215613e0d57600080fd5b6000613e1b85828601613b93565b9250506020613e2c85828601613c7a565b9150509250929050565b60008060008060808587031215613e4c57600080fd5b6000613e5a87828801613b93565b9450506020613e6b87828801613c7a565b935050604085013567ffffffffffffffff811115613e8857600080fd5b613e9487828801613ba8565b9250506060613ea587828801613c7a565b91505092959194509250565b600060208284031215613ec357600080fd5b6000613ed184828501613bd2565b91505092915050565b600060208284031215613eec57600080fd5b6000613efa84828501613bfc565b91505092915050565b600060208284031215613f1557600080fd5b6000613f2384828501613c11565b91505092915050565b600060208284031215613f3e57600080fd5b600082013567ffffffffffffffff811115613f5857600080fd5b613f6484828501613c50565b91505092915050565b600060208284031215613f7f57600080fd5b6000613f8d84828501613c7a565b91505092915050565b60008060008060808587031215613fac57600080fd5b6000613fba87828801613c7a565b9450506020613fcb87828801613be7565b9350506040613fdc87828801613c7a565b925050606085013567ffffffffffffffff811115613ff957600080fd5b61400587828801613ba8565b91505092959194509250565b60008060006060848603121561402657600080fd5b600061403486828701613c7a565b935050602061404586828701613c7a565b925050604061405686828701613be7565b9150509250925092565b61406981614c5b565b82525050565b61408061407b82614c5b565b614dc7565b82525050565b61408f81614c6d565b82525050565b61409e81614c79565b82525050565b6140b56140b082614c79565b614dd9565b82525050565b60006140c682614b03565b6140d08185614b19565b93506140e0818560208601614ce8565b6140e981614ee2565b840191505092915050565b60006140ff82614b0e565b6141098185614b2a565b9350614119818560208601614ce8565b61412281614ee2565b840191505092915050565b600061413882614b0e565b6141428185614b3b565b9350614152818560208601614ce8565b80840191505092915050565b6000815461416b81614d1b565b6141758186614b3b565b9450600182166000811461419057600181146141a1576141d4565b60ff198316865281860193506141d4565b6141aa85614aee565b60005b838110156141cc578154818901526001820191506020810190506141ad565b838801955050505b50505092915050565b60006141ea602583614b2a565b91506141f582614f00565b604082019050919050565b600061420d602b83614b2a565b915061421882614f4f565b604082019050919050565b6000614230603283614b2a565b915061423b82614f9e565b604082019050919050565b6000614253602683614b2a565b915061425e82614fed565b604082019050919050565b6000614276602583614b2a565b91506142818261503c565b604082019050919050565b6000614299601c83614b2a565b91506142a48261508b565b602082019050919050565b60006142bc602983614b2a565b91506142c7826150b4565b604082019050919050565b60006142df602483614b2a565b91506142ea82615103565b604082019050919050565b6000614302601983614b2a565b915061430d82615152565b602082019050919050565b6000614325602c83614b2a565b91506143308261517b565b604082019050919050565b6000614348603283614b2a565b9150614353826151ca565b604082019050919050565b600061436b603883614b2a565b915061437682615219565b604082019050919050565b600061438e602a83614b2a565b915061439982615268565b604082019050919050565b60006143b1602983614b2a565b91506143bc826152b7565b604082019050919050565b60006143d4602083614b2a565b91506143df82615306565b602082019050919050565b60006143f7602c83614b2a565b91506144028261532f565b604082019050919050565b600061441a600583614b3b565b91506144258261537e565b600582019050919050565b600061443d601483614b2a565b9150614448826153a7565b602082019050919050565b6000614460602083614b2a565b915061446b826153d0565b602082019050919050565b6000614483601783614b2a565b915061448e826153f9565b602082019050919050565b60006144a6602683614b2a565b91506144b182615422565b604082019050919050565b60006144c9602183614b2a565b91506144d482615471565b604082019050919050565b60006144ec602783614b2a565b91506144f7826154c0565b604082019050919050565b600061450f603183614b2a565b915061451a8261550f565b604082019050919050565b6000614532602c83614b2a565b915061453d8261555e565b604082019050919050565b6000614555603083614b2a565b9150614560826155ad565b604082019050919050565b6000614578602f83614b2a565b9150614583826155fc565b604082019050919050565b61459781614ccf565b82525050565b60006145a9828461406f565b60148201915081905092915050565b60006145c482856140a4565b6020820191506145d482846140a4565b6020820191508190509392505050565b60006145f0828561415e565b91506145fc828461412d565b91506146078261440d565b91508190509392505050565b60006020820190506146286000830184614060565b92915050565b60006080820190506146436000830187614060565b6146506020830186614060565b61465d604083018561458e565b818103606083015261466f81846140bb565b905095945050505050565b600060208201905061468f6000830184614086565b92915050565b600060208201905081810360008301526146af81846140f4565b905092915050565b600060208201905081810360008301526146d0816141dd565b9050919050565b600060208201905081810360008301526146f081614200565b9050919050565b6000602082019050818103600083015261471081614223565b9050919050565b6000602082019050818103600083015261473081614246565b9050919050565b6000602082019050818103600083015261475081614269565b9050919050565b600060208201905081810360008301526147708161428c565b9050919050565b60006020820190508181036000830152614790816142af565b9050919050565b600060208201905081810360008301526147b0816142d2565b9050919050565b600060208201905081810360008301526147d0816142f5565b9050919050565b600060208201905081810360008301526147f081614318565b9050919050565b600060208201905081810360008301526148108161433b565b9050919050565b600060208201905081810360008301526148308161435e565b9050919050565b6000602082019050818103600083015261485081614381565b9050919050565b60006020820190508181036000830152614870816143a4565b9050919050565b60006020820190508181036000830152614890816143c7565b9050919050565b600060208201905081810360008301526148b0816143ea565b9050919050565b600060208201905081810360008301526148d081614430565b9050919050565b600060208201905081810360008301526148f081614453565b9050919050565b6000602082019050818103600083015261491081614476565b9050919050565b6000602082019050818103600083015261493081614499565b9050919050565b60006020820190508181036000830152614950816144bc565b9050919050565b60006020820190508181036000830152614970816144df565b9050919050565b6000602082019050818103600083015261499081614502565b9050919050565b600060208201905081810360008301526149b081614525565b9050919050565b600060208201905081810360008301526149d081614548565b9050919050565b600060208201905081810360008301526149f08161456b565b9050919050565b6000602082019050614a0c600083018461458e565b92915050565b6000604082019050614a27600083018561458e565b614a346020830184614095565b9392505050565b6000614a45614a56565b9050614a518282614d4d565b919050565b6000604051905090565b600067ffffffffffffffff821115614a7b57614a7a614eb3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614aa757614aa6614eb3565b5b614ab082614ee2565b9050602081019050919050565b600067ffffffffffffffff821115614ad857614ad7614eb3565b5b614ae182614ee2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5182614ccf565b9150614b5c83614ccf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9157614b90614e26565b5b828201905092915050565b6000614ba782614ccf565b9150614bb283614ccf565b925082614bc257614bc1614e55565b5b828204905092915050565b6000614bd882614ccf565b9150614be383614ccf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c1c57614c1b614e26565b5b828202905092915050565b6000614c3282614ccf565b9150614c3d83614ccf565b925082821015614c5057614c4f614e26565b5b828203905092915050565b6000614c6682614caf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d06578082015181840152602081019050614ceb565b83811115614d15576000848401525b50505050565b60006002820490506001821680614d3357607f821691505b60208210811415614d4757614d46614e84565b5b50919050565b614d5682614ee2565b810181811067ffffffffffffffff82111715614d7557614d74614eb3565b5b80604052505050565b6000614d8982614ccf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dbc57614dbb614e26565b5b600182019050919050565b6000614dd282614de3565b9050919050565b6000819050919050565b6000614dee82614ef3565b9050919050565b6000614e0082614ccf565b9150614e0b83614ccf565b925082614e1b57614e1a614e55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f752061726520746f6f206c6174652c2070726573616c652069732066696e60008201527f6973686564000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546865726520617265206c65737320736865657473206c656674207468616e2060008201527f796f752077616e74210000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e204e4f5420627579206d6f7265207468616e205f7075626c6960008201527f634d696e744c696d697420736865657473210000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4d6f6e6579206973206e6f7420656e6f75676821000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e7420616d6f756e74206c696d69746174696f6e21000000000000000000600082015250565b7f536f7272792c20596f7520617265206e6f7420612077686974656c697374206d60008201527f656d6265722e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206c6174652c20616c6c2070726573616c65204e46547320617265207360008201527f6f6c64206f757400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e2d6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f5468657265206172656e277420656e6f756768206e66747320666f7220796f7560008201527f20696e2074686973206261746368210000000000000000000000000000000000602082015250565b61565481614c5b565b811461565f57600080fd5b50565b61566b81614c6d565b811461567657600080fd5b50565b61568281614c79565b811461568d57600080fd5b50565b61569981614c83565b81146156a457600080fd5b50565b6156b081614ccf565b81146156bb57600080fd5b5056fea2646970667358221220efb9529844d4f0bc7d176e971f17d363d4f25574f29800243f39d8eff01b27b464736f6c6343000804003368747470733a2f2f61697264726f70686f757365732e6d7970696e6174612e636c6f75642f697066732f516d627242454357514571373174793444523956764547487233624a6b52763554666664477033597976713636342f

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635d0e22061161014f5780639c9563a2116100c1578063c8713cc51161007a578063c8713cc51461090e578063c87b56dd1461094b578063c958518014610988578063e985e9c5146109b3578063ef3e067c146109f0578063f2fde38b14610a1957610272565b80639c9563a214610814578063a035b1fe1461083f578063a14481941461086a578063a22cb46514610893578063a811a37b146108bc578063b88d4fde146108e557610272565b8063715018a611610113578063715018a61461072a578063757415a4146107415780638da5cb5b1461076a578063926af55f1461079557806395d89b41146107c05780639b961ceb146107eb57610272565b80635d0e2206146106405780636352211e1461065c57806367d50920146106995780636c9230db146106c257806370a08231146106ed57610272565b806323b872dd116101e857806339b516aa116101ac57806339b516aa146105465780633b31526a1461056f5780633ccfd60b1461059a57806342842e0e146105b15780634f6ccce7146105da57806355f804b31461061757610272565b806323b872dd146104615780632a3f300c1461048a5780632e7cf8b0146104b35780632f745c59146104de57806334eafb111461051b57610272565b8063095ea7b31161023a578063095ea7b3146103705780630deed6a61461039957806312da217b146103c457806318160ddd146103ef5780631aa6fa0b1461041a5780631c82e5231461043657610272565b806301ffc9a71461027757806306661abd146102b457806306fdde03146102df5780630745e9ac1461030a578063081812fc14610333575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613eda565b610a42565b6040516102ab919061467a565b60405180910390f35b3480156102c057600080fd5b506102c9610abc565b6040516102d691906149f7565b60405180910390f35b3480156102eb57600080fd5b506102f4610acb565b6040516103019190614695565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190613f6d565b610b5d565b005b34801561033f57600080fd5b5061035a60048036038101906103559190613f6d565b610c36565b6040516103679190614613565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613dfa565b610cbb565b005b3480156103a557600080fd5b506103ae610dd3565b6040516103bb91906149f7565b60405180910390f35b3480156103d057600080fd5b506103d9610ddd565b6040516103e691906149f7565b60405180910390f35b3480156103fb57600080fd5b50610404610e1b565b60405161041191906149f7565b60405180910390f35b610434600480360381019061042f9190613dfa565b610e28565b005b34801561044257600080fd5b5061044b61107e565b60405161045891906149f7565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613cf4565b611093565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613eb1565b6110f3565b005b3480156104bf57600080fd5b506104c86111c3565b6040516104d591906149f7565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613dfa565b6111e4565b60405161051291906149f7565b60405180910390f35b34801561052757600080fd5b50610530611289565b60405161053d91906149f7565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190613f6d565b611293565b005b34801561057b57600080fd5b50610584611350565b60405161059191906149f7565b60405180910390f35b3480156105a657600080fd5b506105af6113db565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613cf4565b6114a0565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613f6d565b6114c0565b60405161060e91906149f7565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613f2c565b611557565b005b61065a60048036038101906106559190613e36565b611624565b005b34801561066857600080fd5b50610683600480360381019061067e9190613f6d565b61198f565b6040516106909190614613565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190614011565b611a41565b005b3480156106ce57600080fd5b506106d7611b24565b6040516106e491906149f7565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613c8f565b611b2c565b60405161072191906149f7565b60405180910390f35b34801561073657600080fd5b5061073f611be4565b005b34801561074d57600080fd5b5061076860048036038101906107639190613f6d565b611c6c565b005b34801561077657600080fd5b5061077f611d29565b60405161078c9190614613565b60405180910390f35b3480156107a157600080fd5b506107aa611d53565b6040516107b791906149f7565b60405180910390f35b3480156107cc57600080fd5b506107d5611d5d565b6040516107e29190614695565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190613f6d565b611def565b005b34801561082057600080fd5b50610829611eac565b60405161083691906149f7565b60405180910390f35b34801561084b57600080fd5b50610854611eb6565b60405161086191906149f7565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613dfa565b611f95565b005b34801561089f57600080fd5b506108ba60048036038101906108b59190613dbe565b6120b2565b005b3480156108c857600080fd5b506108e360048036038101906108de9190613f2c565b6120c8565b005b3480156108f157600080fd5b5061090c60048036038101906109079190613d43565b612195565b005b34801561091a57600080fd5b5061093560048036038101906109309190613f96565b6121f7565b604051610942919061467a565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613f6d565b61232e565b60405161097f9190614695565b60405180910390f35b34801561099457600080fd5b5061099d612400565b6040516109aa91906149f7565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190613cb8565b612415565b6040516109e7919061467a565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190613f6d565b6124a9565b005b348015610a2557600080fd5b50610a406004803603810190610a3b9190613c8f565b612566565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab55750610ab48261265e565b5b9050919050565b6000610ac6610e1b565b905090565b606060008054610ada90614d1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690614d1b565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b5050505050905090565b610b65612740565b73ffffffffffffffffffffffffffffffffffffffff16610b83611d29565b73ffffffffffffffffffffffffffffffffffffffff1614610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd0906148d7565b60405180910390fd5b80600b819055506064811415610bfc57610bf242612748565b610bfb42612789565b5b7fcab9c58670efd675f37069fb32cc379dbb18f1376b4f1d1a2d01404c55bf748281604051610c2b91906149f7565b60405180910390a150565b6000610c4182612793565b610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614897565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc68261198f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90614937565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d56612740565b73ffffffffffffffffffffffffffffffffffffffff161480610d855750610d8481610d7f612740565b612415565b5b610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614817565b60405180910390fd5b610dce83836127ff565b505050565b6000600b54905090565b6000806001601254610ded61107e565b610df79190614b9c565b610e019190614b46565b90506003811015610e125780610e15565b60035b91505090565b6000600880549050905090565b60c8600b541461012b600b5414610e74576040518060400160405280601c81526020017f5075626c6963206d696e74206e6f742073746172746564207965742100000000815250610eab565b6040518060400160405280601481526020017f5075626c6963206d696e742066696e69736865640000000000000000000000008152505b90610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39190614695565b60405180910390fd5b5080610ef6611eb6565b610f009190614bcd565b341015610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906148b7565b60405180910390fd5b610f4a610abc565b610f52611289565b610f5c9190614c27565b811115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590614777565b60405180910390fd5b60135481610fab84611b2c565b610fb59190614b46565b1115610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906147f7565b60405180910390fd5b60005b8181101561102b57600061100b610e1b565b905061101784826128b8565b50808061102390614d7e565b915050610ff9565b508173ffffffffffffffffffffffffffffffffffffffff167f1f89f147a58d1673945cf416187db98efc8208408c011b91887acd59fd8523c38260405161107291906149f7565b60405180910390a25050565b60006015544261108e9190614c27565b905090565b6110a461109e612740565b82612a92565b6110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614977565b60405180910390fd5b6110ee838383612b70565b505050565b6110fb612740565b73ffffffffffffffffffffffffffffffffffffffff16611119611d29565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906148d7565b60405180910390fd5b80601660006101000a81548160ff0219169083151502179055507f311b8ddb573d97ab5a5590f8484e2573d2b1795203685605ba21e27cd69a3894816040516111b8919061467a565b60405180910390a150565b6000806012546111d161107e565b6111db9190614b9c565b90508091505090565b60006111ef83611b2c565b8210611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906146d7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006107d0905090565b61129b612740565b73ffffffffffffffffffffffffffffffffffffffff166112b9611d29565b73ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906148d7565b60405180910390fd5b80600f819055507f8495ad6bb8245e65bb8dce76e79f1fdc7908dddbd23453171745fbd6ad48e1868160405161134591906149f7565b60405180910390a150565b60008060145461135e610e1b565b6113689190614c27565b905060036011546113799190614bcd565b81106113895760009150506113d8565b6000600160036113976111c3565b6113a19190614b9c565b6113ab9190614b46565b9050601154826113bb9190614df5565b816011546113c99190614bcd565b6113d39190614c27565b925050505b90565b6113e3612740565b73ffffffffffffffffffffffffffffffffffffffff16611401611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e906148d7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561149d573d6000803e3d6000fd5b50565b6114bb83838360405180602001604052806000815250612195565b505050565b60006114ca610e1b565b821061150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614997565b60405180910390fd5b60088281548110611545577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61155f612740565b73ffffffffffffffffffffffffffffffffffffffff1661157d611d29565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca906148d7565b60405180910390fd5b80601790805190602001906115e9929190613a08565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6816040516116199190614695565b60405180910390a150565b6064600b541460c7600b541461166f576040518060400160405280601881526020017f50726573616c65206973206e6f7420737570706f7465642100000000000000008152506116a6565b6040518060400160405280601081526020017f50726573616c652066696e6973686564000000000000000000000000000000008152505b906116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de9190614695565b60405180910390fd5b5060036011546116f79190614bcd565b6116ff610e1b565b1061173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690614957565b60405180910390fd5b601254600961174e9190614bcd565b61175661107e565b1115611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906146b7565b60405180910390fd5b806117a0611eb6565b6117aa9190614bcd565b3410156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e3906148b7565b60405180910390fd5b82816117f786611b2c565b6118019190614b46565b1115611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906148f7565b60405180910390fd5b8061184b611350565b101561188c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611883906149d7565b60405180910390fd5b60006118a9611899610ddd565b6118a287612dd7565b86866121f7565b9050806118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290614917565b60405180910390fd5b816118f4611350565b14156119045761190342612789565b5b60005b82811015611939576000611919610e1b565b905061192587826128b8565b50808061193190614d7e565b915050611907565b508473ffffffffffffffffffffffffffffffffffffffff167f1f89f147a58d1673945cf416187db98efc8208408c011b91887acd59fd8523c38360405161198091906149f7565b60405180910390a25050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90614857565b60405180910390fd5b80915050919050565b611a49612740565b73ffffffffffffffffffffffffffffffffffffffff16611a67611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906148d7565b60405180910390fd5b80600c60008581526020019081526020016000206000848152602001908152602001600020819055507f326c4fb4b40f17ba7e065a70f4368691128199363ab7a9a7e9677f50b2b5b1308282604051611b17929190614a12565b60405180910390a1505050565b600042905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490614837565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bec612740565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906148d7565b60405180910390fd5b611c6a6000612e07565b565b611c74612740565b73ffffffffffffffffffffffffffffffffffffffff16611c92611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf906148d7565b60405180910390fd5b806012819055507fe7d683309f8964a9b4e2b4fb63bea677e04453be654e25ed55ec6a458348f04081604051611d1e91906149f7565b60405180910390a150565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601154905090565b606060018054611d6c90614d1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9890614d1b565b8015611de55780601f10611dba57610100808354040283529160200191611de5565b820191906000526020600020905b815481529060010190602001808311611dc857829003601f168201915b5050505050905090565b611df7612740565b73ffffffffffffffffffffffffffffffffffffffff16611e15611d29565b73ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e62906148d7565b60405180910390fd5b806011819055507f6bee2141d443a3d4859763efbb7f2c38181cf9d5dac82476eedf037736ca748681604051611ea191906149f7565b60405180910390a150565b6000601254905090565b600080600b541415611ecc57600d549050611f92565b60c7600b541480611edf575060c8600b54145b80611eed575061012b600b54145b15611efc57600e549050611f92565b6000601454611f09610e1b565b611f139190614c27565b9050600060115482611f259190614b9c565b905060006003601254611f3661107e565b611f409190614b9c565b611f4a9190614b9c565b90506000818311611f5b5781611f5d565b825b9050600f546002821015611f715781611f74565b60025b611f7e9190614bcd565b600d54611f8b9190614b46565b9450505050505b90565b611f9d612740565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611d29565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906148d7565b60405180910390fd5b60005b81811015612046576000612026610e1b565b90506120328482612ecd565b50808061203e90614d7e565b915050612014565b5080601460008282546120599190614b46565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f1f89f147a58d1673945cf416187db98efc8208408c011b91887acd59fd8523c3826040516120a691906149f7565b60405180910390a25050565b6120c46120bd612740565b8383612eeb565b5050565b6120d0612740565b73ffffffffffffffffffffffffffffffffffffffff166120ee611d29565b73ffffffffffffffffffffffffffffffffffffffff1614612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b906148d7565b60405180910390fd5b806018908051906020019061215a929190613a08565b507ff4151fcc2607f80a8da4abef10266a627165bad20adef1d44ed12ed33af3e6a98160405161218a9190614695565b60405180910390a150565b6121a66121a0612740565b83612a92565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614977565b60405180910390fd5b6121f184848484613058565b50505050565b60008084905060005b83518110156122c6576000848281518110612244577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808310156122865782816040516020016122699291906145b8565b6040516020818303038152906040528051906020012092506122b2565b80836040516020016122999291906145b8565b6040516020818303038152906040528051906020012092505b5080806122be90614d7e565b915050612200565b506000600190505b86811161231f5781600c6000838152602001908152602001600020600087815260200190815260200160002054141561230c57600192505050612326565b808061231790614d7e565b9150506122ce565b5060009150505b949350505050565b606061233982612793565b612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236f906149b7565b60405180910390fd5b60006123826130b4565b9050601660009054906101000a900460ff166123a157809150506123fb565b60008151116123bf57604051806020016040528060008152506123f7565b60186123d66001856123d19190614b46565b613146565b6040516020016123e79291906145e4565b6040516020818303038152906040525b9150505b919050565b6000601054426124109190614c27565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124b1612740565b73ffffffffffffffffffffffffffffffffffffffff166124cf611d29565b73ffffffffffffffffffffffffffffffffffffffff1614612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c906148d7565b60405180910390fd5b806013819055507f925f0509f81489238c7d12ec8acec9e0cc410642391ee2a6ca38b3197637f89a8160405161255b91906149f7565b60405180910390a150565b61256e612740565b73ffffffffffffffffffffffffffffffffffffffff1661258c611d29565b73ffffffffffffffffffffffffffffffffffffffff16146125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d9906148d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614717565b60405180910390fd5b61265b81612e07565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061272957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127395750612738826132f3565b5b9050919050565b600033905090565b806015819055507f340656eb96ec8f1ab4ba468e243fe2191f09ec5e2a832f96985750414221a7a58160405161277e91906149f7565b60405180910390a150565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128728361198f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f90614877565b60405180910390fd5b61293181612793565b15612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890614757565b60405180910390fd5b61297d6000838361335d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129cd9190614b46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8e60008383613471565b5050565b6000612a9d82612793565b612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad3906147d7565b60405180910390fd5b6000612ae78361198f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b5657508373ffffffffffffffffffffffffffffffffffffffff16612b3e84610c36565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b675750612b668185612415565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b908261198f565b73ffffffffffffffffffffffffffffffffffffffff1614612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614737565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90614797565b60405180910390fd5b612c6183838361335d565b612c6c6000826127ff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cbc9190614c27565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d139190614b46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd2838383613471565b505050565b600081604051602001612dea919061459d565b604051602081830303815290604052805190602001209050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ee7828260405180602001604052806000815250613476565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f51906147b7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161304b919061467a565b60405180910390a3505050565b613063848484612b70565b61306f848484846134d1565b6130ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a5906146f7565b60405180910390fd5b50505050565b6060601780546130c390614d1b565b80601f01602080910402602001604051908101604052809291908181526020018280546130ef90614d1b565b801561313c5780601f106131115761010080835404028352916020019161313c565b820191906000526020600020905b81548152906001019060200180831161311f57829003601f168201915b5050505050905090565b6060600082141561318e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132ee565b600082905060005b600082146131c05780806131a990614d7e565b915050600a826131b99190614b9c565b9150613196565b60008167ffffffffffffffff811115613202577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132345781602001600182028036833780820191505090505b5090505b600085146132e75760018261324d9190614c27565b9150600a8561325c9190614df5565b60306132689190614b46565b60f81b8183815181106132a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132e09190614b9c565b9450613238565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613368838383613668565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133ab576133a68161366d565b6133ea565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133e9576133e883826136b6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561342d5761342881613823565b61346c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461346b5761346a8282613966565b5b5b505050565b505050565b61348083836128b8565b61348d60008484846134d1565b6134cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c3906146f7565b60405180910390fd5b505050565b60006134f28473ffffffffffffffffffffffffffffffffffffffff166139e5565b1561365b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261351b612740565b8786866040518563ffffffff1660e01b815260040161353d949392919061462e565b602060405180830381600087803b15801561355757600080fd5b505af192505050801561358857506040513d601f19601f820116820180604052508101906135859190613f03565b60015b61360b573d80600081146135b8576040519150601f19603f3d011682016040523d82523d6000602084013e6135bd565b606091505b50600081511415613603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fa906146f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613660565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136c384611b2c565b6136cd9190614c27565b90506000600760008481526020019081526020016000205490508181146137b2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138379190614c27565b905060006009600084815260200190815260200160002054905060006008838154811061388d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106138d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061394a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061397183611b2c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613a1490614d1b565b90600052602060002090601f016020900481019282613a365760008555613a7d565b82601f10613a4f57805160ff1916838001178555613a7d565b82800160010185558215613a7d579182015b82811115613a7c578251825591602001919060010190613a61565b5b509050613a8a9190613a8e565b5090565b5b80821115613aa7576000816000905550600101613a8f565b5090565b6000613abe613ab984614a60565b614a3b565b90508083825260208201905082856020860282011115613add57600080fd5b60005b85811015613b0d5781613af38882613be7565b845260208401935060208301925050600181019050613ae0565b5050509392505050565b6000613b2a613b2584614a8c565b614a3b565b905082815260208101848484011115613b4257600080fd5b613b4d848285614cd9565b509392505050565b6000613b68613b6384614abd565b614a3b565b905082815260208101848484011115613b8057600080fd5b613b8b848285614cd9565b509392505050565b600081359050613ba28161564b565b92915050565b600082601f830112613bb957600080fd5b8135613bc9848260208601613aab565b91505092915050565b600081359050613be181615662565b92915050565b600081359050613bf681615679565b92915050565b600081359050613c0b81615690565b92915050565b600081519050613c2081615690565b92915050565b600082601f830112613c3757600080fd5b8135613c47848260208601613b17565b91505092915050565b600082601f830112613c6157600080fd5b8135613c71848260208601613b55565b91505092915050565b600081359050613c89816156a7565b92915050565b600060208284031215613ca157600080fd5b6000613caf84828501613b93565b91505092915050565b60008060408385031215613ccb57600080fd5b6000613cd985828601613b93565b9250506020613cea85828601613b93565b9150509250929050565b600080600060608486031215613d0957600080fd5b6000613d1786828701613b93565b9350506020613d2886828701613b93565b9250506040613d3986828701613c7a565b9150509250925092565b60008060008060808587031215613d5957600080fd5b6000613d6787828801613b93565b9450506020613d7887828801613b93565b9350506040613d8987828801613c7a565b925050606085013567ffffffffffffffff811115613da657600080fd5b613db287828801613c26565b91505092959194509250565b60008060408385031215613dd157600080fd5b6000613ddf85828601613b93565b9250506020613df085828601613bd2565b9150509250929050565b60008060408385031215613e0d57600080fd5b6000613e1b85828601613b93565b9250506020613e2c85828601613c7a565b9150509250929050565b60008060008060808587031215613e4c57600080fd5b6000613e5a87828801613b93565b9450506020613e6b87828801613c7a565b935050604085013567ffffffffffffffff811115613e8857600080fd5b613e9487828801613ba8565b9250506060613ea587828801613c7a565b91505092959194509250565b600060208284031215613ec357600080fd5b6000613ed184828501613bd2565b91505092915050565b600060208284031215613eec57600080fd5b6000613efa84828501613bfc565b91505092915050565b600060208284031215613f1557600080fd5b6000613f2384828501613c11565b91505092915050565b600060208284031215613f3e57600080fd5b600082013567ffffffffffffffff811115613f5857600080fd5b613f6484828501613c50565b91505092915050565b600060208284031215613f7f57600080fd5b6000613f8d84828501613c7a565b91505092915050565b60008060008060808587031215613fac57600080fd5b6000613fba87828801613c7a565b9450506020613fcb87828801613be7565b9350506040613fdc87828801613c7a565b925050606085013567ffffffffffffffff811115613ff957600080fd5b61400587828801613ba8565b91505092959194509250565b60008060006060848603121561402657600080fd5b600061403486828701613c7a565b935050602061404586828701613c7a565b925050604061405686828701613be7565b9150509250925092565b61406981614c5b565b82525050565b61408061407b82614c5b565b614dc7565b82525050565b61408f81614c6d565b82525050565b61409e81614c79565b82525050565b6140b56140b082614c79565b614dd9565b82525050565b60006140c682614b03565b6140d08185614b19565b93506140e0818560208601614ce8565b6140e981614ee2565b840191505092915050565b60006140ff82614b0e565b6141098185614b2a565b9350614119818560208601614ce8565b61412281614ee2565b840191505092915050565b600061413882614b0e565b6141428185614b3b565b9350614152818560208601614ce8565b80840191505092915050565b6000815461416b81614d1b565b6141758186614b3b565b9450600182166000811461419057600181146141a1576141d4565b60ff198316865281860193506141d4565b6141aa85614aee565b60005b838110156141cc578154818901526001820191506020810190506141ad565b838801955050505b50505092915050565b60006141ea602583614b2a565b91506141f582614f00565b604082019050919050565b600061420d602b83614b2a565b915061421882614f4f565b604082019050919050565b6000614230603283614b2a565b915061423b82614f9e565b604082019050919050565b6000614253602683614b2a565b915061425e82614fed565b604082019050919050565b6000614276602583614b2a565b91506142818261503c565b604082019050919050565b6000614299601c83614b2a565b91506142a48261508b565b602082019050919050565b60006142bc602983614b2a565b91506142c7826150b4565b604082019050919050565b60006142df602483614b2a565b91506142ea82615103565b604082019050919050565b6000614302601983614b2a565b915061430d82615152565b602082019050919050565b6000614325602c83614b2a565b91506143308261517b565b604082019050919050565b6000614348603283614b2a565b9150614353826151ca565b604082019050919050565b600061436b603883614b2a565b915061437682615219565b604082019050919050565b600061438e602a83614b2a565b915061439982615268565b604082019050919050565b60006143b1602983614b2a565b91506143bc826152b7565b604082019050919050565b60006143d4602083614b2a565b91506143df82615306565b602082019050919050565b60006143f7602c83614b2a565b91506144028261532f565b604082019050919050565b600061441a600583614b3b565b91506144258261537e565b600582019050919050565b600061443d601483614b2a565b9150614448826153a7565b602082019050919050565b6000614460602083614b2a565b915061446b826153d0565b602082019050919050565b6000614483601783614b2a565b915061448e826153f9565b602082019050919050565b60006144a6602683614b2a565b91506144b182615422565b604082019050919050565b60006144c9602183614b2a565b91506144d482615471565b604082019050919050565b60006144ec602783614b2a565b91506144f7826154c0565b604082019050919050565b600061450f603183614b2a565b915061451a8261550f565b604082019050919050565b6000614532602c83614b2a565b915061453d8261555e565b604082019050919050565b6000614555603083614b2a565b9150614560826155ad565b604082019050919050565b6000614578602f83614b2a565b9150614583826155fc565b604082019050919050565b61459781614ccf565b82525050565b60006145a9828461406f565b60148201915081905092915050565b60006145c482856140a4565b6020820191506145d482846140a4565b6020820191508190509392505050565b60006145f0828561415e565b91506145fc828461412d565b91506146078261440d565b91508190509392505050565b60006020820190506146286000830184614060565b92915050565b60006080820190506146436000830187614060565b6146506020830186614060565b61465d604083018561458e565b818103606083015261466f81846140bb565b905095945050505050565b600060208201905061468f6000830184614086565b92915050565b600060208201905081810360008301526146af81846140f4565b905092915050565b600060208201905081810360008301526146d0816141dd565b9050919050565b600060208201905081810360008301526146f081614200565b9050919050565b6000602082019050818103600083015261471081614223565b9050919050565b6000602082019050818103600083015261473081614246565b9050919050565b6000602082019050818103600083015261475081614269565b9050919050565b600060208201905081810360008301526147708161428c565b9050919050565b60006020820190508181036000830152614790816142af565b9050919050565b600060208201905081810360008301526147b0816142d2565b9050919050565b600060208201905081810360008301526147d0816142f5565b9050919050565b600060208201905081810360008301526147f081614318565b9050919050565b600060208201905081810360008301526148108161433b565b9050919050565b600060208201905081810360008301526148308161435e565b9050919050565b6000602082019050818103600083015261485081614381565b9050919050565b60006020820190508181036000830152614870816143a4565b9050919050565b60006020820190508181036000830152614890816143c7565b9050919050565b600060208201905081810360008301526148b0816143ea565b9050919050565b600060208201905081810360008301526148d081614430565b9050919050565b600060208201905081810360008301526148f081614453565b9050919050565b6000602082019050818103600083015261491081614476565b9050919050565b6000602082019050818103600083015261493081614499565b9050919050565b60006020820190508181036000830152614950816144bc565b9050919050565b60006020820190508181036000830152614970816144df565b9050919050565b6000602082019050818103600083015261499081614502565b9050919050565b600060208201905081810360008301526149b081614525565b9050919050565b600060208201905081810360008301526149d081614548565b9050919050565b600060208201905081810360008301526149f08161456b565b9050919050565b6000602082019050614a0c600083018461458e565b92915050565b6000604082019050614a27600083018561458e565b614a346020830184614095565b9392505050565b6000614a45614a56565b9050614a518282614d4d565b919050565b6000604051905090565b600067ffffffffffffffff821115614a7b57614a7a614eb3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614aa757614aa6614eb3565b5b614ab082614ee2565b9050602081019050919050565b600067ffffffffffffffff821115614ad857614ad7614eb3565b5b614ae182614ee2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5182614ccf565b9150614b5c83614ccf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9157614b90614e26565b5b828201905092915050565b6000614ba782614ccf565b9150614bb283614ccf565b925082614bc257614bc1614e55565b5b828204905092915050565b6000614bd882614ccf565b9150614be383614ccf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c1c57614c1b614e26565b5b828202905092915050565b6000614c3282614ccf565b9150614c3d83614ccf565b925082821015614c5057614c4f614e26565b5b828203905092915050565b6000614c6682614caf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d06578082015181840152602081019050614ceb565b83811115614d15576000848401525b50505050565b60006002820490506001821680614d3357607f821691505b60208210811415614d4757614d46614e84565b5b50919050565b614d5682614ee2565b810181811067ffffffffffffffff82111715614d7557614d74614eb3565b5b80604052505050565b6000614d8982614ccf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dbc57614dbb614e26565b5b600182019050919050565b6000614dd282614de3565b9050919050565b6000819050919050565b6000614dee82614ef3565b9050919050565b6000614e0082614ccf565b9150614e0b83614ccf565b925082614e1b57614e1a614e55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f752061726520746f6f206c6174652c2070726573616c652069732066696e60008201527f6973686564000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546865726520617265206c65737320736865657473206c656674207468616e2060008201527f796f752077616e74210000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e204e4f5420627579206d6f7265207468616e205f7075626c6960008201527f634d696e744c696d697420736865657473210000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4d6f6e6579206973206e6f7420656e6f75676821000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e7420616d6f756e74206c696d69746174696f6e21000000000000000000600082015250565b7f536f7272792c20596f7520617265206e6f7420612077686974656c697374206d60008201527f656d6265722e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206c6174652c20616c6c2070726573616c65204e46547320617265207360008201527f6f6c64206f757400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e2d6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f5468657265206172656e277420656e6f756768206e66747320666f7220796f7560008201527f20696e2074686973206261746368210000000000000000000000000000000000602082015250565b61565481614c5b565b811461565f57600080fd5b50565b61566b81614c6d565b811461567657600080fd5b50565b61568281614c79565b811461568d57600080fd5b50565b61569981614c83565b81146156a457600080fd5b50565b6156b081614ccf565b81146156bb57600080fd5b5056fea2646970667358221220efb9529844d4f0bc7d176e971f17d363d4f25574f29800243f39d8eff01b27b464736f6c63430008040033

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.