ETH Price: $3,414.11 (-1.56%)
Gas: 5 Gwei

Token

John McAfee Legacy (JML)
 

Overview

Max Total Supply

1,873 JML

Holders

1,863

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 JML
0x663c759793c279dc6ac39d956ff041bd6732eada
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GhostCollection

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1337 runs

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

import "./presets/ERC721EnviousDynamicPreset.sol";

contract GhostCollection is ERC721EnviousDynamicPreset {
	
	address private _superUser;
	address private _superMinter;
	
	constructor(
		string memory tokenName,
		string memory tokenSymbol,
		string memory baseTokenURI,
		uint256[] memory edgeValues,
		uint256[] memory edgeOffsets,
		uint256[] memory edgeRanges,
		address tokenMeasurment
	) ERC721EnviousDynamicPreset(
		tokenName,
		tokenSymbol,
		baseTokenURI,
		edgeValues,
		edgeOffsets,
		edgeRanges,
		tokenMeasurment
	) {
		_superUser = _msgSender();
		_superMinter = _msgSender();
	}

	modifier onlySuperUser {
		require(_msgSender() == _superUser, "only for super user");
		_;
	}

	function mint(address to) public override {
		require(_msgSender() == _superMinter, "only for super minter");
		super.mint(to);
	}

	function setGhostAddresses(
		address ghostToken, 
		address ghostBonding
	) public override onlySuperUser {
		super.setGhostAddresses(ghostToken, ghostBonding);
	}

	function changeBaseUri(string memory newBaseURI) external onlySuperUser {
		super._changeBaseURI(newBaseURI);
	}

	function renewSuperMinter(address who) external onlySuperUser {
		_superMinter = who;
	}
}

File 2 of 24 : ERC721EnviousDynamicPreset.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../extension/ERC721Envious.sol";
import "../interfaces/IERC721EnviousDynamic.sol";
import "../openzeppelin/token/ERC721/extensions/ERC721Enumerable.sol";
import "../openzeppelin/token/ERC20/IERC20.sol";
import "../openzeppelin/token/ERC20/utils/SafeERC20.sol";
import "../openzeppelin/utils/Address.sol";
import "../openzeppelin/utils/Strings.sol";
import "../openzeppelin/utils/Counters.sol";

/**
 * @title ERC721 Collateralization Dynamic Mock
 * This mock shows an implementation of ERC721Envious with dynamic URI.
 * It will change on every collateral modification. Handmade `totalSupply` 
 * function will be used in order to be used in {_disperse} function.
 *
 * @author 5Tr3TcH @ghostchain
 * @author 571nkY @ghostchain
 */
contract ERC721EnviousDynamicPreset is IERC721EnviousDynamic, ERC721Enumerable, ERC721Envious {

	using SafeERC20 for IERC20;
	using Address for address;
	using Strings for uint256;
	using Counters for Counters.Counter;

	string private _baseTokenURI;
	Counters.Counter private _tokenTracker;

	// token that will be used for dynamic measurment
	address public measurmentTokenAddress;

	// edges within which redistribution of URI will take place
	Edge[] public edges;

	// solhint-disable-next-line
	string private constant ZERO_ADDRESS = "zero address found";
	
	constructor(
		string memory tokenName,
		string memory tokenSymbol,
		string memory baseTokenURI,
		uint256[] memory edgeValues,
		uint256[] memory edgeOffsets,
		uint256[] memory edgeRanges,
		address tokenMeasurment
	) ERC721(tokenName, tokenSymbol) {
		require(tokenMeasurment != address(0), ZERO_ADDRESS);
		require(
			edgeValues.length == edgeOffsets.length && 
			edgeValues.length == edgeRanges.length,
			ZERO_ADDRESS
		);

		measurmentTokenAddress = tokenMeasurment;
		_changeBaseURI(baseTokenURI);

		for (uint256 i = 0; i < edgeValues.length; i++) {
			edges.push(Edge({
				value: edgeValues[i], 
				offset: edgeOffsets[i], 
				range: edgeRanges[i]
			}));
		}
	}

	receive() external payable {
		_disperseTokenCollateral(msg.value, address(0));
	}

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

	/**
	 * @dev See {_baseURI}.
	 */
	function baseURI() external view virtual returns (string memory) {
		return _baseURI();
	}

	/**
	 * @dev Getter function for each token URI.
	 *
	 * Requirements:
	 * - `tokenId` must exist.
	 *
	 * @param tokenId unique identifier of token
	 * @return token URI string
	 */
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		_requireMinted(tokenId);
		
		string memory currentURI = _baseURI();
		uint256 tokenPointer = getTokenPointer(tokenId);
		return string(abi.encodePacked(currentURI, tokenPointer.toString(), ".json"));
	}

	/**
	 * @dev Get `tokenURI` for specific token based on predefined `edges`.
	 *
	 * @param tokenId unique identifier for token
	 */
	function getTokenPointer(uint256 tokenId) public view virtual override returns (uint256) {
		uint256 collateral = collateralBalances[tokenId][measurmentTokenAddress];
		uint256 totalDisperse = disperseBalance[measurmentTokenAddress] / totalSupply();
		uint256	takenDisperse = disperseTaken[tokenId][measurmentTokenAddress];
		uint256 value = collateral + totalDisperse - takenDisperse;

		uint256 range = 1;
		uint256 offset = 0;

		for (uint256 i = edges.length; i > 0; i--) {
			if (value >= edges[i-1].value) {
				range = edges[i-1].range;
				offset = edges[i-1].offset;
				break;
			}
		}

		uint256 seed = uint256(keccak256(abi.encodePacked(tokenId, collateral, totalDisperse))) % range;
		return seed + offset;
	}

	/**
	 * @dev Set ghost related addresses.
	 *
	 * Requirements:
	 * - `ghostAddress` must be non-zero address
	 * - `ghostBonding` must be non-zero address
	 *
	 * @param ghostToken non-rebasing wrapping token address
	 * @param ghostBonding bonding contract address
	 */
	function setGhostAddresses(
		address ghostToken, 
		address ghostBonding
	) public virtual {
		require(
			ghostToken != address(0) && ghostBonding != address(0),
			ZERO_ADDRESS
		);
		_changeGhostAddresses(ghostToken, ghostBonding);
	}

	/**
	 * @dev See {IERC721Envious-_changeCommunityAddresses}.
	 */
	function changeCommunityAddresses(address newTokenAddress, address newBlackHole) public virtual {
		require(newTokenAddress != address(0), ZERO_ADDRESS);
		_changeCommunityAddresses(newTokenAddress, newBlackHole);
	}

	/**
	 * @dev See {ERC721EnviousDynamic-mint}
	 */
	function mint(address to) public virtual override {
		_tokenTracker.increment();
		_safeMint(to, _tokenTracker.current());
	}

	/**
	 * @dev See {ERC721-_burn}
	 */
	function burn(uint256 tokenId) public virtual {
		_burn(tokenId);
	}

	/**
	 * @dev See {ERC721Envious-_disperse}
	 */
	function _disperse(address tokenAddress, uint256 tokenId) internal virtual override {
		uint256 balance = disperseBalance[tokenAddress] / totalSupply();

		if (disperseTotalTaken[tokenAddress] + balance > disperseBalance[tokenAddress]) {
			balance = disperseBalance[tokenAddress] - disperseTotalTaken[tokenAddress];
		}

		if (balance > disperseTaken[tokenId][tokenAddress]) {
			uint256 amount = balance - disperseTaken[tokenId][tokenAddress];
			disperseTaken[tokenId][tokenAddress] += amount;

			(bool shouldAppend,) = _arrayContains(tokenAddress, collateralTokens[tokenId]);
			if (shouldAppend) {
				collateralTokens[tokenId].push(tokenAddress);
			}
			
			collateralBalances[tokenId][tokenAddress] += amount;
			disperseTotalTaken[tokenAddress] += amount;
		}
	}

	/**
	 * @dev Getter function for `_baseTokenURI`.
	 *
	 * @return base URI string
	 */
	function _baseURI() internal view virtual override returns (string memory) {
		return _baseTokenURI;
	}

	/**
	 * @dev Ability to change URI for the collection.
	 */
	function _changeBaseURI(string memory newBaseURI) internal virtual {
		_baseTokenURI = newBaseURI;
	}

	/**
	 * @dev See {ERC721-_beforeTokenTransfer}.
	 */
	function _beforeTokenTransfer(
		address from,
		address to,
		uint256 firstTokenId,
		uint256 batchSize
	) internal virtual override(ERC721, ERC721Enumerable) {
		ERC721Enumerable._beforeTokenTransfer(from, to, firstTokenId, batchSize);
	}
}

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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 24 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 7 of 24 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 24 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 15 of 24 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 16 of 24 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

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

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

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

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

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

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

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

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

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

File 17 of 24 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 18 of 24 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 19 of 24 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 20 of 24 : INoteKeeper.sol
// SPDX-License-Identifier: AGPL-3.0-only

pragma solidity ^0.8.0;

interface INoteKeeper {
    // Info for market note
	struct Note {
		uint256 payout; // gOHM remaining to be paid
		uint48 created; // time market was created
		uint48 matured; // timestamp when market is matured
		uint48 redeemed; // time market was redeemed
		uint48 marketID; // market ID of deposit. uint48 to avoid adding a slot.
	}
	
	function redeem(address _user, uint256[] memory _indexes, bool _sendgOHM) external returns (uint256);
	
	function redeemAll(address _user, bool _sendgOHM) external returns (uint256);
	
	function pushNote(address to, uint256 index) external;
	
	function pullNote(address from, uint256 index) external returns (uint256 newIndex_);
	
	function indexesFor(address _user) external view returns (uint256[] memory);
	
	function pendingFor(address _user, uint256 _index) external view returns (uint256 payout_, bool matured_);
}

File 21 of 24 : IERC721EnviousDynamic.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721Envious.sol";

/**
 * @title Additional extension for IERC721Envious, in order to make 
 * `tokenURI` dynamic, based on actual collateral.
 * @author 571nkY @ghostchain
 * @dev Ability to get royalty payments from collateral NFTs.
 */
interface IERC721EnviousDynamic is IERC721Envious {
	struct Edge {
		uint256 value;
		uint256 offset;
		uint256 range;
	}

	/**
	 * @dev Get `tokenURI` for specific token based on edges. Where actual 
	 * collateral should define which edge should be used, range shows
	 * maximum value in current edge, offset shows minimal value in current
	 * edge.
	 *
	 * @param tokenId unique identifier for token
	 */
	function getTokenPointer(uint256 tokenId) external view returns (uint256);
}

File 22 of 24 : IERC721Envious.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../openzeppelin/token/ERC721/IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional Envious extension.
 * @author F4T50 @ghostchain
 * @author 571nkY @ghostchain
 * @author 5Tr3TcH @ghostchain
 * @dev Ability to collateralize each NFT in collection.
 */
interface IERC721Envious is IERC721 {
	event Collateralized(uint256 indexed tokenId, uint256 amount, address tokenAddress);
	event Uncollateralized(uint256 indexed tokenId, uint256 amount, address tokenAddress);
	event Dispersed(address indexed tokenAddress, uint256 amount);
	event Harvested(address indexed tokenAddress, uint256 amount, uint256 scaledAmount);

	/**
	 * @dev An array with two elements. Each of them represents percentage from collateral
	 * to be taken as a commission. First element represents collateralization commission.
	 * Second element represents uncollateralization commission. There should be 3 
	 * decimal buffer for each of them, e.g. 1000 = 1%.
	 *
	 * @param index of value in array.
	 */
	function commissions(uint256 index) external view returns (uint256);

	/**
	 * @dev Address of token that will be paid on bonds.
	 *
	 * @return address address of token.
	 */
	function ghostAddress() external view returns (address);

	/**
	 * @dev Address of smart contract, that provides purchasing of DeFi 2.0 bonds.
	 *
	 * @return address address of bonding smart.
	 */
	function ghostBondingAddress() external view returns (address);

	/**
	 * @dev 'Black hole' is any address that guarantee tokens sent to it will not be 
	 * retrieved from there. Note: some tokens revert on transfer to zero address.
	 *
	 * @return address address of black hole.
	 */
	function blackHole() external view returns (address);

	/**
	 * @dev Token that will be used to harvest collected commissions.
	 *
	 * @return address address of token.
	 */
	function communityToken() external view returns (address);

	/**
	 * @dev Pool of available tokens for harvesting.
	 *
	 * @param index in array.
	 * @return address of token.
	 */
	function communityPool(uint256 index) external view returns (address);

	/**
	 * @dev Token balance available for harvesting.
	 *
	 * @param tokenAddress addres of token.
	 * @return uint256 token balance.
	 */
	function communityBalance(address tokenAddress) external view returns (uint256);

	/**
	 * @dev Array of tokens that were dispersed.
	 *
	 * @param index in array.
	 * @return address address of dispersed token.
	 */
	function disperseTokens(uint256 index) external view returns (address);

	/**
	 * @dev Amount of tokens that was dispersed.
	 *
	 * @param tokenAddress address of token.
	 * @return uint256 token balance.
	 */
	function disperseBalance(address tokenAddress) external view returns (uint256);

	/**
	 * @dev Amount of tokens that was already taken from the disperse.
	 *
	 * @param tokenAddress address of token.
	 * @return uint256 total amount of tokens already taken.
	 */
	function disperseTotalTaken(address tokenAddress) external view returns (uint256);

	/**
	 * @dev Amount of disperse already taken by each tokenId.
	 *
	 * @param tokenId unique identifier of unit.
	 * @param tokenAddress address of token.
	 * @return uint256 amount of tokens already taken.
	 */
	function disperseTaken(uint256 tokenId, address tokenAddress) external view returns (uint256);

	/**
	 * @dev Available payouts.
	 *
	 * @param bondId bond unique identifier.
	 * @return uint256 potential payout.
	 */
	function bondPayouts(uint256 bondId) external view returns (uint256);

	/**
	 * @dev Mapping of `tokenId`s to array of bonds.
	 *
	 * @param tokenId unique identifier of unit.
	 * @param index in array.
	 * @return uint256 index of bond.
	 */
	function bondIndexes(uint256 tokenId, uint256 index) external view returns (uint256);

	/**
	 * @dev Mapping of `tokenId`s to token addresses who have collateralized before.
	 *
	 * @param tokenId unique identifier of unit.
	 * @param index in array.
	 * @return address address of token.
	 */
	function collateralTokens(uint256 tokenId, uint256 index) external view returns (address);

