ETH Price: $3,840.22 (-0.23%)

Token

Nifty Royale X Based Fish Mafia: The Battle of Cor... (NRBFMTBC)
 

Overview

Max Total Supply

52 NRBFMTBC

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NRBFMTBC
0x22678b147a46bee86b79acbbde00b7f2e6c02da7
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:
BattleRoyaleNoPrize

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

contract BattleRoyaleNoPrize is ERC721URIStorage, Ownable {
  using SafeERC20 for IERC20;
  using Strings for uint256;

  /// @notice Event emitted when contract is deployed.
  event BattleRoyaleDeployed();

  /// @notice Event emitted when owner withdrew the ETH.
  event EthWithdrew(address receiver);

  /// @notice Event emitted when owner withdrew the ERC20 token.
  event ERC20TokenWithdrew(address receiver);

  /// @notice Event emitted when user purchased the tokens.
  event Purchased(address user, uint256 amount, uint256 totalSupply);

  /// @notice Event emitted when owner has set starting time.
  event StartingTimeSet(uint256 time);

  /// @notice Event emitted when battle has started.
  event BattleStarted(address battleAddress, uint32[] inPlay);

  /// @notice Event emitted when battle has ended.
  event BattleEnded(
    address battleAddress,
    uint256 tokenId,
    uint256 winnerTokenId,
    string prizeTokenURI
  );

  /// @notice Event emitted when base token uri set.
  event BaseURISet(string baseURI);

  /// @notice Event emitted when default token uri set.
  event DefaultTokenURISet(string defaultTokenURI);

  /// @notice Event emitted when prize token uri set.
  event PrizeTokenURISet(string prizeTokenURI);

  /// @notice Event emitted when interval time set.
  event IntervalTimeSet(uint256 intervalTime);

  /// @notice Event emitted when token price set.
  event PriceSet(uint256 price);

  /// @notice Event emitted when the units per transaction set.
  event UnitsPerTransactionSet(uint256 unitsPerTransaction);

  /// @notice Event emitted when max supply set.
  event MaxSupplySet(uint256 maxSupply);

  enum BATTLE_STATE {
    STANDBY,
    RUNNING,
    ENDED
  }

  BATTLE_STATE public battleState;

  string public baseURI;
  string public defaultTokenURI;
  string public prizeTokenURI;

  uint256 public price;
  uint256 public maxSupply;
  uint256 public totalSupply;
  uint256 public unitsPerTransaction;
  uint256 public startingTime;

  uint32[] public inPlay;

  /**
   * @dev Constructor function
   * @param _name Token name
   * @param _symbol Token symbol
   * @param _price Token price
   * @param _unitsPerTransaction Purchasable token amounts per transaction
   * @param _maxSupply Maximum number of mintable tokens
   * @param _defaultTokenURI Deafult token uri
   * @param _prizeTokenURI Prize token uri
   * @param _baseURI Base token uri
   * @param _startingTime Start time to purchase NFT
   */
  constructor(
    string memory _name,
    string memory _symbol,
    uint256 _price,
    uint256 _unitsPerTransaction,
    uint256 _maxSupply,
    string memory _baseURI,
    string memory _defaultTokenURI,
    string memory _prizeTokenURI,
    uint256 _startingTime
  ) ERC721(_name, _symbol) {
    battleState = BATTLE_STATE.STANDBY;
    price = _price;
    unitsPerTransaction = _unitsPerTransaction;
    maxSupply = _maxSupply;
    baseURI = _baseURI;
    defaultTokenURI = _defaultTokenURI;
    prizeTokenURI = _prizeTokenURI;
    startingTime = _startingTime;

    emit BattleRoyaleDeployed();
  }

  /**
   * @dev External function to purchase tokens.
   * @param _amount Token amount to buy
   */
  function purchase(uint256 _amount) external payable {
    require(price > 0, "Token price is zero");
    require(battleState == BATTLE_STATE.STANDBY, "Not ready to purchase tokens");
    require(maxSupply > 0 && totalSupply < maxSupply, "All NFTs were sold out");
    require(block.timestamp >= startingTime, "Not time to purchase");

    if (msg.sender != owner()) {
      require(
        _amount <= maxSupply - totalSupply && _amount > 0 && _amount <= unitsPerTransaction,
        "Out range of token amount"
      );
      require(bytes(defaultTokenURI).length > 0, "Default token URI is not set");
      require(msg.value >= (price * _amount), "Not enough ETH for buying tokens");
    }

    for (uint256 i = 0; i < _amount; i++) {
      uint256 tokenId = totalSupply + i + 1;

      _safeMint(msg.sender, tokenId);

      string memory tokenURI = string(abi.encodePacked(baseURI, defaultTokenURI));

      _setTokenURI(tokenId, tokenURI);

      inPlay.push(uint32(tokenId));
    }

    totalSupply += _amount;

    emit Purchased(msg.sender, _amount, totalSupply);
  }

  /**
   * @dev External function to set starting time. This function can be called only by owner.
   */
  function setStartingTime(uint256 _newTime) external onlyOwner {
    startingTime = _newTime;

    emit StartingTimeSet(_newTime);
  }

  /**
   * @dev External function to start the battle. This function can be called only by owner.
   */
  function startBattle() external onlyOwner {
    require(bytes(prizeTokenURI).length > 0 && inPlay.length > 1, "Not enough tokens to play");
    battleState = BATTLE_STATE.RUNNING;

    emit BattleStarted(address(this), inPlay);
  }

  /**
   * @dev External function to end the battle. This function can be called only by owner.
   * @param _winnerTokenId Winner token Id in battle
   */
  function endBattle(uint256 _winnerTokenId) external onlyOwner {
    require(battleState == BATTLE_STATE.RUNNING, "Battle is not started");
    battleState = BATTLE_STATE.ENDED;

    string memory tokenURI = string(abi.encodePacked(baseURI, prizeTokenURI));

    emit BattleEnded(address(this), _winnerTokenId, _winnerTokenId, tokenURI);
  }

  /**
   * @dev External function to set the base token URI. This function can be called only by owner.
   * @param _tokenURI New base token uri
   */
  function setBaseURI(string memory _tokenURI) external onlyOwner {
    baseURI = _tokenURI;

    emit BaseURISet(baseURI);
  }

  /**
   * @dev External function to set the default token URI. This function can be called only by owner.
   * @param _tokenURI New default token uri
   */
  function setDefaultTokenURI(string memory _tokenURI) external onlyOwner {
    defaultTokenURI = _tokenURI;

    emit DefaultTokenURISet(defaultTokenURI);
  }

  /**
   * @dev External function to set the prize token URI. This function can be called only by owner.
   * @param _tokenURI New prize token uri
   */
  function setPrizeTokenURI(string memory _tokenURI) external onlyOwner {
    prizeTokenURI = _tokenURI;

    emit PrizeTokenURISet(prizeTokenURI);
  }

  /**
   * @dev External function to set the token price. This function can be called only by owner.
   * @param _price New token price
   */
  function setPrice(uint256 _price) external onlyOwner {
    price = _price;

    emit PriceSet(price);
  }

  /**
   * @dev External function to set the limit of buyable token amounts. This function can be called only by owner.
   * @param _unitsPerTransaction New purchasable token amounts per transaction
   */
  function setUnitsPerTransaction(uint256 _unitsPerTransaction) external onlyOwner {
    unitsPerTransaction = _unitsPerTransaction;

    emit UnitsPerTransactionSet(unitsPerTransaction);
  }

  /**
   * @dev External function to set max supply. This function can be called only by owner.
   * @param _maxSupply New maximum token amounts
   */
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;

    emit MaxSupplySet(maxSupply);
  }

  /**
   * Fallback function to receive ETH
   */
  receive() external payable {}

  /**
   * @dev External function to withdraw ETH in contract. This function can be called only by owner.
   * @param _amount ETH amount
   */
  function withdrawETH(uint256 _amount) external onlyOwner {
    uint256 balance = address(this).balance;
    require(_amount <= balance, "Out of balance");

    payable(msg.sender).transfer(_amount);

    emit EthWithdrew(msg.sender);
  }

  /**
   * @dev External function to withdraw ERC-20 tokens in contract. This function can be called only by owner.
   * @param _tokenAddr Address of ERC-20 token
   * @param _amount ERC-20 token amount
   */
  function withdrawERC20Token(address _tokenAddr, uint256 _amount) external onlyOwner {
    IERC20 token = IERC20(_tokenAddr);

    uint256 balance = token.balanceOf(address(this));
    require(_amount <= balance, "Out of balance");

    token.safeTransfer(msg.sender, _amount);

    emit ERC20TokenWithdrew(msg.sender);
  }
}

File 2 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 3 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 4 of 15 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 6 of 15 : 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 7 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
}

