Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
25
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Foxes
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-12 */ pragma solidity ^0.8.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)); } } /** * @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); } /** * @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; } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /* * @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; } } /** * @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); } } /** * @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; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } /** * @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]; } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } //SPDX-License-Identifier: Unlicense // @title: Foxes From The Hood // @author: FoxesFromTheHood Team contract Foxes is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; bool private presale; bool private sale; uint256 public constant MAX_ITEMS = 2222; uint256 public MAX_PRESALE_ITEMS = 200; uint256 public constant MAX_RESERVE = 100; uint256 public PRICE = 8E16; // 0.08 ETH uint256 public RENAME_PRICE = 1E16; // 0.01 ETH uint256 public MAX_MINT = 50; uint256 public MAX_MINT_PRESALE = 50; address public constant devAddress = 0x0a3552eE37835330A6d934B3B7624B313C1a8126; string public baseTokenURI; string public PROVENANCE_HASH = ""; uint256 public REVEAL_TIMESTAMP; uint256 public startingIndexBlock; uint256 public startingIndex; event CreateAdvisor(uint256 indexed id); event AttributeChanged(uint256 indexed _tokenId, string _key, string _value); constructor(string memory baseURI) ERC721("Foxes From The Hood", "FoxesFromTheHood") { setBaseURI(baseURI); pause(true); presale = false; sale = false; REVEAL_TIMESTAMP = block.timestamp + (86400 * 7); } modifier saleIsOpen { require(_totalSupply() <= MAX_ITEMS, "Sale ended"); if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); } _; } function _totalSupply() internal view returns (uint) { return _tokenIdTracker.current(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function mintReserve(uint256 _count, address _to) public onlyOwner { uint256 total = _totalSupply(); require(total <= MAX_ITEMS, "Sale ended"); require(total + _count <= MAX_ITEMS, "Max limit"); for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } } function presaleMint(address _to, uint256 _count) public payable { uint256 total = _totalSupply(); require(presale == true, "Presale has not yet started"); require(total <= MAX_PRESALE_ITEMS, "Presale ended"); require(total + _count <= MAX_PRESALE_ITEMS, "Max limit"); if(msg.sender != owner()) { require(_count <= MAX_MINT_PRESALE, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); } for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } } function mint(address _to, uint256 _count) public payable saleIsOpen { uint256 total = _totalSupply(); require(sale == true, "Sale has not yet started"); require(total <= MAX_ITEMS, "Sale ended"); require(total + _count <= MAX_ITEMS, "Max limit"); if(msg.sender != owner()) { require(_count <= MAX_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); } for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } if (startingIndexBlock == 0 && (totalSupply() == MAX_ITEMS || block.timestamp >= REVEAL_TIMESTAMP)) { startingIndexBlock = block.number; } } function _mintAnElement(address _to) private { uint id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateAdvisor(id); } function price(uint256 _count) public view returns (uint256) { return PRICE.mul(_count); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setMaxMint(uint256 _count) external onlyOwner { MAX_MINT = _count; } function setMaxMintPresale(uint256 _count) external onlyOwner { MAX_MINT_PRESALE = _count; } function setRenamePrice(uint256 _price) external onlyOwner { RENAME_PRICE = _price; } function setMaxPresaleItems(uint256 _count) external onlyOwner { MAX_PRESALE_ITEMS = _count; } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory _provenanceHash) external onlyOwner { PROVENANCE_HASH = _provenanceHash; } /** * Set the starting index for the collection */ function setStartingIndex() external { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_ITEMS; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if (block.number.sub(startingIndexBlock) > 255) { startingIndex = uint256(blockhash(block.number - 1)) % MAX_ITEMS; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function pause(bool val) public onlyOwner { if (val == true) { _pause(); return; } _unpause(); } function startPresale() public onlyOwner { presale = true; } function startSale() public onlyOwner { sale = true; } function changeAttribute(uint256 tokenId, string memory key, string memory value) public payable { address owner = ERC721.ownerOf(tokenId); require(_msgSender() == owner, "This is not your Advisor."); uint256 amountPaid = msg.value; require(amountPaid == RENAME_PRICE, "There is a price for changing your attributes."); emit AttributeChanged(tokenId, key, value); } function withdrawAll() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(devAddress, balance.mul(5).div(100)); _widthdraw(msg.sender, address(this).balance); } function _widthdraw(address _address, uint256 _amount) private { (bool success,) = _address.call{value : _amount}(""); require(success, "Transfer failed."); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_key","type":"string"},{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AttributeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateAdvisor","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RENAME_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"key","type":"string"},{"internalType":"string","name":"value","type":"string"}],"name":"changeAttribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMintPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxPresaleItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setRenamePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260c8600d5567011c37937e080000600e55662386f26fc10000600f5560326010556032601155604051806020016040528060008152506013908051906020019062000051929190620005c7565b503480156200005f57600080fd5b506040516200681d3803806200681d8339818101604052810190620000859190620006e9565b6040518060400160405280601381526020017f466f7865732046726f6d2054686520486f6f64000000000000000000000000008152506040518060400160405280601081526020017f466f78657346726f6d546865486f6f6400000000000000000000000000000000815250816000908051906020019062000109929190620005c7565b50806001908051906020019062000122929190620005c7565b5050506200014562000139620001d760201b60201c565b620001df60201b60201c565b6000600a60146101000a81548160ff0219169083151502179055506200017181620002a560201b60201c565b6200018360016200035060201b60201c565b6000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff02191690831515021790555062093a8042620001ca9190620008a7565b6014819055505062000afd565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b5620001d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002db6200041760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032b9062000815565b60405180910390fd5b80601290805190602001906200034c929190620005c7565b5050565b62000360620001d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003866200041760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d69062000815565b60405180910390fd5b6001151581151514156200040357620003fd6200044160201b60201c565b62000414565b62000413620004f960201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000451620005b060201b60201c565b1562000494576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048b90620007f3565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004e0620001d760201b60201c565b604051620004ef9190620007b4565b60405180910390a1565b62000509620005b060201b60201c565b6200054b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054290620007d1565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa62000597620001d760201b60201c565b604051620005a69190620007b4565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b828054620005d59062000978565b90600052602060002090601f016020900481019282620005f9576000855562000645565b82601f106200061457805160ff191683800117855562000645565b8280016001018555821562000645579182015b828111156200064457825182559160200191906001019062000627565b5b50905062000654919062000658565b5090565b5b808211156200067357600081600090555060010162000659565b5090565b60006200068e620006888462000860565b62000837565b905082815260208101848484011115620006a757600080fd5b620006b484828562000942565b509392505050565b600082601f830112620006ce57600080fd5b8151620006e084826020860162000677565b91505092915050565b600060208284031215620006fc57600080fd5b600082015167ffffffffffffffff8111156200071757600080fd5b6200072584828501620006bc565b91505092915050565b620007398162000904565b82525050565b60006200074e60148362000896565b91506200075b8262000a82565b602082019050919050565b60006200077560108362000896565b9150620007828262000aab565b602082019050919050565b60006200079c60208362000896565b9150620007a98262000ad4565b602082019050919050565b6000602082019050620007cb60008301846200072e565b92915050565b60006020820190508181036000830152620007ec816200073f565b9050919050565b600060208201905081810360008301526200080e8162000766565b9050919050565b6000602082019050818103600083015262000830816200078d565b9050919050565b60006200084362000856565b9050620008518282620009ae565b919050565b6000604051905090565b600067ffffffffffffffff8211156200087e576200087d62000a42565b5b620008898262000a71565b9050602081019050919050565b600082825260208201905092915050565b6000620008b48262000938565b9150620008c18362000938565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008f957620008f8620009e4565b5b828201905092915050565b6000620009118262000918565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200096257808201518184015260208101905062000945565b8381111562000972576000848401525b50505050565b600060028204905060018216806200099157607f821691505b60208210811415620009a857620009a762000a13565b5b50919050565b620009b98262000a71565b810181811067ffffffffffffffff82111715620009db57620009da62000a42565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615d108062000b0d6000396000f3fe60806040526004361061031a5760003560e01c806370a08231116101ab578063b88d4fde116100f7578063e986655011610095578063f0292a031161006f578063f0292a0314610b42578063f2fde38b14610b6d578063ff1b655614610b96578063ff24937b14610bc15761031a565b8063e986655014610ae4578063ed16e3a614610afb578063eff31e9e14610b175761031a565b8063d547cfb7116100d1578063d547cfb714610a26578063d773154f14610a51578063e36d649814610a7c578063e985e9c514610aa75761031a565b8063b88d4fde14610995578063c87b56dd146109be578063cb774d47146109fb5761031a565b80638d859f3e116101645780639b6a67091161013e5780639b6a670914610910578063a22cb4651461092c578063a8307a3214610955578063b66a0e5d1461097e5761031a565b80638d859f3e1461088f5780638da5cb5b146108ba57806395d89b41146108e55761031a565b806370a08231146107c6578063715018a6146108035780637d17fcbe1461081a5780637e95eac414610831578063850dd0911461085c578063853828b6146108855761031a565b80632f745c591161026a5780634f6ccce71161022357806357d4c4ee116101fd57806357d4c4ee1461070857806359a7715a146107335780635c975abb1461075e5780636352211e146107895761031a565b80634f6ccce714610679578063547520fe146106b657806355f804b3146106df5761031a565b80632f745c59146105665780633ad10ef6146105a357806340c10f19146105ce57806342842e0e146105ea57806342966c6814610613578063438b63001461063c5761031a565b80630ffc6728116102d757806318160ddd116102b157806318160ddd146104aa57806318e20a38146104d557806323b872dd1461050057806326a49e37146105295761031a565b80630ffc67281461042d578063109695231461045857806313e7f27f146104815761031a565b806301ffc9a71461031f57806302329a291461035c57806304c98b2b1461038557806306fdde031461039c578063081812fc146103c7578063095ea7b314610404575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906142da565b610bea565b6040516103539190614b31565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906142b1565b610bfc565b005b34801561039157600080fd5b5061039a610c9e565b005b3480156103a857600080fd5b506103b1610d37565b6040516103be9190614b4c565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e9919061436d565b610dc9565b6040516103fb9190614aa8565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614275565b610e4e565b005b34801561043957600080fd5b50610442610f66565b60405161044f9190614fe5565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061432c565b610f6c565b005b34801561048d57600080fd5b506104a860048036038101906104a3919061436d565b611002565b005b3480156104b657600080fd5b506104bf611088565b6040516104cc9190614fe5565b60405180910390f35b3480156104e157600080fd5b506104ea611095565b6040516104f79190614fe5565b60405180910390f35b34801561050c57600080fd5b506105276004803603810190610522919061416f565b61109b565b005b34801561053557600080fd5b50610550600480360381019061054b919061436d565b6110fb565b60405161055d9190614fe5565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190614275565b611119565b60405161059a9190614fe5565b60405180910390f35b3480156105af57600080fd5b506105b86111be565b6040516105c59190614aa8565b60405180910390f35b6105e860048036038101906105e39190614275565b6111d6565b005b3480156105f657600080fd5b50610611600480360381019061060c919061416f565b6114cf565b005b34801561061f57600080fd5b5061063a6004803603810190610635919061436d565b6114ef565b005b34801561064857600080fd5b50610663600480360381019061065e919061410a565b61154b565b6040516106709190614b0f565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061436d565b611645565b6040516106ad9190614fe5565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d8919061436d565b6116dc565b005b3480156106eb57600080fd5b506107066004803603810190610701919061432c565b611762565b005b34801561071457600080fd5b5061071d6117f8565b60405161072a9190614fe5565b60405180910390f35b34801561073f57600080fd5b506107486117fe565b6040516107559190614fe5565b60405180910390f35b34801561076a57600080fd5b5061077361180d565b6040516107809190614b31565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab919061436d565b611824565b6040516107bd9190614aa8565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e8919061410a565b6118d6565b6040516107fa9190614fe5565b60405180910390f35b34801561080f57600080fd5b5061081861198e565b005b34801561082657600080fd5b5061082f611a16565b005b34801561083d57600080fd5b50610846611ae0565b6040516108539190614fe5565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e9190614396565b611ae6565b005b61088d611c30565b005b34801561089b57600080fd5b506108a4611d0f565b6040516108b19190614fe5565b60405180910390f35b3480156108c657600080fd5b506108cf611d15565b6040516108dc9190614aa8565b60405180910390f35b3480156108f157600080fd5b506108fa611d3f565b6040516109079190614b4c565b60405180910390f35b61092a60048036038101906109259190614275565b611dd1565b005b34801561093857600080fd5b50610953600480360381019061094e9190614239565b611fc0565b005b34801561096157600080fd5b5061097c6004803603810190610977919061436d565b612141565b005b34801561098a57600080fd5b506109936121c7565b005b3480156109a157600080fd5b506109bc60048036038101906109b791906141be565b612260565b005b3480156109ca57600080fd5b506109e560048036038101906109e0919061436d565b6122c2565b6040516109f29190614b4c565b60405180910390f35b348015610a0757600080fd5b50610a10612369565b604051610a1d9190614fe5565b60405180910390f35b348015610a3257600080fd5b50610a3b61236f565b604051610a489190614b4c565b60405180910390f35b348015610a5d57600080fd5b50610a666123fd565b604051610a739190614fe5565b60405180910390f35b348015610a8857600080fd5b50610a91612403565b604051610a9e9190614fe5565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190614133565b612409565b604051610adb9190614b31565b60405180910390f35b348015610af057600080fd5b50610af961249d565b005b610b156004803603810190610b1091906143d2565b6125ae565b005b348015610b2357600080fd5b50610b2c6126ba565b604051610b399190614fe5565b60405180910390f35b348015610b4e57600080fd5b50610b576126bf565b604051610b649190614fe5565b60405180910390f35b348015610b7957600080fd5b50610b946004803603810190610b8f919061410a565b6126c5565b005b348015610ba257600080fd5b50610bab6127bd565b604051610bb89190614b4c565b60405180910390f35b348015610bcd57600080fd5b50610be86004803603810190610be3919061436d565b61284b565b005b6000610bf5826128d1565b9050919050565b610c0461294b565b73ffffffffffffffffffffffffffffffffffffffff16610c22611d15565b73ffffffffffffffffffffffffffffffffffffffff1614610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90614e25565b60405180910390fd5b600115158115151415610c9257610c8d612953565b610c9b565b610c9a6129f6565b5b50565b610ca661294b565b73ffffffffffffffffffffffffffffffffffffffff16610cc4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190614e25565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b606060008054610d46906152d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d72906152d9565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b6000610dd482612a98565b610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90614e05565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5982611824565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec190614f05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee961294b565b73ffffffffffffffffffffffffffffffffffffffff161480610f185750610f1781610f1261294b565b612409565b5b610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90614d65565b60405180910390fd5b610f618383612b04565b505050565b600d5481565b610f7461294b565b73ffffffffffffffffffffffffffffffffffffffff16610f92611d15565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90614e25565b60405180910390fd5b8060139080519060200190610ffe929190613f2e565b5050565b61100a61294b565b73ffffffffffffffffffffffffffffffffffffffff16611028611d15565b73ffffffffffffffffffffffffffffffffffffffff161461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590614e25565b60405180910390fd5b8060118190555050565b6000600880549050905090565b60145481565b6110ac6110a661294b565b82612bbd565b6110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290614f85565b60405180910390fd5b6110f6838383612c9b565b505050565b600061111282600e54612ef790919063ffffffff16565b9050919050565b6000611124836118d6565b8210611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90614c05565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b730a3552ee37835330a6d934b3b7624b313c1a812681565b6108ae6111e1612f0d565b1115611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990614ec5565b60405180910390fd5b61122a611d15565b73ffffffffffffffffffffffffffffffffffffffff1661124861294b565b73ffffffffffffffffffffffffffffffffffffffff16146112ac5761126b61180d565b156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614d45565b60405180910390fd5b5b60006112b6612f0d565b905060011515600c60019054906101000a900460ff1615151461130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590614f25565b60405180910390fd5b6108ae811115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90614ec5565b60405180910390fd5b6108ae8282611362919061510e565b11156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90614ce5565b60405180910390fd5b6113ab611d15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461146e57601054821115611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990614be5565b60405180910390fd5b61142b826110fb565b34101561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490614ea5565b60405180910390fd5b5b60005b828110156114955761148284612f1e565b808061148d9061533c565b915050611471565b5060006015541480156114bd57506108ae6114ae611088565b14806114bc57506014544210155b5b156114ca57436015819055505b505050565b6114ea83838360405180602001604052806000815250612260565b505050565b6115006114fa61294b565b82612bbd565b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690614fc5565b60405180910390fd5b61154881612f6f565b50565b60606000611558836118d6565b905060008167ffffffffffffffff81111561159c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115ca5781602001602082028036833780820191505090505b50905060005b8281101561163a576115e28582611119565b82828151811061161b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806116329061533c565b9150506115d0565b508092505050919050565b600061164f611088565b8210611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790614fa5565b60405180910390fd5b600882815481106116ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116e461294b565b73ffffffffffffffffffffffffffffffffffffffff16611702611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614e25565b60405180910390fd5b8060108190555050565b61176a61294b565b73ffffffffffffffffffffffffffffffffffffffff16611788611d15565b73ffffffffffffffffffffffffffffffffffffffff16146117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590614e25565b60405180910390fd5b80601290805190602001906117f4929190613f2e565b5050565b6108ae81565b6000611808612f0d565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490614da5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614d85565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61199661294b565b73ffffffffffffffffffffffffffffffffffffffff166119b4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190614e25565b60405180910390fd5b611a146000613080565b565b611a1e61294b565b73ffffffffffffffffffffffffffffffffffffffff16611a3c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990614e25565b60405180910390fd5b600060165414611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614d25565b60405180910390fd5b43601581905550565b60115481565b611aee61294b565b73ffffffffffffffffffffffffffffffffffffffff16611b0c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990614e25565b60405180910390fd5b6000611b6c612f0d565b90506108ae811115611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614ec5565b60405180910390fd5b6108ae8382611bc2919061510e565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614ce5565b60405180910390fd5b60005b83811015611c2a57611c1783612f1e565b8080611c229061533c565b915050611c06565b50505050565b611c3861294b565b73ffffffffffffffffffffffffffffffffffffffff16611c56611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390614e25565b60405180910390fd5b600047905060008111611cbe57600080fd5b611d02730a3552ee37835330a6d934b3b7624b313c1a8126611cfd6064611cef600586612ef790919063ffffffff16565b61314690919063ffffffff16565b61315c565b611d0c334761315c565b50565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611d4e906152d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7a906152d9565b8015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b5050505050905090565b6000611ddb612f0d565b905060011515600c60009054906101000a900460ff16151514611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90614c65565b60405180910390fd5b600d54811115611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614e45565b60405180910390fd5b600d548282611e87919061510e565b1115611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90614ce5565b60405180910390fd5b611ed0611d15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f9357601154821115611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90614be5565b60405180910390fd5b611f50826110fb565b341015611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614ea5565b60405180910390fd5b5b60005b82811015611fba57611fa784612f1e565b8080611fb29061533c565b915050611f96565b50505050565b611fc861294b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614cc5565b60405180910390fd5b806005600061204361294b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120f061294b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121359190614b31565b60405180910390a35050565b61214961294b565b73ffffffffffffffffffffffffffffffffffffffff16612167611d15565b73ffffffffffffffffffffffffffffffffffffffff16146121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490614e25565b60405180910390fd5b80600f8190555050565b6121cf61294b565b73ffffffffffffffffffffffffffffffffffffffff166121ed611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614e25565b60405180910390fd5b6001600c60016101000a81548160ff021916908315150217905550565b61227161226b61294b565b83612bbd565b6122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614f85565b60405180910390fd5b6122bc8484848461320d565b50505050565b60606122cd82612a98565b61230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390614e85565b60405180910390fd5b6000612316613269565b905060008151116123365760405180602001604052806000815250612361565b80612340846132fb565b604051602001612351929190614a6f565b6040516020818303038152906040525b915050919050565b60165481565b6012805461237c906152d9565b80601f01602080910402602001604051908101604052809291908181526020018280546123a8906152d9565b80156123f55780601f106123ca576101008083540402835291602001916123f5565b820191906000526020600020905b8154815290600101906020018083116123d857829003601f168201915b505050505081565b600f5481565b60155481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601654146124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990614d25565b60405180910390fd5b60006015541415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f90614f45565b60405180910390fd5b6108ae6015544060001c61253c9190615385565b60168190555060ff612559601554436134a890919063ffffffff16565b1115612584576108ae60014361256f91906151ef565b4060001c61257d9190615385565b6016819055505b600060165414156125ac576125a560016016546134be90919063ffffffff16565b6016819055505b565b60006125b984611824565b90508073ffffffffffffffffffffffffffffffffffffffff166125da61294b565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614dc5565b60405180910390fd5b6000349050600f548114612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614ee5565b60405180910390fd5b847f071e2b5b04043a73f97c13dbdcd19e7f2d114c2277c6f5d4c6403e547756e45d85856040516126ab929190614b6e565b60405180910390a25050505050565b606481565b60105481565b6126cd61294b565b73ffffffffffffffffffffffffffffffffffffffff166126eb611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273890614e25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614c45565b60405180910390fd5b6127ba81613080565b50565b601380546127ca906152d9565b80601f01602080910402602001604051908101604052809291908181526020018280546127f6906152d9565b80156128435780601f1061281857610100808354040283529160200191612843565b820191906000526020600020905b81548152906001019060200180831161282657829003601f168201915b505050505081565b61285361294b565b73ffffffffffffffffffffffffffffffffffffffff16612871611d15565b73ffffffffffffffffffffffffffffffffffffffff16146128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be90614e25565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129445750612943826134d4565b5b9050919050565b600033905090565b61295b61180d565b1561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290614d45565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129df61294b565b6040516129ec9190614aa8565b60405180910390a1565b6129fe61180d565b612a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3490614bc5565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a8161294b565b604051612a8e9190614aa8565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b7783611824565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bc882612a98565b612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90614d05565b60405180910390fd5b6000612c1283611824565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c8157508373ffffffffffffffffffffffffffffffffffffffff16612c6984610dc9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c925750612c918185612409565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cbb82611824565b73ffffffffffffffffffffffffffffffffffffffff1614612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0890614e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7890614ca5565b60405180910390fd5b612d8c8383836135b6565b612d97600082612b04565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de791906151ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e3e919061510e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612f059190615195565b905092915050565b6000612f19600b6135c6565b905090565b6000612f28612f0d565b9050612f34600b6135d4565b612f3e82826135ea565b807f9155557c09d033e9fe02fdb737578bf19b8d0cdae05851cd5b0ddbc0c2d5be4b60405160405180910390a25050565b6000612f7a82611824565b9050612f88816000846135b6565b612f93600083612b04565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fe391906151ef565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836131549190615164565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161318290614a93565b60006040518083038185875af1925050503d80600081146131bf576040519150601f19603f3d011682016040523d82523d6000602084013e6131c4565b606091505b5050905080613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff90614f65565b60405180910390fd5b505050565b613218848484612c9b565b61322484848484613608565b613263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325a90614c25565b60405180910390fd5b50505050565b606060128054613278906152d9565b80601f01602080910402602001604051908101604052809291908181526020018280546132a4906152d9565b80156132f15780601f106132c6576101008083540402835291602001916132f1565b820191906000526020600020905b8154815290600101906020018083116132d457829003601f168201915b5050505050905090565b60606000821415613343576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a3565b600082905060005b6000821461337557808061335e9061533c565b915050600a8261336e9190615164565b915061334b565b60008167ffffffffffffffff8111156133b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133e95781602001600182028036833780820191505090505b5090505b6000851461349c5760018261340291906151ef565b9150600a856134119190615385565b603061341d919061510e565b60f81b818381518110613459577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134959190615164565b94506133ed565b8093505050505b919050565b600081836134b691906151ef565b905092915050565b600081836134cc919061510e565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061359f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806135af57506135ae8261379f565b5b9050919050565b6135c1838383613809565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b613604828260405180602001604052806000815250613861565b5050565b60006136298473ffffffffffffffffffffffffffffffffffffffff166138bc565b15613792578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261365261294b565b8786866040518563ffffffff1660e01b81526004016136749493929190614ac3565b602060405180830381600087803b15801561368e57600080fd5b505af19250505080156136bf57506040513d601f19601f820116820180604052508101906136bc9190614303565b60015b613742573d80600081146136ef576040519150601f19603f3d011682016040523d82523d6000602084013e6136f4565b606091505b5060008151141561373a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373190614c25565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613797565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138148383836138cf565b61381c61180d565b1561385c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385390614ba5565b60405180910390fd5b505050565b61386b83836139e3565b6138786000848484613608565b6138b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ae90614c25565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6138da838383613bb1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561391d5761391881613bb6565b61395c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461395b5761395a8382613bff565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399f5761399a81613d6c565b6139de565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146139dd576139dc8282613eaf565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4a90614de5565b60405180910390fd5b613a5c81612a98565b15613a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9390614c85565b60405180910390fd5b613aa8600083836135b6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613af8919061510e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c0c846118d6565b613c1691906151ef565b9050600060076000848152602001908152602001600020549050818114613cfb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613d8091906151ef565b9050600060096000848152602001908152602001600020549050600060088381548110613dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613e1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613eba836118d6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613f3a906152d9565b90600052602060002090601f016020900481019282613f5c5760008555613fa3565b82601f10613f7557805160ff1916838001178555613fa3565b82800160010185558215613fa3579182015b82811115613fa2578251825591602001919060010190613f87565b5b509050613fb09190613fb4565b5090565b5b80821115613fcd576000816000905550600101613fb5565b5090565b6000613fe4613fdf84615025565b615000565b905082815260208101848484011115613ffc57600080fd5b614007848285615297565b509392505050565b600061402261401d84615056565b615000565b90508281526020810184848401111561403a57600080fd5b614045848285615297565b509392505050565b60008135905061405c81615c7e565b92915050565b60008135905061407181615c95565b92915050565b60008135905061408681615cac565b92915050565b60008151905061409b81615cac565b92915050565b600082601f8301126140b257600080fd5b81356140c2848260208601613fd1565b91505092915050565b600082601f8301126140dc57600080fd5b81356140ec84826020860161400f565b91505092915050565b60008135905061410481615cc3565b92915050565b60006020828403121561411c57600080fd5b600061412a8482850161404d565b91505092915050565b6000806040838503121561414657600080fd5b60006141548582860161404d565b92505060206141658582860161404d565b9150509250929050565b60008060006060848603121561418457600080fd5b60006141928682870161404d565b93505060206141a38682870161404d565b92505060406141b4868287016140f5565b9150509250925092565b600080600080608085870312156141d457600080fd5b60006141e28782880161404d565b94505060206141f38782880161404d565b9350506040614204878288016140f5565b925050606085013567ffffffffffffffff81111561422157600080fd5b61422d878288016140a1565b91505092959194509250565b6000806040838503121561424c57600080fd5b600061425a8582860161404d565b925050602061426b85828601614062565b9150509250929050565b6000806040838503121561428857600080fd5b60006142968582860161404d565b92505060206142a7858286016140f5565b9150509250929050565b6000602082840312156142c357600080fd5b60006142d184828501614062565b91505092915050565b6000602082840312156142ec57600080fd5b60006142fa84828501614077565b91505092915050565b60006020828403121561431557600080fd5b60006143238482850161408c565b91505092915050565b60006020828403121561433e57600080fd5b600082013567ffffffffffffffff81111561435857600080fd5b614364848285016140cb565b91505092915050565b60006020828403121561437f57600080fd5b600061438d848285016140f5565b91505092915050565b600080604083850312156143a957600080fd5b60006143b7858286016140f5565b92505060206143c88582860161404d565b9150509250929050565b6000806000606084860312156143e757600080fd5b60006143f5868287016140f5565b935050602084013567ffffffffffffffff81111561441257600080fd5b61441e868287016140cb565b925050604084013567ffffffffffffffff81111561443b57600080fd5b614447868287016140cb565b9150509250925092565b600061445d8383614a51565b60208301905092915050565b61447281615223565b82525050565b600061448382615097565b61448d81856150c5565b935061449883615087565b8060005b838110156144c95781516144b08882614451565b97506144bb836150b8565b92505060018101905061449c565b5085935050505092915050565b6144df81615235565b82525050565b60006144f0826150a2565b6144fa81856150d6565b935061450a8185602086016152a6565b61451381615472565b840191505092915050565b6000614529826150ad565b61453381856150f2565b93506145438185602086016152a6565b61454c81615472565b840191505092915050565b6000614562826150ad565b61456c8185615103565b935061457c8185602086016152a6565b80840191505092915050565b6000614595602b836150f2565b91506145a082615483565b604082019050919050565b60006145b86014836150f2565b91506145c3826154d2565b602082019050919050565b60006145db600e836150f2565b91506145e6826154fb565b602082019050919050565b60006145fe602b836150f2565b915061460982615524565b604082019050919050565b60006146216032836150f2565b915061462c82615573565b604082019050919050565b60006146446026836150f2565b915061464f826155c2565b604082019050919050565b6000614667601b836150f2565b915061467282615611565b602082019050919050565b600061468a601c836150f2565b91506146958261563a565b602082019050919050565b60006146ad6024836150f2565b91506146b882615663565b604082019050919050565b60006146d06019836150f2565b91506146db826156b2565b602082019050919050565b60006146f36009836150f2565b91506146fe826156db565b602082019050919050565b6000614716602c836150f2565b915061472182615704565b604082019050919050565b6000614739601d836150f2565b915061474482615753565b602082019050919050565b600061475c6010836150f2565b91506147678261577c565b602082019050919050565b600061477f6038836150f2565b915061478a826157a5565b604082019050919050565b60006147a2602a836150f2565b91506147ad826157f4565b604082019050919050565b60006147c56029836150f2565b91506147d082615843565b604082019050919050565b60006147e86019836150f2565b91506147f382615892565b602082019050919050565b600061480b6020836150f2565b9150614816826158bb565b602082019050919050565b600061482e602c836150f2565b9150614839826158e4565b604082019050919050565b60006148516020836150f2565b915061485c82615933565b602082019050919050565b6000614874600d836150f2565b915061487f8261595c565b602082019050919050565b60006148976029836150f2565b91506148a282615985565b604082019050919050565b60006148ba602f836150f2565b91506148c5826159d4565b604082019050919050565b60006148dd6011836150f2565b91506148e882615a23565b602082019050919050565b6000614900600a836150f2565b915061490b82615a4c565b602082019050919050565b6000614923602e836150f2565b915061492e82615a75565b604082019050919050565b60006149466021836150f2565b915061495182615ac4565b604082019050919050565b60006149696018836150f2565b915061497482615b13565b602082019050919050565b600061498c6020836150f2565b915061499782615b3c565b602082019050919050565b60006149af6000836150e7565b91506149ba82615b65565b600082019050919050565b60006149d26010836150f2565b91506149dd82615b68565b602082019050919050565b60006149f56031836150f2565b9150614a0082615b91565b604082019050919050565b6000614a18602c836150f2565b9150614a2382615be0565b604082019050919050565b6000614a3b6030836150f2565b9150614a4682615c2f565b604082019050919050565b614a5a8161528d565b82525050565b614a698161528d565b82525050565b6000614a7b8285614557565b9150614a878284614557565b91508190509392505050565b6000614a9e826149a2565b9150819050919050565b6000602082019050614abd6000830184614469565b92915050565b6000608082019050614ad86000830187614469565b614ae56020830186614469565b614af26040830185614a60565b8181036060830152614b0481846144e5565b905095945050505050565b60006020820190508181036000830152614b298184614478565b905092915050565b6000602082019050614b4660008301846144d6565b92915050565b60006020820190508181036000830152614b66818461451e565b905092915050565b60006040820190508181036000830152614b88818561451e565b90508181036020830152614b9c818461451e565b90509392505050565b60006020820190508181036000830152614bbe81614588565b9050919050565b60006020820190508181036000830152614bde816145ab565b9050919050565b60006020820190508181036000830152614bfe816145ce565b9050919050565b60006020820190508181036000830152614c1e816145f1565b9050919050565b60006020820190508181036000830152614c3e81614614565b9050919050565b60006020820190508181036000830152614c5e81614637565b9050919050565b60006020820190508181036000830152614c7e8161465a565b9050919050565b60006020820190508181036000830152614c9e8161467d565b9050919050565b60006020820190508181036000830152614cbe816146a0565b9050919050565b60006020820190508181036000830152614cde816146c3565b9050919050565b60006020820190508181036000830152614cfe816146e6565b9050919050565b60006020820190508181036000830152614d1e81614709565b9050919050565b60006020820190508181036000830152614d3e8161472c565b9050919050565b60006020820190508181036000830152614d5e8161474f565b9050919050565b60006020820190508181036000830152614d7e81614772565b9050919050565b60006020820190508181036000830152614d9e81614795565b9050919050565b60006020820190508181036000830152614dbe816147b8565b9050919050565b60006020820190508181036000830152614dde816147db565b9050919050565b60006020820190508181036000830152614dfe816147fe565b9050919050565b60006020820190508181036000830152614e1e81614821565b9050919050565b60006020820190508181036000830152614e3e81614844565b9050919050565b60006020820190508181036000830152614e5e81614867565b9050919050565b60006020820190508181036000830152614e7e8161488a565b9050919050565b60006020820190508181036000830152614e9e816148ad565b9050919050565b60006020820190508181036000830152614ebe816148d0565b9050919050565b60006020820190508181036000830152614ede816148f3565b9050919050565b60006020820190508181036000830152614efe81614916565b9050919050565b60006020820190508181036000830152614f1e81614939565b9050919050565b60006020820190508181036000830152614f3e8161495c565b9050919050565b60006020820190508181036000830152614f5e8161497f565b9050919050565b60006020820190508181036000830152614f7e816149c5565b9050919050565b60006020820190508181036000830152614f9e816149e8565b9050919050565b60006020820190508181036000830152614fbe81614a0b565b9050919050565b60006020820190508181036000830152614fde81614a2e565b9050919050565b6000602082019050614ffa6000830184614a60565b92915050565b600061500a61501b565b9050615016828261530b565b919050565b6000604051905090565b600067ffffffffffffffff8211156150405761503f615443565b5b61504982615472565b9050602081019050919050565b600067ffffffffffffffff82111561507157615070615443565b5b61507a82615472565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151198261528d565b91506151248361528d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615159576151586153b6565b5b828201905092915050565b600061516f8261528d565b915061517a8361528d565b92508261518a576151896153e5565b5b828204905092915050565b60006151a08261528d565b91506151ab8361528d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151e4576151e36153b6565b5b828202905092915050565b60006151fa8261528d565b91506152058361528d565b925082821015615218576152176153b6565b5b828203905092915050565b600061522e8261526d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156152c45780820151818401526020810190506152a9565b838111156152d3576000848401525b50505050565b600060028204905060018216806152f157607f821691505b6020821081141561530557615304615414565b5b50919050565b61531482615472565b810181811067ffffffffffffffff8211171561533357615332615443565b5b80604052505050565b60006153478261528d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561537a576153796153b6565b5b600182019050919050565b60006153908261528d565b915061539b8361528d565b9250826153ab576153aa6153e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520686173206e6f742079657420737461727465640000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f54686973206973206e6f7420796f75722041647669736f722e00000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50726573616c6520656e64656400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f5468657265206973206120707269636520666f72206368616e67696e6720796f60008201527f757220617474726962757465732e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742079657420737461727465640000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615c8781615223565b8114615c9257600080fd5b50565b615c9e81615235565b8114615ca957600080fd5b50565b615cb581615241565b8114615cc057600080fd5b50565b615ccc8161528d565b8114615cd757600080fd5b5056fea2646970667358221220eed9fdbd75ba61922ad9f590f0606db69a39f702b10a718a48f12fc068de7a8464736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061031a5760003560e01c806370a08231116101ab578063b88d4fde116100f7578063e986655011610095578063f0292a031161006f578063f0292a0314610b42578063f2fde38b14610b6d578063ff1b655614610b96578063ff24937b14610bc15761031a565b8063e986655014610ae4578063ed16e3a614610afb578063eff31e9e14610b175761031a565b8063d547cfb7116100d1578063d547cfb714610a26578063d773154f14610a51578063e36d649814610a7c578063e985e9c514610aa75761031a565b8063b88d4fde14610995578063c87b56dd146109be578063cb774d47146109fb5761031a565b80638d859f3e116101645780639b6a67091161013e5780639b6a670914610910578063a22cb4651461092c578063a8307a3214610955578063b66a0e5d1461097e5761031a565b80638d859f3e1461088f5780638da5cb5b146108ba57806395d89b41146108e55761031a565b806370a08231146107c6578063715018a6146108035780637d17fcbe1461081a5780637e95eac414610831578063850dd0911461085c578063853828b6146108855761031a565b80632f745c591161026a5780634f6ccce71161022357806357d4c4ee116101fd57806357d4c4ee1461070857806359a7715a146107335780635c975abb1461075e5780636352211e146107895761031a565b80634f6ccce714610679578063547520fe146106b657806355f804b3146106df5761031a565b80632f745c59146105665780633ad10ef6146105a357806340c10f19146105ce57806342842e0e146105ea57806342966c6814610613578063438b63001461063c5761031a565b80630ffc6728116102d757806318160ddd116102b157806318160ddd146104aa57806318e20a38146104d557806323b872dd1461050057806326a49e37146105295761031a565b80630ffc67281461042d578063109695231461045857806313e7f27f146104815761031a565b806301ffc9a71461031f57806302329a291461035c57806304c98b2b1461038557806306fdde031461039c578063081812fc146103c7578063095ea7b314610404575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906142da565b610bea565b6040516103539190614b31565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906142b1565b610bfc565b005b34801561039157600080fd5b5061039a610c9e565b005b3480156103a857600080fd5b506103b1610d37565b6040516103be9190614b4c565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e9919061436d565b610dc9565b6040516103fb9190614aa8565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614275565b610e4e565b005b34801561043957600080fd5b50610442610f66565b60405161044f9190614fe5565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061432c565b610f6c565b005b34801561048d57600080fd5b506104a860048036038101906104a3919061436d565b611002565b005b3480156104b657600080fd5b506104bf611088565b6040516104cc9190614fe5565b60405180910390f35b3480156104e157600080fd5b506104ea611095565b6040516104f79190614fe5565b60405180910390f35b34801561050c57600080fd5b506105276004803603810190610522919061416f565b61109b565b005b34801561053557600080fd5b50610550600480360381019061054b919061436d565b6110fb565b60405161055d9190614fe5565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190614275565b611119565b60405161059a9190614fe5565b60405180910390f35b3480156105af57600080fd5b506105b86111be565b6040516105c59190614aa8565b60405180910390f35b6105e860048036038101906105e39190614275565b6111d6565b005b3480156105f657600080fd5b50610611600480360381019061060c919061416f565b6114cf565b005b34801561061f57600080fd5b5061063a6004803603810190610635919061436d565b6114ef565b005b34801561064857600080fd5b50610663600480360381019061065e919061410a565b61154b565b6040516106709190614b0f565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061436d565b611645565b6040516106ad9190614fe5565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d8919061436d565b6116dc565b005b3480156106eb57600080fd5b506107066004803603810190610701919061432c565b611762565b005b34801561071457600080fd5b5061071d6117f8565b60405161072a9190614fe5565b60405180910390f35b34801561073f57600080fd5b506107486117fe565b6040516107559190614fe5565b60405180910390f35b34801561076a57600080fd5b5061077361180d565b6040516107809190614b31565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab919061436d565b611824565b6040516107bd9190614aa8565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e8919061410a565b6118d6565b6040516107fa9190614fe5565b60405180910390f35b34801561080f57600080fd5b5061081861198e565b005b34801561082657600080fd5b5061082f611a16565b005b34801561083d57600080fd5b50610846611ae0565b6040516108539190614fe5565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e9190614396565b611ae6565b005b61088d611c30565b005b34801561089b57600080fd5b506108a4611d0f565b6040516108b19190614fe5565b60405180910390f35b3480156108c657600080fd5b506108cf611d15565b6040516108dc9190614aa8565b60405180910390f35b3480156108f157600080fd5b506108fa611d3f565b6040516109079190614b4c565b60405180910390f35b61092a60048036038101906109259190614275565b611dd1565b005b34801561093857600080fd5b50610953600480360381019061094e9190614239565b611fc0565b005b34801561096157600080fd5b5061097c6004803603810190610977919061436d565b612141565b005b34801561098a57600080fd5b506109936121c7565b005b3480156109a157600080fd5b506109bc60048036038101906109b791906141be565b612260565b005b3480156109ca57600080fd5b506109e560048036038101906109e0919061436d565b6122c2565b6040516109f29190614b4c565b60405180910390f35b348015610a0757600080fd5b50610a10612369565b604051610a1d9190614fe5565b60405180910390f35b348015610a3257600080fd5b50610a3b61236f565b604051610a489190614b4c565b60405180910390f35b348015610a5d57600080fd5b50610a666123fd565b604051610a739190614fe5565b60405180910390f35b348015610a8857600080fd5b50610a91612403565b604051610a9e9190614fe5565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190614133565b612409565b604051610adb9190614b31565b60405180910390f35b348015610af057600080fd5b50610af961249d565b005b610b156004803603810190610b1091906143d2565b6125ae565b005b348015610b2357600080fd5b50610b2c6126ba565b604051610b399190614fe5565b60405180910390f35b348015610b4e57600080fd5b50610b576126bf565b604051610b649190614fe5565b60405180910390f35b348015610b7957600080fd5b50610b946004803603810190610b8f919061410a565b6126c5565b005b348015610ba257600080fd5b50610bab6127bd565b604051610bb89190614b4c565b60405180910390f35b348015610bcd57600080fd5b50610be86004803603810190610be3919061436d565b61284b565b005b6000610bf5826128d1565b9050919050565b610c0461294b565b73ffffffffffffffffffffffffffffffffffffffff16610c22611d15565b73ffffffffffffffffffffffffffffffffffffffff1614610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90614e25565b60405180910390fd5b600115158115151415610c9257610c8d612953565b610c9b565b610c9a6129f6565b5b50565b610ca661294b565b73ffffffffffffffffffffffffffffffffffffffff16610cc4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190614e25565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b606060008054610d46906152d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d72906152d9565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b6000610dd482612a98565b610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90614e05565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5982611824565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec190614f05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee961294b565b73ffffffffffffffffffffffffffffffffffffffff161480610f185750610f1781610f1261294b565b612409565b5b610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90614d65565b60405180910390fd5b610f618383612b04565b505050565b600d5481565b610f7461294b565b73ffffffffffffffffffffffffffffffffffffffff16610f92611d15565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90614e25565b60405180910390fd5b8060139080519060200190610ffe929190613f2e565b5050565b61100a61294b565b73ffffffffffffffffffffffffffffffffffffffff16611028611d15565b73ffffffffffffffffffffffffffffffffffffffff161461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590614e25565b60405180910390fd5b8060118190555050565b6000600880549050905090565b60145481565b6110ac6110a661294b565b82612bbd565b6110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290614f85565b60405180910390fd5b6110f6838383612c9b565b505050565b600061111282600e54612ef790919063ffffffff16565b9050919050565b6000611124836118d6565b8210611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90614c05565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b730a3552ee37835330a6d934b3b7624b313c1a812681565b6108ae6111e1612f0d565b1115611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990614ec5565b60405180910390fd5b61122a611d15565b73ffffffffffffffffffffffffffffffffffffffff1661124861294b565b73ffffffffffffffffffffffffffffffffffffffff16146112ac5761126b61180d565b156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614d45565b60405180910390fd5b5b60006112b6612f0d565b905060011515600c60019054906101000a900460ff1615151461130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590614f25565b60405180910390fd5b6108ae811115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90614ec5565b60405180910390fd5b6108ae8282611362919061510e565b11156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90614ce5565b60405180910390fd5b6113ab611d15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461146e57601054821115611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990614be5565b60405180910390fd5b61142b826110fb565b34101561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490614ea5565b60405180910390fd5b5b60005b828110156114955761148284612f1e565b808061148d9061533c565b915050611471565b5060006015541480156114bd57506108ae6114ae611088565b14806114bc57506014544210155b5b156114ca57436015819055505b505050565b6114ea83838360405180602001604052806000815250612260565b505050565b6115006114fa61294b565b82612bbd565b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690614fc5565b60405180910390fd5b61154881612f6f565b50565b60606000611558836118d6565b905060008167ffffffffffffffff81111561159c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115ca5781602001602082028036833780820191505090505b50905060005b8281101561163a576115e28582611119565b82828151811061161b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806116329061533c565b9150506115d0565b508092505050919050565b600061164f611088565b8210611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790614fa5565b60405180910390fd5b600882815481106116ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116e461294b565b73ffffffffffffffffffffffffffffffffffffffff16611702611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614e25565b60405180910390fd5b8060108190555050565b61176a61294b565b73ffffffffffffffffffffffffffffffffffffffff16611788611d15565b73ffffffffffffffffffffffffffffffffffffffff16146117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590614e25565b60405180910390fd5b80601290805190602001906117f4929190613f2e565b5050565b6108ae81565b6000611808612f0d565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490614da5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614d85565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61199661294b565b73ffffffffffffffffffffffffffffffffffffffff166119b4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190614e25565b60405180910390fd5b611a146000613080565b565b611a1e61294b565b73ffffffffffffffffffffffffffffffffffffffff16611a3c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990614e25565b60405180910390fd5b600060165414611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614d25565b60405180910390fd5b43601581905550565b60115481565b611aee61294b565b73ffffffffffffffffffffffffffffffffffffffff16611b0c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990614e25565b60405180910390fd5b6000611b6c612f0d565b90506108ae811115611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614ec5565b60405180910390fd5b6108ae8382611bc2919061510e565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614ce5565b60405180910390fd5b60005b83811015611c2a57611c1783612f1e565b8080611c229061533c565b915050611c06565b50505050565b611c3861294b565b73ffffffffffffffffffffffffffffffffffffffff16611c56611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390614e25565b60405180910390fd5b600047905060008111611cbe57600080fd5b611d02730a3552ee37835330a6d934b3b7624b313c1a8126611cfd6064611cef600586612ef790919063ffffffff16565b61314690919063ffffffff16565b61315c565b611d0c334761315c565b50565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611d4e906152d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7a906152d9565b8015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b5050505050905090565b6000611ddb612f0d565b905060011515600c60009054906101000a900460ff16151514611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90614c65565b60405180910390fd5b600d54811115611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614e45565b60405180910390fd5b600d548282611e87919061510e565b1115611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90614ce5565b60405180910390fd5b611ed0611d15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f9357601154821115611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90614be5565b60405180910390fd5b611f50826110fb565b341015611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614ea5565b60405180910390fd5b5b60005b82811015611fba57611fa784612f1e565b8080611fb29061533c565b915050611f96565b50505050565b611fc861294b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614cc5565b60405180910390fd5b806005600061204361294b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120f061294b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121359190614b31565b60405180910390a35050565b61214961294b565b73ffffffffffffffffffffffffffffffffffffffff16612167611d15565b73ffffffffffffffffffffffffffffffffffffffff16146121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490614e25565b60405180910390fd5b80600f8190555050565b6121cf61294b565b73ffffffffffffffffffffffffffffffffffffffff166121ed611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614e25565b60405180910390fd5b6001600c60016101000a81548160ff021916908315150217905550565b61227161226b61294b565b83612bbd565b6122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614f85565b60405180910390fd5b6122bc8484848461320d565b50505050565b60606122cd82612a98565b61230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390614e85565b60405180910390fd5b6000612316613269565b905060008151116123365760405180602001604052806000815250612361565b80612340846132fb565b604051602001612351929190614a6f565b6040516020818303038152906040525b915050919050565b60165481565b6012805461237c906152d9565b80601f01602080910402602001604051908101604052809291908181526020018280546123a8906152d9565b80156123f55780601f106123ca576101008083540402835291602001916123f5565b820191906000526020600020905b8154815290600101906020018083116123d857829003601f168201915b505050505081565b600f5481565b60155481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601654146124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990614d25565b60405180910390fd5b60006015541415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f90614f45565b60405180910390fd5b6108ae6015544060001c61253c9190615385565b60168190555060ff612559601554436134a890919063ffffffff16565b1115612584576108ae60014361256f91906151ef565b4060001c61257d9190615385565b6016819055505b600060165414156125ac576125a560016016546134be90919063ffffffff16565b6016819055505b565b60006125b984611824565b90508073ffffffffffffffffffffffffffffffffffffffff166125da61294b565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614dc5565b60405180910390fd5b6000349050600f548114612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614ee5565b60405180910390fd5b847f071e2b5b04043a73f97c13dbdcd19e7f2d114c2277c6f5d4c6403e547756e45d85856040516126ab929190614b6e565b60405180910390a25050505050565b606481565b60105481565b6126cd61294b565b73ffffffffffffffffffffffffffffffffffffffff166126eb611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273890614e25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614c45565b60405180910390fd5b6127ba81613080565b50565b601380546127ca906152d9565b80601f01602080910402602001604051908101604052809291908181526020018280546127f6906152d9565b80156128435780601f1061281857610100808354040283529160200191612843565b820191906000526020600020905b81548152906001019060200180831161282657829003601f168201915b505050505081565b61285361294b565b73ffffffffffffffffffffffffffffffffffffffff16612871611d15565b73ffffffffffffffffffffffffffffffffffffffff16146128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be90614e25565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129445750612943826134d4565b5b9050919050565b600033905090565b61295b61180d565b1561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290614d45565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129df61294b565b6040516129ec9190614aa8565b60405180910390a1565b6129fe61180d565b612a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3490614bc5565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a8161294b565b604051612a8e9190614aa8565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b7783611824565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bc882612a98565b612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90614d05565b60405180910390fd5b6000612c1283611824565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c8157508373ffffffffffffffffffffffffffffffffffffffff16612c6984610dc9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c925750612c918185612409565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cbb82611824565b73ffffffffffffffffffffffffffffffffffffffff1614612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0890614e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7890614ca5565b60405180910390fd5b612d8c8383836135b6565b612d97600082612b04565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de791906151ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e3e919061510e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612f059190615195565b905092915050565b6000612f19600b6135c6565b905090565b6000612f28612f0d565b9050612f34600b6135d4565b612f3e82826135ea565b807f9155557c09d033e9fe02fdb737578bf19b8d0cdae05851cd5b0ddbc0c2d5be4b60405160405180910390a25050565b6000612f7a82611824565b9050612f88816000846135b6565b612f93600083612b04565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fe391906151ef565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836131549190615164565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161318290614a93565b60006040518083038185875af1925050503d80600081146131bf576040519150601f19603f3d011682016040523d82523d6000602084013e6131c4565b606091505b5050905080613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff90614f65565b60405180910390fd5b505050565b613218848484612c9b565b61322484848484613608565b613263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325a90614c25565b60405180910390fd5b50505050565b606060128054613278906152d9565b80601f01602080910402602001604051908101604052809291908181526020018280546132a4906152d9565b80156132f15780601f106132c6576101008083540402835291602001916132f1565b820191906000526020600020905b8154815290600101906020018083116132d457829003601f168201915b5050505050905090565b60606000821415613343576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a3565b600082905060005b6000821461337557808061335e9061533c565b915050600a8261336e9190615164565b915061334b565b60008167ffffffffffffffff8111156133b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133e95781602001600182028036833780820191505090505b5090505b6000851461349c5760018261340291906151ef565b9150600a856134119190615385565b603061341d919061510e565b60f81b818381518110613459577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134959190615164565b94506133ed565b8093505050505b919050565b600081836134b691906151ef565b905092915050565b600081836134cc919061510e565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061359f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806135af57506135ae8261379f565b5b9050919050565b6135c1838383613809565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b613604828260405180602001604052806000815250613861565b5050565b60006136298473ffffffffffffffffffffffffffffffffffffffff166138bc565b15613792578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261365261294b565b8786866040518563ffffffff1660e01b81526004016136749493929190614ac3565b602060405180830381600087803b15801561368e57600080fd5b505af19250505080156136bf57506040513d601f19601f820116820180604052508101906136bc9190614303565b60015b613742573d80600081146136ef576040519150601f19603f3d011682016040523d82523d6000602084013e6136f4565b606091505b5060008151141561373a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373190614c25565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613797565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138148383836138cf565b61381c61180d565b1561385c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385390614ba5565b60405180910390fd5b505050565b61386b83836139e3565b6138786000848484613608565b6138b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ae90614c25565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6138da838383613bb1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561391d5761391881613bb6565b61395c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461395b5761395a8382613bff565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399f5761399a81613d6c565b6139de565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146139dd576139dc8282613eaf565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4a90614de5565b60405180910390fd5b613a5c81612a98565b15613a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9390614c85565b60405180910390fd5b613aa8600083836135b6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613af8919061510e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c0c846118d6565b613c1691906151ef565b9050600060076000848152602001908152602001600020549050818114613cfb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613d8091906151ef565b9050600060096000848152602001908152602001600020549050600060088381548110613dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613e1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613eba836118d6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613f3a906152d9565b90600052602060002090601f016020900481019282613f5c5760008555613fa3565b82601f10613f7557805160ff1916838001178555613fa3565b82800160010185558215613fa3579182015b82811115613fa2578251825591602001919060010190613f87565b5b509050613fb09190613fb4565b5090565b5b80821115613fcd576000816000905550600101613fb5565b5090565b6000613fe4613fdf84615025565b615000565b905082815260208101848484011115613ffc57600080fd5b614007848285615297565b509392505050565b600061402261401d84615056565b615000565b90508281526020810184848401111561403a57600080fd5b614045848285615297565b509392505050565b60008135905061405c81615c7e565b92915050565b60008135905061407181615c95565b92915050565b60008135905061408681615cac565b92915050565b60008151905061409b81615cac565b92915050565b600082601f8301126140b257600080fd5b81356140c2848260208601613fd1565b91505092915050565b600082601f8301126140dc57600080fd5b81356140ec84826020860161400f565b91505092915050565b60008135905061410481615cc3565b92915050565b60006020828403121561411c57600080fd5b600061412a8482850161404d565b91505092915050565b6000806040838503121561414657600080fd5b60006141548582860161404d565b92505060206141658582860161404d565b9150509250929050565b60008060006060848603121561418457600080fd5b60006141928682870161404d565b93505060206141a38682870161404d565b92505060406141b4868287016140f5565b9150509250925092565b600080600080608085870312156141d457600080fd5b60006141e28782880161404d565b94505060206141f38782880161404d565b9350506040614204878288016140f5565b925050606085013567ffffffffffffffff81111561422157600080fd5b61422d878288016140a1565b91505092959194509250565b6000806040838503121561424c57600080fd5b600061425a8582860161404d565b925050602061426b85828601614062565b9150509250929050565b6000806040838503121561428857600080fd5b60006142968582860161404d565b92505060206142a7858286016140f5565b9150509250929050565b6000602082840312156142c357600080fd5b60006142d184828501614062565b91505092915050565b6000602082840312156142ec57600080fd5b60006142fa84828501614077565b91505092915050565b60006020828403121561431557600080fd5b60006143238482850161408c565b91505092915050565b60006020828403121561433e57600080fd5b600082013567ffffffffffffffff81111561435857600080fd5b614364848285016140cb565b91505092915050565b60006020828403121561437f57600080fd5b600061438d848285016140f5565b91505092915050565b600080604083850312156143a957600080fd5b60006143b7858286016140f5565b92505060206143c88582860161404d565b9150509250929050565b6000806000606084860312156143e757600080fd5b60006143f5868287016140f5565b935050602084013567ffffffffffffffff81111561441257600080fd5b61441e868287016140cb565b925050604084013567ffffffffffffffff81111561443b57600080fd5b614447868287016140cb565b9150509250925092565b600061445d8383614a51565b60208301905092915050565b61447281615223565b82525050565b600061448382615097565b61448d81856150c5565b935061449883615087565b8060005b838110156144c95781516144b08882614451565b97506144bb836150b8565b92505060018101905061449c565b5085935050505092915050565b6144df81615235565b82525050565b60006144f0826150a2565b6144fa81856150d6565b935061450a8185602086016152a6565b61451381615472565b840191505092915050565b6000614529826150ad565b61453381856150f2565b93506145438185602086016152a6565b61454c81615472565b840191505092915050565b6000614562826150ad565b61456c8185615103565b935061457c8185602086016152a6565b80840191505092915050565b6000614595602b836150f2565b91506145a082615483565b604082019050919050565b60006145b86014836150f2565b91506145c3826154d2565b602082019050919050565b60006145db600e836150f2565b91506145e6826154fb565b602082019050919050565b60006145fe602b836150f2565b915061460982615524565b604082019050919050565b60006146216032836150f2565b915061462c82615573565b604082019050919050565b60006146446026836150f2565b915061464f826155c2565b604082019050919050565b6000614667601b836150f2565b915061467282615611565b602082019050919050565b600061468a601c836150f2565b91506146958261563a565b602082019050919050565b60006146ad6024836150f2565b91506146b882615663565b604082019050919050565b60006146d06019836150f2565b91506146db826156b2565b602082019050919050565b60006146f36009836150f2565b91506146fe826156db565b602082019050919050565b6000614716602c836150f2565b915061472182615704565b604082019050919050565b6000614739601d836150f2565b915061474482615753565b602082019050919050565b600061475c6010836150f2565b91506147678261577c565b602082019050919050565b600061477f6038836150f2565b915061478a826157a5565b604082019050919050565b60006147a2602a836150f2565b91506147ad826157f4565b604082019050919050565b60006147c56029836150f2565b91506147d082615843565b604082019050919050565b60006147e86019836150f2565b91506147f382615892565b602082019050919050565b600061480b6020836150f2565b9150614816826158bb565b602082019050919050565b600061482e602c836150f2565b9150614839826158e4565b604082019050919050565b60006148516020836150f2565b915061485c82615933565b602082019050919050565b6000614874600d836150f2565b915061487f8261595c565b602082019050919050565b60006148976029836150f2565b91506148a282615985565b604082019050919050565b60006148ba602f836150f2565b91506148c5826159d4565b604082019050919050565b60006148dd6011836150f2565b91506148e882615a23565b602082019050919050565b6000614900600a836150f2565b915061490b82615a4c565b602082019050919050565b6000614923602e836150f2565b915061492e82615a75565b604082019050919050565b60006149466021836150f2565b915061495182615ac4565b604082019050919050565b60006149696018836150f2565b915061497482615b13565b602082019050919050565b600061498c6020836150f2565b915061499782615b3c565b602082019050919050565b60006149af6000836150e7565b91506149ba82615b65565b600082019050919050565b60006149d26010836150f2565b91506149dd82615b68565b602082019050919050565b60006149f56031836150f2565b9150614a0082615b91565b604082019050919050565b6000614a18602c836150f2565b9150614a2382615be0565b604082019050919050565b6000614a3b6030836150f2565b9150614a4682615c2f565b604082019050919050565b614a5a8161528d565b82525050565b614a698161528d565b82525050565b6000614a7b8285614557565b9150614a878284614557565b91508190509392505050565b6000614a9e826149a2565b9150819050919050565b6000602082019050614abd6000830184614469565b92915050565b6000608082019050614ad86000830187614469565b614ae56020830186614469565b614af26040830185614a60565b8181036060830152614b0481846144e5565b905095945050505050565b60006020820190508181036000830152614b298184614478565b905092915050565b6000602082019050614b4660008301846144d6565b92915050565b60006020820190508181036000830152614b66818461451e565b905092915050565b60006040820190508181036000830152614b88818561451e565b90508181036020830152614b9c818461451e565b90509392505050565b60006020820190508181036000830152614bbe81614588565b9050919050565b60006020820190508181036000830152614bde816145ab565b9050919050565b60006020820190508181036000830152614bfe816145ce565b9050919050565b60006020820190508181036000830152614c1e816145f1565b9050919050565b60006020820190508181036000830152614c3e81614614565b9050919050565b60006020820190508181036000830152614c5e81614637565b9050919050565b60006020820190508181036000830152614c7e8161465a565b9050919050565b60006020820190508181036000830152614c9e8161467d565b9050919050565b60006020820190508181036000830152614cbe816146a0565b9050919050565b60006020820190508181036000830152614cde816146c3565b9050919050565b60006020820190508181036000830152614cfe816146e6565b9050919050565b60006020820190508181036000830152614d1e81614709565b9050919050565b60006020820190508181036000830152614d3e8161472c565b9050919050565b60006020820190508181036000830152614d5e8161474f565b9050919050565b60006020820190508181036000830152614d7e81614772565b9050919050565b60006020820190508181036000830152614d9e81614795565b9050919050565b60006020820190508181036000830152614dbe816147b8565b9050919050565b60006020820190508181036000830152614dde816147db565b9050919050565b60006020820190508181036000830152614dfe816147fe565b9050919050565b60006020820190508181036000830152614e1e81614821565b9050919050565b60006020820190508181036000830152614e3e81614844565b9050919050565b60006020820190508181036000830152614e5e81614867565b9050919050565b60006020820190508181036000830152614e7e8161488a565b9050919050565b60006020820190508181036000830152614e9e816148ad565b9050919050565b60006020820190508181036000830152614ebe816148d0565b9050919050565b60006020820190508181036000830152614ede816148f3565b9050919050565b60006020820190508181036000830152614efe81614916565b9050919050565b60006020820190508181036000830152614f1e81614939565b9050919050565b60006020820190508181036000830152614f3e8161495c565b9050919050565b60006020820190508181036000830152614f5e8161497f565b9050919050565b60006020820190508181036000830152614f7e816149c5565b9050919050565b60006020820190508181036000830152614f9e816149e8565b9050919050565b60006020820190508181036000830152614fbe81614a0b565b9050919050565b60006020820190508181036000830152614fde81614a2e565b9050919050565b6000602082019050614ffa6000830184614a60565b92915050565b600061500a61501b565b9050615016828261530b565b919050565b6000604051905090565b600067ffffffffffffffff8211156150405761503f615443565b5b61504982615472565b9050602081019050919050565b600067ffffffffffffffff82111561507157615070615443565b5b61507a82615472565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151198261528d565b91506151248361528d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615159576151586153b6565b5b828201905092915050565b600061516f8261528d565b915061517a8361528d565b92508261518a576151896153e5565b5b828204905092915050565b60006151a08261528d565b91506151ab8361528d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151e4576151e36153b6565b5b828202905092915050565b60006151fa8261528d565b91506152058361528d565b925082821015615218576152176153b6565b5b828203905092915050565b600061522e8261526d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156152c45780820151818401526020810190506152a9565b838111156152d3576000848401525b50505050565b600060028204905060018216806152f157607f821691505b6020821081141561530557615304615414565b5b50919050565b61531482615472565b810181811067ffffffffffffffff8211171561533357615332615443565b5b80604052505050565b60006153478261528d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561537a576153796153b6565b5b600182019050919050565b60006153908261528d565b915061539b8361528d565b9250826153ab576153aa6153e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520686173206e6f742079657420737461727465640000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f54686973206973206e6f7420796f75722041647669736f722e00000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50726573616c6520656e64656400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f5468657265206973206120707269636520666f72206368616e67696e6720796f60008201527f757220617474726962757465732e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742079657420737461727465640000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615c8781615223565b8114615c9257600080fd5b50565b615c9e81615235565b8114615ca957600080fd5b50565b615cb581615241565b8114615cc057600080fd5b50565b615ccc8161528d565b8114615cd757600080fd5b5056fea2646970667358221220eed9fdbd75ba61922ad9f590f0606db69a39f702b10a718a48f12fc068de7a8464736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
118927:7598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126343:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;124901:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;125063:74;;;;;;;;;;;;;:::i;:::-;;84065:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85624:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85147:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119236:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123310:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122909:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98178:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119666:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86514:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122468:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97846:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119506:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;121527:737;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86924:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95592:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;124540:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98368:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122810:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122701:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119189:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120498:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104671:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83759:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83489:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110001:94;;;;;;;;;;;;;:::i;:::-;;124338:194;;;;;;;;;;;;;:::i;:::-;;119463:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120597:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;125648:251;;;:::i;:::-;;119329:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84234:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120926:593;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85917:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;123023:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;125145:68;;;;;;;;;;;;;:::i;:::-;;87180:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84409:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119744:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119592:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119375:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119704:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86283:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123515:686;;;;;;;;;;;;;:::i;:::-;;125221:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119281:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119428:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110250:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119625:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123130:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;126343:179;126454:4;126478:36;126502:11;126478:23;:36::i;:::-;126471:43;;126343:179;;;:::o;124901:154::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;124965:4:::1;124958:11;;:3;:11;;;124954:73;;;124986:8;:6;:8::i;:::-;125009:7;;124954:73;125037:10;:8;:10::i;:::-;109641:1;124901:154:::0;:::o;125063:74::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;125125:4:::1;125115:7;;:14;;;;;;;;;;;;;;;;;;125063:74::o:0;84065:100::-;84119:13;84152:5;84145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84065:100;:::o;85624:221::-;85700:7;85728:16;85736:7;85728;:16::i;:::-;85720:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;85813:15;:24;85829:7;85813:24;;;;;;;;;;;;;;;;;;;;;85806:31;;85624:221;;;:::o;85147:411::-;85228:13;85244:23;85259:7;85244:14;:23::i;:::-;85228:39;;85292:5;85286:11;;:2;:11;;;;85278:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;85386:5;85370:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;85395:37;85412:5;85419:12;:10;:12::i;:::-;85395:16;:37::i;:::-;85370:62;85348:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;85529:21;85538:2;85542:7;85529:8;:21::i;:::-;85147:411;;;:::o;119236:38::-;;;;:::o;123310:129::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;123416:15:::1;123398;:33;;;;;;;;;;;;:::i;:::-;;123310:129:::0;:::o;122909:106::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;123001:6:::1;122982:16;:25;;;;122909:106:::0;:::o;98178:113::-;98239:7;98266:10;:17;;;;98259:24;;98178:113;:::o;119666:31::-;;;;:::o;86514:339::-;86709:41;86728:12;:10;:12::i;:::-;86742:7;86709:18;:41::i;:::-;86701:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;86817:28;86827:4;86833:2;86837:7;86817:9;:28::i;:::-;86514:339;;;:::o;122468:104::-;122520:7;122547:17;122557:6;122547:5;;:9;;:17;;;;:::i;:::-;122540:24;;122468:104;;;:::o;97846:256::-;97943:7;97979:23;97996:5;97979:16;:23::i;:::-;97971:5;:31;97963:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;98068:12;:19;98081:5;98068:19;;;;;;;;;;;;;;;:26;98088:5;98068:26;;;;;;;;;;;;98061:33;;97846:256;;;;:::o;119506:79::-;119543:42;119506:79;:::o;121527:737::-;119225:4;120212:14;:12;:14::i;:::-;:27;;120204:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;120285:7;:5;:7::i;:::-;120269:23;;:12;:10;:12::i;:::-;:23;;;120265:94;;120318:8;:6;:8::i;:::-;120317:9;120309:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;120265:94;121607:13:::1;121623:14;:12;:14::i;:::-;121607:30;;121664:4;121656:12;;:4;;;;;;;;;;;:12;;;121648:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;119225:4;121716:5;:18;;121708:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;119225:4;121776:6;121768:5;:14;;;;:::i;:::-;:27;;121760:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;121837:7;:5;:7::i;:::-;121823:21;;:10;:21;;;121820:169;;121879:8;;121869:6;:18;;121861:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;121942:13;121948:6;121942:5;:13::i;:::-;121929:9;:26;;121921:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;121820:169;122006:9;122001:83;122025:6;122021:1;:10;122001:83;;;122053:19;122068:3;122053:14;:19::i;:::-;122033:3;;;;;:::i;:::-;;;;122001:83;;;;122122:1;122100:18;;:23;:94;;;;;119225:4;122128:13;:11;:13::i;:::-;:26;:65;;;;122177:16;;122158:15;:35;;122128:65;122100:94;122096:160;;;122232:12;122211:18;:33;;;;122096:160;120369:1;121527:737:::0;;:::o;86924:185::-;87062:39;87079:4;87085:2;87089:7;87062:39;;;;;;;;;;;;:16;:39::i;:::-;86924:185;;;:::o;95592:245::-;95710:41;95729:12;:10;:12::i;:::-;95743:7;95710:18;:41::i;:::-;95702:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;95815:14;95821:7;95815:5;:14::i;:::-;95592:245;:::o;124540:353::-;124602:16;124631:18;124652:17;124662:6;124652:9;:17::i;:::-;124631:38;;124682:25;124724:10;124710:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124682:53;;124751:9;124746:112;124770:10;124766:1;:14;124746:112;;;124816:30;124836:6;124844:1;124816:19;:30::i;:::-;124802:8;124811:1;124802:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;124782:3;;;;;:::i;:::-;;;;124746:112;;;;124877:8;124870:15;;;;124540:353;;;:::o;98368:233::-;98443:7;98479:30;:28;:30::i;:::-;98471:5;:38;98463:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;98576:10;98587:5;98576:17;;;;;;;;;;;;;;;;;;;;;;;;98569:24;;98368:233;;;:::o;122810:91::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;122887:6:::1;122876:8;:17;;;;122810:91:::0;:::o;122701:101::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;122787:7:::1;122772:12;:22;;;;;;;;;;;;:::i;:::-;;122701:101:::0;:::o;119189:40::-;119225:4;119189:40;:::o;120498:91::-;120540:7;120567:14;:12;:14::i;:::-;120560:21;;120498:91;:::o;104671:86::-;104718:4;104742:7;;;;;;;;;;;104735:14;;104671:86;:::o;83759:239::-;83831:7;83851:13;83867:7;:16;83875:7;83867:16;;;;;;;;;;;;;;;;;;;;;83851:32;;83919:1;83902:19;;:5;:19;;;;83894:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;83985:5;83978:12;;;83759:239;;;:::o;83489:208::-;83561:7;83606:1;83589:19;;:5;:19;;;;83581:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;83673:9;:16;83683:5;83673:16;;;;;;;;;;;;;;;;83666:23;;83489:208;;;:::o;110001:94::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;110066:21:::1;110084:1;110066:9;:21::i;:::-;110001:94::o:0;124338:194::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;124435:1:::1;124418:13;;:18;124410:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;124512:12;124491:18;:33;;;;124338:194::o:0;119463:36::-;;;;:::o;120597:321::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;120675:13:::1;120691:14;:12;:14::i;:::-;120675:30;;119225:4;120724:5;:18;;120716:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;119225:4;120784:6;120776:5;:14;;;;:::i;:::-;:27;;120768:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;120833:9;120828:83;120852:6;120848:1;:10;120828:83;;;120880:19;120895:3;120880:14;:19::i;:::-;120860:3;;;;;:::i;:::-;;;;120828:83;;;;109641:1;120597:321:::0;;:::o;125648:251::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;125707:15:::1;125725:21;125707:39;;125775:1;125765:7;:11;125757:20;;;::::0;::::1;;125788:47;119543:42;125811:23;125830:3;125811:14;125823:1;125811:7;:11;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;125788:10;:47::i;:::-;125846:45;125857:10;125869:21;125846:10;:45::i;:::-;109641:1;125648:251::o:0;119329:27::-;;;;:::o;109350:87::-;109396:7;109423:6;;;;;;;;;;;109416:13;;109350:87;:::o;84234:104::-;84290:13;84323:7;84316:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84234:104;:::o;120926:593::-;121002:13;121018:14;:12;:14::i;:::-;121002:30;;121062:4;121051:15;;:7;;;;;;;;;;;:15;;;121043:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;121126:17;;121117:5;:26;;121109:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;121198:17;;121188:6;121180:5;:14;;;;:::i;:::-;:35;;121172:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;121257:7;:5;:7::i;:::-;121243:21;;:10;:21;;;121240:177;;121299:16;;121289:6;:26;;121281:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;121370:13;121376:6;121370:5;:13::i;:::-;121357:9;:26;;121349:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;121240:177;121434:9;121429:83;121453:6;121449:1;:10;121429:83;;;121481:19;121496:3;121481:14;:19::i;:::-;121461:3;;;;;:::i;:::-;;;;121429:83;;;;120926:593;;;:::o;85917:295::-;86032:12;:10;:12::i;:::-;86020:24;;:8;:24;;;;86012:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;86132:8;86087:18;:32;86106:12;:10;:12::i;:::-;86087:32;;;;;;;;;;;;;;;:42;86120:8;86087:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;86185:8;86156:48;;86171:12;:10;:12::i;:::-;86156:48;;;86195:8;86156:48;;;;;;:::i;:::-;;;;;;;;85917:295;;:::o;123023:99::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;123108:6:::1;123093:12;:21;;;;123023:99:::0;:::o;125145:68::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;125201:4:::1;125194;;:11;;;;;;;;;;;;;;;;;;125145:68::o:0;87180:328::-;87355:41;87374:12;:10;:12::i;:::-;87388:7;87355:18;:41::i;:::-;87347:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;87461:39;87475:4;87481:2;87485:7;87494:5;87461:13;:39::i;:::-;87180:328;;;;:::o;84409:334::-;84482:13;84516:16;84524:7;84516;:16::i;:::-;84508:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;84597:21;84621:10;:8;:10::i;:::-;84597:34;;84673:1;84655:7;84649:21;:25;:86;;;;;;;;;;;;;;;;;84701:7;84710:18;:7;:16;:18::i;:::-;84684:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84649:86;84642:93;;;84409:334;;;:::o;119744:28::-;;;;:::o;119592:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;119375:34::-;;;;:::o;119704:33::-;;;;:::o;86283:164::-;86380:4;86404:18;:25;86423:5;86404:25;;;;;;;;;;;;;;;:35;86430:8;86404:35;;;;;;;;;;;;;;;;;;;;;;;;;86397:42;;86283:164;;;;:::o;123515:686::-;123588:1;123571:13;;:18;123563:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;123664:1;123642:18;;:23;;123634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;119225:4;123757:18;;123747:29;123739:38;;:50;;;;:::i;:::-;123723:13;:66;;;;123964:3;123925:36;123942:18;;123925:12;:16;;:36;;;;:::i;:::-;:42;123921:139;;;119225:4;124033:1;124018:12;:16;;;;:::i;:::-;124008:27;124000:36;;:48;;;;:::i;:::-;123984:13;:64;;;;123921:139;124128:1;124111:13;;:18;124107:87;;;124162:20;124180:1;124162:13;;:17;;:20;;;;:::i;:::-;124146:13;:36;;;;124107:87;123515:686::o;125221:419::-;125329:13;125345:23;125360:7;125345:14;:23::i;:::-;125329:39;;125403:5;125387:21;;:12;:10;:12::i;:::-;:21;;;125379:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;125451:18;125472:9;125451:30;;125514:12;;125500:10;:26;125492:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;125612:7;125595:37;125621:3;125626:5;125595:37;;;;;;;:::i;:::-;;;;;;;;125221:419;;;;;:::o;119281:41::-;119319:3;119281:41;:::o;119428:28::-;;;;:::o;110250:192::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;110359:1:::1;110339:22;;:8;:22;;;;110331:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;110415:19;110425:8;110415:9;:19::i;:::-;110250:192:::0;:::o;119625:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;123130:108::-;109581:12;:10;:12::i;:::-;109570:23;;:7;:5;:7::i;:::-;:23;;;109562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;123224:6:::1;123204:17;:26;;;;123130:108:::0;:::o;97538:224::-;97640:4;97679:35;97664:50;;;:11;:50;;;;:90;;;;97718:36;97742:11;97718:23;:36::i;:::-;97664:90;97657:97;;97538:224;;;:::o;78826:98::-;78879:7;78906:10;78899:17;;78826:98;:::o;105471:118::-;104997:8;:6;:8::i;:::-;104996:9;104988:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;105541:4:::1;105531:7;;:14;;;;;;;;;;;;;;;;;;105561:20;105568:12;:10;:12::i;:::-;105561:20;;;;;;:::i;:::-;;;;;;;;105471:118::o:0;105730:120::-;105274:8;:6;:8::i;:::-;105266:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;105799:5:::1;105789:7;;:15;;;;;;;;;;;;;;;;;;105820:22;105829:12;:10;:12::i;:::-;105820:22;;;;;;:::i;:::-;;;;;;;;105730:120::o:0;89018:127::-;89083:4;89135:1;89107:30;;:7;:16;89115:7;89107:16;;;;;;;;;;;;;;;;;;;;;:30;;;;89100:37;;89018:127;;;:::o;93000:174::-;93102:2;93075:15;:24;93091:7;93075:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;93158:7;93154:2;93120:46;;93129:23;93144:7;93129:14;:23::i;:::-;93120:46;;;;;;;;;;;;93000:174;;:::o;89312:348::-;89405:4;89430:16;89438:7;89430;:16::i;:::-;89422:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;89506:13;89522:23;89537:7;89522:14;:23::i;:::-;89506:39;;89575:5;89564:16;;:7;:16;;;:51;;;;89608:7;89584:31;;:20;89596:7;89584:11;:20::i;:::-;:31;;;89564:51;:87;;;;89619:32;89636:5;89643:7;89619:16;:32::i;:::-;89564:87;89556:96;;;89312:348;;;;:::o;92304:578::-;92463:4;92436:31;;:23;92451:7;92436:14;:23::i;:::-;:31;;;92428:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;92546:1;92532:16;;:2;:16;;;;92524:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;92602:39;92623:4;92629:2;92633:7;92602:20;:39::i;:::-;92706:29;92723:1;92727:7;92706:8;:29::i;:::-;92767:1;92748:9;:15;92758:4;92748:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;92796:1;92779:9;:13;92789:2;92779:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;92827:2;92808:7;:16;92816:7;92808:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;92866:7;92862:2;92847:27;;92856:4;92847:27;;;;;;;;;;;;92304:578;;;:::o;114069:98::-;114127:7;114158:1;114154;:5;;;;:::i;:::-;114147:12;;114069:98;;;;:::o;120386:104::-;120433:4;120457:25;:15;:23;:25::i;:::-;120450:32;;120386:104;:::o;122272:188::-;122328:7;122338:14;:12;:14::i;:::-;122328:24;;122363:27;:15;:25;:27::i;:::-;122401:18;122411:3;122416:2;122401:9;:18::i;:::-;122449:2;122435:17;;;;;;;;;;122272:188;;:::o;91607:360::-;91667:13;91683:23;91698:7;91683:14;:23::i;:::-;91667:39;;91719:48;91740:5;91755:1;91759:7;91719:20;:48::i;:::-;91808:29;91825:1;91829:7;91808:8;:29::i;:::-;91870:1;91850:9;:16;91860:5;91850:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;91889:7;:16;91897:7;91889:16;;;;;;;;;;;;91882:23;;;;;;;;;;;91951:7;91947:1;91923:36;;91932:5;91923:36;;;;;;;;;;;;91607:360;;:::o;110450:173::-;110506:16;110525:6;;;;;;;;;;;110506:25;;110551:8;110542:6;;:17;;;;;;;;;;;;;;;;;;110606:8;110575:40;;110596:8;110575:40;;;;;;;;;;;;110450:173;;:::o;114468:98::-;114526:7;114557:1;114553;:5;;;;:::i;:::-;114546:12;;114468:98;;;;:::o;125907:181::-;125982:12;125999:8;:13;;126021:7;125999:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125981:52;;;126052:7;126044:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;125907:181;;;:::o;88390:315::-;88547:28;88557:4;88563:2;88567:7;88547:9;:28::i;:::-;88594:48;88617:4;88623:2;88627:7;88636:5;88594:22;:48::i;:::-;88586:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;88390:315;;;;:::o;122580:113::-;122640:13;122673:12;122666:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122580:113;:::o;79268:723::-;79324:13;79554:1;79545:5;:10;79541:53;;;79572:10;;;;;;;;;;;;;;;;;;;;;79541:53;79604:12;79619:5;79604:20;;79635:14;79660:78;79675:1;79667:4;:9;79660:78;;79693:8;;;;;:::i;:::-;;;;79724:2;79716:10;;;;;:::i;:::-;;;79660:78;;;79748:19;79780:6;79770:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79748:39;;79798:154;79814:1;79805:5;:10;79798:154;;79842:1;79832:11;;;;;:::i;:::-;;;79909:2;79901:5;:10;;;;:::i;:::-;79888:2;:24;;;;:::i;:::-;79875:39;;79858:6;79865;79858:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;79938:2;79929:11;;;;;:::i;:::-;;;79798:154;;;79976:6;79962:21;;;;;79268:723;;;;:::o;113712:98::-;113770:7;113801:1;113797;:5;;;;:::i;:::-;113790:12;;113712:98;;;;:::o;113331:::-;113389:7;113420:1;113416;:5;;;;:::i;:::-;113409:12;;113331:98;;;;:::o;83120:305::-;83222:4;83274:25;83259:40;;;:11;:40;;;;:105;;;;83331:33;83316:48;;;:11;:48;;;;83259:105;:158;;;;83381:36;83405:11;83381:23;:36::i;:::-;83259:158;83239:178;;83120:305;;;:::o;126096:239::-;126282:45;126309:4;126315:2;126319:7;126282:26;:45::i;:::-;126096:239;;;:::o;118229:114::-;118294:7;118321;:14;;;118314:21;;118229:114;;;:::o;118351:127::-;118458:1;118440:7;:14;;;:19;;;;;;;;;;;118351:127;:::o;90002:110::-;90078:26;90088:2;90092:7;90078:26;;;;;;;;;;;;:9;:26::i;:::-;90002:110;;:::o;93739:803::-;93894:4;93915:15;:2;:13;;;:15::i;:::-;93911:624;;;93967:2;93951:36;;;93988:12;:10;:12::i;:::-;94002:4;94008:7;94017:5;93951:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;93947:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94214:1;94197:6;:13;:18;94193:272;;;94240:60;;;;;;;;;;:::i;:::-;;;;;;;;94193:272;94415:6;94409:13;94400:6;94396:2;94392:15;94385:38;93947:533;94084:45;;;94074:55;;;:6;:55;;;;94067:62;;;;;93911:624;94519:4;94512:11;;93739:803;;;;;;;:::o;81727:157::-;81812:4;81851:25;81836:40;;;:11;:40;;;;81829:47;;81727:157;;;:::o;106344:275::-;106488:45;106515:4;106521:2;106525:7;106488:26;:45::i;:::-;106555:8;:6;:8::i;:::-;106554:9;106546:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;106344:275;;;:::o;90339:321::-;90469:18;90475:2;90479:7;90469:5;:18::i;:::-;90520:54;90551:1;90555:2;90559:7;90568:5;90520:22;:54::i;:::-;90498:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;90339:321;;;:::o;71171:387::-;71231:4;71439:12;71506:7;71494:20;71486:28;;71549:1;71542:4;:8;71535:15;;;71171:387;;;:::o;99214:589::-;99358:45;99385:4;99391:2;99395:7;99358:26;:45::i;:::-;99436:1;99420:18;;:4;:18;;;99416:187;;;99455:40;99487:7;99455:31;:40::i;:::-;99416:187;;;99525:2;99517:10;;:4;:10;;;99513:90;;99544:47;99577:4;99583:7;99544:32;:47::i;:::-;99513:90;99416:187;99631:1;99617:16;;:2;:16;;;99613:183;;;99650:45;99687:7;99650:36;:45::i;:::-;99613:183;;;99723:4;99717:10;;:2;:10;;;99713:83;;99744:40;99772:2;99776:7;99744:27;:40::i;:::-;99713:83;99613:183;99214:589;;;:::o;90996:382::-;91090:1;91076:16;;:2;:16;;;;91068:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;91149:16;91157:7;91149;:16::i;:::-;91148:17;91140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;91211:45;91240:1;91244:2;91248:7;91211:20;:45::i;:::-;91286:1;91269:9;:13;91279:2;91269:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;91317:2;91298:7;:16;91306:7;91298:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;91362:7;91358:2;91337:33;;91354:1;91337:33;;;;;;;;;;;;90996:382;;:::o;95114:126::-;;;;:::o;100526:164::-;100630:10;:17;;;;100603:15;:24;100619:7;100603:24;;;;;;;;;;;:44;;;;100658:10;100674:7;100658:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100526:164;:::o;101317:988::-;101583:22;101633:1;101608:22;101625:4;101608:16;:22::i;:::-;:26;;;;:::i;:::-;101583:51;;101645:18;101666:17;:26;101684:7;101666:26;;;;;;;;;;;;101645:47;;101813:14;101799:10;:28;101795:328;;101844:19;101866:12;:18;101879:4;101866:18;;;;;;;;;;;;;;;:34;101885:14;101866:34;;;;;;;;;;;;101844:56;;101950:11;101917:12;:18;101930:4;101917:18;;;;;;;;;;;;;;;:30;101936:10;101917:30;;;;;;;;;;;:44;;;;102067:10;102034:17;:30;102052:11;102034:30;;;;;;;;;;;:43;;;;101795:328;;102219:17;:26;102237:7;102219:26;;;;;;;;;;;102212:33;;;102263:12;:18;102276:4;102263:18;;;;;;;;;;;;;;;:34;102282:14;102263:34;;;;;;;;;;;102256:41;;;101317:988;;;;:::o;102600:1079::-;102853:22;102898:1;102878:10;:17;;;;:21;;;;:::i;:::-;102853:46;;102910:18;102931:15;:24;102947:7;102931:24;;;;;;;;;;;;102910:45;;103282:19;103304:10;103315:14;103304:26;;;;;;;;;;;;;;;;;;;;;;;;103282:48;;103368:11;103343:10;103354;103343:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;103479:10;103448:15;:28;103464:11;103448:28;;;;;;;;;;;:41;;;;103620:15;:24;103636:7;103620:24;;;;;;;;;;;103613:31;;;103655:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102600:1079;;;;:::o;100104:221::-;100189:14;100206:20;100223:2;100206:16;:20::i;:::-;100189:37;;100264:7;100237:12;:16;100250:2;100237:16;;;;;;;;;;;;;;;:24;100254:6;100237:24;;;;;;;;;;;:34;;;;100311:6;100282:17;:26;100300:7;100282:26;;;;;;;;;;;:35;;;;100104:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:778::-;6858:6;6866;6874;6923:2;6911:9;6902:7;6898:23;6894:32;6891:2;;;6939:1;6936;6929:12;6891:2;6982:1;7007:53;7052:7;7043:6;7032:9;7028:22;7007:53;:::i;:::-;6997:63;;6953:117;7137:2;7126:9;7122:18;7109:32;7168:18;7160:6;7157:30;7154:2;;;7200:1;7197;7190:12;7154:2;7228:63;7283:7;7274:6;7263:9;7259:22;7228:63;:::i;:::-;7218:73;;7080:221;7368:2;7357:9;7353:18;7340:32;7399:18;7391:6;7388:30;7385:2;;;7431:1;7428;7421:12;7385:2;7459:63;7514:7;7505:6;7494:9;7490:22;7459:63;:::i;:::-;7449:73;;7311:221;6881:658;;;;;:::o;7545:179::-;7614:10;7635:46;7677:3;7669:6;7635:46;:::i;:::-;7713:4;7708:3;7704:14;7690:28;;7625:99;;;;:::o;7730:118::-;7817:24;7835:5;7817:24;:::i;:::-;7812:3;7805:37;7795:53;;:::o;7884:732::-;8003:3;8032:54;8080:5;8032:54;:::i;:::-;8102:86;8181:6;8176:3;8102:86;:::i;:::-;8095:93;;8212:56;8262:5;8212:56;:::i;:::-;8291:7;8322:1;8307:284;8332:6;8329:1;8326:13;8307:284;;;8408:6;8402:13;8435:63;8494:3;8479:13;8435:63;:::i;:::-;8428:70;;8521:60;8574:6;8521:60;:::i;:::-;8511:70;;8367:224;8354:1;8351;8347:9;8342:14;;8307:284;;;8311:14;8607:3;8600:10;;8008:608;;;;;;;:::o;8622:109::-;8703:21;8718:5;8703:21;:::i;:::-;8698:3;8691:34;8681:50;;:::o;8737:360::-;8823:3;8851:38;8883:5;8851:38;:::i;:::-;8905:70;8968:6;8963:3;8905:70;:::i;:::-;8898:77;;8984:52;9029:6;9024:3;9017:4;9010:5;9006:16;8984:52;:::i;:::-;9061:29;9083:6;9061:29;:::i;:::-;9056:3;9052:39;9045:46;;8827:270;;;;;:::o;9103:364::-;9191:3;9219:39;9252:5;9219:39;:::i;:::-;9274:71;9338:6;9333:3;9274:71;:::i;:::-;9267:78;;9354:52;9399:6;9394:3;9387:4;9380:5;9376:16;9354:52;:::i;:::-;9431:29;9453:6;9431:29;:::i;:::-;9426:3;9422:39;9415:46;;9195:272;;;;;:::o;9473:377::-;9579:3;9607:39;9640:5;9607:39;:::i;:::-;9662:89;9744:6;9739:3;9662:89;:::i;:::-;9655:96;;9760:52;9805:6;9800:3;9793:4;9786:5;9782:16;9760:52;:::i;:::-;9837:6;9832:3;9828:16;9821:23;;9583:267;;;;;:::o;9856:366::-;9998:3;10019:67;10083:2;10078:3;10019:67;:::i;:::-;10012:74;;10095:93;10184:3;10095:93;:::i;:::-;10213:2;10208:3;10204:12;10197:19;;10002:220;;;:::o;10228:366::-;10370:3;10391:67;10455:2;10450:3;10391:67;:::i;:::-;10384:74;;10467:93;10556:3;10467:93;:::i;:::-;10585:2;10580:3;10576:12;10569:19;;10374:220;;;:::o;10600:366::-;10742:3;10763:67;10827:2;10822:3;10763:67;:::i;:::-;10756:74;;10839:93;10928:3;10839:93;:::i;:::-;10957:2;10952:3;10948:12;10941:19;;10746:220;;;:::o;10972:366::-;11114:3;11135:67;11199:2;11194:3;11135:67;:::i;:::-;11128:74;;11211:93;11300:3;11211:93;:::i;:::-;11329:2;11324:3;11320:12;11313:19;;11118:220;;;:::o;11344:366::-;11486:3;11507:67;11571:2;11566:3;11507:67;:::i;:::-;11500:74;;11583:93;11672:3;11583:93;:::i;:::-;11701:2;11696:3;11692:12;11685:19;;11490:220;;;:::o;11716:366::-;11858:3;11879:67;11943:2;11938:3;11879:67;:::i;:::-;11872:74;;11955:93;12044:3;11955:93;:::i;:::-;12073:2;12068:3;12064:12;12057:19;;11862:220;;;:::o;12088:366::-;12230:3;12251:67;12315:2;12310:3;12251:67;:::i;:::-;12244:74;;12327:93;12416:3;12327:93;:::i;:::-;12445:2;12440:3;12436:12;12429:19;;12234:220;;;:::o;12460:366::-;12602:3;12623:67;12687:2;12682:3;12623:67;:::i;:::-;12616:74;;12699:93;12788:3;12699:93;:::i;:::-;12817:2;12812:3;12808:12;12801:19;;12606:220;;;:::o;12832:366::-;12974:3;12995:67;13059:2;13054:3;12995:67;:::i;:::-;12988:74;;13071:93;13160:3;13071:93;:::i;:::-;13189:2;13184:3;13180:12;13173:19;;12978:220;;;:::o;13204:366::-;13346:3;13367:67;13431:2;13426:3;13367:67;:::i;:::-;13360:74;;13443:93;13532:3;13443:93;:::i;:::-;13561:2;13556:3;13552:12;13545:19;;13350:220;;;:::o;13576:365::-;13718:3;13739:66;13803:1;13798:3;13739:66;:::i;:::-;13732:73;;13814:93;13903:3;13814:93;:::i;:::-;13932:2;13927:3;13923:12;13916:19;;13722:219;;;:::o;13947:366::-;14089:3;14110:67;14174:2;14169:3;14110:67;:::i;:::-;14103:74;;14186:93;14275:3;14186:93;:::i;:::-;14304:2;14299:3;14295:12;14288:19;;14093:220;;;:::o;14319:366::-;14461:3;14482:67;14546:2;14541:3;14482:67;:::i;:::-;14475:74;;14558:93;14647:3;14558:93;:::i;:::-;14676:2;14671:3;14667:12;14660:19;;14465:220;;;:::o;14691:366::-;14833:3;14854:67;14918:2;14913:3;14854:67;:::i;:::-;14847:74;;14930:93;15019:3;14930:93;:::i;:::-;15048:2;15043:3;15039:12;15032:19;;14837:220;;;:::o;15063:366::-;15205:3;15226:67;15290:2;15285:3;15226:67;:::i;:::-;15219:74;;15302:93;15391:3;15302:93;:::i;:::-;15420:2;15415:3;15411:12;15404:19;;15209:220;;;:::o;15435:366::-;15577:3;15598:67;15662:2;15657:3;15598:67;:::i;:::-;15591:74;;15674:93;15763:3;15674:93;:::i;:::-;15792:2;15787:3;15783:12;15776:19;;15581:220;;;:::o;15807:366::-;15949:3;15970:67;16034:2;16029:3;15970:67;:::i;:::-;15963:74;;16046:93;16135:3;16046:93;:::i;:::-;16164:2;16159:3;16155:12;16148:19;;15953:220;;;:::o;16179:366::-;16321:3;16342:67;16406:2;16401:3;16342:67;:::i;:::-;16335:74;;16418:93;16507:3;16418:93;:::i;:::-;16536:2;16531:3;16527:12;16520:19;;16325:220;;;:::o;16551:366::-;16693:3;16714:67;16778:2;16773:3;16714:67;:::i;:::-;16707:74;;16790:93;16879:3;16790:93;:::i;:::-;16908:2;16903:3;16899:12;16892:19;;16697:220;;;:::o;16923:366::-;17065:3;17086:67;17150:2;17145:3;17086:67;:::i;:::-;17079:74;;17162:93;17251:3;17162:93;:::i;:::-;17280:2;17275:3;17271:12;17264:19;;17069:220;;;:::o;17295:366::-;17437:3;17458:67;17522:2;17517:3;17458:67;:::i;:::-;17451:74;;17534:93;17623:3;17534:93;:::i;:::-;17652:2;17647:3;17643:12;17636:19;;17441:220;;;:::o;17667:366::-;17809:3;17830:67;17894:2;17889:3;17830:67;:::i;:::-;17823:74;;17906:93;17995:3;17906:93;:::i;:::-;18024:2;18019:3;18015:12;18008:19;;17813:220;;;:::o;18039:366::-;18181:3;18202:67;18266:2;18261:3;18202:67;:::i;:::-;18195:74;;18278:93;18367:3;18278:93;:::i;:::-;18396:2;18391:3;18387:12;18380:19;;18185:220;;;:::o;18411:366::-;18553:3;18574:67;18638:2;18633:3;18574:67;:::i;:::-;18567:74;;18650:93;18739:3;18650:93;:::i;:::-;18768:2;18763:3;18759:12;18752:19;;18557:220;;;:::o;18783:366::-;18925:3;18946:67;19010:2;19005:3;18946:67;:::i;:::-;18939:74;;19022:93;19111:3;19022:93;:::i;:::-;19140:2;19135:3;19131:12;19124:19;;18929:220;;;:::o;19155:366::-;19297:3;19318:67;19382:2;19377:3;19318:67;:::i;:::-;19311:74;;19394:93;19483:3;19394:93;:::i;:::-;19512:2;19507:3;19503:12;19496:19;;19301:220;;;:::o;19527:366::-;19669:3;19690:67;19754:2;19749:3;19690:67;:::i;:::-;19683:74;;19766:93;19855:3;19766:93;:::i;:::-;19884:2;19879:3;19875:12;19868:19;;19673:220;;;:::o;19899:366::-;20041:3;20062:67;20126:2;20121:3;20062:67;:::i;:::-;20055:74;;20138:93;20227:3;20138:93;:::i;:::-;20256:2;20251:3;20247:12;20240:19;;20045:220;;;:::o;20271:366::-;20413:3;20434:67;20498:2;20493:3;20434:67;:::i;:::-;20427:74;;20510:93;20599:3;20510:93;:::i;:::-;20628:2;20623:3;20619:12;20612:19;;20417:220;;;:::o;20643:366::-;20785:3;20806:67;20870:2;20865:3;20806:67;:::i;:::-;20799:74;;20882:93;20971:3;20882:93;:::i;:::-;21000:2;20995:3;20991:12;20984:19;;20789:220;;;:::o;21015:398::-;21174:3;21195:83;21276:1;21271:3;21195:83;:::i;:::-;21188:90;;21287:93;21376:3;21287:93;:::i;:::-;21405:1;21400:3;21396:11;21389:18;;21178:235;;;:::o;21419:366::-;21561:3;21582:67;21646:2;21641:3;21582:67;:::i;:::-;21575:74;;21658:93;21747:3;21658:93;:::i;:::-;21776:2;21771:3;21767:12;21760:19;;21565:220;;;:::o;21791:366::-;21933:3;21954:67;22018:2;22013:3;21954:67;:::i;:::-;21947:74;;22030:93;22119:3;22030:93;:::i;:::-;22148:2;22143:3;22139:12;22132:19;;21937:220;;;:::o;22163:366::-;22305:3;22326:67;22390:2;22385:3;22326:67;:::i;:::-;22319:74;;22402:93;22491:3;22402:93;:::i;:::-;22520:2;22515:3;22511:12;22504:19;;22309:220;;;:::o;22535:366::-;22677:3;22698:67;22762:2;22757:3;22698:67;:::i;:::-;22691:74;;22774:93;22863:3;22774:93;:::i;:::-;22892:2;22887:3;22883:12;22876:19;;22681:220;;;:::o;22907:108::-;22984:24;23002:5;22984:24;:::i;:::-;22979:3;22972:37;22962:53;;:::o;23021:118::-;23108:24;23126:5;23108:24;:::i;:::-;23103:3;23096:37;23086:53;;:::o;23145:435::-;23325:3;23347:95;23438:3;23429:6;23347:95;:::i;:::-;23340:102;;23459:95;23550:3;23541:6;23459:95;:::i;:::-;23452:102;;23571:3;23564:10;;23329:251;;;;;:::o;23586:379::-;23770:3;23792:147;23935:3;23792:147;:::i;:::-;23785:154;;23956:3;23949:10;;23774:191;;;:::o;23971:222::-;24064:4;24102:2;24091:9;24087:18;24079:26;;24115:71;24183:1;24172:9;24168:17;24159:6;24115:71;:::i;:::-;24069:124;;;;:::o;24199:640::-;24394:4;24432:3;24421:9;24417:19;24409:27;;24446:71;24514:1;24503:9;24499:17;24490:6;24446:71;:::i;:::-;24527:72;24595:2;24584:9;24580:18;24571:6;24527:72;:::i;:::-;24609;24677:2;24666:9;24662:18;24653:6;24609:72;:::i;:::-;24728:9;24722:4;24718:20;24713:2;24702:9;24698:18;24691:48;24756:76;24827:4;24818:6;24756:76;:::i;:::-;24748:84;;24399:440;;;;;;;:::o;24845:373::-;24988:4;25026:2;25015:9;25011:18;25003:26;;25075:9;25069:4;25065:20;25061:1;25050:9;25046:17;25039:47;25103:108;25206:4;25197:6;25103:108;:::i;:::-;25095:116;;24993:225;;;;:::o;25224:210::-;25311:4;25349:2;25338:9;25334:18;25326:26;;25362:65;25424:1;25413:9;25409:17;25400:6;25362:65;:::i;:::-;25316:118;;;;:::o;25440:313::-;25553:4;25591:2;25580:9;25576:18;25568:26;;25640:9;25634:4;25630:20;25626:1;25615:9;25611:17;25604:47;25668:78;25741:4;25732:6;25668:78;:::i;:::-;25660:86;;25558:195;;;;:::o;25759:514::-;25920:4;25958:2;25947:9;25943:18;25935:26;;26007:9;26001:4;25997:20;25993:1;25982:9;25978:17;25971:47;26035:78;26108:4;26099:6;26035:78;:::i;:::-;26027:86;;26160:9;26154:4;26150:20;26145:2;26134:9;26130:18;26123:48;26188:78;26261:4;26252:6;26188:78;:::i;:::-;26180:86;;25925:348;;;;;:::o;26279:419::-;26445:4;26483:2;26472:9;26468:18;26460:26;;26532:9;26526:4;26522:20;26518:1;26507:9;26503:17;26496:47;26560:131;26686:4;26560:131;:::i;:::-;26552:139;;26450:248;;;:::o;26704:419::-;26870:4;26908:2;26897:9;26893:18;26885:26;;26957:9;26951:4;26947:20;26943:1;26932:9;26928:17;26921:47;26985:131;27111:4;26985:131;:::i;:::-;26977:139;;26875:248;;;:::o;27129:419::-;27295:4;27333:2;27322:9;27318:18;27310:26;;27382:9;27376:4;27372:20;27368:1;27357:9;27353:17;27346:47;27410:131;27536:4;27410:131;:::i;:::-;27402:139;;27300:248;;;:::o;27554:419::-;27720:4;27758:2;27747:9;27743:18;27735:26;;27807:9;27801:4;27797:20;27793:1;27782:9;27778:17;27771:47;27835:131;27961:4;27835:131;:::i;:::-;27827:139;;27725:248;;;:::o;27979:419::-;28145:4;28183:2;28172:9;28168:18;28160:26;;28232:9;28226:4;28222:20;28218:1;28207:9;28203:17;28196:47;28260:131;28386:4;28260:131;:::i;:::-;28252:139;;28150:248;;;:::o;28404:419::-;28570:4;28608:2;28597:9;28593:18;28585:26;;28657:9;28651:4;28647:20;28643:1;28632:9;28628:17;28621:47;28685:131;28811:4;28685:131;:::i;:::-;28677:139;;28575:248;;;:::o;28829:419::-;28995:4;29033:2;29022:9;29018:18;29010:26;;29082:9;29076:4;29072:20;29068:1;29057:9;29053:17;29046:47;29110:131;29236:4;29110:131;:::i;:::-;29102:139;;29000:248;;;:::o;29254:419::-;29420:4;29458:2;29447:9;29443:18;29435:26;;29507:9;29501:4;29497:20;29493:1;29482:9;29478:17;29471:47;29535:131;29661:4;29535:131;:::i;:::-;29527:139;;29425:248;;;:::o;29679:419::-;29845:4;29883:2;29872:9;29868:18;29860:26;;29932:9;29926:4;29922:20;29918:1;29907:9;29903:17;29896:47;29960:131;30086:4;29960:131;:::i;:::-;29952:139;;29850:248;;;:::o;30104:419::-;30270:4;30308:2;30297:9;30293:18;30285:26;;30357:9;30351:4;30347:20;30343:1;30332:9;30328:17;30321:47;30385:131;30511:4;30385:131;:::i;:::-;30377:139;;30275:248;;;:::o;30529:419::-;30695:4;30733:2;30722:9;30718:18;30710:26;;30782:9;30776:4;30772:20;30768:1;30757:9;30753:17;30746:47;30810:131;30936:4;30810:131;:::i;:::-;30802:139;;30700:248;;;:::o;30954:419::-;31120:4;31158:2;31147:9;31143:18;31135:26;;31207:9;31201:4;31197:20;31193:1;31182:9;31178:17;31171:47;31235:131;31361:4;31235:131;:::i;:::-;31227:139;;31125:248;;;:::o;31379:419::-;31545:4;31583:2;31572:9;31568:18;31560:26;;31632:9;31626:4;31622:20;31618:1;31607:9;31603:17;31596:47;31660:131;31786:4;31660:131;:::i;:::-;31652:139;;31550:248;;;:::o;31804:419::-;31970:4;32008:2;31997:9;31993:18;31985:26;;32057:9;32051:4;32047:20;32043:1;32032:9;32028:17;32021:47;32085:131;32211:4;32085:131;:::i;:::-;32077:139;;31975:248;;;:::o;32229:419::-;32395:4;32433:2;32422:9;32418:18;32410:26;;32482:9;32476:4;32472:20;32468:1;32457:9;32453:17;32446:47;32510:131;32636:4;32510:131;:::i;:::-;32502:139;;32400:248;;;:::o;32654:419::-;32820:4;32858:2;32847:9;32843:18;32835:26;;32907:9;32901:4;32897:20;32893:1;32882:9;32878:17;32871:47;32935:131;33061:4;32935:131;:::i;:::-;32927:139;;32825:248;;;:::o;33079:419::-;33245:4;33283:2;33272:9;33268:18;33260:26;;33332:9;33326:4;33322:20;33318:1;33307:9;33303:17;33296:47;33360:131;33486:4;33360:131;:::i;:::-;33352:139;;33250:248;;;:::o;33504:419::-;33670:4;33708:2;33697:9;33693:18;33685:26;;33757:9;33751:4;33747:20;33743:1;33732:9;33728:17;33721:47;33785:131;33911:4;33785:131;:::i;:::-;33777:139;;33675:248;;;:::o;33929:419::-;34095:4;34133:2;34122:9;34118:18;34110:26;;34182:9;34176:4;34172:20;34168:1;34157:9;34153:17;34146:47;34210:131;34336:4;34210:131;:::i;:::-;34202:139;;34100:248;;;:::o;34354:419::-;34520:4;34558:2;34547:9;34543:18;34535:26;;34607:9;34601:4;34597:20;34593:1;34582:9;34578:17;34571:47;34635:131;34761:4;34635:131;:::i;:::-;34627:139;;34525:248;;;:::o;34779:419::-;34945:4;34983:2;34972:9;34968:18;34960:26;;35032:9;35026:4;35022:20;35018:1;35007:9;35003:17;34996:47;35060:131;35186:4;35060:131;:::i;:::-;35052:139;;34950:248;;;:::o;35204:419::-;35370:4;35408:2;35397:9;35393:18;35385:26;;35457:9;35451:4;35447:20;35443:1;35432:9;35428:17;35421:47;35485:131;35611:4;35485:131;:::i;:::-;35477:139;;35375:248;;;:::o;35629:419::-;35795:4;35833:2;35822:9;35818:18;35810:26;;35882:9;35876:4;35872:20;35868:1;35857:9;35853:17;35846:47;35910:131;36036:4;35910:131;:::i;:::-;35902:139;;35800:248;;;:::o;36054:419::-;36220:4;36258:2;36247:9;36243:18;36235:26;;36307:9;36301:4;36297:20;36293:1;36282:9;36278:17;36271:47;36335:131;36461:4;36335:131;:::i;:::-;36327:139;;36225:248;;;:::o;36479:419::-;36645:4;36683:2;36672:9;36668:18;36660:26;;36732:9;36726:4;36722:20;36718:1;36707:9;36703:17;36696:47;36760:131;36886:4;36760:131;:::i;:::-;36752:139;;36650:248;;;:::o;36904:419::-;37070:4;37108:2;37097:9;37093:18;37085:26;;37157:9;37151:4;37147:20;37143:1;37132:9;37128:17;37121:47;37185:131;37311:4;37185:131;:::i;:::-;37177:139;;37075:248;;;:::o;37329:419::-;37495:4;37533:2;37522:9;37518:18;37510:26;;37582:9;37576:4;37572:20;37568:1;37557:9;37553:17;37546:47;37610:131;37736:4;37610:131;:::i;:::-;37602:139;;37500:248;;;:::o;37754:419::-;37920:4;37958:2;37947:9;37943:18;37935:26;;38007:9;38001:4;37997:20;37993:1;37982:9;37978:17;37971:47;38035:131;38161:4;38035:131;:::i;:::-;38027:139;;37925:248;;;:::o;38179:419::-;38345:4;38383:2;38372:9;38368:18;38360:26;;38432:9;38426:4;38422:20;38418:1;38407:9;38403:17;38396:47;38460:131;38586:4;38460:131;:::i;:::-;38452:139;;38350:248;;;:::o;38604:419::-;38770:4;38808:2;38797:9;38793:18;38785:26;;38857:9;38851:4;38847:20;38843:1;38832:9;38828:17;38821:47;38885:131;39011:4;38885:131;:::i;:::-;38877:139;;38775:248;;;:::o;39029:419::-;39195:4;39233:2;39222:9;39218:18;39210:26;;39282:9;39276:4;39272:20;39268:1;39257:9;39253:17;39246:47;39310:131;39436:4;39310:131;:::i;:::-;39302:139;;39200:248;;;:::o;39454:419::-;39620:4;39658:2;39647:9;39643:18;39635:26;;39707:9;39701:4;39697:20;39693:1;39682:9;39678:17;39671:47;39735:131;39861:4;39735:131;:::i;:::-;39727:139;;39625:248;;;:::o;39879:419::-;40045:4;40083:2;40072:9;40068:18;40060:26;;40132:9;40126:4;40122:20;40118:1;40107:9;40103:17;40096:47;40160:131;40286:4;40160:131;:::i;:::-;40152:139;;40050:248;;;:::o;40304:419::-;40470:4;40508:2;40497:9;40493:18;40485:26;;40557:9;40551:4;40547:20;40543:1;40532:9;40528:17;40521:47;40585:131;40711:4;40585:131;:::i;:::-;40577:139;;40475:248;;;:::o;40729:222::-;40822:4;40860:2;40849:9;40845:18;40837:26;;40873:71;40941:1;40930:9;40926:17;40917:6;40873:71;:::i;:::-;40827:124;;;;:::o;40957:129::-;40991:6;41018:20;;:::i;:::-;41008:30;;41047:33;41075:4;41067:6;41047:33;:::i;:::-;40998:88;;;:::o;41092:75::-;41125:6;41158:2;41152:9;41142:19;;41132:35;:::o;41173:307::-;41234:4;41324:18;41316:6;41313:30;41310:2;;;41346:18;;:::i;:::-;41310:2;41384:29;41406:6;41384:29;:::i;:::-;41376:37;;41468:4;41462;41458:15;41450:23;;41239:241;;;:::o;41486:308::-;41548:4;41638:18;41630:6;41627:30;41624:2;;;41660:18;;:::i;:::-;41624:2;41698:29;41720:6;41698:29;:::i;:::-;41690:37;;41782:4;41776;41772:15;41764:23;;41553:241;;;:::o;41800:132::-;41867:4;41890:3;41882:11;;41920:4;41915:3;41911:14;41903:22;;41872:60;;;:::o;41938:114::-;42005:6;42039:5;42033:12;42023:22;;42012:40;;;:::o;42058:98::-;42109:6;42143:5;42137:12;42127:22;;42116:40;;;:::o;42162:99::-;42214:6;42248:5;42242:12;42232:22;;42221:40;;;:::o;42267:113::-;42337:4;42369;42364:3;42360:14;42352:22;;42342:38;;;:::o;42386:184::-;42485:11;42519:6;42514:3;42507:19;42559:4;42554:3;42550:14;42535:29;;42497:73;;;;:::o;42576:168::-;42659:11;42693:6;42688:3;42681:19;42733:4;42728:3;42724:14;42709:29;;42671:73;;;;:::o;42750:147::-;42851:11;42888:3;42873:18;;42863:34;;;;:::o;42903:169::-;42987:11;43021:6;43016:3;43009:19;43061:4;43056:3;43052:14;43037:29;;42999:73;;;;:::o;43078:148::-;43180:11;43217:3;43202:18;;43192:34;;;;:::o;43232:305::-;43272:3;43291:20;43309:1;43291:20;:::i;:::-;43286:25;;43325:20;43343:1;43325:20;:::i;:::-;43320:25;;43479:1;43411:66;43407:74;43404:1;43401:81;43398:2;;;43485:18;;:::i;:::-;43398:2;43529:1;43526;43522:9;43515:16;;43276:261;;;;:::o;43543:185::-;43583:1;43600:20;43618:1;43600:20;:::i;:::-;43595:25;;43634:20;43652:1;43634:20;:::i;:::-;43629:25;;43673:1;43663:2;;43678:18;;:::i;:::-;43663:2;43720:1;43717;43713:9;43708:14;;43585:143;;;;:::o;43734:348::-;43774:7;43797:20;43815:1;43797:20;:::i;:::-;43792:25;;43831:20;43849:1;43831:20;:::i;:::-;43826:25;;44019:1;43951:66;43947:74;43944:1;43941:81;43936:1;43929:9;43922:17;43918:105;43915:2;;;44026:18;;:::i;:::-;43915:2;44074:1;44071;44067:9;44056:20;;43782:300;;;;:::o;44088:191::-;44128:4;44148:20;44166:1;44148:20;:::i;:::-;44143:25;;44182:20;44200:1;44182:20;:::i;:::-;44177:25;;44221:1;44218;44215:8;44212:2;;;44226:18;;:::i;:::-;44212:2;44271:1;44268;44264:9;44256:17;;44133:146;;;;:::o;44285:96::-;44322:7;44351:24;44369:5;44351:24;:::i;:::-;44340:35;;44330:51;;;:::o;44387:90::-;44421:7;44464:5;44457:13;44450:21;44439:32;;44429:48;;;:::o;44483:149::-;44519:7;44559:66;44552:5;44548:78;44537:89;;44527:105;;;:::o;44638:126::-;44675:7;44715:42;44708:5;44704:54;44693:65;;44683:81;;;:::o;44770:77::-;44807:7;44836:5;44825:16;;44815:32;;;:::o;44853:154::-;44937:6;44932:3;44927;44914:30;44999:1;44990:6;44985:3;44981:16;44974:27;44904:103;;;:::o;45013:307::-;45081:1;45091:113;45105:6;45102:1;45099:13;45091:113;;;45190:1;45185:3;45181:11;45175:18;45171:1;45166:3;45162:11;45155:39;45127:2;45124:1;45120:10;45115:15;;45091:113;;;45222:6;45219:1;45216:13;45213:2;;;45302:1;45293:6;45288:3;45284:16;45277:27;45213:2;45062:258;;;;:::o;45326:320::-;45370:6;45407:1;45401:4;45397:12;45387:22;;45454:1;45448:4;45444:12;45475:18;45465:2;;45531:4;45523:6;45519:17;45509:27;;45465:2;45593;45585:6;45582:14;45562:18;45559:38;45556:2;;;45612:18;;:::i;:::-;45556:2;45377:269;;;;:::o;45652:281::-;45735:27;45757:4;45735:27;:::i;:::-;45727:6;45723:40;45865:6;45853:10;45850:22;45829:18;45817:10;45814:34;45811:62;45808:2;;;45876:18;;:::i;:::-;45808:2;45916:10;45912:2;45905:22;45695:238;;;:::o;45939:233::-;45978:3;46001:24;46019:5;46001:24;:::i;:::-;45992:33;;46047:66;46040:5;46037:77;46034:2;;;46117:18;;:::i;:::-;46034:2;46164:1;46157:5;46153:13;46146:20;;45982:190;;;:::o;46178:176::-;46210:1;46227:20;46245:1;46227:20;:::i;:::-;46222:25;;46261:20;46279:1;46261:20;:::i;:::-;46256:25;;46300:1;46290:2;;46305:18;;:::i;:::-;46290:2;46346:1;46343;46339:9;46334:14;;46212:142;;;;:::o;46360:180::-;46408:77;46405:1;46398:88;46505:4;46502:1;46495:15;46529:4;46526:1;46519:15;46546:180;46594:77;46591:1;46584:88;46691:4;46688:1;46681:15;46715:4;46712:1;46705:15;46732:180;46780:77;46777:1;46770:88;46877:4;46874:1;46867:15;46901:4;46898:1;46891:15;46918:180;46966:77;46963:1;46956:88;47063:4;47060:1;47053:15;47087:4;47084:1;47077:15;47104:102;47145:6;47196:2;47192:7;47187:2;47180:5;47176:14;47172:28;47162:38;;47152:54;;;:::o;47212:230::-;47352:34;47348:1;47340:6;47336:14;47329:58;47421:13;47416:2;47408:6;47404:15;47397:38;47318:124;:::o;47448:170::-;47588:22;47584:1;47576:6;47572:14;47565:46;47554:64;:::o;47624:164::-;47764:16;47760:1;47752:6;47748:14;47741:40;47730:58;:::o;47794:230::-;47934:34;47930:1;47922:6;47918:14;47911:58;48003:13;47998:2;47990:6;47986:15;47979:38;47900:124;:::o;48030:237::-;48170:34;48166:1;48158:6;48154:14;48147:58;48239:20;48234:2;48226:6;48222:15;48215:45;48136:131;:::o;48273:225::-;48413:34;48409:1;48401:6;48397:14;48390:58;48482:8;48477:2;48469:6;48465:15;48458:33;48379:119;:::o;48504:177::-;48644:29;48640:1;48632:6;48628:14;48621:53;48610:71;:::o;48687:178::-;48827:30;48823:1;48815:6;48811:14;48804:54;48793:72;:::o;48871:223::-;49011:34;49007:1;48999:6;48995:14;48988:58;49080:6;49075:2;49067:6;49063:15;49056:31;48977:117;:::o;49100:175::-;49240:27;49236:1;49228:6;49224:14;49217:51;49206:69;:::o;49281:159::-;49421:11;49417:1;49409:6;49405:14;49398:35;49387:53;:::o;49446:231::-;49586:34;49582:1;49574:6;49570:14;49563:58;49655:14;49650:2;49642:6;49638:15;49631:39;49552:125;:::o;49683:179::-;49823:31;49819:1;49811:6;49807:14;49800:55;49789:73;:::o;49868:166::-;50008:18;50004:1;49996:6;49992:14;49985:42;49974:60;:::o;50040:243::-;50180:34;50176:1;50168:6;50164:14;50157:58;50249:26;50244:2;50236:6;50232:15;50225:51;50146:137;:::o;50289:229::-;50429:34;50425:1;50417:6;50413:14;50406:58;50498:12;50493:2;50485:6;50481:15;50474:37;50395:123;:::o;50524:228::-;50664:34;50660:1;50652:6;50648:14;50641:58;50733:11;50728:2;50720:6;50716:15;50709:36;50630:122;:::o;50758:175::-;50898:27;50894:1;50886:6;50882:14;50875:51;50864:69;:::o;50939:182::-;51079:34;51075:1;51067:6;51063:14;51056:58;51045:76;:::o;51127:231::-;51267:34;51263:1;51255:6;51251:14;51244:58;51336:14;51331:2;51323:6;51319:15;51312:39;51233:125;:::o;51364:182::-;51504:34;51500:1;51492:6;51488:14;51481:58;51470:76;:::o;51552:163::-;51692:15;51688:1;51680:6;51676:14;51669:39;51658:57;:::o;51721:228::-;51861:34;51857:1;51849:6;51845:14;51838:58;51930:11;51925:2;51917:6;51913:15;51906:36;51827:122;:::o;51955:234::-;52095:34;52091:1;52083:6;52079:14;52072:58;52164:17;52159:2;52151:6;52147:15;52140:42;52061:128;:::o;52195:167::-;52335:19;52331:1;52323:6;52319:14;52312:43;52301:61;:::o;52368:160::-;52508:12;52504:1;52496:6;52492:14;52485:36;52474:54;:::o;52534:233::-;52674:34;52670:1;52662:6;52658:14;52651:58;52743:16;52738:2;52730:6;52726:15;52719:41;52640:127;:::o;52773:220::-;52913:34;52909:1;52901:6;52897:14;52890:58;52982:3;52977:2;52969:6;52965:15;52958:28;52879:114;:::o;52999:174::-;53139:26;53135:1;53127:6;53123:14;53116:50;53105:68;:::o;53179:182::-;53319:34;53315:1;53307:6;53303:14;53296:58;53285:76;:::o;53367:114::-;53473:8;:::o;53487:166::-;53627:18;53623:1;53615:6;53611:14;53604:42;53593:60;:::o;53659:236::-;53799:34;53795:1;53787:6;53783:14;53776:58;53868:19;53863:2;53855:6;53851:15;53844:44;53765:130;:::o;53901:231::-;54041:34;54037:1;54029:6;54025:14;54018:58;54110:14;54105:2;54097:6;54093:15;54086:39;54007:125;:::o;54138:235::-;54278:34;54274:1;54266:6;54262:14;54255:58;54347:18;54342:2;54334:6;54330:15;54323:43;54244:129;:::o;54379:122::-;54452:24;54470:5;54452:24;:::i;:::-;54445:5;54442:35;54432:2;;54491:1;54488;54481:12;54432:2;54422:79;:::o;54507:116::-;54577:21;54592:5;54577:21;:::i;:::-;54570:5;54567:32;54557:2;;54613:1;54610;54603:12;54557:2;54547:76;:::o;54629:120::-;54701:23;54718:5;54701:23;:::i;:::-;54694:5;54691:34;54681:2;;54739:1;54736;54729:12;54681:2;54671:78;:::o;54755:122::-;54828:24;54846:5;54828:24;:::i;:::-;54821:5;54818:35;54808:2;;54867:1;54864;54857:12;54808:2;54798:79;:::o
Swarm Source
ipfs://eed9fdbd75ba61922ad9f590f0606db69a39f702b10a718a48f12fc068de7a84
Loading...
Loading
Loading...
Loading
[ 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.