	/**
	 * @dev Token balances that are stored under `tokenId`.
	 *
	 * @param tokenId unique identifier of unit.
	 * @param tokenAddress address of token.
	 * @return uint256 token balance.
	 */
	function collateralBalances(uint256 tokenId, address tokenAddress) external view returns (uint256);

	/**
	 * @dev Calculator function for harvesting.
	 *
	 * @param amount of `communityToken`s to spend
	 * @param tokenAddress of token to be harvested
	 * @return amount to harvest based on inputs
	 */
	function getAmount(uint256 amount, address tokenAddress) external view returns (uint256);

	/**
	 * @dev Collect commission fees gathered in exchange for `communityToken`.
	 *
	 * @param amounts array of amounts to collateralize
	 * @param tokenAddresses array of token addresses
	 */
	function harvest(uint256[] memory amounts, address[] memory tokenAddresses) external;

	/**
	 * @dev Collateralize NFT with different tokens and amounts.
	 *
	 * @param tokenId unique identifier for specific NFT
	 * @param amounts array of amounts to collateralize
	 * @param tokenAddresses array of token addresses
	 */
	function collateralize(
		uint256 tokenId,
		uint256[] memory amounts,
		address[] memory tokenAddresses
	) external payable;

	/**
	 * @dev Withdraw underlying collateral.
	 *
	 * Requirements:
	 * - only owner of NFT
	 *
	 * @param tokenId unique identifier for specific NFT
	 * @param amounts array of amounts to collateralize
	 * @param tokenAddresses array of token addresses
	 */
	function uncollateralize(
		uint256 tokenId, 
		uint256[] memory amounts, 
		address[] memory tokenAddresses
	) external;

	/**
	 * @dev Collateralize NFT with discount, based on available bonds. While
	 * purchased bond will have delay the owner will be current smart contract
	 *
	 * @param bondId the ID of the market
	 * @param tokenId unique identifier of NFT inside current smart contract
	 * @param amount the amount of quote token to spend
	 * @param maxPrice the maximum price at which to buy bond
	 */
	function getDiscountedCollateral(
		uint256 bondId,
		address quoteToken,
		uint256 tokenId,
		uint256 amount,
		uint256 maxPrice
	) external;

	/**
	 * @dev Claim collateral inside this smart contract and extending underlying
	 * data mappings.
	 *
	 * @param tokenId unique identifier of NFT inside current smart contract
	 * @param indexes array of note indexes to redeem
	 */
	function claimDiscountedCollateral(uint256 tokenId, uint256[] memory indexes) external;

	/**
	 * @dev Split collateral among all existent tokens.
	 *
	 * @param amounts to be dispersed among all NFT owners
	 * @param tokenAddresses of token to be dispersed
	 */
	function disperse(uint256[] memory amounts, address[] memory tokenAddresses) external payable;

	/**
	 * @dev See {IERC721-_mint}
	 */
	function mint(address who) external;
}

File 23 of 24 : IBondDepository.sol
// SPDX-License-Identifier: AGPL-3.0

pragma solidity ^0.8.0;

import "../openzeppelin/token/ERC20/IERC20.sol";

interface IBondDepository {
	event CreateMarket(
		uint256 indexed id,
		address indexed baseToken,
		address indexed quoteToken,
		uint256 initialPrice
	);
	
	event CloseMarket(uint256 indexed id);
	
	event Bond(
		uint256 indexed id,
		uint256 amount,
		uint256 price
	);
	
	event Tuned(
		uint256 indexed id,
		uint64 oldControlVariable,
		uint64 newControlVariable
	);
	
	// Info about each type of market
	struct Market {
		uint256 capacity;           // capacity remaining
		IERC20 quoteToken;          // token to accept as payment
		bool capacityInQuote;       // capacity limit is in payment token (true) or in STRL (false, default)
		uint64 totalDebt;           // total debt from market
		uint64 maxPayout;           // max tokens in/out (determined by capacityInQuote false/true)
		uint64 sold;                // base tokens out
		uint256 purchased;          // quote tokens in
	}
	
	// Info for creating new markets
	struct Terms {
		bool fixedTerm;             // fixed term or fixed expiration
		uint64 controlVariable;     // scaling variable for price
		uint48 vesting;             // length of time from deposit to maturity if fixed-term
		uint48 conclusion;          // timestamp when market no longer offered (doubles as time when market matures if fixed-expiry)
		uint64 maxDebt;             // 9 decimal debt maximum in STRL
	}
	
	// Additional info about market.
	struct Metadata {
		uint48 lastTune;            // last timestamp when control variable was tuned
		uint48 lastDecay;           // last timestamp when market was created and debt was decayed
		uint48 length;              // time from creation to conclusion. used as speed to decay debt.
		uint48 depositInterval;     // target frequency of deposits
		uint48 tuneInterval;        // frequency of tuning
		uint8 quoteDecimals;        // decimals of quote token
	}
	
	// Control variable adjustment data
	struct Adjustment {
		uint64 change;              // adjustment for price scaling variable 
		uint48 lastAdjustment;      // time of last adjustment
		uint48 timeToAdjusted;      // time after which adjustment should happen
		bool active;                // if adjustment is available
	}
	
	function deposit(
		uint256 _bid,               // the ID of the market
		uint256 _amount,            // the amount of quote token to spend
		uint256 _maxPrice,          // the maximum price at which to buy
		address _user,              // the recipient of the payout
		address _referral           // the operator address
	) external returns (uint256 payout_, uint256 expiry_, uint256 index_);
	
	function create (
		IERC20 _quoteToken,         // token used to deposit
		uint256[3] memory _market,  // [capacity, initial price]
		bool[2] memory _booleans,   // [capacity in quote, fixed term]
		uint256[2] memory _terms,   // [vesting, conclusion]
		uint32[2] memory _intervals // [deposit interval, tune interval]
	) external returns (uint256 id_);
	
	function close(uint256 _id) external;
	function isLive(uint256 _bid) external view returns (bool);
	function liveMarkets() external view returns (uint256[] memory);
	function liveMarketsFor(address _quoteToken) external view returns (uint256[] memory);
	function payoutFor(uint256 _amount, uint256 _bid) external view returns (uint256);
	function marketPrice(uint256 _bid) external view returns (uint256);
	function currentDebt(uint256 _bid) external view returns (uint256);
	function debtRatio(uint256 _bid) external view returns (uint256);
	function debtDecay(uint256 _bid) external view returns (uint64);
}

File 24 of 24 : ERC721Envious.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../openzeppelin/token/ERC721/ERC721.sol";
import "../openzeppelin/token/ERC20/utils/SafeERC20.sol";
import "../openzeppelin/token/ERC20/IERC20.sol";
import "../openzeppelin/token/ERC20/extensions/IERC20Metadata.sol";
import "../openzeppelin/utils/Address.sol";

import "../interfaces/IERC721Envious.sol";
import "../interfaces/IBondDepository.sol";
import "../interfaces/INoteKeeper.sol";

/**
 * @title ERC721 Collateralization
 *
 * @author F4T50 @ghostchain
 * @author 571nkY @ghostchain
 * @author 5Tr3TcH @ghostchain
 *
 * @dev This implements an optional extension of {ERC721} defined in the GhostEnvy lightpaper that
 * adds collateralization functionality for all tokens behind this smart contract as well as any
 * unique tokenId can have it's own floor price and/or estimated future price.
 */