File 15 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_unitsPerTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_defaultTokenURI","type":"string"},{"internalType":"string","name":"_prizeTokenURI","type":"string"},{"internalType":"uint256","name":"_startingTime","type":"uint256"}],"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":"baseURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"battleAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"winnerTokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"prizeTokenURI","type":"string"}],"name":"BattleEnded","type":"event"},{"anonymous":false,"inputs":[],"name":"BattleRoyaleDeployed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"battleAddress","type":"address"},{"indexed":false,"internalType":"uint32[]","name":"inPlay","type":"uint32[]"}],"name":"BattleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"defaultTokenURI","type":"string"}],"name":"DefaultTokenURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20TokenWithdrew","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"EthWithdrew","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"intervalTime","type":"uint256"}],"name":"IntervalTimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"MaxSupplySet","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":"uint256","name":"price","type":"uint256"}],"name":"PriceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prizeTokenURI","type":"string"}],"name":"PrizeTokenURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Purchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"StartingTimeSet","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":"unitsPerTransaction","type":"uint256"}],"name":"UnitsPerTransactionSet","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"battleState","outputs":[{"internalType":"enum BattleRoyaleNoPrize.BATTLE_STATE","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_winnerTokenId","type":"uint256"}],"name":"endBattle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"inPlay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizeTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setDefaultTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setPrizeTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTime","type":"uint256"}],"name":"setStartingTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_unitsPerTransaction","type":"uint256"}],"name":"setUnitsPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBattle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingTime","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unitsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawERC20Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162005d6738038062005d67833981810160405281019062000037919062000370565b88888160009080519060200190620000519291906200022b565b5080600190805190602001906200006a9291906200022b565b5050506200008d620000816200015d60201b60201c565b6200016560201b60201c565b6000600760146101000a81548160ff02191690836002811115620000b657620000b5620005f5565b5b021790555086600b8190555085600e8190555084600c819055508360089080519060200190620000e89291906200022b565b508260099080519060200190620001019291906200022b565b5081600a90805190602001906200011a9291906200022b565b5080600f819055507fde967da90a3b7d011740540525161efc8460199648e3389f6a5749fe29cd0a7d60405160405180910390a1505050505050505050620006c1565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002399062000589565b90600052602060002090601f0160209004810192826200025d5760008555620002a9565b82601f106200027857805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a85782518255916020019190600101906200028b565b5b509050620002b89190620002bc565b5090565b5b80821115620002d7576000816000905550600101620002bd565b5090565b6000620002f2620002ec8462000513565b620004ea565b90508281526020810184848401111562000311576200031062000687565b5b6200031e84828562000553565b509392505050565b600082601f8301126200033e576200033d62000682565b5b815162000350848260208601620002db565b91505092915050565b6000815190506200036a81620006a7565b92915050565b60008060008060008060008060006101208a8c03121562000396576200039562000691565b5b60008a015167ffffffffffffffff811115620003b757620003b66200068c565b5b620003c58c828d0162000326565b99505060208a015167ffffffffffffffff811115620003e957620003e86200068c565b5b620003f78c828d0162000326565b98505060406200040a8c828d0162000359565b97505060606200041d8c828d0162000359565b9650506080620004308c828d0162000359565b95505060a08a015167ffffffffffffffff8111156200045457620004536200068c565b5b620004628c828d0162000326565b94505060c08a015167ffffffffffffffff8111156200048657620004856200068c565b5b620004948c828d0162000326565b93505060e08a015167ffffffffffffffff811115620004b857620004b76200068c565b5b620004c68c828d0162000326565b925050610100620004da8c828d0162000359565b9150509295985092959850929598565b6000620004f662000509565b9050620005048282620005bf565b919050565b6000604051905090565b600067ffffffffffffffff82111562000531576200053062000653565b5b6200053c8262000696565b9050602081019050919050565b6000819050919050565b60005b838110156200057357808201518184015260208101905062000556565b8381111562000583576000848401525b50505050565b60006002820490506001821680620005a257607f821691505b60208210811415620005b957620005b862000624565b5b50919050565b620005ca8262000696565b810181811067ffffffffffffffff82111715620005ec57620005eb62000653565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006b28162000549565b8114620006be57600080fd5b50565b61569680620006d16000396000f3fe6080604052600436106102295760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107e8578063efef39a114610825578063f14210a614610841578063f2fde38b1461086a578063f9cae7e01461089357610230565b8063b88d4fde146106f1578063c87b56dd1461071a578063cde85f7f14610757578063d5abeb0114610780578063dc570d37146107ab57610230565b8063963bfe12116100f2578063963bfe121461061e5780639f82384914610649578063a035b1fe14610674578063a125c8241461069f578063a22cb465146106c857610230565b80638da5cb5b1461057657806391b7f5ed146105a1578063928d81c1146105ca57806395d89b41146105f357610230565b80633f52e589116101b15780636352211e116101755780636352211e146104915780636c0360eb146104ce5780636f8b44b0146104f957806370a0823114610522578063715018a61461055f57610230565b80633f52e589146103c25780634157e6ef146103eb57806342842e0e1461041457806355f804b31461043d57806361d161ea1461046657610230565b806318160ddd116101f857806318160ddd1461030357806323b872dd1461032e578063240a2c971461035757806333e651081461036e57806339518b5e1461039757610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613823565b6108be565b604051610269919061438a565b60405180910390f35b34801561027e57600080fd5b506102876109a0565b60405161029491906143c0565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906138c6565b610a32565b6040516102d19190614247565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906137b6565b610ab7565b005b34801561030f57600080fd5b50610318610bcf565b60405161032591906147e4565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906136a0565b610bd5565b005b34801561036357600080fd5b5061036c610c35565b005b34801561037a57600080fd5b506103956004803603810190610390919061387d565b610d7a565b005b3480156103a357600080fd5b506103ac610e48565b6040516103b991906147e4565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e491906138c6565b610e4e565b005b3480156103f757600080fd5b50610412600480360381019061040d91906138c6565b610f0b565b005b34801561042057600080fd5b5061043b600480360381019061043691906136a0565b611091565b005b34801561044957600080fd5b50610464600480360381019061045f919061387d565b6110b1565b005b34801561047257600080fd5b5061047b61117f565b60405161048891906147e4565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906138c6565b611185565b6040516104c59190614247565b60405180910390f35b3480156104da57600080fd5b506104e3611237565b6040516104f091906143c0565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906138c6565b6112c5565b005b34801561052e57600080fd5b5061054960048036038101906105449190613633565b611384565b60405161055691906147e4565b60405180910390f35b34801561056b57600080fd5b5061057461143c565b005b34801561058257600080fd5b5061058b6114c4565b6040516105989190614247565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c391906138c6565b6114ee565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906137b6565b6115ad565b005b3480156105ff57600080fd5b50610608611766565b60405161061591906143c0565b60405180910390f35b34801561062a57600080fd5b506106336117f8565b60405161064091906143c0565b60405180910390f35b34801561065557600080fd5b5061065e611886565b60405161066b91906143a5565b60405180910390f35b34801561068057600080fd5b50610689611899565b60405161069691906147e4565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061387d565b61189f565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613776565b61196d565b005b3480156106fd57600080fd5b50610718600480360381019061071391906136f3565b611983565b005b34801561072657600080fd5b50610741600480360381019061073c91906138c6565b6119e5565b60405161074e91906143c0565b60405180910390f35b34801561076357600080fd5b5061077e600480360381019061077991906138c6565b611b37565b005b34801561078c57600080fd5b50610795611bf6565b6040516107a291906147e4565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906138c6565b611bfc565b6040516107df91906147ff565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613660565b611c36565b60405161081c919061438a565b60405180910390f35b61083f600480360381019061083a91906138c6565b611cca565b005b34801561084d57600080fd5b50610868600480360381019061086391906138c6565b612088565b005b34801561087657600080fd5b50610891600480360381019061088c9190613633565b6121ce565b005b34801561089f57600080fd5b506108a86122c6565b6040516108b591906143c0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610999575061099882612354565b5b9050919050565b6060600080546109af90614b45565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90614b45565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b5050505050905090565b6000610a3d826123be565b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390614664565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac282611185565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90614724565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5261242a565b73ffffffffffffffffffffffffffffffffffffffff161480610b815750610b8081610b7b61242a565b611c36565b5b610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790614584565b60405180910390fd5b610bca8383612432565b505050565b600d5481565b610be6610be061242a565b826124eb565b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90614744565b60405180910390fd5b610c308383836125c9565b505050565b610c3d61242a565b73ffffffffffffffffffffffffffffffffffffffff16610c5b6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca8906146c4565b60405180910390fd5b6000600a8054610cc090614b45565b9050118015610cd457506001601080549050115b610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906146a4565b60405180910390fd5b6001600760146101000a81548160ff02191690836002811115610d3957610d38614d50565b5b02179055507f2e4f7a7d1eabb7c0f9ff13188522d2e95caabf86efaca88efbc3f4914cd20491306010604051610d709291906142ae565b60405180910390a1565b610d8261242a565b73ffffffffffffffffffffffffffffffffffffffff16610da06114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906146c4565b60405180910390fd5b80600a9080519060200190610e0c92919061341d565b507f11050bdf129877be9e71e184959f825f1c8ea8f55a0f9c0ce7cc43d4d5558c69600a604051610e3d91906143e2565b60405180910390a150565b600f5481565b610e5661242a565b73ffffffffffffffffffffffffffffffffffffffff16610e746114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906146c4565b60405180910390fd5b80600f819055507fa0d00b67de438a8cfea61334cc5f5f6ac9eb39004f44a59f03dcc7eec765facb81604051610f0091906147e4565b60405180910390a150565b610f1361242a565b73ffffffffffffffffffffffffffffffffffffffff16610f316114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e906146c4565b60405180910390fd5b60016002811115610f9b57610f9a614d50565b5b600760149054906101000a900460ff166002811115610fbd57610fbc614d50565b5b14610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614684565b60405180910390fd5b6002600760146101000a81548160ff0219169083600281111561102357611022614d50565b5b021790555060006008600a60405160200161103f929190614223565b60405160208183030381529060405290507f8856d910e0ffd1d94523959349e93105c16b3948d4744d570ea003d12d541ac730838484604051611085949392919061433e565b60405180910390a15050565b6110ac83838360405180602001604052806000815250611983565b505050565b6110b961242a565b73ffffffffffffffffffffffffffffffffffffffff166110d76114c4565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611124906146c4565b60405180910390fd5b806008908051906020019061114392919061341d565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f6600860405161117491906143e2565b60405180910390a150565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561122e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611225906145c4565b60405180910390fd5b80915050919050565b6008805461124490614b45565b80601f016020809104026020016040519081016040528092919081815260200182805461127090614b45565b80156112bd5780601f10611292576101008083540402835291602001916112bd565b820191906000526020600020905b8154815290600101906020018083116112a057829003601f168201915b505050505081565b6112cd61242a565b73ffffffffffffffffffffffffffffffffffffffff166112eb6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906146c4565b60405180910390fd5b80600c819055507facc639f1ff310faf48650d02a82bd24c924e45a5050fc931245096ac57c309d9600c5460405161137991906147e4565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906145a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144461242a565b73ffffffffffffffffffffffffffffffffffffffff166114626114c4565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906146c4565b60405180910390fd5b6114c26000612825565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114f661242a565b73ffffffffffffffffffffffffffffffffffffffff166115146114c4565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611561906146c4565b60405180910390fd5b80600b819055507f6bfd5e75539a9d2626425a2e2922675256b219fe546d63dad56011759b9a2f66600b546040516115a291906147e4565b60405180910390a150565b6115b561242a565b73ffffffffffffffffffffffffffffffffffffffff166115d36114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611620906146c4565b60405180910390fd5b600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116699190614247565b60206040518083038186803b15801561168157600080fd5b505afa158015611695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b991906138f3565b9050808311156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614564565b60405180910390fd5b61172933848473ffffffffffffffffffffffffffffffffffffffff166128eb9092919063ffffffff16565b7fb37f4ec23df2fbe884c08713adfee8f41c2841152798fa364c1e4eb49ec8ff41336040516117589190614247565b60405180910390a150505050565b60606001805461177590614b45565b80601f01602080910402602001604051908101604052809291908181526020018280546117a190614b45565b80156117ee5780601f106117c3576101008083540402835291602001916117ee565b820191906000526020600020905b8154815290600101906020018083116117d157829003601f168201915b5050505050905090565b6009805461180590614b45565b80601f016020809104026020016040519081016040528092919081815260200182805461183190614b45565b801561187e5780601f106118535761010080835404028352916020019161187e565b820191906000526020600020905b81548152906001019060200180831161186157829003601f168201915b505050505081565b600760149054906101000a900460ff1681565b600b5481565b6118a761242a565b73ffffffffffffffffffffffffffffffffffffffff166118c56114c4565b73ffffffffffffffffffffffffffffffffffffffff161461191b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611912906146c4565b60405180910390fd5b806009908051906020019061193192919061341d565b507f89c0c59bf6f19f6df5909eebedfa7eca3e887d44db48734e3ee45575ce361e36600960405161196291906143e2565b60405180910390a150565b61197f61197861242a565b8383612971565b5050565b61199461198e61242a565b836124eb565b6119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca90614744565b60405180910390fd5b6119df84848484612ade565b50505050565b60606119f0826123be565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614624565b60405180910390fd5b6000600660008481526020019081526020016000208054611a4f90614b45565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7b90614b45565b8015611ac85780601f10611a9d57610100808354040283529160200191611ac8565b820191906000526020600020905b815481529060010190602001808311611aab57829003601f168201915b505050505090506000611ad9612b3a565b9050600081511415611aef578192505050611b32565b600082511115611b24578082604051602001611b0c9291906141ff565b60405160208183030381529060405292505050611b32565b611b2d84612b51565b925050505b919050565b611b3f61242a565b73ffffffffffffffffffffffffffffffffffffffff16611b5d6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa906146c4565b60405180910390fd5b80600e819055507f3e8e799e74e88433cfb7372a6b84f0462ec4120bfc959930172d365c6e3808cc600e54604051611beb91906147e4565b60405180910390a150565b600c5481565b60108181548110611c0c57600080fd5b9060005260206000209060089182820401919006600402915054906101000a900463ffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b5411611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906147c4565b60405180910390fd5b60006002811115611d2357611d22614d50565b5b600760149054906101000a900460ff166002811115611d4557611d44614d50565b5b14611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614644565b60405180910390fd5b6000600c54118015611d9a5750600c54600d54105b611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd0906144a4565b60405180910390fd5b600f54421015611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614404565b60405180910390fd5b611e266114c4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f6657600d54600c54611e689190614a16565b8111158015611e775750600081115b8015611e855750600e548111155b611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90614484565b60405180910390fd5b600060098054611ed390614b45565b905011611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906144c4565b60405180910390fd5b80600b54611f2391906149bc565b341015611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c906147a4565b60405180910390fd5b5b60005b8181101561202e576000600182600d54611f839190614935565b611f8d9190614935565b9050611f993382612bf8565b600060086009604051602001611fb0929190614223565b6040516020818303038152906040529050611fcb8282612c16565b60108290806001815401808255809150506001900390600052602060002090600891828204019190066004029091909190916101000a81548163ffffffff021916908363ffffffff1602179055505050808061202690614c78565b915050611f69565b5080600d60008282546120419190614935565b925050819055507ff761777482b4b40d2bcc0d050cfba6829900a2d8b3484bd0244ec0feeb3db5043382600d5460405161207d93929190614307565b60405180910390a150565b61209061242a565b73ffffffffffffffffffffffffffffffffffffffff166120ae6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb906146c4565b60405180910390fd5b60004790508082111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614564565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015612192573d6000803e3d6000fd5b507fd80edbda103ec0b71f36c87845a6adf924861e7eae59c86725c936b96ece0e9c336040516121c29190614247565b60405180910390a15050565b6121d661242a565b73ffffffffffffffffffffffffffffffffffffffff166121f46114c4565b73ffffffffffffffffffffffffffffffffffffffff161461224a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612241906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614444565b60405180910390fd5b6122c381612825565b50565b600a80546122d390614b45565b80601f01602080910402602001604051908101604052809291908181526020018280546122ff90614b45565b801561234c5780601f106123215761010080835404028352916020019161234c565b820191906000526020600020905b81548152906001019060200180831161232f57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124a583611185565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124f6826123be565b612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c90614544565b60405180910390fd5b600061254083611185565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125af57508373ffffffffffffffffffffffffffffffffffffffff1661259784610a32565b73ffffffffffffffffffffffffffffffffffffffff16145b806125c057506125bf8185611c36565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125e982611185565b73ffffffffffffffffffffffffffffffffffffffff161461263f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612636906146e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a6906144e4565b60405180910390fd5b6126ba838383612c8a565b6126c5600082612432565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127159190614a16565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276c9190614935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61296c8363a9059cbb60e01b848460405160240161290a9291906142de565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612c8f565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614504565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad1919061438a565b60405180910390a3505050565b612ae98484846125c9565b612af584848484612d56565b612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b90614424565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060612b5c826123be565b612b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9290614704565b60405180910390fd5b6000612ba5612b3a565b90506000815111612bc55760405180602001604052806000815250612bf0565b80612bcf84612eed565b604051602001612be09291906141ff565b6040516020818303038152906040525b915050919050565b612c1282826040518060200160405280600081525061304e565b5050565b612c1f826123be565b612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c55906145e4565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612c8592919061341d565b505050565b505050565b6000612cf1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130a99092919063ffffffff16565b9050600081511115612d515780806020019051810190612d1191906137f6565b612d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4790614784565b60405180910390fd5b5b505050565b6000612d778473ffffffffffffffffffffffffffffffffffffffff166130c1565b15612ee0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da061242a565b8786866040518563ffffffff1660e01b8152600401612dc29493929190614262565b602060405180830381600087803b158015612ddc57600080fd5b505af1925050508015612e0d57506040513d601f19601f82011682018060405250810190612e0a9190613850565b60015b612e90573d8060008114612e3d576040519150601f19603f3d011682016040523d82523d6000602084013e612e42565b606091505b50600081511415612e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7f90614424565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ee5565b600190505b949350505050565b60606000821415612f35576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613049565b600082905060005b60008214612f67578080612f5090614c78565b915050600a82612f60919061498b565b9150612f3d565b60008167ffffffffffffffff811115612f8357612f82614ddd565b5b6040519080825280601f01601f191660200182016040528015612fb55781602001600182028036833780820191505090505b5090505b6000851461304257600182612fce9190614a16565b9150600a85612fdd9190614cc1565b6030612fe99190614935565b60f81b818381518110612fff57612ffe614dae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561303b919061498b565b9450612fb9565b8093505050505b919050565b61305883836130d4565b6130656000848484612d56565b6130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614424565b60405180910390fd5b505050565b60606130b884846000856132a2565b90509392505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313b90614604565b60405180910390fd5b61314d816123be565b1561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490614464565b60405180910390fd5b61319960008383612c8a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e99190614935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060824710156132e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132de90614524565b60405180910390fd5b6132f0856130c1565b61332f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332690614764565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161335891906141e8565b60006040518083038185875af1925050503d8060008114613395576040519150601f19603f3d011682016040523d82523d6000602084013e61339a565b606091505b50915091506133aa8282866133b6565b92505050949350505050565b606083156133c657829050613416565b6000835111156133d95782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340d91906143c0565b60405180910390fd5b9392505050565b82805461342990614b45565b90600052602060002090601f01602090048101928261344b5760008555613492565b82601f1061346457805160ff1916838001178555613492565b82800160010185558215613492579182015b82811115613491578251825591602001919060010190613476565b5b50905061349f91906134a3565b5090565b5b808211156134bc5760008160009055506001016134a4565b5090565b60006134d36134ce8461483f565b61481a565b9050828152602081018484840111156134ef576134ee614e11565b5b6134fa848285614b03565b509392505050565b600061351561351084614870565b61481a565b90508281526020810184848401111561353157613530614e11565b5b61353c848285614b03565b509392505050565b60008135905061355381615604565b92915050565b6000813590506135688161561b565b92915050565b60008151905061357d8161561b565b92915050565b60008135905061359281615632565b92915050565b6000815190506135a781615632565b92915050565b600082601f8301126135c2576135c1614e0c565b5b81356135d28482602086016134c0565b91505092915050565b600082601f8301126135f0576135ef614e0c565b5b8135613600848260208601613502565b91505092915050565b60008135905061361881615649565b92915050565b60008151905061362d81615649565b92915050565b60006020828403121561364957613648614e1b565b5b600061365784828501613544565b91505092915050565b6000806040838503121561367757613676614e1b565b5b600061368585828601613544565b925050602061369685828601613544565b9150509250929050565b6000806000606084860312156136b9576136b8614e1b565b5b60006136c786828701613544565b93505060206136d886828701613544565b92505060406136e986828701613609565b9150509250925092565b6000806000806080858703121561370d5761370c614e1b565b5b600061371b87828801613544565b945050602061372c87828801613544565b935050604061373d87828801613609565b925050606085013567ffffffffffffffff81111561375e5761375d614e16565b5b61376a878288016135ad565b91505092959194509250565b6000806040838503121561378d5761378c614e1b565b5b600061379b85828601613544565b92505060206137ac85828601613559565b9150509250929050565b600080604083850312156137cd576137cc614e1b565b5b60006137db85828601613544565b92505060206137ec85828601613609565b9150509250929050565b60006020828403121561380c5761380b614e1b565b5b600061381a8482850161356e565b91505092915050565b60006020828403121561383957613838614e1b565b5b600061384784828501613583565b91505092915050565b60006020828403121561386657613865614e1b565b5b600061387484828501613598565b91505092915050565b60006020828403121561389357613892614e1b565b5b600082013567ffffffffffffffff8111156138b1576138b0614e16565b5b6138bd848285016135db565b91505092915050565b6000602082840312156138dc576138db614e1b565b5b60006138ea84828501613609565b91505092915050565b60006020828403121561390957613908614e1b565b5b60006139178482850161361e565b91505092915050565b61392981614a5a565b82525050565b600061393a826148cb565b61394481856148ec565b935083613950846148a1565b6000600115613a3d575b83600160080382011015613a3c57815461397c8861397783614b77565b6141ca565b6020880197506139948861398f83614c13565b6141ca565b6020880197506139ac886139a783614c2d565b6141ca565b6020880197506139c4886139bf83614b91565b6141ca565b6020880197506139dc886139d783614bab565b6141ca565b6020880197506139f4886139ef83614bc5565b6141ca565b602088019750613a0c88613a0783614bdf565b6141ca565b602088019750613a2488613a1f83614bf9565b6141ca565b6020880197506001830192505060088101905061395a565b5b600115613b8057815484821015613a6d57613a6088613a5b83614b77565b6141ca565b6020880197506001820191505b84821015613a9457613a8788613a8283614c13565b6141ca565b6020880197506001820191505b84821015613abb57613aae88613aa983614c2d565b6141ca565b6020880197506001820191505b84821015613ae257613ad588613ad083614b91565b6141ca565b6020880197506001820191505b84821015613b0957613afc88613af783614bab565b6141ca565b6020880197506001820191505b84821015613b3057613b2388613b1e83614bc5565b6141ca565b6020880197506001820191505b84821015613b5757613b4a88613b4583614bdf565b6141ca565b6020880197506001820191505b84821015613b7e57613b7188613b6c83614bf9565b6141ca565b6020880197506001820191505b505b8694505050505092915050565b613b9681614a6c565b82525050565b6000613ba7826148d6565b613bb181856148fd565b9350613bc1818560208601614b12565b613bca81614e20565b840191505092915050565b6000613be0826148d6565b613bea818561490e565b9350613bfa818560208601614b12565b80840191505092915050565b613c0f81614af1565b82525050565b6000613c20826148e1565b613c2a8185614919565b9350613c3a818560208601614b12565b613c4381614e20565b840191505092915050565b6000613c59826148e1565b613c63818561492a565b9350613c73818560208601614b12565b80840191505092915050565b60008154613c8c81614b45565b613c968186614919565b94506001821660008114613cb15760018114613cc357613cf6565b60ff1983168652602086019350613cf6565b613ccc856148b6565b60005b83811015613cee57815481890152600182019150602081019050613ccf565b808801955050505b50505092915050565b60008154613d0c81614b45565b613d16818661492a565b94506001821660008114613d315760018114613d4257613d75565b60ff19831686528186019350613d75565b613d4b856148b6565b60005b83811015613d6d57815481890152600182019150602081019050613d4e565b838801955050505b50505092915050565b6000613d8b601483614919565b9150613d9682614e99565b602082019050919050565b6000613dae603283614919565b9150613db982614ec2565b604082019050919050565b6000613dd1602683614919565b9150613ddc82614f11565b604082019050919050565b6000613df4601c83614919565b9150613dff82614f60565b602082019050919050565b6000613e17601983614919565b9150613e2282614f89565b602082019050919050565b6000613e3a601683614919565b9150613e4582614fb2565b602082019050919050565b6000613e5d601c83614919565b9150613e6882614fdb565b602082019050919050565b6000613e80602483614919565b9150613e8b82615004565b604082019050919050565b6000613ea3601983614919565b9150613eae82615053565b602082019050919050565b6000613ec6602683614919565b9150613ed18261507c565b604082019050919050565b6000613ee9602c83614919565b9150613ef4826150cb565b604082019050919050565b6000613f0c600e83614919565b9150613f178261511a565b602082019050919050565b6000613f2f603883614919565b9150613f3a82615143565b604082019050919050565b6000613f52602a83614919565b9150613f5d82615192565b604082019050919050565b6000613f75602983614919565b9150613f80826151e1565b604082019050919050565b6000613f98602e83614919565b9150613fa382615230565b604082019050919050565b6000613fbb602083614919565b9150613fc68261527f565b602082019050919050565b6000613fde603183614919565b9150613fe9826152a8565b604082019050919050565b6000614001601c83614919565b915061400c826152f7565b602082019050919050565b6000614024602c83614919565b915061402f82615320565b604082019050919050565b6000614047601583614919565b91506140528261536f565b602082019050919050565b600061406a601983614919565b915061407582615398565b602082019050919050565b600061408d602083614919565b9150614098826153c1565b602082019050919050565b60006140b0602983614919565b91506140bb826153ea565b604082019050919050565b60006140d3602f83614919565b91506140de82615439565b604082019050919050565b60006140f6602183614919565b915061410182615488565b604082019050919050565b6000614119603183614919565b9150614124826154d7565b604082019050919050565b600061413c601d83614919565b915061414782615526565b602082019050919050565b600061415f602a83614919565b915061416a8261554f565b604082019050919050565b6000614182602083614919565b915061418d8261559e565b602082019050919050565b60006141a5601383614919565b91506141b0826155c7565b602082019050919050565b6141c481614ad7565b82525050565b6141d381614ae1565b82525050565b6141e281614ae1565b82525050565b60006141f48284613bd5565b915081905092915050565b600061420b8285613c4e565b91506142178284613c4e565b91508190509392505050565b600061422f8285613cff565b915061423b8284613cff565b91508190509392505050565b600060208201905061425c6000830184613920565b92915050565b60006080820190506142776000830187613920565b6142846020830186613920565b61429160408301856141bb565b81810360608301526142a38184613b9c565b905095945050505050565b60006040820190506142c36000830185613920565b81810360208301526142d5818461392f565b90509392505050565b60006040820190506142f36000830185613920565b61430060208301846141bb565b9392505050565b600060608201905061431c6000830186613920565b61432960208301856141bb565b61433660408301846141bb565b949350505050565b60006080820190506143536000830187613920565b61436060208301866141bb565b61436d60408301856141bb565b818103606083015261437f8184613c15565b905095945050505050565b600060208201905061439f6000830184613b8d565b92915050565b60006020820190506143ba6000830184613c06565b92915050565b600060208201905081810360008301526143da8184613c15565b905092915050565b600060208201905081810360008301526143fc8184613c7f565b905092915050565b6000602082019050818103600083015261441d81613d7e565b9050919050565b6000602082019050818103600083015261443d81613da1565b9050919050565b6000602082019050818103600083015261445d81613dc4565b9050919050565b6000602082019050818103600083015261447d81613de7565b9050919050565b6000602082019050818103600083015261449d81613e0a565b9050919050565b600060208201905081810360008301526144bd81613e2d565b9050919050565b600060208201905081810360008301526144dd81613e50565b9050919050565b600060208201905081810360008301526144fd81613e73565b9050919050565b6000602082019050818103600083015261451d81613e96565b9050919050565b6000602082019050818103600083015261453d81613eb9565b9050919050565b6000602082019050818103600083015261455d81613edc565b9050919050565b6000602082019050818103600083015261457d81613eff565b9050919050565b6000602082019050818103600083015261459d81613f22565b9050919050565b600060208201905081810360008301526145bd81613f45565b9050919050565b600060208201905081810360008301526145dd81613f68565b9050919050565b600060208201905081810360008301526145fd81613f8b565b9050919050565b6000602082019050818103600083015261461d81613fae565b9050919050565b6000602082019050818103600083015261463d81613fd1565b9050919050565b6000602082019050818103600083015261465d81613ff4565b9050919050565b6000602082019050818103600083015261467d81614017565b9050919050565b6000602082019050818103600083015261469d8161403a565b9050919050565b600060208201905081810360008301526146bd8161405d565b9050919050565b600060208201905081810360008301526146dd81614080565b9050919050565b600060208201905081810360008301526146fd816140a3565b9050919050565b6000602082019050818103600083015261471d816140c6565b9050919050565b6000602082019050818103600083015261473d816140e9565b9050919050565b6000602082019050818103600083015261475d8161410c565b9050919050565b6000602082019050818103600083015261477d8161412f565b9050919050565b6000602082019050818103600083015261479d81614152565b9050919050565b600060208201905081810360008301526147bd81614175565b9050919050565b600060208201905081810360008301526147dd81614198565b9050919050565b60006020820190506147f960008301846141bb565b92915050565b600060208201905061481460008301846141d9565b92915050565b6000614824614835565b90506148308282614c47565b919050565b6000604051905090565b600067ffffffffffffffff82111561485a57614859614ddd565b5b61486382614e20565b9050602081019050919050565b600067ffffffffffffffff82111561488b5761488a614ddd565b5b61489482614e20565b9050602081019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081549050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061494082614ad7565b915061494b83614ad7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149805761497f614cf2565b5b828201905092915050565b600061499682614ad7565b91506149a183614ad7565b9250826149b1576149b0614d21565b5b828204905092915050565b60006149c782614ad7565b91506149d283614ad7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0b57614a0a614cf2565b5b828202905092915050565b6000614a2182614ad7565b9150614a2c83614ad7565b925082821015614a3f57614a3e614cf2565b5b828203905092915050565b600063ffffffff82169050919050565b6000614a6582614ab7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614ab2826155f0565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000614afc82614aa4565b9050919050565b82818337600083830152505050565b60005b83811015614b30578082015181840152602081019050614b15565b83811115614b3f576000848401525b50505050565b60006002820490506001821680614b5d57607f821691505b60208210811415614b7157614b70614d7f565b5b50919050565b6000614b8a614b8583614e31565b614a4a565b9050919050565b6000614ba4614b9f83614e8c565b614a4a565b9050919050565b6000614bbe614bb983614e3e565b614a4a565b9050919050565b6000614bd8614bd383614e4b565b614a4a565b9050919050565b6000614bf2614bed83614e58565b614a4a565b9050919050565b6000614c0c614c0783614e65565b614a4a565b9050919050565b6000614c26614c2183614e72565b614a4a565b9050919050565b6000614c40614c3b83614e7f565b614a4a565b9050919050565b614c5082614e20565b810181811067ffffffffffffffff82111715614c6f57614c6e614ddd565b5b80604052505050565b6000614c8382614ad7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb657614cb5614cf2565b5b600182019050919050565b6000614ccc82614ad7565b9150614cd783614ad7565b925082614ce757614ce6614d21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160001c9050919050565b60008160801c9050919050565b60008160a01c9050919050565b60008160c01c9050919050565b60008160e01c9050919050565b60008160201c9050919050565b60008160401c9050919050565b60008160601c9050919050565b7f4e6f742074696d6520746f207075726368617365000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f75742072616e6765206f6620746f6b656e20616d6f756e7400000000000000600082015250565b7f416c6c204e465473207765726520736f6c64206f757400000000000000000000600082015250565b7f44656661756c7420746f6b656e20555249206973206e6f742073657400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f7574206f662062616c616e6365000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4e6f7420726561647920746f20707572636861736520746f6b656e7300000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f426174746c65206973206e6f7420737461727465640000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e7320746f20706c617900000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045544820666f7220627579696e6720746f6b656e73600082015250565b7f546f6b656e207072696365206973207a65726f00000000000000000000000000600082015250565b6003811061560157615600614d50565b5b50565b61560d81614a5a565b811461561857600080fd5b50565b61562481614a6c565b811461562f57600080fd5b50565b61563b81614a78565b811461564657600080fd5b50565b61565281614ad7565b811461565d57600080fd5b5056fea264697066735822122086728ebcb5b343c3bb75596b57d2cf06b7af5c9992ec5ff6bf063bd55c1562a564736f6c634300080600330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000061f8f69000000000000000000000000000000000000000000000000000000000000000384e6966747920526f79616c6520582042617365642046697368204d616669613a2054686520426174746c65206f6620436f72616c656f6e65000000000000000000000000000000000000000000000000000000000000000000000000000000084e5242464d544243000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6e69667479726f79616c652e6d7970696e6174612e636c6f75642f697066732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52557868723476597041483179374b75515931785871423266665879664b524e41524c374d554e783377666d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5941505166335a374d35726437767963437354386e343839764c34516a53774b594e5a79544a326665357957000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102295760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107e8578063efef39a114610825578063f14210a614610841578063f2fde38b1461086a578063f9cae7e01461089357610230565b8063b88d4fde146106f1578063c87b56dd1461071a578063cde85f7f14610757578063d5abeb0114610780578063dc570d37146107ab57610230565b8063963bfe12116100f2578063963bfe121461061e5780639f82384914610649578063a035b1fe14610674578063a125c8241461069f578063a22cb465146106c857610230565b80638da5cb5b1461057657806391b7f5ed146105a1578063928d81c1146105ca57806395d89b41146105f357610230565b80633f52e589116101b15780636352211e116101755780636352211e146104915780636c0360eb146104ce5780636f8b44b0146104f957806370a0823114610522578063715018a61461055f57610230565b80633f52e589146103c25780634157e6ef146103eb57806342842e0e1461041457806355f804b31461043d57806361d161ea1461046657610230565b806318160ddd116101f857806318160ddd1461030357806323b872dd1461032e578063240a2c971461035757806333e651081461036e57806339518b5e1461039757610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613823565b6108be565b604051610269919061438a565b60405180910390f35b34801561027e57600080fd5b506102876109a0565b60405161029491906143c0565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906138c6565b610a32565b6040516102d19190614247565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906137b6565b610ab7565b005b34801561030f57600080fd5b50610318610bcf565b60405161032591906147e4565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906136a0565b610bd5565b005b34801561036357600080fd5b5061036c610c35565b005b34801561037a57600080fd5b506103956004803603810190610390919061387d565b610d7a565b005b3480156103a357600080fd5b506103ac610e48565b6040516103b991906147e4565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e491906138c6565b610e4e565b005b3480156103f757600080fd5b50610412600480360381019061040d91906138c6565b610f0b565b005b34801561042057600080fd5b5061043b600480360381019061043691906136a0565b611091565b005b34801561044957600080fd5b50610464600480360381019061045f919061387d565b6110b1565b005b34801561047257600080fd5b5061047b61117f565b60405161048891906147e4565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906138c6565b611185565b6040516104c59190614247565b60405180910390f35b3480156104da57600080fd5b506104e3611237565b6040516104f091906143c0565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906138c6565b6112c5565b005b34801561052e57600080fd5b5061054960048036038101906105449190613633565b611384565b60405161055691906147e4565b60405180910390f35b34801561056b57600080fd5b5061057461143c565b005b34801561058257600080fd5b5061058b6114c4565b6040516105989190614247565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c391906138c6565b6114ee565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906137b6565b6115ad565b005b3480156105ff57600080fd5b50610608611766565b60405161061591906143c0565b60405180910390f35b34801561062a57600080fd5b506106336117f8565b60405161064091906143c0565b60405180910390f35b34801561065557600080fd5b5061065e611886565b60405161066b91906143a5565b60405180910390f35b34801561068057600080fd5b50610689611899565b60405161069691906147e4565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061387d565b61189f565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613776565b61196d565b005b3480156106fd57600080fd5b50610718600480360381019061071391906136f3565b611983565b005b34801561072657600080fd5b50610741600480360381019061073c91906138c6565b6119e5565b60405161074e91906143c0565b60405180910390f35b34801561076357600080fd5b5061077e600480360381019061077991906138c6565b611b37565b005b34801561078c57600080fd5b50610795611bf6565b6040516107a291906147e4565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906138c6565b611bfc565b6040516107df91906147ff565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613660565b611c36565b60405161081c919061438a565b60405180910390f35b61083f600480360381019061083a91906138c6565b611cca565b005b34801561084d57600080fd5b50610868600480360381019061086391906138c6565b612088565b005b34801561087657600080fd5b50610891600480360381019061088c9190613633565b6121ce565b005b34801561089f57600080fd5b506108a86122c6565b6040516108b591906143c0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610999575061099882612354565b5b9050919050565b6060600080546109af90614b45565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90614b45565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b5050505050905090565b6000610a3d826123be565b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390614664565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac282611185565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90614724565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5261242a565b73ffffffffffffffffffffffffffffffffffffffff161480610b815750610b8081610b7b61242a565b611c36565b5b610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790614584565b60405180910390fd5b610bca8383612432565b505050565b600d5481565b610be6610be061242a565b826124eb565b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90614744565b60405180910390fd5b610c308383836125c9565b505050565b610c3d61242a565b73ffffffffffffffffffffffffffffffffffffffff16610c5b6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca8906146c4565b60405180910390fd5b6000600a8054610cc090614b45565b9050118015610cd457506001601080549050115b610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906146a4565b60405180910390fd5b6001600760146101000a81548160ff02191690836002811115610d3957610d38614d50565b5b02179055507f2e4f7a7d1eabb7c0f9ff13188522d2e95caabf86efaca88efbc3f4914cd20491306010604051610d709291906142ae565b60405180910390a1565b610d8261242a565b73ffffffffffffffffffffffffffffffffffffffff16610da06114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906146c4565b60405180910390fd5b80600a9080519060200190610e0c92919061341d565b507f11050bdf129877be9e71e184959f825f1c8ea8f55a0f9c0ce7cc43d4d5558c69600a604051610e3d91906143e2565b60405180910390a150565b600f5481565b610e5661242a565b73ffffffffffffffffffffffffffffffffffffffff16610e746114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906146c4565b60405180910390fd5b80600f819055507fa0d00b67de438a8cfea61334cc5f5f6ac9eb39004f44a59f03dcc7eec765facb81604051610f0091906147e4565b60405180910390a150565b610f1361242a565b73ffffffffffffffffffffffffffffffffffffffff16610f316114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e906146c4565b60405180910390fd5b60016002811115610f9b57610f9a614d50565b5b600760149054906101000a900460ff166002811115610fbd57610fbc614d50565b5b14610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614684565b60405180910390fd5b6002600760146101000a81548160ff0219169083600281111561102357611022614d50565b5b021790555060006008600a60405160200161103f929190614223565b60405160208183030381529060405290507f8856d910e0ffd1d94523959349e93105c16b3948d4744d570ea003d12d541ac730838484604051611085949392919061433e565b60405180910390a15050565b6110ac83838360405180602001604052806000815250611983565b505050565b6110b961242a565b73ffffffffffffffffffffffffffffffffffffffff166110d76114c4565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611124906146c4565b60405180910390fd5b806008908051906020019061114392919061341d565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f6600860405161117491906143e2565b60405180910390a150565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561122e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611225906145c4565b60405180910390fd5b80915050919050565b6008805461124490614b45565b80601f016020809104026020016040519081016040528092919081815260200182805461127090614b45565b80156112bd5780601f10611292576101008083540402835291602001916112bd565b820191906000526020600020905b8154815290600101906020018083116112a057829003601f168201915b505050505081565b6112cd61242a565b73ffffffffffffffffffffffffffffffffffffffff166112eb6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906146c4565b60405180910390fd5b80600c819055507facc639f1ff310faf48650d02a82bd24c924e45a5050fc931245096ac57c309d9600c5460405161137991906147e4565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906145a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144461242a565b73ffffffffffffffffffffffffffffffffffffffff166114626114c4565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906146c4565b60405180910390fd5b6114c26000612825565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114f661242a565b73ffffffffffffffffffffffffffffffffffffffff166115146114c4565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611561906146c4565b60405180910390fd5b80600b819055507f6bfd5e75539a9d2626425a2e2922675256b219fe546d63dad56011759b9a2f66600b546040516115a291906147e4565b60405180910390a150565b6115b561242a565b73ffffffffffffffffffffffffffffffffffffffff166115d36114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611620906146c4565b60405180910390fd5b600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116699190614247565b60206040518083038186803b15801561168157600080fd5b505afa158015611695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b991906138f3565b9050808311156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614564565b60405180910390fd5b61172933848473ffffffffffffffffffffffffffffffffffffffff166128eb9092919063ffffffff16565b7fb37f4ec23df2fbe884c08713adfee8f41c2841152798fa364c1e4eb49ec8ff41336040516117589190614247565b60405180910390a150505050565b60606001805461177590614b45565b80601f01602080910402602001604051908101604052809291908181526020018280546117a190614b45565b80156117ee5780601f106117c3576101008083540402835291602001916117ee565b820191906000526020600020905b8154815290600101906020018083116117d157829003601f168201915b5050505050905090565b6009805461180590614b45565b80601f016020809104026020016040519081016040528092919081815260200182805461183190614b45565b801561187e5780601f106118535761010080835404028352916020019161187e565b820191906000526020600020905b81548152906001019060200180831161186157829003601f168201915b505050505081565b600760149054906101000a900460ff1681565b600b5481565b6118a761242a565b73ffffffffffffffffffffffffffffffffffffffff166118c56114c4565b73ffffffffffffffffffffffffffffffffffffffff161461191b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611912906146c4565b60405180910390fd5b806009908051906020019061193192919061341d565b507f89c0c59bf6f19f6df5909eebedfa7eca3e887d44db48734e3ee45575ce361e36600960405161196291906143e2565b60405180910390a150565b61197f61197861242a565b8383612971565b5050565b61199461198e61242a565b836124eb565b6119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca90614744565b60405180910390fd5b6119df84848484612ade565b50505050565b60606119f0826123be565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614624565b60405180910390fd5b6000600660008481526020019081526020016000208054611a4f90614b45565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7b90614b45565b8015611ac85780601f10611a9d57610100808354040283529160200191611ac8565b820191906000526020600020905b815481529060010190602001808311611aab57829003601f168201915b505050505090506000611ad9612b3a565b9050600081511415611aef578192505050611b32565b600082511115611b24578082604051602001611b0c9291906141ff565b60405160208183030381529060405292505050611b32565b611b2d84612b51565b925050505b919050565b611b3f61242a565b73ffffffffffffffffffffffffffffffffffffffff16611b5d6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa906146c4565b60405180910390fd5b80600e819055507f3e8e799e74e88433cfb7372a6b84f0462ec4120bfc959930172d365c6e3808cc600e54604051611beb91906147e4565b60405180910390a150565b600c5481565b60108181548110611c0c57600080fd5b9060005260206000209060089182820401919006600402915054906101000a900463ffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b5411611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906147c4565b60405180910390fd5b60006002811115611d2357611d22614d50565b5b600760149054906101000a900460ff166002811115611d4557611d44614d50565b5b14611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614644565b60405180910390fd5b6000600c54118015611d9a5750600c54600d54105b611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd0906144a4565b60405180910390fd5b600f54421015611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614404565b60405180910390fd5b611e266114c4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f6657600d54600c54611e689190614a16565b8111158015611e775750600081115b8015611e855750600e548111155b611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90614484565b60405180910390fd5b600060098054611ed390614b45565b905011611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906144c4565b60405180910390fd5b80600b54611f2391906149bc565b341015611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c906147a4565b60405180910390fd5b5b60005b8181101561202e576000600182600d54611f839190614935565b611f8d9190614935565b9050611f993382612bf8565b600060086009604051602001611fb0929190614223565b6040516020818303038152906040529050611fcb8282612c16565b60108290806001815401808255809150506001900390600052602060002090600891828204019190066004029091909190916101000a81548163ffffffff021916908363ffffffff1602179055505050808061202690614c78565b915050611f69565b5080600d60008282546120419190614935565b925050819055507ff761777482b4b40d2bcc0d050cfba6829900a2d8b3484bd0244ec0feeb3db5043382600d5460405161207d93929190614307565b60405180910390a150565b61209061242a565b73ffffffffffffffffffffffffffffffffffffffff166120ae6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb906146c4565b60405180910390fd5b60004790508082111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614564565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015612192573d6000803e3d6000fd5b507fd80edbda103ec0b71f36c87845a6adf924861e7eae59c86725c936b96ece0e9c336040516121c29190614247565b60405180910390a15050565b6121d661242a565b73ffffffffffffffffffffffffffffffffffffffff166121f46114c4565b73ffffffffffffffffffffffffffffffffffffffff161461224a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612241906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614444565b60405180910390fd5b6122c381612825565b50565b600a80546122d390614b45565b80601f01602080910402602001604051908101604052809291908181526020018280546122ff90614b45565b801561234c5780601f106123215761010080835404028352916020019161234c565b820191906000526020600020905b81548152906001019060200180831161232f57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124a583611185565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124f6826123be565b612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c90614544565b60405180910390fd5b600061254083611185565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125af57508373ffffffffffffffffffffffffffffffffffffffff1661259784610a32565b73ffffffffffffffffffffffffffffffffffffffff16145b806125c057506125bf8185611c36565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125e982611185565b73ffffffffffffffffffffffffffffffffffffffff161461263f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612636906146e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a6906144e4565b60405180910390fd5b6126ba838383612c8a565b6126c5600082612432565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127159190614a16565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276c9190614935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61296c8363a9059cbb60e01b848460405160240161290a9291906142de565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612c8f565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614504565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad1919061438a565b60405180910390a3505050565b612ae98484846125c9565b612af584848484612d56565b612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b90614424565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060612b5c826123be565b612b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9290614704565b60405180910390fd5b6000612ba5612b3a565b90506000815111612bc55760405180602001604052806000815250612bf0565b80612bcf84612eed565b604051602001612be09291906141ff565b6040516020818303038152906040525b915050919050565b612c1282826040518060200160405280600081525061304e565b5050565b612c1f826123be565b612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c55906145e4565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612c8592919061341d565b505050565b505050565b6000612cf1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130a99092919063ffffffff16565b9050600081511115612d515780806020019051810190612d1191906137f6565b612d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4790614784565b60405180910390fd5b5b505050565b6000612d778473ffffffffffffffffffffffffffffffffffffffff166130c1565b15612ee0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da061242a565b8786866040518563ffffffff1660e01b8152600401612dc29493929190614262565b602060405180830381600087803b158015612ddc57600080fd5b505af1925050508015612e0d57506040513d601f19601f82011682018060405250810190612e0a9190613850565b60015b612e90573d8060008114612e3d576040519150601f19603f3d011682016040523d82523d6000602084013e612e42565b606091505b50600081511415612e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7f90614424565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ee5565b600190505b949350505050565b60606000821415612f35576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613049565b600082905060005b60008214612f67578080612f5090614c78565b915050600a82612f60919061498b565b9150612f3d565b60008167ffffffffffffffff811115612f8357612f82614ddd565b5b6040519080825280601f01601f191660200182016040528015612fb55781602001600182028036833780820191505090505b5090505b6000851461304257600182612fce9190614a16565b9150600a85612fdd9190614cc1565b6030612fe99190614935565b60f81b818381518110612fff57612ffe614dae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561303b919061498b565b9450612fb9565b8093505050505b919050565b61305883836130d4565b6130656000848484612d56565b6130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614424565b60405180910390fd5b505050565b60606130b884846000856132a2565b90509392505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313b90614604565b60405180910390fd5b61314d816123be565b1561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490614464565b60405180910390fd5b61319960008383612c8a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e99190614935565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060824710156132e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132de90614524565b60405180910390fd5b6132f0856130c1565b61332f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332690614764565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161335891906141e8565b60006040518083038185875af1925050503d8060008114613395576040519150601f19603f3d011682016040523d82523d6000602084013e61339a565b606091505b50915091506133aa8282866133b6565b92505050949350505050565b606083156133c657829050613416565b6000835111156133d95782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340d91906143c0565b60405180910390fd5b9392505050565b82805461342990614b45565b90600052602060002090601f01602090048101928261344b5760008555613492565b82601f1061346457805160ff1916838001178555613492565b82800160010185558215613492579182015b82811115613491578251825591602001919060010190613476565b5b50905061349f91906134a3565b5090565b5b808211156134bc5760008160009055506001016134a4565b5090565b60006134d36134ce8461483f565b61481a565b9050828152602081018484840111156134ef576134ee614e11565b5b6134fa848285614b03565b509392505050565b600061351561351084614870565b61481a565b90508281526020810184848401111561353157613530614e11565b5b61353c848285614b03565b509392505050565b60008135905061355381615604565b92915050565b6000813590506135688161561b565b92915050565b60008151905061357d8161561b565b92915050565b60008135905061359281615632565b92915050565b6000815190506135a781615632565b92915050565b600082601f8301126135c2576135c1614e0c565b5b81356135d28482602086016134c0565b91505092915050565b600082601f8301126135f0576135ef614e0c565b5b8135613600848260208601613502565b91505092915050565b60008135905061361881615649565b92915050565b60008151905061362d81615649565b92915050565b60006020828403121561364957613648614e1b565b5b600061365784828501613544565b91505092915050565b6000806040838503121561367757613676614e1b565b5b600061368585828601613544565b925050602061369685828601613544565b9150509250929050565b6000806000606084860312156136b9576136b8614e1b565b5b60006136c786828701613544565b93505060206136d886828701613544565b92505060406136e986828701613609565b9150509250925092565b6000806000806080858703121561370d5761370c614e1b565b5b600061371b87828801613544565b945050602061372c87828801613544565b935050604061373d87828801613609565b925050606085013567ffffffffffffffff81111561375e5761375d614e16565b5b61376a878288016135ad565b91505092959194509250565b6000806040838503121561378d5761378c614e1b565b5b600061379b85828601613544565b92505060206137ac85828601613559565b9150509250929050565b600080604083850312156137cd576137cc614e1b565b5b60006137db85828601613544565b92505060206137ec85828601613609565b9150509250929050565b60006020828403121561380c5761380b614e1b565b5b600061381a8482850161356e565b91505092915050565b60006020828403121561383957613838614e1b565b5b600061384784828501613583565b91505092915050565b60006020828403121561386657613865614e1b565b5b600061387484828501613598565b91505092915050565b60006020828403121561389357613892614e1b565b5b600082013567ffffffffffffffff8111156138b1576138b0614e16565b5b6138bd848285016135db565b91505092915050565b6000602082840312156138dc576138db614e1b565b5b60006138ea84828501613609565b91505092915050565b60006020828403121561390957613908614e1b565b5b60006139178482850161361e565b91505092915050565b61392981614a5a565b82525050565b600061393a826148cb565b61394481856148ec565b935083613950846148a1565b6000600115613a3d575b83600160080382011015613a3c57815461397c8861397783614b77565b6141ca565b6020880197506139948861398f83614c13565b6141ca565b6020880197506139ac886139a783614c2d565b6141ca565b6020880197506139c4886139bf83614b91565b6141ca565b6020880197506139dc886139d783614bab565b6141ca565b6020880197506139f4886139ef83614bc5565b6141ca565b602088019750613a0c88613a0783614bdf565b6141ca565b602088019750613a2488613a1f83614bf9565b6141ca565b6020880197506001830192505060088101905061395a565b5b600115613b8057815484821015613a6d57613a6088613a5b83614b77565b6141ca565b6020880197506001820191505b84821015613a9457613a8788613a8283614c13565b6141ca565b6020880197506001820191505b84821015613abb57613aae88613aa983614c2d565b6141ca565b6020880197506001820191505b84821015613ae257613ad588613ad083614b91565b6141ca565b6020880197506001820191505b84821015613b0957613afc88613af783614bab565b6141ca565b6020880197506001820191505b84821015613b3057613b2388613b1e83614bc5565b6141ca565b6020880197506001820191505b84821015613b5757613b4a88613b4583614bdf565b6141ca565b6020880197506001820191505b84821015613b7e57613b7188613b6c83614bf9565b6141ca565b6020880197506001820191505b505b8694505050505092915050565b613b9681614a6c565b82525050565b6000613ba7826148d6565b613bb181856148fd565b9350613bc1818560208601614b12565b613bca81614e20565b840191505092915050565b6000613be0826148d6565b613bea818561490e565b9350613bfa818560208601614b12565b80840191505092915050565b613c0f81614af1565b82525050565b6000613c20826148e1565b613c2a8185614919565b9350613c3a818560208601614b12565b613c4381614e20565b840191505092915050565b6000613c59826148e1565b613c63818561492a565b9350613c73818560208601614b12565b80840191505092915050565b60008154613c8c81614b45565b613c968186614919565b94506001821660008114613cb15760018114613cc357613cf6565b60ff1983168652602086019350613cf6565b613ccc856148b6565b60005b83811015613cee57815481890152600182019150602081019050613ccf565b808801955050505b50505092915050565b60008154613d0c81614b45565b613d16818661492a565b94506001821660008114613d315760018114613d4257613d75565b60ff19831686528186019350613d75565b613d4b856148b6565b60005b83811015613d6d57815481890152600182019150602081019050613d4e565b838801955050505b50505092915050565b6000613d8b601483614919565b9150613d9682614e99565b602082019050919050565b6000613dae603283614919565b9150613db982614ec2565b604082019050919050565b6000613dd1602683614919565b9150613ddc82614f11565b604082019050919050565b6000613df4601c83614919565b9150613dff82614f60565b602082019050919050565b6000613e17601983614919565b9150613e2282614f89565b602082019050919050565b6000613e3a601683614919565b9150613e4582614fb2565b602082019050919050565b6000613e5d601c83614919565b9150613e6882614fdb565b602082019050919050565b6000613e80602483614919565b9150613e8b82615004565b604082019050919050565b6000613ea3601983614919565b9150613eae82615053565b602082019050919050565b6000613ec6602683614919565b9150613ed18261507c565b604082019050919050565b6000613ee9602c83614919565b9150613ef4826150cb565b604082019050919050565b6000613f0c600e83614919565b9150613f178261511a565b602082019050919050565b6000613f2f603883614919565b9150613f3a82615143565b604082019050919050565b6000613f52602a83614919565b9150613f5d82615192565b604082019050919050565b6000613f75602983614919565b9150613f80826151e1565b604082019050919050565b6000613f98602e83614919565b9150613fa382615230565b604082019050919050565b6000613fbb602083614919565b9150613fc68261527f565b602082019050919050565b6000613fde603183614919565b9150613fe9826152a8565b604082019050919050565b6000614001601c83614919565b915061400c826152f7565b602082019050919050565b6000614024602c83614919565b915061402f82615320565b604082019050919050565b6000614047601583614919565b91506140528261536f565b602082019050919050565b600061406a601983614919565b915061407582615398565b602082019050919050565b600061408d602083614919565b9150614098826153c1565b602082019050919050565b60006140b0602983614919565b91506140bb826153ea565b604082019050919050565b60006140d3602f83614919565b91506140de82615439565b604082019050919050565b60006140f6602183614919565b915061410182615488565b604082019050919050565b6000614119603183614919565b9150614124826154d7565b604082019050919050565b600061413c601d83614919565b915061414782615526565b602082019050919050565b600061415f602a83614919565b915061416a8261554f565b604082019050919050565b6000614182602083614919565b915061418d8261559e565b602082019050919050565b60006141a5601383614919565b91506141b0826155c7565b602082019050919050565b6141c481614ad7565b82525050565b6141d381614ae1565b82525050565b6141e281614ae1565b82525050565b60006141f48284613bd5565b915081905092915050565b600061420b8285613c4e565b91506142178284613c4e565b91508190509392505050565b600061422f8285613cff565b915061423b8284613cff565b91508190509392505050565b600060208201905061425c6000830184613920565b92915050565b60006080820190506142776000830187613920565b6142846020830186613920565b61429160408301856141bb565b81810360608301526142a38184613b9c565b905095945050505050565b60006040820190506142c36000830185613920565b81810360208301526142d5818461392f565b90509392505050565b60006040820190506142f36000830185613920565b61430060208301846141bb565b9392505050565b600060608201905061431c6000830186613920565b61432960208301856141bb565b61433660408301846141bb565b949350505050565b60006080820190506143536000830187613920565b61436060208301866141bb565b61436d60408301856141bb565b818103606083015261437f8184613c15565b905095945050505050565b600060208201905061439f6000830184613b8d565b92915050565b60006020820190506143ba6000830184613c06565b92915050565b600060208201905081810360008301526143da8184613c15565b905092915050565b600060208201905081810360008301526143fc8184613c7f565b905092915050565b6000602082019050818103600083015261441d81613d7e565b9050919050565b6000602082019050818103600083015261443d81613da1565b9050919050565b6000602082019050818103600083015261445d81613dc4565b9050919050565b6000602082019050818103600083015261447d81613de7565b9050919050565b6000602082019050818103600083015261449d81613e0a565b9050919050565b600060208201905081810360008301526144bd81613e2d565b9050919050565b600060208201905081810360008301526144dd81613e50565b9050919050565b600060208201905081810360008301526144fd81613e73565b9050919050565b6000602082019050818103600083015261451d81613e96565b9050919050565b6000602082019050818103600083015261453d81613eb9565b9050919050565b6000602082019050818103600083015261455d81613edc565b9050919050565b6000602082019050818103600083015261457d81613eff565b9050919050565b6000602082019050818103600083015261459d81613f22565b9050919050565b600060208201905081810360008301526145bd81613f45565b9050919050565b600060208201905081810360008301526145dd81613f68565b9050919050565b600060208201905081810360008301526145fd81613f8b565b9050919050565b6000602082019050818103600083015261461d81613fae565b9050919050565b6000602082019050818103600083015261463d81613fd1565b9050919050565b6000602082019050818103600083015261465d81613ff4565b9050919050565b6000602082019050818103600083015261467d81614017565b9050919050565b6000602082019050818103600083015261469d8161403a565b9050919050565b600060208201905081810360008301526146bd8161405d565b9050919050565b600060208201905081810360008301526146dd81614080565b9050919050565b600060208201905081810360008301526146fd816140a3565b9050919050565b6000602082019050818103600083015261471d816140c6565b9050919050565b6000602082019050818103600083015261473d816140e9565b9050919050565b6000602082019050818103600083015261475d8161410c565b9050919050565b6000602082019050818103600083015261477d8161412f565b9050919050565b6000602082019050818103600083015261479d81614152565b9050919050565b600060208201905081810360008301526147bd81614175565b9050919050565b600060208201905081810360008301526147dd81614198565b9050919050565b60006020820190506147f960008301846141bb565b92915050565b600060208201905061481460008301846141d9565b92915050565b6000614824614835565b90506148308282614c47565b919050565b6000604051905090565b600067ffffffffffffffff82111561485a57614859614ddd565b5b61486382614e20565b9050602081019050919050565b600067ffffffffffffffff82111561488b5761488a614ddd565b5b61489482614e20565b9050602081019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081549050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061494082614ad7565b915061494b83614ad7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149805761497f614cf2565b5b828201905092915050565b600061499682614ad7565b91506149a183614ad7565b9250826149b1576149b0614d21565b5b828204905092915050565b60006149c782614ad7565b91506149d283614ad7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0b57614a0a614cf2565b5b828202905092915050565b6000614a2182614ad7565b9150614a2c83614ad7565b925082821015614a3f57614a3e614cf2565b5b828203905092915050565b600063ffffffff82169050919050565b6000614a6582614ab7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614ab2826155f0565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000614afc82614aa4565b9050919050565b82818337600083830152505050565b60005b83811015614b30578082015181840152602081019050614b15565b83811115614b3f576000848401525b50505050565b60006002820490506001821680614b5d57607f821691505b60208210811415614b7157614b70614d7f565b5b50919050565b6000614b8a614b8583614e31565b614a4a565b9050919050565b6000614ba4614b9f83614e8c565b614a4a565b9050919050565b6000614bbe614bb983614e3e565b614a4a565b9050919050565b6000614bd8614bd383614e4b565b614a4a565b9050919050565b6000614bf2614bed83614e58565b614a4a565b9050919050565b6000614c0c614c0783614e65565b614a4a565b9050919050565b6000614c26614c2183614e72565b614a4a565b9050919050565b6000614c40614c3b83614e7f565b614a4a565b9050919050565b614c5082614e20565b810181811067ffffffffffffffff82111715614c6f57614c6e614ddd565b5b80604052505050565b6000614c8382614ad7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb657614cb5614cf2565b5b600182019050919050565b6000614ccc82614ad7565b9150614cd783614ad7565b925082614ce757614ce6614d21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160001c9050919050565b60008160801c9050919050565b60008160a01c9050919050565b60008160c01c9050919050565b60008160e01c9050919050565b60008160201c9050919050565b60008160401c9050919050565b60008160601c9050919050565b7f4e6f742074696d6520746f207075726368617365000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f75742072616e6765206f6620746f6b656e20616d6f756e7400000000000000600082015250565b7f416c6c204e465473207765726520736f6c64206f757400000000000000000000600082015250565b7f44656661756c7420746f6b656e20555249206973206e6f742073657400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f7574206f662062616c616e6365000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4e6f7420726561647920746f20707572636861736520746f6b656e7300000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f426174746c65206973206e6f7420737461727465640000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e7320746f20706c617900000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045544820666f7220627579696e6720746f6b656e73600082015250565b7f546f6b656e207072696365206973207a65726f00000000000000000000000000600082015250565b6003811061560157615600614d50565b5b50565b61560d81614a5a565b811461561857600080fd5b50565b61562481614a6c565b811461562f57600080fd5b50565b61563b81614a78565b811461564657600080fd5b50565b61565281614ad7565b811461565d57600080fd5b5056fea264697066735822122086728ebcb5b343c3bb75596b57d2cf06b7af5c9992ec5ff6bf063bd55c1562a564736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000061f8f69000000000000000000000000000000000000000000000000000000000000000384e6966747920526f79616c6520582042617365642046697368204d616669613a2054686520426174746c65206f6620436f72616c656f6e65000000000000000000000000000000000000000000000000000000000000000000000000000000084e5242464d544243000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6e69667479726f79616c652e6d7970696e6174612e636c6f75642f697066732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52557868723476597041483179374b75515931785871423266665879664b524e41524c374d554e783377666d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5941505166335a374d35726437767963437354386e343839764c34516a53774b594e5a79544a326665357957000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Nifty Royale X Based Fish Mafia: The Battle of Coraleone
Arg [1] : _symbol (string): NRBFMTBC
Arg [2] : _price (uint256): 50000000000000000
Arg [3] : _unitsPerTransaction (uint256): 10
Arg [4] : _maxSupply (uint256): 3000
Arg [5] : _baseURI (string): https://niftyroyale.mypinata.cloud/ipfs/
Arg [6] : _defaultTokenURI (string): QmRUxhr4vYpAH1y7KuQY1xXqB2ffXyfKRNARL7MUNx3wfm
Arg [7] : _prizeTokenURI (string): QmYAPQf3Z7M5rd7vycCsT8n489vL4QjSwKYNZyTJ2fe5yW
Arg [8] : _startingTime (uint256): 1643706000

-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [8] : 0000000000000000000000000000000000000000000000000000000061f8f690
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000038
Arg [10] : 4e6966747920526f79616c6520582042617365642046697368204d616669613a
Arg [11] : 2054686520426174746c65206f6620436f72616c656f6e650000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 4e5242464d544243000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [15] : 68747470733a2f2f6e69667479726f79616c652e6d7970696e6174612e636c6f
Arg [16] : 75642f697066732f000000000000000000000000000000000000000000000000
Arg [17] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [18] : 516d52557868723476597041483179374b75515931785871423266665879664b
Arg [19] : 524e41524c374d554e783377666d000000000000000000000000000000000000
Arg [20] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [21] : 516d5941505166335a374d35726437767963437354386e343839764c34516a53
Arg [22] : 774b594e5a79544a326665357957000000000000000000000000000000000000


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.