abstract contract ERC721Envious is ERC721, IERC721Envious {
	using SafeERC20 for IERC20;

	/// @dev See {IERC721Envious-commissions}
	uint256[2] public override commissions;
	/// @dev See {IERC721Envious-blackHole}
	address public override blackHole;

	/// @dev See {IERC721Envious-ghostAddress}
	address public override ghostAddress;
	/// @dev See {IERC721Envious-ghostBondingAddress}
	address public override ghostBondingAddress;

	/// @dev See {IERC721Envious-communityToken}
	address public override communityToken;
	/// @dev See {IERC721Envious-communityPool}
	address[] public override communityPool;
	/// @dev See {IERC721Envious-communityBalance}
	mapping(address => uint256) public override communityBalance;

	/// @dev See {IERC721Envious-disperseTokens}
	address[] public override disperseTokens;
	/// @dev See {IERC721Envious-disperseBalance}
	mapping(address => uint256) public override disperseBalance;
	/// @dev See {IERC721Envious-disperseTotalTaken}
	mapping(address => uint256) public override disperseTotalTaken;
	/// @dev See {IERC721Envious-disperseTaken}
	mapping(uint256 => mapping(address => uint256)) public override disperseTaken;

	/// @dev See {IERC721Envious-bondPayouts}
	mapping(uint256 => uint256) public override bondPayouts;
	/// @dev See {IERC721Envious-bondIndexes}
	mapping(uint256 => uint256[]) public override bondIndexes;

	/// @dev See {IERC721Envious-collateralTokens}
	mapping(uint256 => address[]) public override collateralTokens;
	/// @dev See {IERC721Envious-collateralBalances}
	mapping(uint256 => mapping(address => uint256)) public override collateralBalances;

	// solhint-disable-next-line
	string private constant LENGTHS_NOT_MATCH = "ERC721Envious: lengths not match";
	// solhint-disable-next-line
	string private constant LOW_AMOUNT = "ERC721Envious: low amount";
	// solhint-disable-next-line
	string private constant EMPTY_GHOST = "ERC721Envious: ghost is empty";
	// solhint-disable-next-line
	string private constant NO_DECIMALS = "ERC721Envious: no decimals";
	// solhint-disable-next-line
	string private constant NOT_TOKEN_OWNER = "ERC721Envious: only for owner";
	// solhint-disable-next-line
	string private constant COMMISSION_TOO_HIGH = "ERC721Envious: commission is too high";

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

	/**
	 * @dev See {IERC721Envious-harvest}.
	 */
	function harvest(
		uint256[] memory amounts, 
		address[] memory tokenAddresses
	) external override virtual {
		require(amounts.length == tokenAddresses.length, LENGTHS_NOT_MATCH);
		for (uint256 i = 0; i < tokenAddresses.length; i++) {
			_harvest(amounts[i], tokenAddresses[i]);
		}
	}

	/**
	 * @dev See {IERC721Envious-collateralize}.
	 */
	function collateralize(
		uint256 tokenId,
		uint256[] memory amounts,
		address[] memory tokenAddresses
	) external payable override virtual {
		require(amounts.length == tokenAddresses.length, LENGTHS_NOT_MATCH);
		uint256 ethAmount = msg.value;
		for (uint256 i = 0; i < tokenAddresses.length; i++) {
			if (tokenAddresses[i] == address(0)) {
				ethAmount -= amounts[i];
			}
			_addTokenCollateral(tokenId, amounts[i], tokenAddresses[i], false);
		}
		
		if (ethAmount > 0) {
			Address.sendValue(payable(_msgSender()), ethAmount);
		} 
	}

	/**
	 * @dev See {IERC721Envious-uncollateralize}.
	 */
	function uncollateralize(
		uint256 tokenId, 
		uint256[] memory amounts, 
		address[] memory tokenAddresses
	) external override virtual {
		require(amounts.length == tokenAddresses.length, LENGTHS_NOT_MATCH);
		for (uint256 i = 0; i < tokenAddresses.length; i++) {
			_removeTokenCollateral(tokenId, amounts[i], tokenAddresses[i]);
		}
	}

	/**
	 * @dev See {IERC721Envious-disperse}.
	 */
	function disperse(
		uint256[] memory amounts, 
		address[] memory tokenAddresses
	) external payable override virtual {
		require(amounts.length == tokenAddresses.length, LENGTHS_NOT_MATCH);
		uint256 ethAmount = msg.value;
		for (uint256 i = 0; i < tokenAddresses.length; i++) {
			if (tokenAddresses[i] == address(0)) {
				ethAmount -= amounts[i];
			}
			_disperseTokenCollateral(amounts[i], tokenAddresses[i]);
		}
		
		if (ethAmount > 0) {
			Address.sendValue(payable(_msgSender()), ethAmount);
		} 
	}

	/**
	 * @dev See {IERC721Envious-getDiscountedCollateral}.
	 */
	function getDiscountedCollateral(
		uint256 bondId,
		address quoteToken,
		uint256 tokenId,
		uint256 amount,
		uint256 maxPrice
	) external virtual override {
		// NOTE: this contract is temporary holder of `quoteToken` due to the need of
		// registration of bond inside. `amount` of `quoteToken`s should be empty in
		// the end of transaction.
		_requireMinted(tokenId);
		
		IERC20(quoteToken).safeTransferFrom(_msgSender(), address(this), amount);
		IERC20(quoteToken).safeApprove(ghostBondingAddress, amount);
		
		(uint256 payout,, uint256 index) = IBondDepository(ghostBondingAddress).deposit(
			bondId,
			amount,
			maxPrice,
			address(this),
			address(this)
		);
		
		if (payout > 0) {
			bondPayouts[tokenId] += payout;
			bondIndexes[tokenId].push(index);
		}
	}

	/**
	 * @dev See {IERC721Envious-claimDiscountedCollateral}.
	 */
	function claimDiscountedCollateral(
		uint256 tokenId,
		uint256[] memory indexes
	) external virtual override {
		require(ghostAddress != address(0), EMPTY_GHOST);
		
		for (uint256 i = 0; i < indexes.length; i++) {
			uint256 index = _arrayContains(indexes[i], bondIndexes[tokenId]);
			bondIndexes[tokenId][index] = bondIndexes[tokenId][bondIndexes[tokenId].length - 1];
			bondIndexes[tokenId].pop();
		}
		
		uint256 payout = INoteKeeper(ghostBondingAddress).redeem(address(this), indexes, true);
		
		if (payout > 0) {
			bondPayouts[tokenId] -= payout;
			_addTokenCollateral(tokenId, payout, ghostAddress, true);
		}
	}

	/**
	 * @dev See {IERC721Envious-getAmount}
     */
	function getAmount(
		uint256 amount,
		address tokenAddress
	) public view virtual override returns (uint256) {
		uint256 circulatingSupply = IERC20(communityToken).totalSupply() - IERC20(communityToken).balanceOf(blackHole);
		return amount * _scaledAmount(tokenAddress) / circulatingSupply;
	}

	/**
	 * @dev Loop over the array in order to find specific token address index.
	 *
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 * @param findFrom array of addresses in which search should happen
	 *
	 * @return shouldAppend whether address not found and should be added to array
	 * @return index in array, default to uint256 max value if not found
	 */
	function _arrayContains(
		address tokenAddress,
		address[] memory findFrom
	) internal pure virtual returns (bool shouldAppend, uint256 index) {
		shouldAppend = true;
		index = type(uint256).max;

		for (uint256 i = 0; i < findFrom.length; i++) {
			if (findFrom[i] == tokenAddress) {
				shouldAppend = false;
				index = i;
				break;
			}
		}
	}

	/**
	 * @dev Loop over the array in order to find specific note index.
	 *
	 * @param noteId index of note stored previously
	 * @param findFrom array of note indexes
	 *
	 * @return index in array, default to uint256 max value if not found
	 */
	function _arrayContains(
		uint256 noteId,
		uint256[] memory findFrom
	) internal pure virtual returns (uint256 index) {
		index = type(uint256).max;

		for (uint256 i = 0; i < findFrom.length; i++) {
			if (findFrom[i] == noteId) {
				index = i;
				break;
			}
		}
	}

	/**
	 * @dev Calculate amount to harvest with `communityToken` for the collected
	 * commission. Calculation should happen based on all available ERC20 in
	 * `communityPool`.
	 *
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 *
	 * @return maximum scaled proportion
	 */
	function _scaledAmount(address tokenAddress) internal view virtual returns (uint256) {
		uint256 totalValue = 0;
		uint256 scaled = 0;
		uint256 defaultDecimals = 10**IERC20Metadata(communityToken).decimals();

		for (uint256 i = 0; i < communityPool.length; i++) {
			uint256 innerDecimals = communityPool[i] == address(0) ? 10**18 : 10**IERC20Metadata(communityPool[i]).decimals();
			uint256 tempValue = communityBalance[communityPool[i]] * defaultDecimals / innerDecimals;
			
			totalValue += tempValue;

			if (communityPool[i] == tokenAddress) {
				scaled = tempValue;
			}
		}

		return communityBalance[tokenAddress] * totalValue / scaled;
	}

	/**
	 * @dev Function for `communityToken` owners if they want to redeem collected
	 * commission in exchange for `communityToken`, while tokens will be send to
	 * zero address in order to lock them forever.
	 *
	 * @param amount represents amount of `communityToken` to be send
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 */
	function _harvest(uint256 amount, address tokenAddress) internal virtual  {
		uint256 scaledAmount = getAmount(amount, tokenAddress);
		communityBalance[tokenAddress] -= scaledAmount;

		if (communityBalance[tokenAddress] == 0) {
			(, uint256 index) = _arrayContains(tokenAddress, communityPool);
			communityPool[index] = communityPool[communityPool.length - 1];
			communityPool.pop();
		}

		if (tokenAddress == address(0)) {
			Address.sendValue(payable(_msgSender()), scaledAmount);
		} else {
			IERC20(tokenAddress).safeTransfer(_msgSender(), scaledAmount);
		}

		// NOTE: not every token implements `burn` function, so that is a littl cheat
		IERC20(communityToken).safeTransferFrom(_msgSender(), blackHole, amount);

		emit Harvested(tokenAddress, amount, scaledAmount);
	}

	/**
	 * @dev Ability for any user to collateralize any existent ERC721 token with
	 * any ERC20 token.
	 *
	 * Requirements:
	 * - `tokenId` token must exist.
	 * - `amount` should be greater than zero.
	 *
	 * @param tokenId unique identifier of NFT inside current smart contract
	 * @param amount represents amount of ERC20 to be send
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 */
	function _addTokenCollateral(
		uint256 tokenId, 
		uint256 amount, 
		address tokenAddress,
		bool claim
	) internal virtual {
		require(amount > 0, LOW_AMOUNT);
		_requireMinted(tokenId);

		_disperse(tokenAddress, tokenId);

		(bool shouldAppend,) = _arrayContains(tokenAddress, collateralTokens[tokenId]);
		if (shouldAppend) {
			_checkValidity(tokenAddress);
			collateralTokens[tokenId].push(tokenAddress);
		}

		uint256 ownerBalance = _communityCommission(amount, commissions[0], tokenAddress);
		collateralBalances[tokenId][tokenAddress] += ownerBalance;

		if (tokenAddress != address(0) && !claim) {
			IERC20(tokenAddress).safeTransferFrom(_msgSender(), address(this), amount);
		}

		emit Collateralized(tokenId, amount, tokenAddress);
	}

	/**
	 * @dev Ability for ERC721 owner to withdraw ERC20 collateral that was
	 * previously pushed inside.
	 *
	 * Requirements:
	 * - `tokenId` token must exist.
	 * - `amount` must be less or equal than collateralized value.
	 *
	 * @param tokenId unique identifier of NFT inside current smart contract
	 * @param amount represents amount of ERC20 collateral to withdraw
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 */
	function _removeTokenCollateral(
		uint256 tokenId, 
		uint256 amount, 
		address tokenAddress
	) internal virtual {
		require(_ownerOf(tokenId) == _msgSender(), NOT_TOKEN_OWNER);
		_disperse(tokenAddress, tokenId);

		collateralBalances[tokenId][tokenAddress] -= amount;
		if (collateralBalances[tokenId][tokenAddress] == 0) {
			(, uint256 index) = _arrayContains(tokenAddress, collateralTokens[tokenId]);
			collateralTokens[tokenId][index] = collateralTokens[tokenId][collateralTokens[tokenId].length - 1];
			collateralTokens[tokenId].pop();
		}

		uint256 ownerBalance = _communityCommission(amount, commissions[1], tokenAddress);

		if (tokenAddress == address(0)) {
			Address.sendValue(payable(_msgSender()), ownerBalance);
		} else {
			IERC20(tokenAddress).safeTransfer(_msgSender(), ownerBalance);
		}

		emit Uncollateralized(tokenId, ownerBalance, tokenAddress);
	}

	/**
	 * @dev Disperse any input amount of tokens between all token owners in current
	 * smart contract. Balance will be stored inside `disperseBalance` after which
	 * any user can take it with help of {_disperse}.
	 *
	 * Requirements:
	 * - `amount` must be greater than zero.
	 *
	 * @param amount represents amount of ERC20 tokens to disperse
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 */
	function _disperseTokenCollateral(uint256 amount, address tokenAddress) internal virtual {
		require(amount > 0, LOW_AMOUNT);

		(bool shouldAppend,) = _arrayContains(tokenAddress, disperseTokens);
		if (shouldAppend) {
			_checkValidity(tokenAddress);
			disperseTokens.push(tokenAddress);
		}

		disperseBalance[tokenAddress] += amount;
		
		if (tokenAddress != address(0)) {
			IERC20(tokenAddress).safeTransferFrom(_msgSender(), address(this), amount);
		}

		emit Dispersed(tokenAddress, amount);
	}

	/**
	 * @dev Need to check if the token address has this function, because it will be used in
	 * scaledAmount later. Otherwise _scaledAmount will revert on every call.
	 *
	 * Requirements:
	 * - all addresses except zero address, because it is used for ETH
	 * - any check for decimals, the idea is to be reverted if function does not exist
	 *
	 * @param tokenAddress potential address of ERC20 token.
	 */
	function _checkValidity(address tokenAddress) internal virtual {
		if (tokenAddress != address(0)) {
			require(IERC20Metadata(tokenAddress).decimals() != type(uint8).max, NO_DECIMALS);
		}
	}

	/**
	 * @dev Function that calculates output amount after community commission taken.
	 *
	 * @param amount represents amount of ERC20 tokens or ETH to disperse
	 * @param percentage represents commission to be taken
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 *
	 * @return amount after commission
	 */
	function _communityCommission(
		uint256 amount,
		uint256 percentage,
		address tokenAddress
	) internal returns (uint256) {
		uint256 donation = amount * percentage / 1e5;

		(bool shouldAppend,) = _arrayContains(tokenAddress, communityPool);
		if (shouldAppend && donation > 0) {
			communityPool.push(tokenAddress);
		}

		communityBalance[tokenAddress] += donation;
		return amount - donation;
	}

	/**
	 * @dev Ability to change commission.
	 *
	 * @param incoming is commission when user collateralize
	 * @param outcoming is commission when user uncollateralize
	 */
	function _changeCommissions(uint256 incoming, uint256 outcoming) internal virtual {
		require(incoming < 1e5 && outcoming < 1e5, COMMISSION_TOO_HIGH);
		commissions[0] = incoming;
		commissions[1] = outcoming;
	}

	/**
	 * @dev Ability to change commission token.
	 *
	 * @param newTokenAddress represents new token for commission
	 * @param newBlackHole represents address for harvested tokens
	 */
	function _changeCommunityAddresses(address newTokenAddress, address newBlackHole) internal virtual {
		communityToken = newTokenAddress;
		blackHole = newBlackHole;
	}

	/**
	 * @dev Ability to change commission token.
	 *
	 * @param newGhostTokenAddress represents GHST token address
	 * @param newGhostBondingAddress represents ghostDAO bonding contract address
	 */
	function _changeGhostAddresses(
		address newGhostTokenAddress, 
		address newGhostBondingAddress
	) internal virtual {
		ghostAddress = newGhostTokenAddress;
		ghostBondingAddress = newGhostBondingAddress;
	}

	/**
	 * @dev Function that will disperse tokens from `disperseBalance` to any NFT
	 * owner. Should happen during uncollateralize process.
	 *
	 * @param tokenAddress address representing the ERC20 token or zero address for ETH
	 * @param tokenId unique identifier of NFT in collection
	 */
	function _disperse(address tokenAddress, uint256 tokenId) internal virtual {}
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 1337
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256[]","name":"edgeValues","type":"uint256[]"},{"internalType":"uint256[]","name":"edgeOffsets","type":"uint256[]"},{"internalType":"uint256[]","name":"edgeRanges","type":"uint256[]"},{"internalType":"address","name":"tokenMeasurment","type":"address"}],"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":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"Collateralized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Dispersed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"scaledAmount","type":"uint256"}],"name":"Harvested","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"Uncollateralized","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blackHole","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"bondIndexes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bondPayouts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"changeBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTokenAddress","type":"address"},{"internalType":"address","name":"newBlackHole","type":"address"}],"name":"changeCommunityAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256[]","name":"indexes","type":"uint256[]"}],"name":"claimDiscountedCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"collateralBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"collateralTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"tokenAddresses","type":"address[]"}],"name":"collateralize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"commissions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"communityBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"communityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"tokenAddresses","type":"address[]"}],"name":"disperse","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disperseBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"disperseTaken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"disperseTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disperseTotalTaken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"edges","outputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"offset","type":"uint256"},{"internalType":"uint256","name":"range","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"bondId","type":"uint256"},{"internalType":"address","name":"quoteToken","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxPrice","type":"uint256"}],"name":"getDiscountedCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenPointer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghostAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghostBondingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"tokenAddresses","type":"address[]"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"measurmentTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"renewSuperMinter","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":"address","name":"ghostToken","type":"address"},{"internalType":"address","name":"ghostBonding","type":"address"}],"name":"setGhostAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"tokenAddresses","type":"address[]"}],"name":"uncollateralize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620056433803806200564383398101604081905262000034916200048a565b868686868686868686816000908051906020019062000055929190620002ca565b5080516200006b906001906020840190620002ca565b50506040805180820190915260128152711e995c9bc81859191c995cdcc8199bdd5b9960721b602082015290506001600160a01b038216620000cb5760405162461bcd60e51b8152600401620000c291906200059e565b60405180910390fd5b5082518451148015620000df575081518451145b604051806040016040528060128152602001711e995c9bc81859191c995cdcc8199bdd5b9960721b815250906200012b5760405162461bcd60e51b8152600401620000c291906200059e565b50601c80546001600160a01b0319166001600160a01b0383161790556200015285620002ad565b60005b84518110156200023f57601d60405180606001604052808784815181106200018d57634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001868481518110620001bb57634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001858481518110620001e957634e487b7160e01b600052603260045260246000fd5b602090810291909101810151909152825460018181018555600094855293829020835160039092020190815590820151928101929092556040015160029091015580620002368162000676565b91505062000155565b505050505050505062000257620002c660201b60201c565b601e80546001600160a01b0319166001600160a01b03929092169190911790556200027f3390565b601f80546001600160a01b0319166001600160a01b039290921691909117905550620006b495505050505050565b8051620002c290601a906020840190620002ca565b5050565b3390565b828054620002d89062000639565b90600052602060002090601f016020900481019282620002fc576000855562000347565b82601f106200031757805160ff191683800117855562000347565b8280016001018555821562000347579182015b82811115620003475782518255916020019190600101906200032a565b506200035592915062000359565b5090565b5b808211156200035557600081556001016200035a565b80516001600160a01b03811681146200038857600080fd5b919050565b600082601f8301126200039e578081fd5b815160206001600160401b03821115620003bc57620003bc6200069e565b8160051b620003cd828201620005d3565b838152828101908684018388018501891015620003e8578687fd5b8693505b858410156200040c578051835260019390930192918401918401620003ec565b50979650505050505050565b600082601f83011262000429578081fd5b81516001600160401b038111156200044557620004456200069e565b6200045a601f8201601f1916602001620005d3565b8181528460208386010111156200046f578283fd5b6200048282602083016020870162000606565b949350505050565b600080600080600080600060e0888a031215620004a5578283fd5b87516001600160401b0380821115620004bc578485fd5b620004ca8b838c0162000418565b985060208a0151915080821115620004e0578485fd5b620004ee8b838c0162000418565b975060408a015191508082111562000504578485fd5b620005128b838c0162000418565b965060608a015191508082111562000528578485fd5b620005368b838c016200038d565b955060808a01519150808211156200054c578485fd5b6200055a8b838c016200038d565b945060a08a015191508082111562000570578384fd5b506200057f8a828b016200038d565b9250506200059060c0890162000370565b905092959891949750929550565b6020815260008251806020840152620005bf81604085016020870162000606565b601f01601f19169190910160400192915050565b604051601f8201601f191681016001600160401b0381118282101715620005fe57620005fe6200069e565b604052919050565b60005b838110156200062357818101518382015260200162000609565b8381111562000633576000848401525b50505050565b600181811c908216806200064e57607f821691505b602082108114156200067057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200069757634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b614f7f80620006c46000396000f3fe6080604052600436106103165760003560e01c80637ceb5fa51161019a578063b88d4fde116100e1578063e7ab3e0d1161008a578063f7408b5311610064578063f7408b5314610966578063f7ef82ca14610993578063fcf82695146109b357600080fd5b8063e7ab3e0d146108ea578063e985e9c51461090a578063f4532e5c1461095357600080fd5b8063cc84c904116100bb578063cc84c9041461087d578063d0068b511461089d578063da472c92146108ca57600080fd5b8063b88d4fde14610810578063c87b56dd14610830578063ca5dd0cb1461085057600080fd5b80639b905f5a11610143578063a14a28281161011d578063a14a2828146107b0578063a22cb465146107d0578063b7a4955b146107f057600080fd5b80639b905f5a146107385780639bef3546146107585780639e90f9aa1461079057600080fd5b80638fc3f561116101745780638fc3f561146106d6578063909965971461070357806395d89b411461072357600080fd5b80637ceb5fa51461066b57806388158aa9146106a3578063885c46a8146106b657600080fd5b806342842e0e1161025e5780635b128814116102075780636a627842116101e15780636a627842146106165780636c0360eb1461063657806370a082311461064b57600080fd5b80635b128814146105b65780635d589237146105d65780636352211e146105f657600080fd5b806348f014521161023857806348f0145214610556578063492d306b146105765780634f6ccce71461059657600080fd5b806342842e0e146104f657806342966c681461051657806342da3b6b1461053657600080fd5b80631e11df0b116102c057806329aa16171161029a57806329aa1617146104965780632f745c59146104b657806334870a84146104d657600080fd5b80631e11df0b1461043657806322b3a7c81461045657806323b872dd1461047657600080fd5b8063081812fc116102f1578063081812fc146103bf578063095ea7b3146103f757806318160ddd1461041757600080fd5b8062baae781461032d57806301ffc9a71461036d57806306fdde031461039d57600080fd5b36610328576103263460006109d3565b005b600080fd5b34801561033957600080fd5b5061034d6103483660046149a9565b610b8c565b604080519384526020840192909252908201526060015b60405180910390f35b34801561037957600080fd5b5061038d61038836600461492b565b610bbf565b6040519015158152602001610364565b3480156103a957600080fd5b506103b2610c12565b6040516103649190614c86565b3480156103cb57600080fd5b506103df6103da3660046149a9565b610ca4565b6040516001600160a01b039091168152602001610364565b34801561040357600080fd5b50610326610412366004614885565b610ccb565b34801561042357600080fd5b506008545b604051908152602001610364565b34801561044257600080fd5b506103266104513660046149fb565b610dfd565b34801561046257600080fd5b506104286104713660046149a9565b610f48565b34801561048257600080fd5b5061032661049136600461479b565b610f5f565b3480156104a257600080fd5b50600f546103df906001600160a01b031681565b3480156104c257600080fd5b506104286104d1366004614885565b610fe6565b3480156104e257600080fd5b506104286104f1366004614ae5565b61108e565b34801561050257600080fd5b5061032661051136600461479b565b6110bf565b34801561052257600080fd5b506103266105313660046149a9565b6110da565b34801561054257600080fd5b506104286105513660046149d9565b6110e6565b34801561056257600080fd5b506104286105713660046149a9565b61123a565b34801561058257600080fd5b50610326610591366004614963565b611415565b3480156105a257600080fd5b506104286105b13660046149a9565b611481565b3480156105c257600080fd5b506103266105d1366004614769565b611533565b3480156105e257600080fd5b50600e546103df906001600160a01b031681565b34801561060257600080fd5b506103df6106113660046149a9565b6115c6565b34801561062257600080fd5b50610326610631366004614748565b61162b565b34801561064257600080fd5b506103b2611697565b34801561065757600080fd5b50610428610666366004614748565b6116a6565b34801561067757600080fd5b506104286106863660046149d9565b601560209081526000928352604080842090915290825290205481565b6103266106b13660046148ae565b611740565b3480156106c257600080fd5b506103df6106d1366004614ae5565b61189b565b3480156106e257600080fd5b506104286106f1366004614748565b60146020526000908152604090205481565b34801561070f57600080fd5b5061032661071e366004614a40565b6118d3565b34801561072f57600080fd5b506103b2611b9d565b34801561074457600080fd5b506103df6107533660046149a9565b611bac565b34801561076457600080fd5b506104286107733660046149d9565b601960209081526000928352604080842090915290825290205481565b34801561079c57600080fd5b50600c546103df906001600160a01b031681565b3480156107bc57600080fd5b50600d546103df906001600160a01b031681565b3480156107dc57600080fd5b506103266107eb36600461484f565b611bd6565b3480156107fc57600080fd5b50601c546103df906001600160a01b031681565b34801561081c57600080fd5b5061032661082b3660046147d6565b611be1565b34801561083c57600080fd5b506103b261084b3660046149a9565b611c6f565b34801561085c57600080fd5b5061042861086b366004614748565b60136020526000908152604090205481565b34801561088957600080fd5b50610326610898366004614748565b611cc6565b3480156108a957600080fd5b506104286108b8366004614748565b60116020526000908152604090205481565b3480156108d657600080fd5b506103266108e5366004614a7b565b611d4b565b3480156108f657600080fd5b506103df6109053660046149a9565b611e1c565b34801561091657600080fd5b5061038d610925366004614769565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610326610961366004614a7b565b611e2c565b34801561097257600080fd5b506104286109813660046149a9565b60166020526000908152604090205481565b34801561099f57600080fd5b506103266109ae3660046148ae565b611f88565b3480156109bf57600080fd5b506103266109ce366004614769565b612058565b60408051808201909152601981527f455243373231456e76696f75733a206c6f7720616d6f756e7400000000000000602082015282610a2e5760405162461bcd60e51b8152600401610a259190614c86565b60405180910390fd5b506000610a95826012805480602002602001604051908101604052809291908181526020018280548015610a8b57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a6d575b50505050506120c5565b5090508015610af357610aa78261213d565b601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0384161790555b6001600160a01b03821660009081526013602052604081208054859290610b1b908490614cee565b90915550506001600160a01b03821615610b4457610b446001600160a01b03831633308661221a565b816001600160a01b03167f9d996ae749d879a4249021ae32eae7603984b6ca0c92d11d3902d378cceb17e484604051610b7f91815260200190565b60405180910390a2505050565b601d8181548110610b9c57600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b60006001600160e01b031982167f48f01452000000000000000000000000000000000000000000000000000000001480610bfd5750610bfd826122b3565b80610c0c5750610c0c826122f1565b92915050565b606060008054610c2190614e79565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4d90614e79565b8015610c9a5780601f10610c6f57610100808354040283529160200191610c9a565b820191906000526020600020905b815481529060010190602001808311610c7d57829003601f168201915b5050505050905090565b6000610caf8261232f565b506000908152600460205260409020546001600160a01b031690565b6000610cd6826115c6565b9050806001600160a01b0316836001600160a01b03161415610d605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a25565b336001600160a01b0382161480610d7c5750610d7c8133610925565b610dee5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610a25565b610df88383612393565b505050565b610e068361232f565b610e1b6001600160a01b03851633308561221a565b600e54610e35906001600160a01b03868116911684612401565b600e546040517f7c770aae0000000000000000000000000000000000000000000000000000000081526004810187905260248101849052604481018390523060648201819052608482015260009182916001600160a01b0390911690637c770aae9060a401606060405180830381600087803b158015610eb457600080fd5b505af1158015610ec8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eec9190614b06565b92505091506000821115610f3f5760008581526016602052604081208054849290610f18908490614cee565b90915550506000858152601760209081526040822080546001810182559083529120018190555b50505050505050565b600a8160028110610f5857600080fd5b0154905081565b610f69338261255e565b610fdb5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a25565b610df88383836125dc565b6000610ff1836116a6565b82106110655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a25565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601760205281600052604060002081815481106110aa57600080fd5b90600052602060002001600091509150505481565b610df883838360405180602001604052806000815250611be1565b6110e3816127e2565b50565b600f54600c546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152600092839216906370a082319060240160206040518083038186803b15801561114a57600080fd5b505afa15801561115e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118291906149c1565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111d057600080fd5b505afa1580156111e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120891906149c1565b6112129190614e1f565b90508061121e84612885565b6112289086614e00565b6112329190614d06565b949350505050565b6000818152601960209081526040808320601c546001600160a01b031684529091528120548161126960085490565b601c546001600160a01b031660009081526013602052604090205461128e9190614d06565b6000858152601560209081526040808320601c546001600160a01b03168452909152812054919250816112c18486614cee565b6112cb9190614e1f565b601d549091506001906000905b80156113b857601d6112eb600183614e1f565b8154811061130957634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016000015484106113a657601d61132e600183614e1f565b8154811061134c57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600201549250601d60018261136f9190614e1f565b8154811061138d57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016001015491506113b8565b806113b081614e62565b9150506112d8565b5060408051602081018a90529081018790526060810186905260009083906080016040516020818303038152906040528051906020012060001c6113fc9190614ecf565b90506114088282614cee565b9998505050505050505050565b601e546001600160a01b0316336001600160a01b0316146114785760405162461bcd60e51b815260206004820152601360248201527f6f6e6c7920666f722073757065722075736572000000000000000000000000006044820152606401610a25565b6110e381612b30565b600061148c60085490565b82106115005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a25565b6008828154811061152157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60408051808201909152601281527f7a65726f206164647265737320666f756e64000000000000000000000000000060208201526001600160a01b03831661158e5760405162461bcd60e51b8152600401610a259190614c86565b506115c28282600f80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055565b5050565b6000818152600260205260408120546001600160a01b031680610c0c5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a25565b601f546001600160a01b0316336001600160a01b03161461168e5760405162461bcd60e51b815260206004820152601560248201527f6f6e6c7920666f72207375706572206d696e74657200000000000000000000006044820152606401610a25565b6110e381612b43565b60606116a1612b63565b905090565b60006001600160a01b0382166117245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610a25565b506001600160a01b031660009081526003602052604090205490565b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d61746368815250906117995760405162461bcd60e51b8152600401610a259190614c86565b503460005b82518110156118895760006001600160a01b03168382815181106117d257634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316141561181f5783818151811061180957634e487b7160e01b600052603260045260246000fd5b60200260200101518261181c9190614e1f565b91505b61187784828151811061184257634e487b7160e01b600052603260045260246000fd5b602002602001015184838151811061186a57634e487b7160e01b600052603260045260246000fd5b60200260200101516109d3565b8061188181614eb4565b91505061179e565b508015610df857610df8335b82612b72565b601860205281600052604060002081815481106118b757600080fd5b6000918252602090912001546001600160a01b03169150829050565b600d5460408051808201909152601d81527f455243373231456e76696f75733a2067686f737420697320656d7074790000006020820152906001600160a01b03166119315760405162461bcd60e51b8152600401610a259190614c86565b5060005b8151811015611ab55760006119d283838151811061196357634e487b7160e01b600052603260045260246000fd5b6020026020010151601760008781526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156119c857602002820191906000526020600020905b8154815260200190600101908083116119b4575b5050505050612c8b565b60008581526017602052604090208054919250906119f290600190614e1f565b81548110611a1057634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601760008681526020019081526020016000208281548110611a4d57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555060176000858152602001908152602001600020805480611a8b57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055508080611aad90614eb4565b915050611935565b50600e546040517fd62fbdd30000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063d62fbdd390611b059030908690600190600401614c25565b602060405180830381600087803b158015611b1f57600080fd5b505af1158015611b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5791906149c1565b90508015610df85760008381526016602052604081208054839290611b7d908490614e1f565b9091555050600d54610df890849083906001600160a01b03166001612cea565b606060018054610c2190614e79565b60108181548110611bbc57600080fd5b6000918252602090912001546001600160a01b0316905081565b6115c2338383612ece565b611beb338361255e565b611c5d5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a25565b611c6984848484612f9d565b50505050565b6060611c7a8261232f565b6000611c84612b63565b90506000611c918461123a565b905081611c9d82613026565b604051602001611cae929190614b9c565b60405160208183030381529060405292505050919050565b601e546001600160a01b0316336001600160a01b031614611d295760405162461bcd60e51b815260206004820152601360248201527f6f6e6c7920666f722073757065722075736572000000000000000000000000006044820152606401610a25565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d6174636881525090611da45760405162461bcd60e51b8152600401610a259190614c86565b5060005b8151811015611c6957611e0a84848381518110611dd557634e487b7160e01b600052603260045260246000fd5b6020026020010151848481518110611dfd57634e487b7160e01b600052603260045260246000fd5b60200260200101516130de565b80611e1481614eb4565b915050611da8565b60128181548110611bbc57600080fd5b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d6174636881525090611e855760405162461bcd60e51b8152600401610a259190614c86565b503460005b8251811015611f785760006001600160a01b0316838281518110611ebe57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415611f0b57838181518110611ef557634e487b7160e01b600052603260045260246000fd5b602002602001015182611f089190614e1f565b91505b611f6685858381518110611f2f57634e487b7160e01b600052603260045260246000fd5b6020026020010151858481518110611f5757634e487b7160e01b600052603260045260246000fd5b60200260200101516000612cea565b80611f7081614eb4565b915050611e8a565b508015611c6957611c6933611895565b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d6174636881525090611fe15760405162461bcd60e51b8152600401610a259190614c86565b5060005b8151811015610df85761204683828151811061201157634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061203957634e487b7160e01b600052603260045260246000fd5b60200260200101516133ba565b8061205081614eb4565b915050611fe5565b601e546001600160a01b0316336001600160a01b0316146120bb5760405162461bcd60e51b815260206004820152601360248201527f6f6e6c7920666f722073757065722075736572000000000000000000000000006044820152606401610a25565b6115c282826135db565b600160001960005b835181101561213557846001600160a01b031684828151811061210057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614156121235760009250809150612135565b8061212d81614eb4565b9150506120cd565b509250929050565b6001600160a01b038116156110e35760ff8016816001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561218957600080fd5b505afa15801561219d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c19190614b33565b60ff1614156040518060400160405280601a81526020017f455243373231456e76696f75733a206e6f20646563696d616c73000000000000815250906115c25760405162461bcd60e51b8152600401610a259190614c86565b6040516001600160a01b0380851660248301528316604482015260648101829052611c699085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152613683565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610c0c5750610c0c82613768565b60006001600160e01b031982167fdb796342000000000000000000000000000000000000000000000000000000001480610c0c5750610c0c82613768565b6000818152600260205260409020546001600160a01b03166110e35760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a25565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123c8826115c6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8015806124a357506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b15801561246957600080fd5b505afa15801561247d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a191906149c1565b155b6125155760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610a25565b6040516001600160a01b038316602482015260448101829052610df89084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401612267565b60008061256a836115c6565b9050806001600160a01b0316846001600160a01b031614806125b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112325750836001600160a01b03166125ca84610ca4565b6001600160a01b031614949350505050565b826001600160a01b03166125ef826115c6565b6001600160a01b0316146126535760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a25565b6001600160a01b0382166126ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a25565b6126db8383836001613803565b826001600160a01b03166126ee826115c6565b6001600160a01b0316146127525760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a25565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127ed826115c6565b90506127fd816000846001613803565b612806826115c6565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600f546040805163313ce56760e01b815290516000928392839283926001600160a01b03169163313ce567916004808301926020929190829003018186803b1580156128d057600080fd5b505afa1580156128e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129089190614b33565b61291390600a614d55565b905060005b601054811015612af6576000806001600160a01b03166010838154811061294f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614612a1b576010828154811061298a57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001546040805163313ce56760e01b815290516001600160a01b039092169263313ce56792600480840193829003018186803b1580156129d357600080fd5b505afa1580156129e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0b9190614b33565b612a1690600a614d55565b612a25565b670de0b6b3a76400005b9050600081846011600060108781548110612a5057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054612a7f9190614e00565b612a899190614d06565b9050612a958187614cee565b9550876001600160a01b031660108481548110612ac257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415612ae1578094505b50508080612aee90614eb4565b915050612918565b506001600160a01b0385166000908152601160205260409020548290612b1d908590614e00565b612b279190614d06565b95945050505050565b80516115c290601a906020840190614568565b612b51601b80546001019055565b6110e381612b5e601b5490565b61380f565b6060601a8054610c2190614e79565b80471015612bc25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a25565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612c0f576040519150601f19603f3d011682016040523d82523d6000602084013e612c14565b606091505b5050905080610df85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a25565b60001960005b8251811015612ce35783838281518110612cbb57634e487b7160e01b600052603260045260246000fd5b60200260200101511415612cd157809150612ce3565b80612cdb81614eb4565b915050612c91565b5092915050565b60408051808201909152601981527f455243373231456e76696f75733a206c6f7720616d6f756e7400000000000000602082015283612d3c5760405162461bcd60e51b8152600401610a259190614c86565b50612d468461232f565b612d508285613829565b60008481526018602090815260408083208054825181850281018501909352808352612dbc938793929190830182828015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b5090508015612e0657612dce8361213d565b60008581526018602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b0385161790555b6000612e1785600a83015486613a6e565b60008781526019602090815260408083206001600160a01b0389168452909152812080549293508392909190612e4e908490614cee565b90915550506001600160a01b03841615801590612e69575082155b15612e8357612e836001600160a01b03851633308861221a565b604080518681526001600160a01b038616602082015287917f1cedfb451d4da3a63f72a945ba92f51b8fd558a5be4652404d037bb1578ff582910160405180910390a2505050505050565b816001600160a01b0316836001600160a01b03161415612f305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a25565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612fa88484846125dc565b612fb484848484613b92565b611c695760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a25565b6060600061303383613cf5565b600101905060008167ffffffffffffffff81111561306157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561308b576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846130d1576130d6565b613095565b509392505050565b60008381526002602052604090205433906001600160a01b03166001600160a01b0316146040518060400160405280601d81526020017f455243373231456e76696f75733a206f6e6c7920666f72206f776e6572000000815250906131565760405162461bcd60e51b8152600401610a259190614c86565b506131618184613829565b60008381526019602090815260408083206001600160a01b038516845290915281208054849290613193908490614e1f565b909155505060008381526019602090815260408083206001600160a01b038516845290915290205461332b576000838152601860209081526040808320805482518185028101850190935280835261322b938693929190830182828015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b60008681526018602052604090208054919350915061324c90600190614e1f565b8154811061326a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101548683526018909152604090912080546001600160a01b0390921691839081106132b157634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b03949094169390931790925585815260189091526040902080548061330757634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055505b600061333d83600a6001015484613a6e565b90506001600160a01b03821661335b5761335633611895565b613371565b613371335b6001600160a01b0384169083613dd7565b604080518281526001600160a01b038416602082015285917fc5cfd1d8dd2cb97734eb0b41eb809f9de295965c0e72316de4715657466f43fa910160405180910390a250505050565b60006133c683836110e6565b6001600160a01b0383166000908152601160205260408120805492935083929091906133f3908490614e1f565b90915550506001600160a01b038216600090815260116020526040902054613557576000613479836010805480602002602001604051908101604052809291908181526020018280548015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b60108054919350915061348e90600190614e1f565b815481106134ac57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601080546001600160a01b0390921691839081106134e657634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601080548061353357634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055505b6001600160a01b0382166135735761356e33611895565b61357c565b61357c33613360565b61359a33600c54600f546001600160a01b039081169291168661221a565b60408051848152602081018390526001600160a01b038416917f81ca9b2c230070eaa84787556b1aaf18bf1e2f07ea5d3dae4819db77a1a5b2249101610b7f565b6001600160a01b038216158015906135fb57506001600160a01b03811615155b6040518060400160405280601281526020017f7a65726f206164647265737320666f756e6400000000000000000000000000008152509061364f5760405162461bcd60e51b8152600401610a259190614c86565b506115c28282600d80546001600160a01b039384166001600160a01b031991821617909155600e8054929093169116179055565b60006136d8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613e209092919063ffffffff16565b805190915015610df857808060200190518101906136f6919061490f565b610df85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a25565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806137cb57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0c57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610c0c565b611c6984848484613e2f565b6115c2828260405180602001604052806000815250613f77565b600061383460085490565b6001600160a01b0384166000908152601360205260409020546138579190614d06565b6001600160a01b0384166000908152601360209081526040808320546014909252909120549192509061388b908390614cee565b11156138c3576001600160a01b0383166000908152601460209081526040808320546013909252909120546138c09190614e1f565b90505b60008281526015602090815260408083206001600160a01b0387168452909152902054811115610df85760008281526015602090815260408083206001600160a01b038716845290915281205461391a9083614e1f565b60008481526015602090815260408083206001600160a01b0389168452909152812080549293508392909190613951908490614cee565b9091555050600083815260186020908152604080832080548251818502810185019093528083526139c2938993929190830182828015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b5090508015613a035760008481526018602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b0387161790555b60008481526019602090815260408083206001600160a01b038916845290915281208054849290613a35908490614cee565b90915550506001600160a01b03851660009081526014602052604081208054849290613a62908490614cee565b90915550505050505050565b600080620186a0613a7f8587614e00565b613a899190614d06565b90506000613aef846010805480602002602001604051908101604052809291908181526020018280548015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b509050808015613aff5750600082115b15613b5057601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b0319166001600160a01b0386161790555b6001600160a01b03841660009081526011602052604081208054849290613b78908490614cee565b90915550613b8890508287614e1f565b9695505050505050565b60006001600160a01b0384163b15613cea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613bd6903390899088908890600401614bf3565b602060405180830381600087803b158015613bf057600080fd5b505af1925050508015613c20575060408051601f3d908101601f19168201909252613c1d91810190614947565b60015b613cd0573d808015613c4e576040519150601f19603f3d011682016040523d82523d6000602084013e613c53565b606091505b508051613cc85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a25565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611232565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613d3e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310613d6a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310613d8857662386f26fc10000830492506010015b6305f5e1008310613da0576305f5e100830492506008015b6127108310613db457612710830492506004015b60648310613dc6576064830492506002015b600a8310610c0c5760010192915050565b6040516001600160a01b038316602482015260448101829052610df89084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401612267565b60606112328484600085614000565b613e3b848484846140f2565b6001811115613eb25760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610a25565b816001600160a01b038516613f0e57613f0981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613f31565b836001600160a01b0316856001600160a01b031614613f3157613f31858261417a565b6001600160a01b038416613f4d57613f4881614217565b613f70565b846001600160a01b0316846001600160a01b031614613f7057613f7084826142f0565b5050505050565b613f818383614334565b613f8e6000848484613b92565b610df85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a25565b6060824710156140785760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610a25565b600080866001600160a01b031685876040516140949190614b80565b60006040518083038185875af1925050503d80600081146140d1576040519150601f19603f3d011682016040523d82523d6000602084013e6140d6565b606091505b50915091506140e7878383876144cd565b979650505050505050565b6001811115611c69576001600160a01b03841615614138576001600160a01b03841660009081526003602052604081208054839290614132908490614e1f565b90915550505b6001600160a01b03831615611c69576001600160a01b0383166000908152600360205260408120805483929061416f908490614cee565b909155505050505050565b60006001614187846116a6565b6141919190614e1f565b6000838152600760205260409020549091508082146141e4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061422990600190614e1f565b6000838152600960205260408120546008805493945090928490811061425f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061428e57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806142d457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006142fb836116a6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661438a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a25565b6000818152600260205260409020546001600160a01b0316156143ef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a25565b6143fd600083836001613803565b6000818152600260205260409020546001600160a01b0316156144625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a25565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608315614539578251614532576001600160a01b0385163b6145325760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a25565b5081611232565b611232838381511561454e5781518083602001fd5b8060405162461bcd60e51b8152600401610a259190614c86565b82805461457490614e79565b90600052602060002090601f01602090048101928261459657600085556145dc565b82601f106145af57805160ff19168380011785556145dc565b828001600101855582156145dc579182015b828111156145dc5782518255916020019190600101906145c1565b506145e89291506145ec565b5090565b5b808211156145e857600081556001016145ed565b600067ffffffffffffffff83111561461b5761461b614f0f565b61462e601f8401601f1916602001614c99565b905082815283838301111561464257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461467057600080fd5b919050565b600082601f830112614685578081fd5b8135602061469a61469583614cca565b614c99565b80838252828201915082860187848660051b89010111156146b9578586fd5b855b858110156146de576146cc82614659565b845292840192908401906001016146bb565b5090979650505050505050565b600082601f8301126146fb578081fd5b8135602061470b61469583614cca565b80838252828201915082860187848660051b890101111561472a578586fd5b855b858110156146de5781358452928401929084019060010161472c565b600060208284031215614759578081fd5b61476282614659565b9392505050565b6000806040838503121561477b578081fd5b61478483614659565b915061479260208401614659565b90509250929050565b6000806000606084860312156147af578081fd5b6147b884614659565b92506147c660208501614659565b9150604084013590509250925092565b600080600080608085870312156147eb578081fd5b6147f485614659565b935061480260208601614659565b925060408501359150606085013567ffffffffffffffff811115614824578182fd5b8501601f81018713614834578182fd5b61484387823560208401614601565b91505092959194509250565b60008060408385031215614861578182fd5b61486a83614659565b9150602083013561487a81614f25565b809150509250929050565b60008060408385031215614897578182fd5b6148a083614659565b946020939093013593505050565b600080604083850312156148c0578182fd5b823567ffffffffffffffff808211156148d7578384fd5b6148e3868387016146eb565b935060208501359150808211156148f8578283fd5b5061490585828601614675565b9150509250929050565b600060208284031215614920578081fd5b815161476281614f25565b60006020828403121561493c578081fd5b813561476281614f33565b600060208284031215614958578081fd5b815161476281614f33565b600060208284031215614974578081fd5b813567ffffffffffffffff81111561498a578182fd5b8201601f8101841361499a578182fd5b61123284823560208401614601565b6000602082840312156149ba578081fd5b5035919050565b6000602082840312156149d2578081fd5b5051919050565b600080604083850312156149eb578182fd5b8235915061479260208401614659565b600080600080600060a08688031215614a12578283fd5b85359450614a2260208701614659565b94979496505050506040830135926060810135926080909101359150565b60008060408385031215614a52578182fd5b82359150602083013567ffffffffffffffff811115614a6f578182fd5b614905858286016146eb565b600080600060608486031215614a8f578081fd5b83359250602084013567ffffffffffffffff80821115614aad578283fd5b614ab9878388016146eb565b93506040860135915080821115614ace578283fd5b50614adb86828701614675565b9150509250925092565b60008060408385031215614af7578182fd5b50508035926020909101359150565b600080600060608486031215614b1a578081fd5b8351925060208401519150604084015190509250925092565b600060208284031215614b44578081fd5b815160ff81168114614762578182fd5b60008151808452614b6c816020860160208601614e36565b601f01601f19169290920160200192915050565b60008251614b92818460208701614e36565b9190910192915050565b60008351614bae818460208801614e36565b835190830190614bc2818360208801614e36565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b886080830184614b54565b6000606082016001600160a01b038616835260206060818501528186518084526080860191508288019350845b81811015614c6e57845183529383019391830191600101614c52565b50508093505050508215156040830152949350505050565b6020815260006147626020830184614b54565b604051601f8201601f1916810167ffffffffffffffff81118282101715614cc257614cc2614f0f565b604052919050565b600067ffffffffffffffff821115614ce457614ce4614f0f565b5060051b60200190565b60008219821115614d0157614d01614ee3565b500190565b600082614d1557614d15614ef9565b500490565b600181815b80851115612135578160001904821115614d3b57614d3b614ee3565b80851615614d4857918102915b93841c9390800290614d1f565b600061476260ff841683600082614d6e57506001610c0c565b81614d7b57506000610c0c565b8160018114614d915760028114614d9b57614db7565b6001915050610c0c565b60ff841115614dac57614dac614ee3565b50506001821b610c0c565b5060208310610133831016604e8410600b8410161715614dda575081810a610c0c565b614de48383614d1a565b8060001904821115614df857614df8614ee3565b029392505050565b6000816000190483118215151615614e1a57614e1a614ee3565b500290565b600082821015614e3157614e31614ee3565b500390565b60005b83811015614e51578181015183820152602001614e39565b83811115611c695750506000910152565b600081614e7157614e71614ee3565b506000190190565b600181811c90821680614e8d57607f821691505b60208210811415614eae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614ec857614ec8614ee3565b5060010190565b600082614ede57614ede614ef9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110e357600080fd5b6001600160e01b0319811681146110e357600080fdfea264697066735822122084c1d33a31b2d5c74404f6fea52c5e51cb947b506148bf101307928c651f576864736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000008400000000000000000000000007ef911f8ef130f73d166468c0068753932357b1700000000000000000000000000000000000000000000000000000000000000124a6f686e204d6341666565204c6567616379000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a4d4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58354a634e774676765879655836526b3539725a5573333256623561755074756f48754c6b7a5445594169442f00000000000000000000000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041eb63d55b1b0000000000000000000000000000000000000000000000000000c5c22b8011510000000000000000000000000000000000000000000000000001ef43782b65c0c00000000000000000000000000000000000000000000000000410d586a20a4c00000000000000000000000000000000000000000000000000077432217e6836000000000000000000000000000000000000000000000000000bb59a27953c600000000000000000000000000000000000000000000000000010fb378f54931d0000000000000000000000000000000000000000000000000016ec91cc03214f800000000000000000000000000000000000000000000000001dcd50584cb6ff000000000000000000000000000000000000000000000000002544faa778090e000000000000000000000000000000000000000000000000002e902701677215c00000000000000000000000000000000000000000000000003a3468449c1d38c000000000000000000000000000000000000000000000000048c1b9d89df324800000000000000000000000000000000000000000000000005af297547b0d28c000000000000000000000000000000000000000000000000073324c91447914000000000000000000000000000000000000000000000000008e1bc0dd47640fc0000000000000000000000000000000000000000000000000b1a20a8c08d13b00000000000000000000000000000000000000000000000000de0a8d2f0b0589c0000000000000000000000000000000000000000000000001158e460913d0000000000000000000000000000000000000000000000000000152d02c7e14af6800000000000000000000000000000000000000000000000001b1ae4d6e2ef500000000000000000000000000000000000000000000000000021e19e0c9bab24000000000000000000000000000000000000000000000000002a59f7af0be2459c00000000000000000000000000000000000000000000000034f086f3b33b68400000000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000004c6e0000000000000000000000000000000000000000000000000000000000007b7600000000000000000000000000000000000000000000000000000000000098db000000000000000000000000000000000000000000000000000000000000aa7e000000000000000000000000000000000000000000000000000000000000b641000000000000000000000000000000000000000000000000000000000000cfd9000000000000000000000000000000000000000000000000000000000000df99000000000000000000000000000000000000000000000000000000000000e971000000000000000000000000000000000000000000000000000000000000ef59000000000000000000000000000000000000000000000000000000000000f34a000000000000000000000000000000000000000000000000000000000000f9ff000000000000000000000000000000000000000000000000000000000000fe2000000000000000000000000000000000000000000000000000000000000100b40000000000000000000000000000000000000000000000000000000000010240000000000000000000000000000000000000000000000000000000000001034a00000000000000000000000000000000000000000000000000000000000109ff0000000000000000000000000000000000000000000000000000000000010e2000000000000000000000000000000000000000000000000000000000000110b40000000000000000000000000000000000000000000000000000000000011240000000000000000000000000000000000000000000000000000000000001134a000000000000000000000000000000000000000000000000000000000001147b000000000000000000000000000000000000000000000000000000000001153700000000000000000000000000000000000000000000000000000000000115ac00000000000000000000000000000000000000000000000000000000000115f200000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000004c6d0000000000000000000000000000000000000000000000000000000000002f080000000000000000000000000000000000000000000000000000000000001d6500000000000000000000000000000000000000000000000000000000000011a30000000000000000000000000000000000000000000000000000000000000bc300000000000000000000000000000000000000000000000000000000000019980000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000009d800000000000000000000000000000000000000000000000000000000000005e800000000000000000000000000000000000000000000000000000000000003f100000000000000000000000000000000000000000000000000000000000006b500000000000000000000000000000000000000000000000000000000000004210000000000000000000000000000000000000000000000000000000000000294000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000010a00000000000000000000000000000000000000000000000000000000000006b500000000000000000000000000000000000000000000000000000000000004210000000000000000000000000000000000000000000000000000000000000294000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000010a000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000bc000000000000000000000000000000000000000000000000000000000000007500000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000031

Deployed Bytecode

0x6080604052600436106103165760003560e01c80637ceb5fa51161019a578063b88d4fde116100e1578063e7ab3e0d1161008a578063f7408b5311610064578063f7408b5314610966578063f7ef82ca14610993578063fcf82695146109b357600080fd5b8063e7ab3e0d146108ea578063e985e9c51461090a578063f4532e5c1461095357600080fd5b8063cc84c904116100bb578063cc84c9041461087d578063d0068b511461089d578063da472c92146108ca57600080fd5b8063b88d4fde14610810578063c87b56dd14610830578063ca5dd0cb1461085057600080fd5b80639b905f5a11610143578063a14a28281161011d578063a14a2828146107b0578063a22cb465146107d0578063b7a4955b146107f057600080fd5b80639b905f5a146107385780639bef3546146107585780639e90f9aa1461079057600080fd5b80638fc3f561116101745780638fc3f561146106d6578063909965971461070357806395d89b411461072357600080fd5b80637ceb5fa51461066b57806388158aa9146106a3578063885c46a8146106b657600080fd5b806342842e0e1161025e5780635b128814116102075780636a627842116101e15780636a627842146106165780636c0360eb1461063657806370a082311461064b57600080fd5b80635b128814146105b65780635d589237146105d65780636352211e146105f657600080fd5b806348f014521161023857806348f0145214610556578063492d306b146105765780634f6ccce71461059657600080fd5b806342842e0e146104f657806342966c681461051657806342da3b6b1461053657600080fd5b80631e11df0b116102c057806329aa16171161029a57806329aa1617146104965780632f745c59146104b657806334870a84146104d657600080fd5b80631e11df0b1461043657806322b3a7c81461045657806323b872dd1461047657600080fd5b8063081812fc116102f1578063081812fc146103bf578063095ea7b3146103f757806318160ddd1461041757600080fd5b8062baae781461032d57806301ffc9a71461036d57806306fdde031461039d57600080fd5b36610328576103263460006109d3565b005b600080fd5b34801561033957600080fd5b5061034d6103483660046149a9565b610b8c565b604080519384526020840192909252908201526060015b60405180910390f35b34801561037957600080fd5b5061038d61038836600461492b565b610bbf565b6040519015158152602001610364565b3480156103a957600080fd5b506103b2610c12565b6040516103649190614c86565b3480156103cb57600080fd5b506103df6103da3660046149a9565b610ca4565b6040516001600160a01b039091168152602001610364565b34801561040357600080fd5b50610326610412366004614885565b610ccb565b34801561042357600080fd5b506008545b604051908152602001610364565b34801561044257600080fd5b506103266104513660046149fb565b610dfd565b34801561046257600080fd5b506104286104713660046149a9565b610f48565b34801561048257600080fd5b5061032661049136600461479b565b610f5f565b3480156104a257600080fd5b50600f546103df906001600160a01b031681565b3480156104c257600080fd5b506104286104d1366004614885565b610fe6565b3480156104e257600080fd5b506104286104f1366004614ae5565b61108e565b34801561050257600080fd5b5061032661051136600461479b565b6110bf565b34801561052257600080fd5b506103266105313660046149a9565b6110da565b34801561054257600080fd5b506104286105513660046149d9565b6110e6565b34801561056257600080fd5b506104286105713660046149a9565b61123a565b34801561058257600080fd5b50610326610591366004614963565b611415565b3480156105a257600080fd5b506104286105b13660046149a9565b611481565b3480156105c257600080fd5b506103266105d1366004614769565b611533565b3480156105e257600080fd5b50600e546103df906001600160a01b031681565b34801561060257600080fd5b506103df6106113660046149a9565b6115c6565b34801561062257600080fd5b50610326610631366004614748565b61162b565b34801561064257600080fd5b506103b2611697565b34801561065757600080fd5b50610428610666366004614748565b6116a6565b34801561067757600080fd5b506104286106863660046149d9565b601560209081526000928352604080842090915290825290205481565b6103266106b13660046148ae565b611740565b3480156106c257600080fd5b506103df6106d1366004614ae5565b61189b565b3480156106e257600080fd5b506104286106f1366004614748565b60146020526000908152604090205481565b34801561070f57600080fd5b5061032661071e366004614a40565b6118d3565b34801561072f57600080fd5b506103b2611b9d565b34801561074457600080fd5b506103df6107533660046149a9565b611bac565b34801561076457600080fd5b506104286107733660046149d9565b601960209081526000928352604080842090915290825290205481565b34801561079c57600080fd5b50600c546103df906001600160a01b031681565b3480156107bc57600080fd5b50600d546103df906001600160a01b031681565b3480156107dc57600080fd5b506103266107eb36600461484f565b611bd6565b3480156107fc57600080fd5b50601c546103df906001600160a01b031681565b34801561081c57600080fd5b5061032661082b3660046147d6565b611be1565b34801561083c57600080fd5b506103b261084b3660046149a9565b611c6f565b34801561085c57600080fd5b5061042861086b366004614748565b60136020526000908152604090205481565b34801561088957600080fd5b50610326610898366004614748565b611cc6565b3480156108a957600080fd5b506104286108b8366004614748565b60116020526000908152604090205481565b3480156108d657600080fd5b506103266108e5366004614a7b565b611d4b565b3480156108f657600080fd5b506103df6109053660046149a9565b611e1c565b34801561091657600080fd5b5061038d610925366004614769565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610326610961366004614a7b565b611e2c565b34801561097257600080fd5b506104286109813660046149a9565b60166020526000908152604090205481565b34801561099f57600080fd5b506103266109ae3660046148ae565b611f88565b3480156109bf57600080fd5b506103266109ce366004614769565b612058565b60408051808201909152601981527f455243373231456e76696f75733a206c6f7720616d6f756e7400000000000000602082015282610a2e5760405162461bcd60e51b8152600401610a259190614c86565b60405180910390fd5b506000610a95826012805480602002602001604051908101604052809291908181526020018280548015610a8b57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a6d575b50505050506120c5565b5090508015610af357610aa78261213d565b601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0384161790555b6001600160a01b03821660009081526013602052604081208054859290610b1b908490614cee565b90915550506001600160a01b03821615610b4457610b446001600160a01b03831633308661221a565b816001600160a01b03167f9d996ae749d879a4249021ae32eae7603984b6ca0c92d11d3902d378cceb17e484604051610b7f91815260200190565b60405180910390a2505050565b601d8181548110610b9c57600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b60006001600160e01b031982167f48f01452000000000000000000000000000000000000000000000000000000001480610bfd5750610bfd826122b3565b80610c0c5750610c0c826122f1565b92915050565b606060008054610c2190614e79565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4d90614e79565b8015610c9a5780601f10610c6f57610100808354040283529160200191610c9a565b820191906000526020600020905b815481529060010190602001808311610c7d57829003601f168201915b5050505050905090565b6000610caf8261232f565b506000908152600460205260409020546001600160a01b031690565b6000610cd6826115c6565b9050806001600160a01b0316836001600160a01b03161415610d605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a25565b336001600160a01b0382161480610d7c5750610d7c8133610925565b610dee5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610a25565b610df88383612393565b505050565b610e068361232f565b610e1b6001600160a01b03851633308561221a565b600e54610e35906001600160a01b03868116911684612401565b600e546040517f7c770aae0000000000000000000000000000000000000000000000000000000081526004810187905260248101849052604481018390523060648201819052608482015260009182916001600160a01b0390911690637c770aae9060a401606060405180830381600087803b158015610eb457600080fd5b505af1158015610ec8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eec9190614b06565b92505091506000821115610f3f5760008581526016602052604081208054849290610f18908490614cee565b90915550506000858152601760209081526040822080546001810182559083529120018190555b50505050505050565b600a8160028110610f5857600080fd5b0154905081565b610f69338261255e565b610fdb5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a25565b610df88383836125dc565b6000610ff1836116a6565b82106110655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a25565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601760205281600052604060002081815481106110aa57600080fd5b90600052602060002001600091509150505481565b610df883838360405180602001604052806000815250611be1565b6110e3816127e2565b50565b600f54600c546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152600092839216906370a082319060240160206040518083038186803b15801561114a57600080fd5b505afa15801561115e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118291906149c1565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111d057600080fd5b505afa1580156111e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120891906149c1565b6112129190614e1f565b90508061121e84612885565b6112289086614e00565b6112329190614d06565b949350505050565b6000818152601960209081526040808320601c546001600160a01b031684529091528120548161126960085490565b601c546001600160a01b031660009081526013602052604090205461128e9190614d06565b6000858152601560209081526040808320601c546001600160a01b03168452909152812054919250816112c18486614cee565b6112cb9190614e1f565b601d549091506001906000905b80156113b857601d6112eb600183614e1f565b8154811061130957634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016000015484106113a657601d61132e600183614e1f565b8154811061134c57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600201549250601d60018261136f9190614e1f565b8154811061138d57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016001015491506113b8565b806113b081614e62565b9150506112d8565b5060408051602081018a90529081018790526060810186905260009083906080016040516020818303038152906040528051906020012060001c6113fc9190614ecf565b90506114088282614cee565b9998505050505050505050565b601e546001600160a01b0316336001600160a01b0316146114785760405162461bcd60e51b815260206004820152601360248201527f6f6e6c7920666f722073757065722075736572000000000000000000000000006044820152606401610a25565b6110e381612b30565b600061148c60085490565b82106115005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a25565b6008828154811061152157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60408051808201909152601281527f7a65726f206164647265737320666f756e64000000000000000000000000000060208201526001600160a01b03831661158e5760405162461bcd60e51b8152600401610a259190614c86565b506115c28282600f80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055565b5050565b6000818152600260205260408120546001600160a01b031680610c0c5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a25565b601f546001600160a01b0316336001600160a01b03161461168e5760405162461bcd60e51b815260206004820152601560248201527f6f6e6c7920666f72207375706572206d696e74657200000000000000000000006044820152606401610a25565b6110e381612b43565b60606116a1612b63565b905090565b60006001600160a01b0382166117245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610a25565b506001600160a01b031660009081526003602052604090205490565b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d61746368815250906117995760405162461bcd60e51b8152600401610a259190614c86565b503460005b82518110156118895760006001600160a01b03168382815181106117d257634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316141561181f5783818151811061180957634e487b7160e01b600052603260045260246000fd5b60200260200101518261181c9190614e1f565b91505b61187784828151811061184257634e487b7160e01b600052603260045260246000fd5b602002602001015184838151811061186a57634e487b7160e01b600052603260045260246000fd5b60200260200101516109d3565b8061188181614eb4565b91505061179e565b508015610df857610df8335b82612b72565b601860205281600052604060002081815481106118b757600080fd5b6000918252602090912001546001600160a01b03169150829050565b600d5460408051808201909152601d81527f455243373231456e76696f75733a2067686f737420697320656d7074790000006020820152906001600160a01b03166119315760405162461bcd60e51b8152600401610a259190614c86565b5060005b8151811015611ab55760006119d283838151811061196357634e487b7160e01b600052603260045260246000fd5b6020026020010151601760008781526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156119c857602002820191906000526020600020905b8154815260200190600101908083116119b4575b5050505050612c8b565b60008581526017602052604090208054919250906119f290600190614e1f565b81548110611a1057634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601760008681526020019081526020016000208281548110611a4d57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555060176000858152602001908152602001600020805480611a8b57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055508080611aad90614eb4565b915050611935565b50600e546040517fd62fbdd30000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063d62fbdd390611b059030908690600190600401614c25565b602060405180830381600087803b158015611b1f57600080fd5b505af1158015611b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5791906149c1565b90508015610df85760008381526016602052604081208054839290611b7d908490614e1f565b9091555050600d54610df890849083906001600160a01b03166001612cea565b606060018054610c2190614e79565b60108181548110611bbc57600080fd5b6000918252602090912001546001600160a01b0316905081565b6115c2338383612ece565b611beb338361255e565b611c5d5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a25565b611c6984848484612f9d565b50505050565b6060611c7a8261232f565b6000611c84612b63565b90506000611c918461123a565b905081611c9d82613026565b604051602001611cae929190614b9c565b60405160208183030381529060405292505050919050565b601e546001600160a01b0316336001600160a01b031614611d295760405162461bcd60e51b815260206004820152601360248201527f6f6e6c7920666f722073757065722075736572000000000000000000000000006044820152606401610a25565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d6174636881525090611da45760405162461bcd60e51b8152600401610a259190614c86565b5060005b8151811015611c6957611e0a84848381518110611dd557634e487b7160e01b600052603260045260246000fd5b6020026020010151848481518110611dfd57634e487b7160e01b600052603260045260246000fd5b60200260200101516130de565b80611e1481614eb4565b915050611da8565b60128181548110611bbc57600080fd5b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d6174636881525090611e855760405162461bcd60e51b8152600401610a259190614c86565b503460005b8251811015611f785760006001600160a01b0316838281518110611ebe57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415611f0b57838181518110611ef557634e487b7160e01b600052603260045260246000fd5b602002602001015182611f089190614e1f565b91505b611f6685858381518110611f2f57634e487b7160e01b600052603260045260246000fd5b6020026020010151858481518110611f5757634e487b7160e01b600052603260045260246000fd5b60200260200101516000612cea565b80611f7081614eb4565b915050611e8a565b508015611c6957611c6933611895565b80518251146040518060400160405280602081526020017f455243373231456e76696f75733a206c656e67746873206e6f74206d6174636881525090611fe15760405162461bcd60e51b8152600401610a259190614c86565b5060005b8151811015610df85761204683828151811061201157634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061203957634e487b7160e01b600052603260045260246000fd5b60200260200101516133ba565b8061205081614eb4565b915050611fe5565b601e546001600160a01b0316336001600160a01b0316146120bb5760405162461bcd60e51b815260206004820152601360248201527f6f6e6c7920666f722073757065722075736572000000000000000000000000006044820152606401610a25565b6115c282826135db565b600160001960005b835181101561213557846001600160a01b031684828151811061210057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614156121235760009250809150612135565b8061212d81614eb4565b9150506120cd565b509250929050565b6001600160a01b038116156110e35760ff8016816001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561218957600080fd5b505afa15801561219d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c19190614b33565b60ff1614156040518060400160405280601a81526020017f455243373231456e76696f75733a206e6f20646563696d616c73000000000000815250906115c25760405162461bcd60e51b8152600401610a259190614c86565b6040516001600160a01b0380851660248301528316604482015260648101829052611c699085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152613683565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610c0c5750610c0c82613768565b60006001600160e01b031982167fdb796342000000000000000000000000000000000000000000000000000000001480610c0c5750610c0c82613768565b6000818152600260205260409020546001600160a01b03166110e35760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a25565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123c8826115c6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8015806124a357506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b15801561246957600080fd5b505afa15801561247d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a191906149c1565b155b6125155760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610a25565b6040516001600160a01b038316602482015260448101829052610df89084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401612267565b60008061256a836115c6565b9050806001600160a01b0316846001600160a01b031614806125b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112325750836001600160a01b03166125ca84610ca4565b6001600160a01b031614949350505050565b826001600160a01b03166125ef826115c6565b6001600160a01b0316146126535760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a25565b6001600160a01b0382166126ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a25565b6126db8383836001613803565b826001600160a01b03166126ee826115c6565b6001600160a01b0316146127525760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a25565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127ed826115c6565b90506127fd816000846001613803565b612806826115c6565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600f546040805163313ce56760e01b815290516000928392839283926001600160a01b03169163313ce567916004808301926020929190829003018186803b1580156128d057600080fd5b505afa1580156128e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129089190614b33565b61291390600a614d55565b905060005b601054811015612af6576000806001600160a01b03166010838154811061294f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614612a1b576010828154811061298a57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001546040805163313ce56760e01b815290516001600160a01b039092169263313ce56792600480840193829003018186803b1580156129d357600080fd5b505afa1580156129e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0b9190614b33565b612a1690600a614d55565b612a25565b670de0b6b3a76400005b9050600081846011600060108781548110612a5057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054612a7f9190614e00565b612a899190614d06565b9050612a958187614cee565b9550876001600160a01b031660108481548110612ac257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415612ae1578094505b50508080612aee90614eb4565b915050612918565b506001600160a01b0385166000908152601160205260409020548290612b1d908590614e00565b612b279190614d06565b95945050505050565b80516115c290601a906020840190614568565b612b51601b80546001019055565b6110e381612b5e601b5490565b61380f565b6060601a8054610c2190614e79565b80471015612bc25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a25565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612c0f576040519150601f19603f3d011682016040523d82523d6000602084013e612c14565b606091505b5050905080610df85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a25565b60001960005b8251811015612ce35783838281518110612cbb57634e487b7160e01b600052603260045260246000fd5b60200260200101511415612cd157809150612ce3565b80612cdb81614eb4565b915050612c91565b5092915050565b60408051808201909152601981527f455243373231456e76696f75733a206c6f7720616d6f756e7400000000000000602082015283612d3c5760405162461bcd60e51b8152600401610a259190614c86565b50612d468461232f565b612d508285613829565b60008481526018602090815260408083208054825181850281018501909352808352612dbc938793929190830182828015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b5090508015612e0657612dce8361213d565b60008581526018602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b0385161790555b6000612e1785600a83015486613a6e565b60008781526019602090815260408083206001600160a01b0389168452909152812080549293508392909190612e4e908490614cee565b90915550506001600160a01b03841615801590612e69575082155b15612e8357612e836001600160a01b03851633308861221a565b604080518681526001600160a01b038616602082015287917f1cedfb451d4da3a63f72a945ba92f51b8fd558a5be4652404d037bb1578ff582910160405180910390a2505050505050565b816001600160a01b0316836001600160a01b03161415612f305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a25565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612fa88484846125dc565b612fb484848484613b92565b611c695760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a25565b6060600061303383613cf5565b600101905060008167ffffffffffffffff81111561306157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561308b576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846130d1576130d6565b613095565b509392505050565b60008381526002602052604090205433906001600160a01b03166001600160a01b0316146040518060400160405280601d81526020017f455243373231456e76696f75733a206f6e6c7920666f72206f776e6572000000815250906131565760405162461bcd60e51b8152600401610a259190614c86565b506131618184613829565b60008381526019602090815260408083206001600160a01b038516845290915281208054849290613193908490614e1f565b909155505060008381526019602090815260408083206001600160a01b038516845290915290205461332b576000838152601860209081526040808320805482518185028101850190935280835261322b938693929190830182828015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b60008681526018602052604090208054919350915061324c90600190614e1f565b8154811061326a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101548683526018909152604090912080546001600160a01b0390921691839081106132b157634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b03949094169390931790925585815260189091526040902080548061330757634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055505b600061333d83600a6001015484613a6e565b90506001600160a01b03821661335b5761335633611895565b613371565b613371335b6001600160a01b0384169083613dd7565b604080518281526001600160a01b038416602082015285917fc5cfd1d8dd2cb97734eb0b41eb809f9de295965c0e72316de4715657466f43fa910160405180910390a250505050565b60006133c683836110e6565b6001600160a01b0383166000908152601160205260408120805492935083929091906133f3908490614e1f565b90915550506001600160a01b038216600090815260116020526040902054613557576000613479836010805480602002602001604051908101604052809291908181526020018280548015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b60108054919350915061348e90600190614e1f565b815481106134ac57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601080546001600160a01b0390921691839081106134e657634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550601080548061353357634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055505b6001600160a01b0382166135735761356e33611895565b61357c565b61357c33613360565b61359a33600c54600f546001600160a01b039081169291168661221a565b60408051848152602081018390526001600160a01b038416917f81ca9b2c230070eaa84787556b1aaf18bf1e2f07ea5d3dae4819db77a1a5b2249101610b7f565b6001600160a01b038216158015906135fb57506001600160a01b03811615155b6040518060400160405280601281526020017f7a65726f206164647265737320666f756e6400000000000000000000000000008152509061364f5760405162461bcd60e51b8152600401610a259190614c86565b506115c28282600d80546001600160a01b039384166001600160a01b031991821617909155600e8054929093169116179055565b60006136d8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613e209092919063ffffffff16565b805190915015610df857808060200190518101906136f6919061490f565b610df85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a25565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806137cb57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0c57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610c0c565b611c6984848484613e2f565b6115c2828260405180602001604052806000815250613f77565b600061383460085490565b6001600160a01b0384166000908152601360205260409020546138579190614d06565b6001600160a01b0384166000908152601360209081526040808320546014909252909120549192509061388b908390614cee565b11156138c3576001600160a01b0383166000908152601460209081526040808320546013909252909120546138c09190614e1f565b90505b60008281526015602090815260408083206001600160a01b0387168452909152902054811115610df85760008281526015602090815260408083206001600160a01b038716845290915281205461391a9083614e1f565b60008481526015602090815260408083206001600160a01b0389168452909152812080549293508392909190613951908490614cee565b9091555050600083815260186020908152604080832080548251818502810185019093528083526139c2938993929190830182828015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b5090508015613a035760008481526018602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b0387161790555b60008481526019602090815260408083206001600160a01b038916845290915281208054849290613a35908490614cee565b90915550506001600160a01b03851660009081526014602052604081208054849290613a62908490614cee565b90915550505050505050565b600080620186a0613a7f8587614e00565b613a899190614d06565b90506000613aef846010805480602002602001604051908101604052809291908181526020018280548015610a8b576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a6d5750505050506120c5565b509050808015613aff5750600082115b15613b5057601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b0319166001600160a01b0386161790555b6001600160a01b03841660009081526011602052604081208054849290613b78908490614cee565b90915550613b8890508287614e1f565b9695505050505050565b60006001600160a01b0384163b15613cea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613bd6903390899088908890600401614bf3565b602060405180830381600087803b158015613bf057600080fd5b505af1925050508015613c20575060408051601f3d908101601f19168201909252613c1d91810190614947565b60015b613cd0573d808015613c4e576040519150601f19603f3d011682016040523d82523d6000602084013e613c53565b606091505b508051613cc85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a25565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611232565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613d3e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310613d6a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310613d8857662386f26fc10000830492506010015b6305f5e1008310613da0576305f5e100830492506008015b6127108310613db457612710830492506004015b60648310613dc6576064830492506002015b600a8310610c0c5760010192915050565b6040516001600160a01b038316602482015260448101829052610df89084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401612267565b60606112328484600085614000565b613e3b848484846140f2565b6001811115613eb25760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610a25565b816001600160a01b038516613f0e57613f0981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613f31565b836001600160a01b0316856001600160a01b031614613f3157613f31858261417a565b6001600160a01b038416613f4d57613f4881614217565b613f70565b846001600160a01b0316846001600160a01b031614613f7057613f7084826142f0565b5050505050565b613f818383614334565b613f8e6000848484613b92565b610df85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a25565b6060824710156140785760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610a25565b600080866001600160a01b031685876040516140949190614b80565b60006040518083038185875af1925050503d80600081146140d1576040519150601f19603f3d011682016040523d82523d6000602084013e6140d6565b606091505b50915091506140e7878383876144cd565b979650505050505050565b6001811115611c69576001600160a01b03841615614138576001600160a01b03841660009081526003602052604081208054839290614132908490614e1f565b90915550505b6001600160a01b03831615611c69576001600160a01b0383166000908152600360205260408120805483929061416f908490614cee565b909155505050505050565b60006001614187846116a6565b6141919190614e1f565b6000838152600760205260409020549091508082146141e4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061422990600190614e1f565b6000838152600960205260408120546008805493945090928490811061425f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061428e57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806142d457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006142fb836116a6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661438a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a25565b6000818152600260205260409020546001600160a01b0316156143ef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a25565b6143fd600083836001613803565b6000818152600260205260409020546001600160a01b0316156144625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a25565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608315614539578251614532576001600160a01b0385163b6145325760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a25565b5081611232565b611232838381511561454e5781518083602001fd5b8060405162461bcd60e51b8152600401610a259190614c86565b82805461457490614e79565b90600052602060002090601f01602090048101928261459657600085556145dc565b82601f106145af57805160ff19168380011785556145dc565b828001600101855582156145dc579182015b828111156145dc5782518255916020019190600101906145c1565b506145e89291506145ec565b5090565b5b808211156145e857600081556001016145ed565b600067ffffffffffffffff83111561461b5761461b614f0f565b61462e601f8401601f1916602001614c99565b905082815283838301111561464257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461467057600080fd5b919050565b600082601f830112614685578081fd5b8135602061469a61469583614cca565b614c99565b80838252828201915082860187848660051b89010111156146b9578586fd5b855b858110156146de576146cc82614659565b845292840192908401906001016146bb565b5090979650505050505050565b600082601f8301126146fb578081fd5b8135602061470b61469583614cca565b80838252828201915082860187848660051b890101111561472a578586fd5b855b858110156146de5781358452928401929084019060010161472c565b600060208284031215614759578081fd5b61476282614659565b9392505050565b6000806040838503121561477b578081fd5b61478483614659565b915061479260208401614659565b90509250929050565b6000806000606084860312156147af578081fd5b6147b884614659565b92506147c660208501614659565b9150604084013590509250925092565b600080600080608085870312156147eb578081fd5b6147f485614659565b935061480260208601614659565b925060408501359150606085013567ffffffffffffffff811115614824578182fd5b8501601f81018713614834578182fd5b61484387823560208401614601565b91505092959194509250565b60008060408385031215614861578182fd5b61486a83614659565b9150602083013561487a81614f25565b809150509250929050565b60008060408385031215614897578182fd5b6148a083614659565b946020939093013593505050565b600080604083850312156148c0578182fd5b823567ffffffffffffffff808211156148d7578384fd5b6148e3868387016146eb565b935060208501359150808211156148f8578283fd5b5061490585828601614675565b9150509250929050565b600060208284031215614920578081fd5b815161476281614f25565b60006020828403121561493c578081fd5b813561476281614f33565b600060208284031215614958578081fd5b815161476281614f33565b600060208284031215614974578081fd5b813567ffffffffffffffff81111561498a578182fd5b8201601f8101841361499a578182fd5b61123284823560208401614601565b6000602082840312156149ba578081fd5b5035919050565b6000602082840312156149d2578081fd5b5051919050565b600080604083850312156149eb578182fd5b8235915061479260208401614659565b600080600080600060a08688031215614a12578283fd5b85359450614a2260208701614659565b94979496505050506040830135926060810135926080909101359150565b60008060408385031215614a52578182fd5b82359150602083013567ffffffffffffffff811115614a6f578182fd5b614905858286016146eb565b600080600060608486031215614a8f578081fd5b83359250602084013567ffffffffffffffff80821115614aad578283fd5b614ab9878388016146eb565b93506040860135915080821115614ace578283fd5b50614adb86828701614675565b9150509250925092565b60008060408385031215614af7578182fd5b50508035926020909101359150565b600080600060608486031215614b1a578081fd5b8351925060208401519150604084015190509250925092565b600060208284031215614b44578081fd5b815160ff81168114614762578182fd5b60008151808452614b6c816020860160208601614e36565b601f01601f19169290920160200192915050565b60008251614b92818460208701614e36565b9190910192915050565b60008351614bae818460208801614e36565b835190830190614bc2818360208801614e36565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b886080830184614b54565b6000606082016001600160a01b038616835260206060818501528186518084526080860191508288019350845b81811015614c6e57845183529383019391830191600101614c52565b50508093505050508215156040830152949350505050565b6020815260006147626020830184614b54565b604051601f8201601f1916810167ffffffffffffffff81118282101715614cc257614cc2614f0f565b604052919050565b600067ffffffffffffffff821115614ce457614ce4614f0f565b5060051b60200190565b60008219821115614d0157614d01614ee3565b500190565b600082614d1557614d15614ef9565b500490565b600181815b80851115612135578160001904821115614d3b57614d3b614ee3565b80851615614d4857918102915b93841c9390800290614d1f565b600061476260ff841683600082614d6e57506001610c0c565b81614d7b57506000610c0c565b8160018114614d915760028114614d9b57614db7565b6001915050610c0c565b60ff841115614dac57614dac614ee3565b50506001821b610c0c565b5060208310610133831016604e8410600b8410161715614dda575081810a610c0c565b614de48383614d1a565b8060001904821115614df857614df8614ee3565b029392505050565b6000816000190483118215151615614e1a57614e1a614ee3565b500290565b600082821015614e3157614e31614ee3565b500390565b60005b83811015614e51578181015183820152602001614e39565b83811115611c695750506000910152565b600081614e7157614e71614ee3565b506000190190565b600181811c90821680614e8d57607f821691505b60208210811415614eae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614ec857614ec8614ee3565b5060010190565b600082614ede57614ede614ef9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146110e357600080fd5b6001600160e01b0319811681146110e357600080fdfea264697066735822122084c1d33a31b2d5c74404f6fea52c5e51cb947b506148bf101307928c651f576864736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000008400000000000000000000000007ef911f8ef130f73d166468c0068753932357b1700000000000000000000000000000000000000000000000000000000000000124a6f686e204d6341666565204c6567616379000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a4d4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58354a634e774676765879655836526b3539725a5573333256623561755074756f48754c6b7a5445594169442f00000000000000000000000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041eb63d55b1b0000000000000000000000000000000000000000000000000000c5c22b8011510000000000000000000000000000000000000000000000000001ef43782b65c0c00000000000000000000000000000000000000000000000000410d586a20a4c00000000000000000000000000000000000000000000000000077432217e6836000000000000000000000000000000000000000000000000000bb59a27953c600000000000000000000000000000000000000000000000000010fb378f54931d0000000000000000000000000000000000000000000000000016ec91cc03214f800000000000000000000000000000000000000000000000001dcd50584cb6ff000000000000000000000000000000000000000000000000002544faa778090e000000000000000000000000000000000000000000000000002e902701677215c00000000000000000000000000000000000000000000000003a3468449c1d38c000000000000000000000000000000000000000000000000048c1b9d89df324800000000000000000000000000000000000000000000000005af297547b0d28c000000000000000000000000000000000000000000000000073324c91447914000000000000000000000000000000000000000000000000008e1bc0dd47640fc0000000000000000000000000000000000000000000000000b1a20a8c08d13b00000000000000000000000000000000000000000000000000de0a8d2f0b0589c0000000000000000000000000000000000000000000000001158e460913d0000000000000000000000000000000000000000000000000000152d02c7e14af6800000000000000000000000000000000000000000000000001b1ae4d6e2ef500000000000000000000000000000000000000000000000000021e19e0c9bab24000000000000000000000000000000000000000000000000002a59f7af0be2459c00000000000000000000000000000000000000000000000034f086f3b33b68400000000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000004c6e0000000000000000000000000000000000000000000000000000000000007b7600000000000000000000000000000000000000000000000000000000000098db000000000000000000000000000000000000000000000000000000000000aa7e000000000000000000000000000000000000000000000000000000000000b641000000000000000000000000000000000000000000000000000000000000cfd9000000000000000000000000000000000000000000000000000000000000df99000000000000000000000000000000000000000000000000000000000000e971000000000000000000000000000000000000000000000000000000000000ef59000000000000000000000000000000000000000000000000000000000000f34a000000000000000000000000000000000000000000000000000000000000f9ff000000000000000000000000000000000000000000000000000000000000fe2000000000000000000000000000000000000000000000000000000000000100b40000000000000000000000000000000000000000000000000000000000010240000000000000000000000000000000000000000000000000000000000001034a00000000000000000000000000000000000000000000000000000000000109ff0000000000000000000000000000000000000000000000000000000000010e2000000000000000000000000000000000000000000000000000000000000110b40000000000000000000000000000000000000000000000000000000000011240000000000000000000000000000000000000000000000000000000000001134a000000000000000000000000000000000000000000000000000000000001147b000000000000000000000000000000000000000000000000000000000001153700000000000000000000000000000000000000000000000000000000000115ac00000000000000000000000000000000000000000000000000000000000115f200000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000004c6d0000000000000000000000000000000000000000000000000000000000002f080000000000000000000000000000000000000000000000000000000000001d6500000000000000000000000000000000000000000000000000000000000011a30000000000000000000000000000000000000000000000000000000000000bc300000000000000000000000000000000000000000000000000000000000019980000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000009d800000000000000000000000000000000000000000000000000000000000005e800000000000000000000000000000000000000000000000000000000000003f100000000000000000000000000000000000000000000000000000000000006b500000000000000000000000000000000000000000000000000000000000004210000000000000000000000000000000000000000000000000000000000000294000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000010a00000000000000000000000000000000000000000000000000000000000006b500000000000000000000000000000000000000000000000000000000000004210000000000000000000000000000000000000000000000000000000000000294000000000000000000000000000000000000000000000000000000000000018c000000000000000000000000000000000000000000000000000000000000010a000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000bc000000000000000000000000000000000000000000000000000000000000007500000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000031

-----Decoded View---------------
Arg [0] : tokenName (string): John McAfee Legacy
Arg [1] : tokenSymbol (string): JML
Arg [2] : baseTokenURI (string): ipfs://QmX5JcNwFvvXyeX6Rk59rZUs32Vb5auPtuoHuLkzTEYAiD/
Arg [3] : edgeValues (uint256[]): 0,76000000000000000000,228000000000000000000,571000000000000000000,1200000000000000000000,2200000000000000000000,3456000000000000000000,5012000000000000000000,6766000000000000000000,8796000000000000000000,11000000000000000000000,13743000000000000000000,17179000000000000000000,21474000000000000000000,26843000000000000000000,34000000000000000000000,41943000000000000000000,52428000000000000000000,65535000000000000000000,81920000000000000000000,100000000000000000000000,128000000000000000000000,160000000000000000000000,199999000000000000000000,250000000000000000000000
Arg [4] : edgeOffsets (uint256[]): 1,19566,31606,39131,43646,46657,53209,57241,59761,61273,62282,63999,65056,65716,66112,66378,68095,69152,69812,70208,70474,70779,70967,71084,71154
Arg [5] : edgeRanges (uint256[]): 19565,12040,7525,4515,3011,6552,4032,2520,1512,1009,1717,1057,660,396,266,1717,1057,660,396,266,305,188,117,70,49
Arg [6] : tokenMeasurment (address): 0x7EF911f8ef130F73D166468c0068753932357B17

-----Encoded View---------------
92 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000500
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000840
Arg [6] : 0000000000000000000000007ef911f8ef130f73d166468c0068753932357b17
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 4a6f686e204d6341666565204c65676163790000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 4a4d4c0000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d58354a634e774676765879655836526b3539725a557333
Arg [13] : 3256623561755074756f48754c6b7a5445594169442f00000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000041eb63d55b1b00000
Arg [17] : 00000000000000000000000000000000000000000000000c5c22b80115100000
Arg [18] : 00000000000000000000000000000000000000000000001ef43782b65c0c0000
Arg [19] : 0000000000000000000000000000000000000000000000410d586a20a4c00000
Arg [20] : 000000000000000000000000000000000000000000000077432217e683600000
Arg [21] : 0000000000000000000000000000000000000000000000bb59a27953c6000000
Arg [22] : 00000000000000000000000000000000000000000000010fb378f54931d00000
Arg [23] : 00000000000000000000000000000000000000000000016ec91cc03214f80000
Arg [24] : 0000000000000000000000000000000000000000000001dcd50584cb6ff00000
Arg [25] : 0000000000000000000000000000000000000000000002544faa778090e00000
Arg [26] : 0000000000000000000000000000000000000000000002e902701677215c0000
Arg [27] : 0000000000000000000000000000000000000000000003a3468449c1d38c0000
Arg [28] : 00000000000000000000000000000000000000000000048c1b9d89df32480000
Arg [29] : 0000000000000000000000000000000000000000000005af297547b0d28c0000
Arg [30] : 00000000000000000000000000000000000000000000073324c9144791400000
Arg [31] : 0000000000000000000000000000000000000000000008e1bc0dd47640fc0000
Arg [32] : 000000000000000000000000000000000000000000000b1a20a8c08d13b00000
Arg [33] : 000000000000000000000000000000000000000000000de0a8d2f0b0589c0000
Arg [34] : 000000000000000000000000000000000000000000001158e460913d00000000
Arg [35] : 00000000000000000000000000000000000000000000152d02c7e14af6800000
Arg [36] : 000000000000000000000000000000000000000000001b1ae4d6e2ef50000000
Arg [37] : 0000000000000000000000000000000000000000000021e19e0c9bab24000000
Arg [38] : 000000000000000000000000000000000000000000002a59f7af0be2459c0000
Arg [39] : 0000000000000000000000000000000000000000000034f086f3b33b68400000
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [42] : 0000000000000000000000000000000000000000000000000000000000004c6e
Arg [43] : 0000000000000000000000000000000000000000000000000000000000007b76
Arg [44] : 00000000000000000000000000000000000000000000000000000000000098db
Arg [45] : 000000000000000000000000000000000000000000000000000000000000aa7e
Arg [46] : 000000000000000000000000000000000000000000000000000000000000b641
Arg [47] : 000000000000000000000000000000000000000000000000000000000000cfd9
Arg [48] : 000000000000000000000000000000000000000000000000000000000000df99
Arg [49] : 000000000000000000000000000000000000000000000000000000000000e971
Arg [50] : 000000000000000000000000000000000000000000000000000000000000ef59
Arg [51] : 000000000000000000000000000000000000000000000000000000000000f34a
Arg [52] : 000000000000000000000000000000000000000000000000000000000000f9ff
Arg [53] : 000000000000000000000000000000000000000000000000000000000000fe20
Arg [54] : 00000000000000000000000000000000000000000000000000000000000100b4
Arg [55] : 0000000000000000000000000000000000000000000000000000000000010240
Arg [56] : 000000000000000000000000000000000000000000000000000000000001034a
Arg [57] : 00000000000000000000000000000000000000000000000000000000000109ff
Arg [58] : 0000000000000000000000000000000000000000000000000000000000010e20
Arg [59] : 00000000000000000000000000000000000000000000000000000000000110b4
Arg [60] : 0000000000000000000000000000000000000000000000000000000000011240
Arg [61] : 000000000000000000000000000000000000000000000000000000000001134a
Arg [62] : 000000000000000000000000000000000000000000000000000000000001147b
Arg [63] : 0000000000000000000000000000000000000000000000000000000000011537
Arg [64] : 00000000000000000000000000000000000000000000000000000000000115ac
Arg [65] : 00000000000000000000000000000000000000000000000000000000000115f2
Arg [66] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [67] : 0000000000000000000000000000000000000000000000000000000000004c6d
Arg [68] : 0000000000000000000000000000000000000000000000000000000000002f08
Arg [69] : 0000000000000000000000000000000000000000000000000000000000001d65
Arg [70] : 00000000000000000000000000000000000000000000000000000000000011a3
Arg [71] : 0000000000000000000000000000000000000000000000000000000000000bc3
Arg [72] : 0000000000000000000000000000000000000000000000000000000000001998
Arg [73] : 0000000000000000000000000000000000000000000000000000000000000fc0
Arg [74] : 00000000000000000000000000000000000000000000000000000000000009d8
Arg [75] : 00000000000000000000000000000000000000000000000000000000000005e8
Arg [76] : 00000000000000000000000000000000000000000000000000000000000003f1
Arg [77] : 00000000000000000000000000000000000000000000000000000000000006b5
Arg [78] : 0000000000000000000000000000000000000000000000000000000000000421
Arg [79] : 0000000000000000000000000000000000000000000000000000000000000294
Arg [80] : 000000000000000000000000000000000000000000000000000000000000018c
Arg [81] : 000000000000000000000000000000000000000000000000000000000000010a
Arg [82] : 00000000000000000000000000000000000000000000000000000000000006b5
Arg [83] : 0000000000000000000000000000000000000000000000000000000000000421
Arg [84] : 0000000000000000000000000000000000000000000000000000000000000294
Arg [85] : 000000000000000000000000000000000000000000000000000000000000018c
Arg [86] : 000000000000000000000000000000000000000000000000000000000000010a
Arg [87] : 0000000000000000000000000000000000000000000000000000000000000131
Arg [88] : 00000000000000000000000000000000000000000000000000000000000000bc
Arg [89] : 0000000000000000000000000000000000000000000000000000000000000075
Arg [90] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [91] : 0000000000000000000000000000000000000000000000000000000000000031


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

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