ETH Price: $3,185.90 (+1.67%)
Gas: 5 Gwei

Token

Mounts (for Adventurers) (MOUNT)
 

Overview

Max Total Supply

450 MOUNT

Holders

188

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOUNT
0x8c49c1d07579d778cae5a567e77e5ee242169917
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:
Mounts

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: NFT.sol
pragma solidity >=0.6.0 <0.8.0;
pragma experimental ABIEncoderV2;

//SPDX-License-Identifier: UNLICENSED

import "./ERC721.sol";

contract Mounts is ERC721, ReentrancyGuard, Ownable {
	using SafeMath for uint256;

	constructor() ERC721("Mounts (for Adventurers)", "MOUNT") {}
	address public lootAddress = 0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7;
	LootInterface lootContract = LootInterface(lootAddress);

	string public PROVENANCE = "";

	uint256 public maxSupply = 8000;
	uint256 public currentSupply = 0;

	uint256 public lootersPrice = 10000000000000000; // 0.01 ETH
	uint256 public publicPrice = 20000000000000000; // 0.02 ETH

	string[] private creature = [
		"Horse", "Horse", "Horse",
		"Dragon",
		"Gryffin", "Gryffin",
		"Camel", "Camel", "Camel",
		"Poney", "Poney", "Poney",
		"Elephant", "Elephant",
		"Hound", "Hound", "Hound",
		"Shark", "Shark",
		"Hippogryff", "Hippogryff",
		"Bull", "Bull", "Bull",
		"Bear", "Bear", "Bear",
		"Ostrich", "Ostrich",
		"Donkey", "Donkey"
	];
	string[] private creaturePrefix = ["Black", "White", "Blue", "Red", "Green", "Silver", "Golden", "Courageous", "Divine", "Holy", "Demonic", "Young", "Ancient", "Docile", "Proud", "Bold", "Quirky", "Brave", "Rash", "Impish", "Quiet", "Lonely", "Ice", "Fire"];

	string[] private saddle = ["saddle"];
	string[] private saddlePrefix = ["General purpose", "Dressage", "Jumping", "Hunting", "Racing", "Double", "Endurance", "Roping", "Leather"];

	string[] private equipment = ["Helmet", "Armor", "Collar", "Harness"];
	string[] private equipmentPrefix = ["Ancient", "Golden", "Heavy", "Light", "Dragonskin", "Chain", "Ornate", "Spiky", "Holy", "Silver", "Great", "Bronze", "Iron", "Platinum", "Unholy"];

	string[] private inventory = ["pouch", "bag", "satchel", "purse", "saddlebag", "basket", "seat bag", "wedge pack"];
	string[] private inventoryPrefix = ["Large", "Small", "Medium", "Bountiful", "Empty"];

	function getCreature(uint256 tokenId) public view returns (string memory) {
		return pluck(tokenId, "Creature", creature, creaturePrefix);
	}

	function getSaddle(uint256 tokenId) public view returns (string memory) {
		return pluck(tokenId, "Saddle", saddle, saddlePrefix);
	}

	function getEquipment(uint256 tokenId) public view returns (string memory) {
		return pluck(tokenId, "Equipment", equipment, equipmentPrefix);
	}

	function getInventory(uint256 tokenId) public view returns (string memory) {
		return pluck(tokenId, "Inventory", inventory, inventoryPrefix);
	}

	function getFullDescription(uint256 tokenId) public view returns (string memory) {
		return string(abi.encodePacked(
			getCreature(tokenId), " + ",
			getSaddle(tokenId), " + ",
			getEquipment(tokenId), " + ",
			getInventory(tokenId)
		));
	}

	function random(string memory input) public pure returns (uint256) {
		return uint256(keccak256(abi.encodePacked(input))) % 31;
	}

	function pluckRoll(uint256 tokenId, string memory keyPrefix) internal pure returns (string memory) {
		uint256 roll1 = random(string(abi.encodePacked(keyPrefix, toString(tokenId), "1")));
		uint256 min = roll1;
		uint256 roll2 = random(string(abi.encodePacked(keyPrefix, toString(tokenId), "2")));
		min = min > roll2 ? roll2 : min;
		uint256 roll3 = random(string(abi.encodePacked(keyPrefix, toString(tokenId), "3")));
		min = min > roll3 ? roll3 : min;
		uint256 roll4 = random(string(abi.encodePacked(keyPrefix, toString(tokenId), "4")));
		min = min > roll4 ? roll4 : min;

		// get 3 highest dice rolls
		uint256 stat = roll1 * roll2 * roll3 + roll4 + roll3 - min;

		string memory output = string(abi.encodePacked(toString(stat)));

		return output;
	}

	function pluck(
		uint256 tokenId,
		string memory keyPrefix,
		string[] memory sourceArray,
		string[] memory prefixes
	) internal view returns (string memory) {
		uint256 randA = random(
			string(abi.encodePacked(keyPrefix, toString(tokenId*7)))
		);
		uint256 randB = random(
			string(abi.encodePacked(keyPrefix, toString(tokenId*4)))
		);

		string memory output = sourceArray[randA % sourceArray.length];
		output = string(
			abi.encodePacked(prefixes[randB % prefixes.length], " ", output)
		);

		string memory actual = string(abi.encodePacked(output));
		return actual;
	}

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

	function deposit() public payable onlyOwner {}


	function setLootersPrice(uint256 newPrice) public onlyOwner {
		lootersPrice = newPrice;
	}

	function setPublicPrice(uint256 newPrice) public onlyOwner {
		publicPrice = newPrice;
	}

	function setBaseURI(string memory baseURI) public onlyOwner {
		_setBaseURI(baseURI);
	}

	function setProvenance(string memory prov) public onlyOwner {
		PROVENANCE = prov;
	}

	// Loot owners minting
	function mintWithLoot(uint lootId) public payable nonReentrant {
		require(lootContract.ownerOf(lootId) == msg.sender, "This Loot is not owned by the minter");
		require(lootersPrice <= msg.value, "Not enough Ether sent");
		require(currentSupply < maxSupply, "All mounts are minted");
		_safeMint(msg.sender, currentSupply);
		currentSupply += 1;
	}

	// Public minting
	function mint() public payable nonReentrant {
		require(publicPrice <= msg.value, "Not enough Ether sent");
		require(currentSupply < maxSupply, "All mounts are minted");

		_safeMint(msg.sender, currentSupply);
		currentSupply += 1;
	}

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

	function tokenURI(uint256 tokenId) override public view returns (string memory) {
		string[9] memory parts;
		parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';

		parts[1] = getCreature(tokenId);

		parts[2] = '</text><text x="10" y="40" class="base">';

		parts[3] = getSaddle(tokenId);

		parts[4] = '</text><text x="10" y="60" class="base">';

		parts[5] = getEquipment(tokenId);

		parts[6] = '</text><text x="10" y="80" class="base">';

		parts[7] = getInventory(tokenId);

		parts[8] = '</text></svg>';

		string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
		//output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16]));

		string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Mount #', toString(tokenId), '", "description": "Welcome, weary traveler ! Which mounts will you pick to help you wander from realms to realms ?", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
		output = string(abi.encodePacked('data:application/json;base64,', json));

		return output;
	}
}

File 1 of 2: ERC721.sol
pragma solidity >=0.6.0 <0.8.0;
pragma experimental ABIEncoderV2;

abstract contract Context {
	function _msgSender() internal view virtual returns (address payable) {
		return msg.sender;
	}

	function _msgData() internal view virtual returns (bytes memory) {
		this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
		return msg.data;
	}
}

library Base64 {
	bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

	/// @notice Encodes some bytes to the base64 representation
	function encode(bytes memory data) internal pure returns (string memory) {
		uint256 len = data.length;
		if (len == 0) return "";

		// multiply by 4/3 rounded up
		uint256 encodedLen = 4 * ((len + 2) / 3);

		// Add some extra buffer at the end
		bytes memory result = new bytes(encodedLen + 32);

		bytes memory table = TABLE;

		assembly {
			let tablePtr := add(table, 1)
			let resultPtr := add(result, 32)

			for {
				let i := 0
			} lt(i, len) {

			} {
				i := add(i, 3)
				let input := and(mload(add(data, i)), 0xffffff)

				let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
				out := shl(8, out)
				out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
				out := shl(8, out)
				out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
				out := shl(8, out)
				out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
				out := shl(224, out)

				mstore(resultPtr, out)

				resultPtr := add(resultPtr, 4)
			}

			switch mod(len, 3)
			case 1 {
				mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
			}
			case 2 {
				mstore(sub(resultPtr, 1), shl(248, 0x3d))
			}

			mstore(result, encodedLen)
		}

		return string(result);
	}
}

interface LootInterface {
	function ownerOf(uint256 tokenId) external view returns (address owner);
}

abstract contract Ownable is Context {
	address private _owner;

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

	/**
	 * @dev Initializes the contract setting the deployer as the initial owner.
	 */
	constructor () internal {
		//address msgSender = _msgSender();
		_owner = 0x8Ce045fEbF4772070F1e983241763306889D14d3;
		//emit OwnershipTransferred(address(0), msgSender);
	}

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

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

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

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

abstract contract ReentrancyGuard {
	// Booleans are more expensive than uint256 or any type that takes up a full
	// word because each write operation emits an extra SLOAD to first read the
	// slot's contents, replace the bits taken up by the boolean, and then write
	// back. This is the compiler's defense against contract upgrades and
	// pointer aliasing, and it cannot be disabled.

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

	uint256 private _status;

	constructor() {
		_status = _NOT_ENTERED;
	}

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

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

		_;

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

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

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

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

library EnumerableMap {
	// To implement this library for multiple types with as little code
	// repetition as possible, we write it in terms of a generic Map type with
	// bytes32 keys and values.
	// The Map implementation uses private functions, and user-facing
	// implementations (such as Uint256ToAddressMap) are just wrappers around
	// the underlying Map.
	// This means that we can only create new EnumerableMaps for types that fit
	// in bytes32.

	struct MapEntry {
		bytes32 _key;
		bytes32 _value;
	}

	struct Map {
		// Storage of map keys and values
		MapEntry[] _entries;

		// Position of the entry defined by a key in the `entries` array, plus 1
		// because index 0 means a key is not in the map.
		mapping (bytes32 => uint256) _indexes;
	}

	/**
	 * @dev Adds a key-value pair to a map, or updates the value for an existing
	 * key. O(1).
	 *
	 * Returns true if the key was added to the map, that is if it was not
	 * already present.
	 */
	function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
		// We read and store the key's index to prevent multiple reads from the same storage slot
		uint256 keyIndex = map._indexes[key];

		if (keyIndex == 0) { // Equivalent to !contains(map, key)
			map._entries.push(MapEntry({ _key: key, _value: value }));
			// The entry is stored at length-1, but we add 1 to all indexes
			// and use 0 as a sentinel value
			map._indexes[key] = map._entries.length;
			return true;
		} else {
			map._entries[keyIndex - 1]._value = value;
			return false;
		}
	}

	/**
	 * @dev Removes a key-value pair from a map. O(1).
	 *
	 * Returns true if the key was removed from the map, that is if it was present.
	 */
	function _remove(Map storage map, bytes32 key) private returns (bool) {
		// We read and store the key's index to prevent multiple reads from the same storage slot
		uint256 keyIndex = map._indexes[key];

		if (keyIndex != 0) { // Equivalent to contains(map, key)
			// To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
			// in the array, and then remove the last entry (sometimes called as 'swap and pop').
			// This modifies the order of the array, as noted in {at}.

			uint256 toDeleteIndex = keyIndex - 1;
			uint256 lastIndex = map._entries.length - 1;

			// When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
			// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

			MapEntry storage lastEntry = map._entries[lastIndex];

			// Move the last entry to the index where the entry to delete is
			map._entries[toDeleteIndex] = lastEntry;
			// Update the index for the moved entry
			map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

			// Delete the slot where the moved entry was stored
			map._entries.pop();

			// Delete the index for the deleted slot
			delete map._indexes[key];

			return true;
		} else {
			return false;
		}
	}

	/**
	 * @dev Returns true if the key is in the map. O(1).
	 */
	function _contains(Map storage map, bytes32 key) private view returns (bool) {
		return map._indexes[key] != 0;
	}

	/**
	 * @dev Returns the number of key-value pairs in the map. O(1).
	 */
	function _length(Map storage map) private view returns (uint256) {
		return map._entries.length;
	}

	/**
	 * @dev Returns the key-value pair stored at position `index` in the map. O(1).
	 *
	 * Note that there are no guarantees on the ordering of entries inside the
	 * array, and it may change when more entries are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
		require(map._entries.length > index, "EnumerableMap: index out of bounds");

		MapEntry storage entry = map._entries[index];
		return (entry._key, entry._value);
	}

	/**
	 * @dev Tries to returns the value associated with `key`.  O(1).
	 * Does not revert if `key` is not in the map.
	 */
	function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
		uint256 keyIndex = map._indexes[key];
		if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
		return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
	}

	/**
	 * @dev Returns the value associated with `key`.  O(1).
	 *
	 * Requirements:
	 *
	 * - `key` must be in the map.
	 */
	function _get(Map storage map, bytes32 key) private view returns (bytes32) {
		uint256 keyIndex = map._indexes[key];
		require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
		return map._entries[keyIndex - 1]._value; // All indexes are 1-based
	}

	/**
	 * @dev Same as {_get}, with a custom error message when `key` is not in the map.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {_tryGet}.
	 */
	function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
		uint256 keyIndex = map._indexes[key];
		require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
		return map._entries[keyIndex - 1]._value; // All indexes are 1-based
	}

	// UintToAddressMap

	struct UintToAddressMap {
		Map _inner;
	}

	/**
	 * @dev Adds a key-value pair to a map, or updates the value for an existing
	 * key. O(1).
	 *
	 * Returns true if the key was added to the map, that is if it was not
	 * already present.
	 */
	function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
		return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the key was removed from the map, that is if it was present.
	 */
	function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
		return _remove(map._inner, bytes32(key));
	}

	/**
	 * @dev Returns true if the key is in the map. O(1).
	 */
	function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
		return _contains(map._inner, bytes32(key));
	}

	/**
	 * @dev Returns the number of elements in the map. O(1).
	 */
	function length(UintToAddressMap storage map) internal view returns (uint256) {
		return _length(map._inner);
	}

	/**
	 * @dev Returns the element stored at position `index` in the set. O(1).
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
		(bytes32 key, bytes32 value) = _at(map._inner, index);
		return (uint256(key), address(uint160(uint256(value))));
	}

	/**
	 * @dev Tries to returns the value associated with `key`.  O(1).
	 * Does not revert if `key` is not in the map.
	 *
	 * _Available since v3.4._
	 */
	function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
		(bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
		return (success, address(uint160(uint256(value))));
	}

	/**
	 * @dev Returns the value associated with `key`.  O(1).
	 *
	 * Requirements:
	 *
	 * - `key` must be in the map.
	 */
	function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
		return address(uint160(uint256(_get(map._inner, bytes32(key)))));
	}

	/**
	 * @dev Same as {get}, with a custom error message when `key` is not in the map.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryGet}.
	 */
	function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
		return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
	}
}

library EnumerableSet {
	// To implement this library for multiple types with as little code
	// repetition as possible, we write it in terms of a generic Set type with
	// bytes32 values.
	// The Set implementation uses private functions, and user-facing
	// implementations (such as AddressSet) are just wrappers around the
	// underlying Set.
	// This means that we can only create new EnumerableSets for types that fit
	// in bytes32.

	struct Set {
		// Storage of set values
		bytes32[] _values;

		// Position of the value in the `values` array, plus 1 because index 0
		// means a value is not in the set.
		mapping (bytes32 => uint256) _indexes;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function _add(Set storage set, bytes32 value) private returns (bool) {
		if (!_contains(set, value)) {
			set._values.push(value);
			// The value is stored at length-1, but we add 1 to all indexes
			// and use 0 as a sentinel value
			set._indexes[value] = set._values.length;
			return true;
		} else {
			return false;
		}
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function _remove(Set storage set, bytes32 value) private returns (bool) {
		// We read and store the value's index to prevent multiple reads from the same storage slot
		uint256 valueIndex = set._indexes[value];

		if (valueIndex != 0) { // Equivalent to contains(set, value)
			// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
			// the array, and then remove the last element (sometimes called as 'swap and pop').
			// This modifies the order of the array, as noted in {at}.

			uint256 toDeleteIndex = valueIndex - 1;
			uint256 lastIndex = set._values.length - 1;

			// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
			// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

			bytes32 lastvalue = set._values[lastIndex];

			// Move the last value to the index where the value to delete is
			set._values[toDeleteIndex] = lastvalue;
			// Update the index for the moved value
			set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

			// Delete the slot where the moved value was stored
			set._values.pop();

			// Delete the index for the deleted slot
			delete set._indexes[value];

			return true;
		} else {
			return false;
		}
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function _contains(Set storage set, bytes32 value) private view returns (bool) {
		return set._indexes[value] != 0;
	}

	/**
	 * @dev Returns the number of values on the set. O(1).
	 */
	function _length(Set storage set) private view returns (uint256) {
		return set._values.length;
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function _at(Set storage set, uint256 index) private view returns (bytes32) {
		require(set._values.length > index, "EnumerableSet: index out of bounds");
		return set._values[index];
	}

	// Bytes32Set

	struct Bytes32Set {
		Set _inner;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
		return _add(set._inner, value);
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
		return _remove(set._inner, value);
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
		return _contains(set._inner, value);
	}

	/**
	 * @dev Returns the number of values in the set. O(1).
	 */
	function length(Bytes32Set storage set) internal view returns (uint256) {
		return _length(set._inner);
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
		return _at(set._inner, index);
	}

	// AddressSet

	struct AddressSet {
		Set _inner;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function add(AddressSet storage set, address value) internal returns (bool) {
		return _add(set._inner, bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function remove(AddressSet storage set, address value) internal returns (bool) {
		return _remove(set._inner, bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function contains(AddressSet storage set, address value) internal view returns (bool) {
		return _contains(set._inner, bytes32(uint256(uint160(value))));
	}

	/**
	 * @dev Returns the number of values in the set. O(1).
	 */
	function length(AddressSet storage set) internal view returns (uint256) {
		return _length(set._inner);
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(AddressSet storage set, uint256 index) internal view returns (address) {
		return address(uint160(uint256(_at(set._inner, index))));
	}


	// UintSet

	struct UintSet {
		Set _inner;
	}

	/**
	 * @dev Add a value to a set. O(1).
	 *
	 * Returns true if the value was added to the set, that is if it was not
	 * already present.
	 */
	function add(UintSet storage set, uint256 value) internal returns (bool) {
		return _add(set._inner, bytes32(value));
	}

	/**
	 * @dev Removes a value from a set. O(1).
	 *
	 * Returns true if the value was removed from the set, that is if it was
	 * present.
	 */
	function remove(UintSet storage set, uint256 value) internal returns (bool) {
		return _remove(set._inner, bytes32(value));
	}

	/**
	 * @dev Returns true if the value is in the set. O(1).
	 */
	function contains(UintSet storage set, uint256 value) internal view returns (bool) {
		return _contains(set._inner, bytes32(value));
	}

	/**
	 * @dev Returns the number of values on the set. O(1).
	 */
	function length(UintSet storage set) internal view returns (uint256) {
		return _length(set._inner);
	}

	/**
	 * @dev Returns the value stored at position `index` in the set. O(1).
	 *
	 * Note that there are no guarantees on the ordering of values inside the
	 * array, and it may change when more values are added or removed.
	 *
	 * Requirements:
	 *
	 * - `index` must be strictly less than {length}.
	 */
	function at(UintSet storage set, uint256 index) internal view returns (uint256) {
		return uint256(_at(set._inner, index));
	}
}

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

		uint256 size;
		// solhint-disable-next-line no-inline-assembly
		assembly { size := extcodesize(account) }
		return size > 0;
	}

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

		// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
		(bool success, ) = recipient.call{ value: amount }("");
		require(success, "Address: unable to send value, recipient may have reverted");
	}

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

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

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

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

		// solhint-disable-next-line avoid-low-level-calls
		(bool success, bytes memory returndata) = target.call{ value: value }(data);
		return _verifyCallResult(success, returndata, errorMessage);
	}

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

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

		// solhint-disable-next-line avoid-low-level-calls
		(bool success, bytes memory returndata) = target.staticcall(data);
		return _verifyCallResult(success, returndata, errorMessage);
	}

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

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

		// solhint-disable-next-line avoid-low-level-calls
		(bool success, bytes memory returndata) = target.delegatecall(data);
		return _verifyCallResult(success, returndata, errorMessage);
	}

	function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
		if (success) {
			return returndata;
		} else {
			// Look for revert reason and bubble it up if present
			if (returndata.length > 0) {
				// The easiest way to bubble the revert reason is using memory via assembly

				// solhint-disable-next-line no-inline-assembly
				assembly {
					let returndata_size := mload(returndata)
					revert(add(32, returndata), returndata_size)
				}
			} else {
				revert(errorMessage);
			}
		}
	}
}

library SafeMath {
	/**
	 * @dev Returns the addition of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		uint256 c = a + b;
		if (c < a) return (false, 0);
		return (true, c);
	}

	/**
	 * @dev Returns the substraction of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b > a) return (false, 0);
		return (true, a - b);
	}

	/**
	 * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
		// benefit is lost if 'b' is also tested.
		// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
		if (a == 0) return (true, 0);
		uint256 c = a * b;
		if (c / a != b) return (false, 0);
		return (true, c);
	}

	/**
	 * @dev Returns the division of two unsigned integers, with a division by zero flag.
	 *
	 * _Available since v3.4._
	 */
	function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b == 0) return (false, 0);
		return (true, a / b);
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
	 *
	 * _Available since v3.4._
	 */
	function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b == 0) return (false, 0);
		return (true, a % b);
	}

	/**
	 * @dev Returns the addition of two unsigned integers, reverting on
	 * overflow.
	 *
	 * Counterpart to Solidity's `+` operator.
	 *
	 * Requirements:
	 *
	 * - Addition cannot overflow.
	 */
	function add(uint256 a, uint256 b) internal pure returns (uint256) {
		uint256 c = a + b;
		require(c >= a, "SafeMath: addition overflow");
		return c;
	}

	/**
	 * @dev Returns the subtraction of two unsigned integers, reverting on
	 * overflow (when the result is negative).
	 *
	 * Counterpart to Solidity's `-` operator.
	 *
	 * Requirements:
	 *
	 * - Subtraction cannot overflow.
	 */
	function sub(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b <= a, "SafeMath: subtraction overflow");
		return a - b;
	}

	/**
	 * @dev Returns the multiplication of two unsigned integers, reverting on
	 * overflow.
	 *
	 * Counterpart to Solidity's `*` operator.
	 *
	 * Requirements:
	 *
	 * - Multiplication cannot overflow.
	 */
	function mul(uint256 a, uint256 b) internal pure returns (uint256) {
		if (a == 0) return 0;
		uint256 c = a * b;
		require(c / a == b, "SafeMath: multiplication overflow");
		return c;
	}

	/**
	 * @dev Returns the integer division of two unsigned integers, reverting on
	 * division by zero. The result is rounded towards zero.
	 *
	 * Counterpart to Solidity's `/` operator. Note: this function uses a
	 * `revert` opcode (which leaves remaining gas untouched) while Solidity
	 * uses an invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function div(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b > 0, "SafeMath: division by zero");
		return a / b;
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	 * reverting when dividing by zero.
	 *
	 * Counterpart to Solidity's `%` operator. This function uses a `revert`
	 * opcode (which leaves remaining gas untouched) while Solidity uses an
	 * invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function mod(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b > 0, "SafeMath: modulo by zero");
		return a % b;
	}

	/**
	 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
	 * overflow (when the result is negative).
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {trySub}.
	 *
	 * Counterpart to Solidity's `-` operator.
	 *
	 * Requirements:
	 *
	 * - Subtraction cannot overflow.
	 */
	function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b <= a, errorMessage);
		return a - b;
	}

	/**
	 * @dev Returns the integer division of two unsigned integers, reverting with custom message on
	 * division by zero. The result is rounded towards zero.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryDiv}.
	 *
	 * Counterpart to Solidity's `/` operator. Note: this function uses a
	 * `revert` opcode (which leaves remaining gas untouched) while Solidity
	 * uses an invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b > 0, errorMessage);
		return a / b;
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	 * reverting with custom message when dividing by zero.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryMod}.
	 *
	 * Counterpart to Solidity's `%` operator. This function uses a `revert`
	 * opcode (which leaves remaining gas untouched) while Solidity uses an
	 * invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
		require(b > 0, errorMessage);
		return a % b;
	}
}

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);
}

abstract contract ERC165 is IERC165 {
	/*
	 * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
	 */
	bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

	/**
	 * @dev Mapping of interface ids to whether or not it's supported.
	 */
	mapping(bytes4 => bool) private _supportedInterfaces;

	constructor () internal {
		// Derived contracts need only register support for their own interfaces,
		// we register support for ERC165 itself here
		_registerInterface(_INTERFACE_ID_ERC165);
	}

	/**
	 * @dev See {IERC165-supportsInterface}.
	 *
	 * Time complexity O(1), guaranteed to always use less than 30 000 gas.
	 */
	function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
		return _supportedInterfaces[interfaceId];
	}

	/**
	 * @dev Registers the contract as an implementer of the interface defined by
	 * `interfaceId`. Support of the actual ERC165 interface is automatic and
	 * registering its interface id is not required.
	 *
	 * See {IERC165-supportsInterface}.
	 *
	 * Requirements:
	 *
	 * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
	 */
	function _registerInterface(bytes4 interfaceId) internal virtual {
		require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
		_supportedInterfaces[interfaceId] = true;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC721Enumerable is IERC721 {

	/**
	 * @dev Returns the total amount of tokens stored by the contract.
	 */
	function totalSupply() external view returns (uint256);

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

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

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);
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
	using SafeMath for uint256;
	using Address for address;
	using EnumerableSet for EnumerableSet.UintSet;
	using EnumerableMap for EnumerableMap.UintToAddressMap;
	using Strings for uint256;

	// Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
	// which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
	bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

	// Mapping from holder address to their (enumerable) set of owned tokens
	mapping (address => EnumerableSet.UintSet) private _holderTokens;

	// Enumerable mapping from token ids to their owners
	EnumerableMap.UintToAddressMap private _tokenOwners;

	// 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;

	// Token name
	string private _name;

	// Token symbol
	string private _symbol;

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

	// Base URI
	string private _baseURI;

	/*
	 *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
	 *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
	 *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
	 *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
	 *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
	 *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
	 *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
	 *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
	 *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
	 *
	 *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
	 *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
	 */
	bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

	/*
	 *     bytes4(keccak256('name()')) == 0x06fdde03
	 *     bytes4(keccak256('symbol()')) == 0x95d89b41
	 *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
	 *
	 *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
	 */
	bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

	/*
	 *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
	 *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
	 *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
	 *
	 *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
	 */
	bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

		// register the supported interfaces to conform to ERC721 via ERC165
		_registerInterface(_INTERFACE_ID_ERC721);
		_registerInterface(_INTERFACE_ID_ERC721_METADATA);
		_registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
	}

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

	/**
	 * @dev See {IERC721-ownerOf}.
	 */
	function ownerOf(uint256 tokenId) public view virtual override returns (address) {
		return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
	}

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

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

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

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

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

	/**
	* @dev Returns the base URI set via {_setBaseURI}. This will be
	* automatically added as a prefix in {tokenURI} to each token's URI, or
	* to the token ID if no specific URI is set for that token ID.
	*/
	function baseURI() public view virtual returns (string memory) {
		return _baseURI;
	}

	/**
	 * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
	 */
	function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
		return _holderTokens[owner].at(index);
	}

	/**
	 * @dev See {IERC721Enumerable-totalSupply}.
	 */
	function totalSupply() public view virtual override returns (uint256) {
		// _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
		return _tokenOwners.length();
	}

	/**
	 * @dev See {IERC721Enumerable-tokenByIndex}.
	 */
	function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
		(uint256 tokenId, ) = _tokenOwners.at(index);
		return tokenId;
	}

	/**
	 * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
			"ERC721: approve caller is not owner nor approved for all"
		);

		_approve(to, tokenId);
	}

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

		return _tokenApprovals[tokenId];
	}

	/**
	 * @dev See {IERC721-setApprovalForAll}.
	 */
	function setApprovalForAll(address operator, bool approved) public virtual override {
		require(operator != _msgSender(), "ERC721: approve to caller");

		_operatorApprovals[_msgSender()][operator] = approved;
		emit ApprovalForAll(_msgSender(), operator, approved);
	}

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

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

		_transfer(from, to, tokenId);
	}

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

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

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

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

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

	/**
	 * @dev Safely mints `tokenId` and transfers it to `to`.
	 *
	 * Requirements:
	 d*
	 * - `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);

		_holderTokens[to].add(tokenId);

		_tokenOwners.set(tokenId, to);

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

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

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

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

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

		_holderTokens[owner].remove(tokenId);

		_tokenOwners.remove(tokenId);

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

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

		_beforeTokenTransfer(from, to, tokenId);

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

		_holderTokens[from].remove(tokenId);
		_holderTokens[to].add(tokenId);

		_tokenOwners.set(tokenId, to);

		emit Transfer(from, to, tokenId);
	}

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

	/**
	 * @dev Internal function to set the base URI for all token IDs. It is
	 * automatically added as a prefix to the value returned in {tokenURI},
	 * or to the token ID if {tokenURI} is empty.
	 */
	function _setBaseURI(string memory baseURI_) internal virtual {
		_baseURI = baseURI_;
	}

	/**
	 * @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()) {
			return true;
		}
		bytes memory returndata = to.functionCall(abi.encodeWithSelector(
				IERC721Receiver(to).onERC721Received.selector,
				_msgSender(),
				from,
				tokenId,
				_data
			), "ERC721: transfer to non ERC721Receiver implementer");
		bytes4 retval = abi.decode(returndata, (bytes4));
		return (retval == _ERC721_RECEIVED);
	}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","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":"tokenId","type":"uint256"}],"name":"getCreature","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getEquipment","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFullDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getInventory","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSaddle","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootersPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lootId","type":"uint256"}],"name":"mintWithLoot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"input","type":"string"}],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setLootersPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prov","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicPrice","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600c80546001600160a01b031990811673ff9c1b15b16263c61d017ee9f65c50e4ae0113d71791829055600d80549091166001600160a01b039290921691909117905560a06040819052600060808190526200005e91600e9162000f62565b50611f40600f556000601055662386f26fc1000060115566470de4df820000601255604051806103e0016040528060405180604001604052806005815260200164486f72736560d81b815250815260200160405180604001604052806005815260200164486f72736560d81b815250815260200160405180604001604052806005815260200164486f72736560d81b815250815260200160405180604001604052806006815260200165223930b3b7b760d11b81525081526020016040518060400160405280600781526020016623b93cb33334b760c91b81525081526020016040518060400160405280600781526020016623b93cb33334b760c91b81525081526020016040518060400160405280600581526020016410d85b595b60da1b81525081526020016040518060400160405280600581526020016410d85b595b60da1b81525081526020016040518060400160405280600581526020016410d85b595b60da1b815250815260200160405180604001604052806005815260200164506f6e657960d81b815250815260200160405180604001604052806005815260200164506f6e657960d81b815250815260200160405180604001604052806005815260200164506f6e657960d81b815250815260200160405180604001604052806008815260200167115b195c1a185b9d60c21b815250815260200160405180604001604052806008815260200167115b195c1a185b9d60c21b815250815260200160405180604001604052806005815260200164121bdd5b9960da1b815250815260200160405180604001604052806005815260200164121bdd5b9960da1b815250815260200160405180604001604052806005815260200164121bdd5b9960da1b815250815260200160405180604001604052806005815260200164536861726b60d81b815250815260200160405180604001604052806005815260200164536861726b60d81b81525081526020016040518060400160405280600a8152602001692434b83837b3b93cb33360b11b81525081526020016040518060400160405280600a8152602001692434b83837b3b93cb33360b11b815250815260200160405180604001604052806004815260200163109d5b1b60e21b815250815260200160405180604001604052806004815260200163109d5b1b60e21b815250815260200160405180604001604052806004815260200163109d5b1b60e21b8152508152602001604051806040016040528060048152602001632132b0b960e11b8152508152602001604051806040016040528060048152602001632132b0b960e11b8152508152602001604051806040016040528060048152602001632132b0b960e11b81525081526020016040518060400160405280600781526020016609ee6e8e4d2c6d60cb1b81525081526020016040518060400160405280600781526020016609ee6e8e4d2c6d60cb1b815250815260200160405180604001604052806006815260200165446f6e6b657960d01b815250815260200160405180604001604052806006815260200165446f6e6b657960d01b815250815250601390601f620004ee92919062000ff7565b5060408051610340810182526005610300820181815264426c61636b60d81b61032084015282528251808401845281815264576869746560d81b6020828101919091528084019190915283518085018552600480825263426c756560e01b82840152848601919091528451808601865260038082526214995960ea1b828501526060860191909152855180870187528481526423b932b2b760d91b8185015260808601528551808701875260068082526529b4b63b32b960d11b8286015260a0870191909152865180880188528181526523b7b63232b760d11b8186015260c087015286518088018852600a815269436f75726167656f757360b01b8186015260e08701528651808801885281815265446976696e6560d01b818601526101008701528651808801885283815263486f6c7960e01b818601526101208701528651808801885260078082526644656d6f6e696360c81b828701526101408801919091528751808901895286815264596f756e6760d81b818701526101608801528751808901895290815266105b98da595b9d60ca1b818601526101808701528651808801885281815265446f63696c6560d01b818601526101a08701528651808801885285815264141c9bdd5960da1b818601526101c08701528651808801885283815263109bdb1960e21b818601526101e08701528651808801885281815265517569726b7960d01b818601526102008701528651808801885285815264427261766560d81b8186015261022087015286518088018852838152630a4c2e6d60e31b818601526102408701528651808801885281815265092dae0d2e6d60d31b818601526102608701528651808801885294855264145d5a595d60da1b8585015261028086019490945285518087018752938452654c6f6e656c7960d01b848401526102a0850193909352845180860186529283526249636560e81b838301526102c08401929092528351808501909452908352634669726560e01b908301526102e0810191909152620007e890601490601862001057565b506040805160608101825260066020820190815265736164646c6560d01b9282019290925290815262000820906015906001620010a9565b506040518061012001604052806040518060400160405280600f81526020016e47656e6572616c20707572706f736560881b815250815260200160405180604001604052806008815260200167447265737361676560c01b8152508152602001604051806040016040528060078152602001664a756d70696e6760c81b81525081526020016040518060400160405280600781526020016648756e74696e6760c81b815250815260200160405180604001604052806006815260200165526163696e6760d01b815250815260200160405180604001604052806006815260200165446f75626c6560d01b815250815260200160405180604001604052806009815260200168456e647572616e636560b81b815250815260200160405180604001604052806006815260200165526f70696e6760d01b8152508152602001604051806040016040528060078152602001662632b0ba3432b960c91b815250815250601690600962000992929190620010fb565b5060405180608001604052806040518060400160405280600681526020016512195b1b595d60d21b81525081526020016040518060400160405280600581526020016420b936b7b960d91b81525081526020016040518060400160405280600681526020016521b7b63630b960d11b8152508152602001604051806040016040528060078152602001664861726e65737360c81b815250815250601790600462000a3e9291906200114d565b50604080516102208101825260076101e0820190815266105b98da595b9d60ca1b61020083015281528151808301835260068082526523b7b63232b760d11b6020838101919091528084019290925283518085018552600580825264486561767960d81b82850152848601919091528451808601865281815264131a59da1d60da1b81850152606085015284518086018652600a815269223930b3b7b739b5b4b760b11b818501526080850152845180860186528181526421b430b4b760d91b8185015260a085015284518086018652828152654f726e61746560d01b8185015260c085015284518086018652818152645370696b7960d81b8185015260e085015284518086018652600480825263486f6c7960e01b82860152610100860191909152855180870187528381526529b4b63b32b960d11b81860152610120860152855180870187529182526411dc99585d60da1b82850152610140850191909152845180860186528281526542726f6e7a6560d01b81850152610160850152845180860186529081526324b937b760e11b81840152610180840152835180850185526008815267506c6174696e756d60c01b818401526101a08401528351808501909452835265556e686f6c7960d01b908301526101c081019190915262000c2b90601890600f6200119f565b50604080516101408101825260056101008201818152640e0deeac6d60db1b610120840152825282518084018452600381526262616760e81b602082810191909152808401919091528351808501855260078152661cd85d18da195b60ca1b81830152838501528351808501855291825264707572736560d81b828201526060830191909152825180840184526009815268736164646c6562616760b81b81830152608083015282518084018452600681526518985cdad95d60d21b8183015260a083015282518084018452600880825267736561742062616760c01b8284015260c08401919091528351808501909452600a8452697765646765207061636b60b01b9184019190915260e082019290925262000d4c9160199190620011f1565b506040805160e081018252600560a08201818152644c6172676560d81b60c08401528252825180840184528181526414db585b1b60da1b602082810191909152808401919091528351808501855260068152654d656469756d60d01b8183015283850152835180850185526009815268109bdd5b9d1a599d5b60ba1b818301526060840152835180850190945281845264456d70747960d81b90840152608082019290925262000e0091601a919062001243565b5034801562000e0e57600080fd5b50604080518082018252601881527f4d6f756e74732028666f7220416476656e747572657273290000000000000000602080830191909152825180840190935260058352641353d5539560da1b908301529062000e726301ffc9a760e01b62000f07565b815162000e8790600690602085019062000f62565b50805162000e9d90600790602084019062000f62565b5062000eb06380ac58cd60e01b62000f07565b62000ec2635b5e139f60e01b62000f07565b62000ed463780e9d6360e01b62000f07565b50506001600a55600b80546001600160a01b031916738ce045febf4772070f1e983241763306889d14d31790556200134f565b6001600160e01b0319808216141562000f3d5760405162461bcd60e51b815260040162000f349062001318565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000f9a576000855562000fe5565b82601f1062000fb557805160ff191683800117855562000fe5565b8280016001018555821562000fe5579182015b8281111562000fe557825182559160200191906001019062000fc8565b5062000ff392915062001295565b5090565b82805482825590600052602060002090810192821562001049579160200282015b828111156200104957825180516200103891849160209091019062000f62565b509160200191906001019062001018565b5062000ff3929150620012ac565b82805482825590600052602060002090810192821562001049579160200282015b828111156200104957825180516200109891849160209091019062000f62565b509160200191906001019062001078565b82805482825590600052602060002090810192821562001049579160200282015b82811115620010495782518051620010ea91849160209091019062000f62565b5091602001919060010190620010ca565b82805482825590600052602060002090810192821562001049579160200282015b828111156200104957825180516200113c91849160209091019062000f62565b50916020019190600101906200111c565b82805482825590600052602060002090810192821562001049579160200282015b828111156200104957825180516200118e91849160209091019062000f62565b50916020019190600101906200116e565b82805482825590600052602060002090810192821562001049579160200282015b82811115620010495782518051620011e091849160209091019062000f62565b5091602001919060010190620011c0565b82805482825590600052602060002090810192821562001049579160200282015b828111156200104957825180516200123291849160209091019062000f62565b509160200191906001019062001212565b82805482825590600052602060002090810192821562001049579160200282015b828111156200104957825180516200128491849160209091019062000f62565b509160200191906001019062001264565b5b8082111562000ff3576000815560010162001296565b8082111562000ff3576000620012c38282620012cd565b50600101620012ac565b50805460018160011615610100020316600290046000825580601f10620012f5575062001315565b601f01602090049060005260206000209081019062001315919062001295565b50565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6134cc806200135f6000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063c6275255116100ab578063f052d65a1161006f578063f052d65a14610620578063f2fde38b14610640578063f833900514610660578063fd12c96814610680578063ffe630b5146106935761023b565b8063c6275255146105a3578063c87b56dd146105c3578063d0e30db0146105e3578063d5abeb01146105eb578063e985e9c5146106005761023b565b80638da5cb5b116100f25780638da5cb5b1461052457806395d89b4114610539578063a22cb4651461054e578063a945bf801461056e578063b88d4fde146105835761023b565b80636c0360eb146104a557806370a08231146104ba578063715018a6146104da578063771282f6146104ef57806381dd2fa0146105045761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461041057806355f804b3146104305780635b298d32146104505780636352211e146104705780636373a6b1146104905761023b565b80632f745c59146103865780633ccfd60b146103a657806340aa75ac146103bb57806342842e0e146103db5780634a96974e146103fb5761023b565b80631249c58b116102035780631249c58b146102fc57806318160ddd1461030457806322b8d0441461032657806323b872dd146103465780632e22de9f146103665761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c55780630e439326146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b36600461286f565b6106b3565b60405161026d9190612ca6565b60405180910390f35b34801561028257600080fd5b5061028b6106d6565b60405161026d9190612cb1565b3480156102a457600080fd5b506102b86102b33660046128ed565b61076c565b60405161026d9190612c55565b3480156102d157600080fd5b506102e56102e0366004612844565b6107b8565b005b3480156102f357600080fd5b506102b8610850565b6102e561085f565b34801561031057600080fd5b506103196108e9565b60405161026d9190613226565b34801561033257600080fd5b506103196103413660046128a7565b6108fa565b34801561035257600080fd5b506102e5610361366004612756565b610936565b34801561037257600080fd5b506102e56103813660046128ed565b61096e565b34801561039257600080fd5b506103196103a1366004612844565b6109b2565b3480156103b257600080fd5b506102e56109dd565b3480156103c757600080fd5b5061028b6103d63660046128ed565b610a4f565b3480156103e757600080fd5b506102e56103f6366004612756565b610a9e565b34801561040757600080fd5b50610319610ab9565b34801561041c57600080fd5b5061031961042b3660046128ed565b610abf565b34801561043c57600080fd5b506102e561044b3660046128a7565b610ad5565b34801561045c57600080fd5b5061028b61046b3660046128ed565b610b20565b34801561047c57600080fd5b506102b861048b3660046128ed565b610cef565b34801561049c57600080fd5b5061028b610d17565b3480156104b157600080fd5b5061028b610da5565b3480156104c657600080fd5b506103196104d53660046126e6565b610e06565b3480156104e657600080fd5b506102e5610e4f565b3480156104fb57600080fd5b50610319610ed8565b34801561051057600080fd5b5061028b61051f3660046128ed565b610ede565b34801561053057600080fd5b506102b86110a4565b34801561054557600080fd5b5061028b6110b3565b34801561055a57600080fd5b506102e5610569366004612813565b611114565b34801561057a57600080fd5b506103196111e2565b34801561058f57600080fd5b506102e561059e366004612796565b6111e8565b3480156105af57600080fd5b506102e56105be3660046128ed565b611227565b3480156105cf57600080fd5b5061028b6105de3660046128ed565b61126b565b6102e5611413565b3480156105f757600080fd5b50610319611454565b34801561060c57600080fd5b5061026061061b36600461271e565b61145a565b34801561062c57600080fd5b5061028b61063b3660046128ed565b611488565b34801561064c57600080fd5b506102e561065b3660046126e6565b61164d565b34801561066c57600080fd5b5061028b61067b3660046128ed565b61170e565b6102e561068e3660046128ed565b6118d1565b34801561069f57600080fd5b506102e56106ae3660046128a7565b611a02565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b600061077782611a54565b61079c5760405162461bcd60e51b815260040161079390613018565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107c382610cef565b9050806001600160a01b0316836001600160a01b031614156107f75760405162461bcd60e51b815260040161079390613126565b806001600160a01b0316610809611a61565b6001600160a01b0316148061082557506108258161061b611a61565b6108415760405162461bcd60e51b815260040161079390612efa565b61084b8383611a65565b505050565b600c546001600160a01b031681565b6002600a5414156108825760405162461bcd60e51b8152600401610793906131ef565b6002600a556012543410156108a95760405162461bcd60e51b815260040161079390612d06565b600f54601054106108cc5760405162461bcd60e51b815260040161079390612e04565b6108d833601054611ad3565b601080546001908101909155600a55565b60006108f56002611aed565b905090565b6000601f8260405160200161090f9190612931565b6040516020818303038152906040528051906020012060001c8161092f57fe5b0692915050565b610947610941611a61565b82611af8565b6109635760405162461bcd60e51b815260040161079390613167565b61084b838383611b7d565b610976611a61565b6001600160a01b03166109876110a4565b6001600160a01b0316146109ad5760405162461bcd60e51b815260040161079390613064565b601155565b6001600160a01b03821660009081526001602052604081206109d49083611c8b565b90505b92915050565b6109e5611a61565b6001600160a01b03166109f66110a4565b6001600160a01b031614610a1c5760405162461bcd60e51b815260040161079390613064565b6040514790339082156108fc029083906000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b6060610a5a82611488565b610a638361170e565b610a6c84610ede565b610a7585610b20565b604051602001610a889493929190612a79565b6040516020818303038152906040529050919050565b61084b838383604051806020016040528060008152506111e8565b60115481565b600080610acd600284611c97565b509392505050565b610add611a61565b6001600160a01b0316610aee6110a4565b6001600160a01b031614610b145760405162461bcd60e51b815260040161079390613064565b610b1d81611cb3565b50565b60606109d78260405180604001604052806009815260200168496e76656e746f727960b81b8152506019805480602002602001604051908101604052809291908181526020016000905b82821015610c155760008481526020908190208301805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815292830182828015610c015780601f10610bd657610100808354040283529160200191610c01565b820191906000526020600020905b815481529060010190602001808311610be457829003601f168201915b505050505081526020019060010190610b6a565b50505050601a805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815292830182828015610cd25780601f10610ca757610100808354040283529160200191610cd2565b820191906000526020600020905b815481529060010190602001808311610cb557829003601f168201915b505050505081526020019060010190610c3b565b50505050611cc6565b60006109d7826040518060600160405280602981526020016134066029913960029190611da8565b600e805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d9d5780601f10610d7257610100808354040283529160200191610d9d565b820191906000526020600020905b815481529060010190602001808311610d8057829003601f168201915b505050505081565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107625780601f1061073757610100808354040283529160200191610762565b60006001600160a01b038216610e2e5760405162461bcd60e51b815260040161079390612f57565b6001600160a01b03821660009081526001602052604090206109d790611aed565b610e57611a61565b6001600160a01b0316610e686110a4565b6001600160a01b031614610e8e5760405162461bcd60e51b815260040161079390613064565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b60105481565b60606109d78260405180604001604052806009815260200168115c5d5a5c1b595b9d60ba1b8152506017805480602002602001604051908101604052809291908181526020016000905b82821015610fd35760008481526020908190208301805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815292830182828015610fbf5780601f10610f9457610100808354040283529160200191610fbf565b820191906000526020600020905b815481529060010190602001808311610fa257829003601f168201915b505050505081526020019060010190610f28565b505050506018805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156110905780601f1061106557610100808354040283529160200191611090565b820191906000526020600020905b81548152906001019060200180831161107357829003601f168201915b505050505081526020019060010190610ff9565b600b546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107625780601f1061073757610100808354040283529160200191610762565b61111c611a61565b6001600160a01b0316826001600160a01b0316141561114d5760405162461bcd60e51b815260040161079390612e77565b806005600061115a611a61565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561119e611a61565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d69190612ca6565b60405180910390a35050565b60125481565b6111f96111f3611a61565b83611af8565b6112155760405162461bcd60e51b815260040161079390613167565b61122184848484611dbf565b50505050565b61122f611a61565b6001600160a01b03166112406110a4565b6001600160a01b0316146112665760405162461bcd60e51b815260040161079390613064565b601255565b60606112756125b9565b60405180610120016040528060fd815260200161330960fd9139815261129a83611488565b816001602002018190525060405180606001604052806028815260200161346f6028913960408201526112cc8361170e565b6060808301919091526040805191820190526028808252613287602083013960808201526112f983610ede565b60a0820152604080516060810190915260288082526132e1602083013960c082015261132483610b20565b60e082015260408051808201909152600d81526c1e17ba32bc3a1f1e17b9bb339f60991b6020820152816008602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b0151965160009a61139a9a9998910161297c565b604051602081830303815290604052905060006113e76113b986611df2565b6113c284611ebc565b6040516020016113d3929190612af3565b604051602081830303815290604052611ebc565b9050806040516020016113fa9190612c10565b60408051808303601f1901815291905295945050505050565b61141b611a61565b6001600160a01b031661142c6110a4565b6001600160a01b0316146114525760405162461bcd60e51b815260040161079390613064565b565b600f5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60606109d78260405180604001604052806008815260200167437265617475726560c01b8152506013805480602002602001604051908101604052809291908181526020016000905b8282101561157c5760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b5050505050815260200190600101906114d1565b505050506014805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156116395780601f1061160e57610100808354040283529160200191611639565b820191906000526020600020905b81548152906001019060200180831161161c57829003601f168201915b5050505050815260200190600101906115a2565b611655611a61565b6001600160a01b03166116666110a4565b6001600160a01b03161461168c5760405162461bcd60e51b815260040161079390613064565b6001600160a01b0381166116b25760405162461bcd60e51b815260040161079390612d87565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606109d78260405180604001604052806006815260200165536164646c6560d01b8152506015805480602002602001604051908101604052809291908181526020016000905b828210156118005760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156117ec5780601f106117c1576101008083540402835291602001916117ec565b820191906000526020600020905b8154815290600101906020018083116117cf57829003601f168201915b505050505081526020019060010190611755565b505050506016805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b505050505081526020019060010190611826565b6002600a5414156118f45760405162461bcd60e51b8152600401610793906131ef565b6002600a55600d546040516331a9108f60e11b815233916001600160a01b031690636352211e90611929908590600401613226565b60206040518083038186803b15801561194157600080fd5b505afa158015611955573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119799190612702565b6001600160a01b03161461199f5760405162461bcd60e51b8152600401610793906130e2565b3460115411156119c15760405162461bcd60e51b815260040161079390612d06565b600f54601054106119e45760405162461bcd60e51b815260040161079390612e04565b6119f033601054611ad3565b50601080546001908101909155600a55565b611a0a611a61565b6001600160a01b0316611a1b6110a4565b6001600160a01b031614611a415760405162461bcd60e51b815260040161079390613064565b8051610a4b90600e9060208401906125e1565b60006109d7600283611ffe565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9a82610cef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610a4b82826040518060200160405280600081525061200a565b60006109d78261203d565b6000611b0382611a54565b611b1f5760405162461bcd60e51b815260040161079390612eae565b6000611b2a83610cef565b9050806001600160a01b0316846001600160a01b03161480611b655750836001600160a01b0316611b5a8461076c565b6001600160a01b0316145b80611b755750611b75818561145a565b949350505050565b826001600160a01b0316611b9082610cef565b6001600160a01b031614611bb65760405162461bcd60e51b815260040161079390613099565b6001600160a01b038216611bdc5760405162461bcd60e51b815260040161079390612e33565b611be783838361084b565b611bf2600082611a65565b6001600160a01b0383166000908152600160205260409020611c149082612041565b506001600160a01b0382166000908152600160205260409020611c37908261204d565b50611c4460028284612059565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006109d4838361206f565b6000808080611ca686866120b4565b9097909650945050505050565b8051610a4b9060099060208401906125e1565b60606000611cff85611cda88600702611df2565b604051602001611ceb92919061294d565b6040516020818303038152906040526108fa565b90506000611d1386611cda89600402611df2565b905060008586518481611d2257fe5b0681518110611d2d57fe5b602002602001015190508485518381611d4257fe5b0681518110611d4d57fe5b602002602001015181604051602001611d67929190612a3d565b6040516020818303038152906040529050600081604051602001611d8b9190612931565b60408051808303601f190181529190529998505050505050505050565b6000611db5848484612110565b90505b9392505050565b611dca848484611b7d565b611dd68484848461216f565b6112215760405162461bcd60e51b815260040161079390612d35565b606081611e1757506040805180820190915260018152600360fc1b60208201526106d1565b8160005b8115611e2f57600101600a82049150611e1b565b60008167ffffffffffffffff81118015611e4857600080fd5b506040519080825280601f01601f191660200182016040528015611e73576020820181803683370190505b5090505b8415611b755760001990910190600a850660300160f81b818381518110611e9a57fe5b60200101906001600160f81b031916908160001a905350600a85049450611e77565b805160609080611edc5750506040805160208101909152600081526106d1565b6004600360028301040260006020820167ffffffffffffffff81118015611f0257600080fd5b506040519080825280601f01601f191660200182016040528015611f2d576020820181803683370190505b509050600060405180606001604052806040815260200161342f604091399050600181016020830160005b86811015611fb9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611f58565b506003860660018114611fd35760028114611fe457611ff0565b613d3d60f01b600119830152611ff0565b603d60f81b6000198301525b505050918152949350505050565b60006109d4838361224e565b6120148383612266565b612021600084848461216f565b61084b5760405162461bcd60e51b815260040161079390612d35565b5490565b60006109d4838361232a565b60006109d483836123f0565b6000611db584846001600160a01b03851661243a565b815460009082106120925760405162461bcd60e51b815260040161079390612cc4565b8260000182815481106120a157fe5b9060005260206000200154905092915050565b8154600090819083106120d95760405162461bcd60e51b815260040161079390612fa1565b60008460000184815481106120ea57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816121405760405162461bcd60e51b81526004016107939190612cb1565b5084600001600182038154811061215357fe5b9060005260206000209060020201600101549150509392505050565b6000612183846001600160a01b03166124d1565b61218f57506001611b75565b6000612217630a85bd0160e11b6121a4611a61565b8887876040516024016121ba9493929190612c69565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016132af603291396001600160a01b03881691906124d7565b905060008180602001905181019061222f919061288b565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6001600160a01b03821661228c5760405162461bcd60e51b815260040161079390612fe3565b61229581611a54565b156122b25760405162461bcd60e51b815260040161079390612dcd565b6122be6000838361084b565b6001600160a01b03821660009081526001602052604090206122e0908261204d565b506122ed60028284612059565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260018301602052604081205480156123e6578354600019808301919081019060009087908390811061235d57fe5b906000526020600020015490508087600001848154811061237a57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806123aa57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506109d7565b60009150506109d7565b60006123fc838361224e565b612432575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109d7565b5060006109d7565b60008281526001840160205260408120548061249f575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611db8565b828560000160018303815481106124b257fe5b9060005260206000209060020201600101819055506000915050611db8565b3b151590565b6060611db58484600085856124eb856124d1565b6125075760405162461bcd60e51b8152600401610793906131b8565b600080866001600160a01b031685876040516125239190612931565b60006040518083038185875af1925050503d8060008114612560576040519150601f19603f3d011682016040523d82523d6000602084013e612565565b606091505b5091509150612575828286612580565b979650505050505050565b6060831561258f575081611db8565b82511561259f5782518084602001fd5b8160405162461bcd60e51b81526004016107939190612cb1565b6040518061012001604052806009905b60608152602001906001900390816125c95790505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612617576000855561265d565b82601f1061263057805160ff191683800117855561265d565b8280016001018555821561265d579182015b8281111561265d578251825591602001919060010190612642565b5061266992915061266d565b5090565b5b80821115612669576000815560010161266e565b600067ffffffffffffffff8084111561269757fe5b604051601f8501601f1916810160200182811182821017156126b557fe5b6040528481529150818385018610156126cd57600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156126f7578081fd5b8135611db88161325b565b600060208284031215612713578081fd5b8151611db88161325b565b60008060408385031215612730578081fd5b823561273b8161325b565b9150602083013561274b8161325b565b809150509250929050565b60008060006060848603121561276a578081fd5b83356127758161325b565b925060208401356127858161325b565b929592945050506040919091013590565b600080600080608085870312156127ab578081fd5b84356127b68161325b565b935060208501356127c68161325b565b925060408501359150606085013567ffffffffffffffff8111156127e8578182fd5b8501601f810187136127f8578182fd5b61280787823560208401612682565b91505092959194509250565b60008060408385031215612825578182fd5b82356128308161325b565b91506020830135801515811461274b578182fd5b60008060408385031215612856578182fd5b82356128618161325b565b946020939093013593505050565b600060208284031215612880578081fd5b8135611db881613270565b60006020828403121561289c578081fd5b8151611db881613270565b6000602082840312156128b8578081fd5b813567ffffffffffffffff8111156128ce578182fd5b8201601f810184136128de578182fd5b611b7584823560208401612682565b6000602082840312156128fe578081fd5b5035919050565b6000815180845261291d81602086016020860161322f565b601f01601f19169290920160200192915050565b6000825161294381846020870161322f565b9190910192915050565b6000835161295f81846020880161322f565b83519083019061297381836020880161322f565b01949350505050565b60008a5161298e818460208f0161322f565b8a516129a08183860160208f0161322f565b8a5191840101906129b5818360208e0161322f565b89516129c78183850160208e0161322f565b89519290910101906129dd818360208c0161322f565b87516129ef8183850160208c0161322f565b8751929091010190612a05818360208a0161322f565b8551612a178183850160208a0161322f565b8551929091010190612a2d81836020880161322f565b019b9a5050505050505050505050565b60008351612a4f81846020880161322f565b600160fd1b9083019081528351612a6d81600184016020880161322f565b01600101949350505050565b60008551612a8b818460208a0161322f565b80830190506201015960ed1b8082528651612aad816003850160208b0161322f565b600392019182018190528551612aca816006850160208a0161322f565b60069201918201528351612ae581600984016020880161322f565b016009019695505050505050565b707b226e616d65223a20224d6f756e74202360781b81528251600090612b2081601185016020880161322f565b7f222c20226465736372697074696f6e223a202257656c636f6d652c20776561726011918401918201527f792074726176656c65722021205768696368206d6f756e74732077696c6c207960318201527f6f75207069636b20746f2068656c7020796f752077616e6465722066726f6d2060518201527f7265616c6d7320746f207265616c6d73203f222c2022696d616765223a20226460718201527f6174613a696d6167652f7376672b786d6c3b6261736536342c0000000000000060918201528351612bf58160aa84016020880161322f565b61227d60f01b60aa929091019182015260ac01949350505050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251612c4881601d85016020870161322f565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c9c90830184612905565b9695505050505050565b901515815260200190565b6000602082526109d46020830184612905565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260159082015274105b1b081b5bdd5b9d1cc8185c99481b5a5b9d1959605a1b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526024908201527f54686973204c6f6f74206973206e6f74206f776e656420627920746865206d69604082015263373a32b960e11b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60005b8381101561324a578181015183820152602001613232565b838111156112215750506000910152565b6001600160a01b0381168114610b1d57600080fd5b6001600160e01b031981168114610b1d57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465723c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220fece8027ee660ad05a7cf5e4a20196c33b8cbd333abfe43bf4569b5d94180fca64736f6c63430007060033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063c6275255116100ab578063f052d65a1161006f578063f052d65a14610620578063f2fde38b14610640578063f833900514610660578063fd12c96814610680578063ffe630b5146106935761023b565b8063c6275255146105a3578063c87b56dd146105c3578063d0e30db0146105e3578063d5abeb01146105eb578063e985e9c5146106005761023b565b80638da5cb5b116100f25780638da5cb5b1461052457806395d89b4114610539578063a22cb4651461054e578063a945bf801461056e578063b88d4fde146105835761023b565b80636c0360eb146104a557806370a08231146104ba578063715018a6146104da578063771282f6146104ef57806381dd2fa0146105045761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461041057806355f804b3146104305780635b298d32146104505780636352211e146104705780636373a6b1146104905761023b565b80632f745c59146103865780633ccfd60b146103a657806340aa75ac146103bb57806342842e0e146103db5780634a96974e146103fb5761023b565b80631249c58b116102035780631249c58b146102fc57806318160ddd1461030457806322b8d0441461032657806323b872dd146103465780632e22de9f146103665761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c55780630e439326146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b36600461286f565b6106b3565b60405161026d9190612ca6565b60405180910390f35b34801561028257600080fd5b5061028b6106d6565b60405161026d9190612cb1565b3480156102a457600080fd5b506102b86102b33660046128ed565b61076c565b60405161026d9190612c55565b3480156102d157600080fd5b506102e56102e0366004612844565b6107b8565b005b3480156102f357600080fd5b506102b8610850565b6102e561085f565b34801561031057600080fd5b506103196108e9565b60405161026d9190613226565b34801561033257600080fd5b506103196103413660046128a7565b6108fa565b34801561035257600080fd5b506102e5610361366004612756565b610936565b34801561037257600080fd5b506102e56103813660046128ed565b61096e565b34801561039257600080fd5b506103196103a1366004612844565b6109b2565b3480156103b257600080fd5b506102e56109dd565b3480156103c757600080fd5b5061028b6103d63660046128ed565b610a4f565b3480156103e757600080fd5b506102e56103f6366004612756565b610a9e565b34801561040757600080fd5b50610319610ab9565b34801561041c57600080fd5b5061031961042b3660046128ed565b610abf565b34801561043c57600080fd5b506102e561044b3660046128a7565b610ad5565b34801561045c57600080fd5b5061028b61046b3660046128ed565b610b20565b34801561047c57600080fd5b506102b861048b3660046128ed565b610cef565b34801561049c57600080fd5b5061028b610d17565b3480156104b157600080fd5b5061028b610da5565b3480156104c657600080fd5b506103196104d53660046126e6565b610e06565b3480156104e657600080fd5b506102e5610e4f565b3480156104fb57600080fd5b50610319610ed8565b34801561051057600080fd5b5061028b61051f3660046128ed565b610ede565b34801561053057600080fd5b506102b86110a4565b34801561054557600080fd5b5061028b6110b3565b34801561055a57600080fd5b506102e5610569366004612813565b611114565b34801561057a57600080fd5b506103196111e2565b34801561058f57600080fd5b506102e561059e366004612796565b6111e8565b3480156105af57600080fd5b506102e56105be3660046128ed565b611227565b3480156105cf57600080fd5b5061028b6105de3660046128ed565b61126b565b6102e5611413565b3480156105f757600080fd5b50610319611454565b34801561060c57600080fd5b5061026061061b36600461271e565b61145a565b34801561062c57600080fd5b5061028b61063b3660046128ed565b611488565b34801561064c57600080fd5b506102e561065b3660046126e6565b61164d565b34801561066c57600080fd5b5061028b61067b3660046128ed565b61170e565b6102e561068e3660046128ed565b6118d1565b34801561069f57600080fd5b506102e56106ae3660046128a7565b611a02565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b600061077782611a54565b61079c5760405162461bcd60e51b815260040161079390613018565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107c382610cef565b9050806001600160a01b0316836001600160a01b031614156107f75760405162461bcd60e51b815260040161079390613126565b806001600160a01b0316610809611a61565b6001600160a01b0316148061082557506108258161061b611a61565b6108415760405162461bcd60e51b815260040161079390612efa565b61084b8383611a65565b505050565b600c546001600160a01b031681565b6002600a5414156108825760405162461bcd60e51b8152600401610793906131ef565b6002600a556012543410156108a95760405162461bcd60e51b815260040161079390612d06565b600f54601054106108cc5760405162461bcd60e51b815260040161079390612e04565b6108d833601054611ad3565b601080546001908101909155600a55565b60006108f56002611aed565b905090565b6000601f8260405160200161090f9190612931565b6040516020818303038152906040528051906020012060001c8161092f57fe5b0692915050565b610947610941611a61565b82611af8565b6109635760405162461bcd60e51b815260040161079390613167565b61084b838383611b7d565b610976611a61565b6001600160a01b03166109876110a4565b6001600160a01b0316146109ad5760405162461bcd60e51b815260040161079390613064565b601155565b6001600160a01b03821660009081526001602052604081206109d49083611c8b565b90505b92915050565b6109e5611a61565b6001600160a01b03166109f66110a4565b6001600160a01b031614610a1c5760405162461bcd60e51b815260040161079390613064565b6040514790339082156108fc029083906000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b6060610a5a82611488565b610a638361170e565b610a6c84610ede565b610a7585610b20565b604051602001610a889493929190612a79565b6040516020818303038152906040529050919050565b61084b838383604051806020016040528060008152506111e8565b60115481565b600080610acd600284611c97565b509392505050565b610add611a61565b6001600160a01b0316610aee6110a4565b6001600160a01b031614610b145760405162461bcd60e51b815260040161079390613064565b610b1d81611cb3565b50565b60606109d78260405180604001604052806009815260200168496e76656e746f727960b81b8152506019805480602002602001604051908101604052809291908181526020016000905b82821015610c155760008481526020908190208301805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815292830182828015610c015780601f10610bd657610100808354040283529160200191610c01565b820191906000526020600020905b815481529060010190602001808311610be457829003601f168201915b505050505081526020019060010190610b6a565b50505050601a805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815292830182828015610cd25780601f10610ca757610100808354040283529160200191610cd2565b820191906000526020600020905b815481529060010190602001808311610cb557829003601f168201915b505050505081526020019060010190610c3b565b50505050611cc6565b60006109d7826040518060600160405280602981526020016134066029913960029190611da8565b600e805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d9d5780601f10610d7257610100808354040283529160200191610d9d565b820191906000526020600020905b815481529060010190602001808311610d8057829003601f168201915b505050505081565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107625780601f1061073757610100808354040283529160200191610762565b60006001600160a01b038216610e2e5760405162461bcd60e51b815260040161079390612f57565b6001600160a01b03821660009081526001602052604090206109d790611aed565b610e57611a61565b6001600160a01b0316610e686110a4565b6001600160a01b031614610e8e5760405162461bcd60e51b815260040161079390613064565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b60105481565b60606109d78260405180604001604052806009815260200168115c5d5a5c1b595b9d60ba1b8152506017805480602002602001604051908101604052809291908181526020016000905b82821015610fd35760008481526020908190208301805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815292830182828015610fbf5780601f10610f9457610100808354040283529160200191610fbf565b820191906000526020600020905b815481529060010190602001808311610fa257829003601f168201915b505050505081526020019060010190610f28565b505050506018805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156110905780601f1061106557610100808354040283529160200191611090565b820191906000526020600020905b81548152906001019060200180831161107357829003601f168201915b505050505081526020019060010190610ff9565b600b546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107625780601f1061073757610100808354040283529160200191610762565b61111c611a61565b6001600160a01b0316826001600160a01b0316141561114d5760405162461bcd60e51b815260040161079390612e77565b806005600061115a611a61565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561119e611a61565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d69190612ca6565b60405180910390a35050565b60125481565b6111f96111f3611a61565b83611af8565b6112155760405162461bcd60e51b815260040161079390613167565b61122184848484611dbf565b50505050565b61122f611a61565b6001600160a01b03166112406110a4565b6001600160a01b0316146112665760405162461bcd60e51b815260040161079390613064565b601255565b60606112756125b9565b60405180610120016040528060fd815260200161330960fd9139815261129a83611488565b816001602002018190525060405180606001604052806028815260200161346f6028913960408201526112cc8361170e565b6060808301919091526040805191820190526028808252613287602083013960808201526112f983610ede565b60a0820152604080516060810190915260288082526132e1602083013960c082015261132483610b20565b60e082015260408051808201909152600d81526c1e17ba32bc3a1f1e17b9bb339f60991b6020820152816008602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b0151965160009a61139a9a9998910161297c565b604051602081830303815290604052905060006113e76113b986611df2565b6113c284611ebc565b6040516020016113d3929190612af3565b604051602081830303815290604052611ebc565b9050806040516020016113fa9190612c10565b60408051808303601f1901815291905295945050505050565b61141b611a61565b6001600160a01b031661142c6110a4565b6001600160a01b0316146114525760405162461bcd60e51b815260040161079390613064565b565b600f5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60606109d78260405180604001604052806008815260200167437265617475726560c01b8152506013805480602002602001604051908101604052809291908181526020016000905b8282101561157c5760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b5050505050815260200190600101906114d1565b505050506014805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156116395780601f1061160e57610100808354040283529160200191611639565b820191906000526020600020905b81548152906001019060200180831161161c57829003601f168201915b5050505050815260200190600101906115a2565b611655611a61565b6001600160a01b03166116666110a4565b6001600160a01b03161461168c5760405162461bcd60e51b815260040161079390613064565b6001600160a01b0381166116b25760405162461bcd60e51b815260040161079390612d87565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606109d78260405180604001604052806006815260200165536164646c6560d01b8152506015805480602002602001604051908101604052809291908181526020016000905b828210156118005760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156117ec5780601f106117c1576101008083540402835291602001916117ec565b820191906000526020600020905b8154815290600101906020018083116117cf57829003601f168201915b505050505081526020019060010190611755565b505050506016805480602002602001604051908101604052809291908181526020016000905b82821015610ce65760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b505050505081526020019060010190611826565b6002600a5414156118f45760405162461bcd60e51b8152600401610793906131ef565b6002600a55600d546040516331a9108f60e11b815233916001600160a01b031690636352211e90611929908590600401613226565b60206040518083038186803b15801561194157600080fd5b505afa158015611955573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119799190612702565b6001600160a01b03161461199f5760405162461bcd60e51b8152600401610793906130e2565b3460115411156119c15760405162461bcd60e51b815260040161079390612d06565b600f54601054106119e45760405162461bcd60e51b815260040161079390612e04565b6119f033601054611ad3565b50601080546001908101909155600a55565b611a0a611a61565b6001600160a01b0316611a1b6110a4565b6001600160a01b031614611a415760405162461bcd60e51b815260040161079390613064565b8051610a4b90600e9060208401906125e1565b60006109d7600283611ffe565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9a82610cef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610a4b82826040518060200160405280600081525061200a565b60006109d78261203d565b6000611b0382611a54565b611b1f5760405162461bcd60e51b815260040161079390612eae565b6000611b2a83610cef565b9050806001600160a01b0316846001600160a01b03161480611b655750836001600160a01b0316611b5a8461076c565b6001600160a01b0316145b80611b755750611b75818561145a565b949350505050565b826001600160a01b0316611b9082610cef565b6001600160a01b031614611bb65760405162461bcd60e51b815260040161079390613099565b6001600160a01b038216611bdc5760405162461bcd60e51b815260040161079390612e33565b611be783838361084b565b611bf2600082611a65565b6001600160a01b0383166000908152600160205260409020611c149082612041565b506001600160a01b0382166000908152600160205260409020611c37908261204d565b50611c4460028284612059565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006109d4838361206f565b6000808080611ca686866120b4565b9097909650945050505050565b8051610a4b9060099060208401906125e1565b60606000611cff85611cda88600702611df2565b604051602001611ceb92919061294d565b6040516020818303038152906040526108fa565b90506000611d1386611cda89600402611df2565b905060008586518481611d2257fe5b0681518110611d2d57fe5b602002602001015190508485518381611d4257fe5b0681518110611d4d57fe5b602002602001015181604051602001611d67929190612a3d565b6040516020818303038152906040529050600081604051602001611d8b9190612931565b60408051808303601f190181529190529998505050505050505050565b6000611db5848484612110565b90505b9392505050565b611dca848484611b7d565b611dd68484848461216f565b6112215760405162461bcd60e51b815260040161079390612d35565b606081611e1757506040805180820190915260018152600360fc1b60208201526106d1565b8160005b8115611e2f57600101600a82049150611e1b565b60008167ffffffffffffffff81118015611e4857600080fd5b506040519080825280601f01601f191660200182016040528015611e73576020820181803683370190505b5090505b8415611b755760001990910190600a850660300160f81b818381518110611e9a57fe5b60200101906001600160f81b031916908160001a905350600a85049450611e77565b805160609080611edc5750506040805160208101909152600081526106d1565b6004600360028301040260006020820167ffffffffffffffff81118015611f0257600080fd5b506040519080825280601f01601f191660200182016040528015611f2d576020820181803683370190505b509050600060405180606001604052806040815260200161342f604091399050600181016020830160005b86811015611fb9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611f58565b506003860660018114611fd35760028114611fe457611ff0565b613d3d60f01b600119830152611ff0565b603d60f81b6000198301525b505050918152949350505050565b60006109d4838361224e565b6120148383612266565b612021600084848461216f565b61084b5760405162461bcd60e51b815260040161079390612d35565b5490565b60006109d4838361232a565b60006109d483836123f0565b6000611db584846001600160a01b03851661243a565b815460009082106120925760405162461bcd60e51b815260040161079390612cc4565b8260000182815481106120a157fe5b9060005260206000200154905092915050565b8154600090819083106120d95760405162461bcd60e51b815260040161079390612fa1565b60008460000184815481106120ea57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816121405760405162461bcd60e51b81526004016107939190612cb1565b5084600001600182038154811061215357fe5b9060005260206000209060020201600101549150509392505050565b6000612183846001600160a01b03166124d1565b61218f57506001611b75565b6000612217630a85bd0160e11b6121a4611a61565b8887876040516024016121ba9493929190612c69565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016132af603291396001600160a01b03881691906124d7565b905060008180602001905181019061222f919061288b565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6001600160a01b03821661228c5760405162461bcd60e51b815260040161079390612fe3565b61229581611a54565b156122b25760405162461bcd60e51b815260040161079390612dcd565b6122be6000838361084b565b6001600160a01b03821660009081526001602052604090206122e0908261204d565b506122ed60028284612059565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260018301602052604081205480156123e6578354600019808301919081019060009087908390811061235d57fe5b906000526020600020015490508087600001848154811061237a57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806123aa57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506109d7565b60009150506109d7565b60006123fc838361224e565b612432575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109d7565b5060006109d7565b60008281526001840160205260408120548061249f575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611db8565b828560000160018303815481106124b257fe5b9060005260206000209060020201600101819055506000915050611db8565b3b151590565b6060611db58484600085856124eb856124d1565b6125075760405162461bcd60e51b8152600401610793906131b8565b600080866001600160a01b031685876040516125239190612931565b60006040518083038185875af1925050503d8060008114612560576040519150601f19603f3d011682016040523d82523d6000602084013e612565565b606091505b5091509150612575828286612580565b979650505050505050565b6060831561258f575081611db8565b82511561259f5782518084602001fd5b8160405162461bcd60e51b81526004016107939190612cb1565b6040518061012001604052806009905b60608152602001906001900390816125c95790505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612617576000855561265d565b82601f1061263057805160ff191683800117855561265d565b8280016001018555821561265d579182015b8281111561265d578251825591602001919060010190612642565b5061266992915061266d565b5090565b5b80821115612669576000815560010161266e565b600067ffffffffffffffff8084111561269757fe5b604051601f8501601f1916810160200182811182821017156126b557fe5b6040528481529150818385018610156126cd57600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156126f7578081fd5b8135611db88161325b565b600060208284031215612713578081fd5b8151611db88161325b565b60008060408385031215612730578081fd5b823561273b8161325b565b9150602083013561274b8161325b565b809150509250929050565b60008060006060848603121561276a578081fd5b83356127758161325b565b925060208401356127858161325b565b929592945050506040919091013590565b600080600080608085870312156127ab578081fd5b84356127b68161325b565b935060208501356127c68161325b565b925060408501359150606085013567ffffffffffffffff8111156127e8578182fd5b8501601f810187136127f8578182fd5b61280787823560208401612682565b91505092959194509250565b60008060408385031215612825578182fd5b82356128308161325b565b91506020830135801515811461274b578182fd5b60008060408385031215612856578182fd5b82356128618161325b565b946020939093013593505050565b600060208284031215612880578081fd5b8135611db881613270565b60006020828403121561289c578081fd5b8151611db881613270565b6000602082840312156128b8578081fd5b813567ffffffffffffffff8111156128ce578182fd5b8201601f810184136128de578182fd5b611b7584823560208401612682565b6000602082840312156128fe578081fd5b5035919050565b6000815180845261291d81602086016020860161322f565b601f01601f19169290920160200192915050565b6000825161294381846020870161322f565b9190910192915050565b6000835161295f81846020880161322f565b83519083019061297381836020880161322f565b01949350505050565b60008a5161298e818460208f0161322f565b8a516129a08183860160208f0161322f565b8a5191840101906129b5818360208e0161322f565b89516129c78183850160208e0161322f565b89519290910101906129dd818360208c0161322f565b87516129ef8183850160208c0161322f565b8751929091010190612a05818360208a0161322f565b8551612a178183850160208a0161322f565b8551929091010190612a2d81836020880161322f565b019b9a5050505050505050505050565b60008351612a4f81846020880161322f565b600160fd1b9083019081528351612a6d81600184016020880161322f565b01600101949350505050565b60008551612a8b818460208a0161322f565b80830190506201015960ed1b8082528651612aad816003850160208b0161322f565b600392019182018190528551612aca816006850160208a0161322f565b60069201918201528351612ae581600984016020880161322f565b016009019695505050505050565b707b226e616d65223a20224d6f756e74202360781b81528251600090612b2081601185016020880161322f565b7f222c20226465736372697074696f6e223a202257656c636f6d652c20776561726011918401918201527f792074726176656c65722021205768696368206d6f756e74732077696c6c207960318201527f6f75207069636b20746f2068656c7020796f752077616e6465722066726f6d2060518201527f7265616c6d7320746f207265616c6d73203f222c2022696d616765223a20226460718201527f6174613a696d6167652f7376672b786d6c3b6261736536342c0000000000000060918201528351612bf58160aa84016020880161322f565b61227d60f01b60aa929091019182015260ac01949350505050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251612c4881601d85016020870161322f565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c9c90830184612905565b9695505050505050565b901515815260200190565b6000602082526109d46020830184612905565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260159082015274105b1b081b5bdd5b9d1cc8185c99481b5a5b9d1959605a1b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526024908201527f54686973204c6f6f74206973206e6f74206f776e656420627920746865206d69604082015263373a32b960e11b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60005b8381101561324a578181015183820152602001613232565b838111156112215750506000910152565b6001600160a01b0381168114610b1d57600080fd5b6001600160e01b031981168114610b1d57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465723c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220fece8027ee660ad05a7cf5e4a20196c33b8cbd333abfe43bf4569b5d94180fca64736f6c63430007060033

Deployed Bytecode Sourcemap

130:7052:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36248:139:0;;;;;;;;;;-1:-1:-1;36248:139:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45802:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48210:202::-;;;;;;;;;;-1:-1:-1;48210:202:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47808:353::-;;;;;;;;;;-1:-1:-1;47808:353:0;;;;;:::i;:::-;;:::i;:::-;;277:71:1;;;;;;;;;;;;;:::i;5136:236::-;;;:::i;47356:193:0:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2729:130:1:-;;;;;;;;;;-1:-1:-1;2729:130:1;;;;;:::i;:::-;;:::i;48993:279:0:-;;;;;;;;;;-1:-1:-1;48993:279:0;;;;;:::i;:::-;;:::i;4375:91:1:-;;;;;;;;;;-1:-1:-1;4375:91:1;;;;;:::i;:::-;;:::i;47146:151:0:-;;;;;;;;;;-1:-1:-1;47146:151:0;;;;;:::i;:::-;;:::i;4209:113:1:-;;;;;;;;;;;;;:::i;2481:245::-;;;;;;;;;;-1:-1:-1;2481:245:1;;;;;:::i;:::-;;:::i;49326:140:0:-;;;;;;;;;;-1:-1:-1;49326:140:0;;;;;:::i;:::-;;:::i;513:47:1:-;;;;;;;;;;;;;:::i;47609:154:0:-;;;;;;;;;;-1:-1:-1;47609:154:0;;;;;:::i;:::-;;:::i;4561:88:1:-;;;;;;;;;;-1:-1:-1;4561:88:1;;;;;:::i;:::-;;:::i;2333:145::-;;;;;;;;;;-1:-1:-1;2333:145:1;;;;;:::i;:::-;;:::i;45586:166:0:-;;;;;;;;;;-1:-1:-1;45586:166:0;;;;;:::i;:::-;;:::i;410:29:1:-;;;;;;;;;;;;;:::i;46993:86:0:-;;;;;;;;;;;;;:::i;45338:203::-;;;;;;;;;;-1:-1:-1;45338:203:0;;;;;:::i;:::-;;:::i;2958:130::-;;;;;;;;;;;;;:::i;477:32:1:-;;;;;;;;;;;;;:::i;2185:145::-;;;;;;;;;;-1:-1:-1;2185:145:1;;;;;:::i;:::-;;:::i;2386:76:0:-;;;;;;;;;;;;;:::i;45943:93::-;;;;;;;;;;;;;:::i;48467:269::-;;;;;;;;;;-1:-1:-1;48467:269:0;;;;;:::i;:::-;;:::i;575:46:1:-;;;;;;;;;;;;;:::i;49520:267:0:-;;;;;;;;;;-1:-1:-1;49520:267:0;;;;;:::i;:::-;;:::i;4469:89:1:-;;;;;;;;;;-1:-1:-1;4469:89:1;;;;;:::i;:::-;;:::i;5776:1404::-;;;;;;;;;;-1:-1:-1;5776:1404:1;;;;;:::i;:::-;;:::i;4325:46::-;;;:::i;443:31::-;;;;;;;;;;;;;:::i;48790:153:0:-;;;;;;;;;;-1:-1:-1;48790:153:0;;;;;:::i;:::-;;:::i;1905:141:1:-;;;;;;;;;;-1:-1:-1;1905:141:1;;;;;:::i;:::-;;:::i;3222:219:0:-;;;;;;;;;;-1:-1:-1;3222:219:0;;;;;:::i;:::-;;:::i;2049:133:1:-;;;;;;;;;;-1:-1:-1;2049:133:1;;;;;:::i;:::-;;:::i;4764:350::-;;;;;;:::i;:::-;;:::i;4652:85::-;;;;;;;;;;-1:-1:-1;4652:85:1;;;;;:::i;:::-;;:::i;36248:139:0:-;-1:-1:-1;;;;;;36350:33:0;;36333:4;36350:33;;;;;;;;;;;;;36248:139;;;;:::o;45802:89::-;45882:5;45875:12;;;;;;;;-1:-1:-1;;45875:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45856:13;;45875:12;;45882:5;;45875:12;;45882:5;45875:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45802:89;:::o;48210:202::-;48286:7;48307:16;48315:7;48307;:16::i;:::-;48299:73;;;;-1:-1:-1;;;48299:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;48384:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48384:24:0;;48210:202::o;47808:353::-;47882:13;47898:23;47913:7;47898:14;:23::i;:::-;47882:39;;47939:5;-1:-1:-1;;;;;47933:11:0;:2;-1:-1:-1;;;;;47933:11:0;;;47925:57;;;;-1:-1:-1;;;47925:57:0;;;;;;;:::i;:::-;48011:5;-1:-1:-1;;;;;47995:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;47995:21:0;;:69;;;;48020:44;48044:5;48051:12;:10;:12::i;48020:44::-;47987:144;;;;-1:-1:-1;;;47987:144:0;;;;;;;:::i;:::-;48136:21;48145:2;48149:7;48136:8;:21::i;:::-;47808:353;;;:::o;277:71:1:-;;;-1:-1:-1;;;;;277:71:1;;:::o;5136:236::-;4280:1:0;4808:7;;:19;;4800:63;;;;-1:-1:-1;;;4800:63:0;;;;;;;:::i;:::-;4280:1;4926:7;:18;5192:11:1::1;::::0;5207:9:::1;-1:-1:-1::0;5192:24:1::1;5184:58;;;;-1:-1:-1::0;;;5184:58:1::1;;;;;;;:::i;:::-;5270:9;;5254:13;;:25;5246:59;;;;-1:-1:-1::0;;;5246:59:1::1;;;;;;;:::i;:::-;5310:36;5320:10;5332:13;;5310:9;:36::i;:::-;5350:13;:18:::0;;5367:1:::1;5350:18:::0;;::::1;::::0;;;5075:7:0;:22;5136:236:1:o;47356:193:0:-;47417:7;47524:21;:12;:19;:21::i;:::-;47517:28;;47356:193;:::o;2729:130:1:-;2787:7;2853:2;2842:5;2825:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;2815:34;;;;;;2807:43;;:48;;;;;;;2729:130;-1:-1:-1;;2729:130:1:o;48993:279:0:-;49140:41;49159:12;:10;:12::i;:::-;49173:7;49140:18;:41::i;:::-;49132:103;;;;-1:-1:-1;;;49132:103:0;;;;;;;:::i;:::-;49240:28;49250:4;49256:2;49260:7;49240:9;:28::i;4375:91:1:-;2582:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;4439:12:1::1;:23:::0;4375:91::o;47146:151:0:-;-1:-1:-1;;;;;47263:20:0;;47243:7;47263:20;;;:13;:20;;;;;:30;;47287:5;47263:23;:30::i;:::-;47256:37;;47146:151;;;;;:::o;4209:113:1:-;2582:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;4290:28:1::1;::::0;4265:21:::1;::::0;4290:10:::1;::::0;:28;::::1;;;::::0;4265:21;;4250:12:::1;4290:28:::0;4250:12;4290:28;4265:21;4290:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2635:1:0;4209:113:1:o:0;2481:245::-;2547:13;2601:20;2613:7;2601:11;:20::i;:::-;2633:18;2643:7;2633:9;:18::i;:::-;2663:21;2676:7;2663:12;:21::i;:::-;2696;2709:7;2696:12;:21::i;:::-;2580:141;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2566:156;;2481:245;;;:::o;49326:140:0:-;49423:39;49440:4;49446:2;49450:7;49423:39;;;;;;;;;;;;:16;:39::i;513:47:1:-;;;;:::o;47609:154:0:-;47684:7;;47719:22;:12;47735:5;47719:15;:22::i;:::-;-1:-1:-1;47697:44:0;47609:154;-1:-1:-1;;;47609:154:0:o;4561:88:1:-;2582:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;4625:20:1::1;4637:7;4625:11;:20::i;:::-;4561:88:::0;:::o;2333:145::-;2393:13;2419:55;2425:7;2419:55;;;;;;;;;;;;;-1:-1:-1;;;2419:55:1;;;2447:9;2419:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2419:55:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2458:15;2419:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2419:55:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:55::i;45586:166:0:-;45658:7;45678:70;45695:7;45678:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;410:29:1:-;;;;;;;;;;;;;;;-1:-1:-1;;410:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46993:86:0:-;47067:8;47060:15;;;;;;;;-1:-1:-1;;47060:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47041:13;;47060:15;;47067:8;;47060:15;;47067:8;47060:15;;;;;;;;;;;;;;;;;;;;;;;;45338:203;45410:7;-1:-1:-1;;;;;45431:19:0;;45423:74;;;;-1:-1:-1;;;45423:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45508:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;2958:130::-;2582:12;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;3042:6:::1;::::0;3021:40:::1;::::0;3058:1:::1;::::0;-1:-1:-1;;;;;3042:6:0::1;::::0;3021:40:::1;::::0;3058:1;;3021:40:::1;3065:6;:19:::0;;-1:-1:-1;;;;;;3065:19:0::1;::::0;;2958:130::o;477:32:1:-;;;;:::o;2185:145::-;2245:13;2271:55;2277:7;2271:55;;;;;;;;;;;;;-1:-1:-1;;;2271:55:1;;;2299:9;2271:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2271:55:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:15;2271:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2271:55:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2386:76:0;2452:6;;-1:-1:-1;;;;;2452:6:0;2386:76;:::o;45943:93::-;46025:7;46018:14;;;;;;;;-1:-1:-1;;46018:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45999:13;;46018:14;;46025:7;;46018:14;;46025:7;46018:14;;;;;;;;;;;;;;;;;;;;;;;;48467:269;48575:12;:10;:12::i;:::-;-1:-1:-1;;;;;48563:24:0;:8;-1:-1:-1;;;;;48563:24:0;;;48555:62;;;;-1:-1:-1;;;48555:62:0;;;;;;;:::i;:::-;48667:8;48622:18;:32;48641:12;:10;:12::i;:::-;-1:-1:-1;;;;;48622:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;48622:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;48622:53:0;;;;;;;;;;;48699:12;:10;:12::i;:::-;-1:-1:-1;;;;;48684:48:0;;48723:8;48684:48;;;;;;:::i;:::-;;;;;;;;48467:269;;:::o;575:46:1:-;;;;:::o;49520:267:0:-;49645:41;49664:12;:10;:12::i;:::-;49678:7;49645:18;:41::i;:::-;49637:103;;;;-1:-1:-1;;;49637:103:0;;;;;;;:::i;:::-;49744:39;49758:4;49764:2;49768:7;49777:5;49744:13;:39::i;:::-;49520:267;;;;:::o;4469:89:1:-;2582:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;4532:11:1::1;:22:::0;4469:89::o;5776:1404::-;5841:13;5860:22;;:::i;:::-;5886:266;;;;;;;;;;;;;;;;;;;6168:20;6180:7;6168:11;:20::i;:::-;6157:5;6163:1;6157:8;;;:31;;;;6193:53;;;;;;;;;;;;;;;;;:8;;;:53;6262:18;6272:7;6262:9;:18::i;:::-;6251:8;;;;:29;;;;6285:53;;;;;;;;;;;;;6251:8;6285:53;;;:8;;;:53;6354:21;6367:7;6354:12;:21::i;:::-;6343:8;;;:32;6380:53;;;;;;;;;;;;;;6343:8;6380:53;;;:8;;;:53;6449:21;6462:7;6449:12;:21::i;:::-;6438:8;;;:32;6475:26;;;;;;;;;;;;-1:-1:-1;;;6438:8:1;6475:26;;;6438:5;6481:1;6475:8;;;;;;;;:26;;;;6553:8;;6563;;;;6573;;;;;6583;;;;6593;;;;6603;;;;6613;;;;6623;;;;6633;;;;6536:106;;6506:20;;6536:106;;6553:8;6563;6633;6536:106;;:::i;:::-;;;;;;;;;;;;;6506:137;;6782:18;6803:279;6868:17;6877:7;6868:8;:17::i;:::-;7044:28;7064:6;7044:13;:28::i;:::-;6830:249;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6803:13;:279::i;:::-;6782:300;;7152:4;7102:55;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;7102:55:1;;;;;;;5776:1404;-1:-1:-1;;;;;5776:1404:1:o;4325:46::-;2582:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;4325:46:1:o;443:31::-;;;;:::o;48790:153:0:-;-1:-1:-1;;;;;48904:25:0;;;48887:4;48904:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48790:153::o;1905:141:1:-;1964:13;1990:52;1996:7;1990:52;;;;;;;;;;;;;-1:-1:-1;;;1990:52:1;;;2017:8;1990:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1990:52:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2027:14;1990:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1990:52:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3222:219:0;2582:12;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3304:22:0;::::1;3296:73;;;;-1:-1:-1::0;;;3296:73:0::1;;;;;;;:::i;:::-;3399:6;::::0;3378:38:::1;::::0;-1:-1:-1;;;;;3378:38:0;;::::1;::::0;3399:6:::1;::::0;3378:38:::1;::::0;3399:6:::1;::::0;3378:38:::1;3420:6;:17:::0;;-1:-1:-1;;;;;;3420:17:0::1;-1:-1:-1::0;;;;;3420:17:0;;;::::1;::::0;;;::::1;::::0;;3222:219::o;2049:133:1:-;2106:13;2132:46;2138:7;2132:46;;;;;;;;;;;;;-1:-1:-1;;;2132:46:1;;;2157:6;2132:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2132:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2165:12;2132:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2132:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4764:350;4280:1:0;4808:7;;:19;;4800:63;;;;-1:-1:-1;;;4800:63:0;;;;;;;:::i;:::-;4280:1;4926:7;:18;4839:12:1::1;::::0;:28:::1;::::0;-1:-1:-1;;;4839:28:1;;4871:10:::1;::::0;-1:-1:-1;;;;;4839:12:1::1;::::0;:20:::1;::::0;:28:::1;::::0;4860:6;;4839:28:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4839:42:1::1;;4831:91;;;;-1:-1:-1::0;;;4831:91:1::1;;;;;;;:::i;:::-;4950:9;4934:12;;:25;;4926:59;;;;-1:-1:-1::0;;;4926:59:1::1;;;;;;;:::i;:::-;5013:9;;4997:13;;:25;4989:59;;;;-1:-1:-1::0;;;4989:59:1::1;;;;;;;:::i;:::-;5052:36;5062:10;5074:13;;5052:9;:36::i;:::-;-1:-1:-1::0;5092:13:1::1;:18:::0;;5109:1:::1;5092:18:::0;;::::1;::::0;;;5075:7:0;:22;4764:350:1:o;4652:85::-;2582:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;2571:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2571:23:0;;2563:68;;;;-1:-1:-1;;;2563:68:0;;;;;;;:::i;:::-;4716:17:1;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;51122:116:0:-:0;51187:4;51204:30;:12;51226:7;51204:21;:30::i;96:95::-;177:10;96:95;:::o;56348:174::-;56416:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56416:29:0;-1:-1:-1;;;;;56416:29:0;;;;;;;;:24;;56463:23;56416:24;56463:14;:23::i;:::-;-1:-1:-1;;;;;56454:46:0;;;;;;;;;;;56348:174;;:::o;52000:99::-;52069:26;52079:2;52083:7;52069:26;;;;;;;;;;;;:9;:26::i;12737:112::-;12806:7;12826:19;12834:3;12826:7;:19::i;51372:330::-;51465:4;51483:16;51491:7;51483;:16::i;:::-;51475:73;;;;-1:-1:-1;;;51475:73:0;;;;;;;:::i;:::-;51552:13;51568:23;51583:7;51568:14;:23::i;:::-;51552:39;;51614:5;-1:-1:-1;;;;;51603:16:0;:7;-1:-1:-1;;;;;51603:16:0;;:51;;;;51647:7;-1:-1:-1;;;;;51623:31:0;:20;51635:7;51623:11;:20::i;:::-;-1:-1:-1;;;;;51623:31:0;;51603:51;:94;;;;51658:39;51682:5;51689:7;51658:23;:39::i;:::-;51595:103;51372:330;-1:-1:-1;;;;51372:330:0:o;54101:527::-;54219:4;-1:-1:-1;;;;;54192:31:0;:23;54207:7;54192:14;:23::i;:::-;-1:-1:-1;;;;;54192:31:0;;54184:85;;;;-1:-1:-1;;;54184:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54299:16:0;;54291:65;;;;-1:-1:-1;;;54291:65:0;;;;;;;:::i;:::-;54361:39;54382:4;54388:2;54392:7;54361:20;:39::i;:::-;54450:29;54467:1;54471:7;54450:8;:29::i;:::-;-1:-1:-1;;;;;54484:19:0;;;;;;:13;:19;;;;;:35;;54511:7;54484:26;:35::i;:::-;-1:-1:-1;;;;;;54523:17:0;;;;;;:13;:17;;;;;:30;;54545:7;54523:21;:30::i;:::-;-1:-1:-1;54558:29:0;:12;54575:7;54584:2;54558:16;:29::i;:::-;;54616:7;54612:2;-1:-1:-1;;;;;54597:27:0;54606:4;-1:-1:-1;;;;;54597:27:0;;;;;;;;;;;54101:527;;;:::o;22117:126::-;22188:7;22216:22;22220:3;22232:5;22216:3;:22::i;13156:218::-;13236:7;;;;13289:22;13293:3;13305:5;13289:3;:22::i;:::-;13258:53;;;;-1:-1:-1;13156:218:0;-1:-1:-1;;;;;13156:218:0:o;55153:89::-;55219:19;;;;:8;;:19;;;;;:::i;3623:583:1:-;3769:13;3788;3804:71;3839:9;3850:19;3859:7;3867:1;3859:9;3850:8;:19::i;:::-;3822:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3804:6;:71::i;:::-;3788:87;;3879:13;3895:71;3930:9;3941:19;3950:7;3958:1;3950:9;3941:8;:19::i;3895:71::-;3879:87;;3971:20;3994:11;4014;:18;4006:5;:26;;;;;;3994:39;;;;;;;;;;;;;;3971:62;;4074:8;4091;:15;4083:5;:23;;;;;;4074:33;;;;;;;;;;;;;;4114:6;4057:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4037:88;;4130:20;4177:6;4160:24;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;4160:24:1;;;;;;;3623:583;-1:-1:-1;;;;;;;;;3623:583:1:o;14304:202:0:-;14411:7;14455:44;14460:3;14480;14486:12;14455:4;:44::i;:::-;14447:53;-1:-1:-1;14304:202:0;;;;;;:::o;50592:254::-;50699:28;50709:4;50715:2;50719:7;50699:9;:28::i;:::-;50739:48;50762:4;50768:2;50772:7;50781:5;50739:22;:48::i;:::-;50731:111;;;;-1:-1:-1;;;50731:111:0;;;;;;;:::i;5375:398:1:-;5431:13;5454:10;5450:36;;-1:-1:-1;5471:10:1;;;;;;;;;;;;-1:-1:-1;;;5471:10:1;;;;;;5450:36;5504:5;5489:12;5531:51;5538:9;;5531:51;;5554:8;;5575:2;5567:10;;;;5531:51;;;5585:19;5617:6;5607:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5607:17:1;;5585:39;;5628:117;5635:10;;5628:117;;-1:-1:-1;;5652:11:1;;;;5719:2;5711:5;:10;5698:2;:24;5685:39;;5668:6;5675;5668:14;;;;;;;;;;;:56;-1:-1:-1;;;;;5668:56:1;;;;;;;;-1:-1:-1;5738:2:1;5729:11;;;;5628:117;;594:1206:0;685:11;;652:13;;704:8;700:23;;-1:-1:-1;;714:9:0;;;;;;;;;-1:-1:-1;714:9:0;;;;700:23;781:1;798;793;787:7;;786:13;781:19;760:18;888:2;875:15;;865:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;865:26:0;;843:48;;896:18;917:5;;;;;;;;;;;;;;;;;896:26;;968:1;961:5;957:13;1003:2;995:6;991:15;1030:1;1011:574;1043:3;1040:1;1037:10;1011:574;;;1074:1;1104:12;;;;;1098:19;1185:4;1173:2;1169:14;;;;;1151:40;;1145:47;1268:2;1264:14;;;1260:25;;1246:40;;1240:47;1371:1;1367:13;;;1363:24;;1349:39;;1343:46;1465:16;;;;1451:31;;1445:38;1208:1;1204:11;;;1289:4;1236:58;;;1227:68;1307:11;;1339:57;;;1330:67;;;;1409:11;;1441:49;;1432:59;1507:3;1503:13;1522:22;;1578:1;1563:17;;;;1067:9;1011:574;;;1015:21;1606:1;1601:3;1597:11;1617:1;1612:61;;;;1682:1;1677:59;;;;1590:146;;1612:61;-1:-1:-1;;;;;1632:17:0;;1625:43;1612:61;;1677:59;-1:-1:-1;;;;;1697:17:0;;1690:41;1590:146;-1:-1:-1;;;1741:26:0;;;;594:1206;-1:-1:-1;;;;594:1206:0:o;12526:140::-;12610:4;12627:35;12637:3;12657;12627:9;:35::i;52305:232::-;52394:18;52400:2;52404:7;52394:5;:18::i;:::-;52424:54;52455:1;52459:2;52463:7;52472:5;52424:22;:54::i;:::-;52416:117;;;;-1:-1:-1;;;52416:117:0;;;;;;;:::i;9692:99::-;9768:19;;9692:99::o;21306:126::-;21376:4;21393:35;21401:3;21421:5;21393:7;:35::i;21039:120::-;21106:4;21123:32;21128:3;21148:5;21123:4;:32::i;12013:174::-;12102:4;12119:64;12124:3;12144;-1:-1:-1;;;;;12158:23:0;;12119:4;:64::i;17772:186::-;17860:18;;17839:7;;17860:26;-1:-1:-1;17852:73:0;;;;-1:-1:-1;;;17852:73:0;;;;;;;:::i;:::-;17936:3;:11;;17948:5;17936:18;;;;;;;;;;;;;;;;17929:25;;17772:186;;;;:::o;10111:253::-;10208:19;;10178:7;;;;10208:27;-1:-1:-1;10200:74:0;;;;-1:-1:-1;;;10200:74:0;;;;;;;:::i;:::-;10279:22;10304:3;:12;;10317:5;10304:19;;;;;;;;;;;;;;;;;;10279:44;;10335:5;:10;;;10347:5;:12;;;10327:33;;;;;10111:253;;;;;:::o;11449:294::-;11543:7;11575:17;;;:12;;;:17;;;;;;11619:12;11604:13;11596:36;;;;-1:-1:-1;;;11596:36:0;;;;;;;;:::i;:::-;;11679:3;:12;;11703:1;11692:8;:12;11679:26;;;;;;;;;;;;;;;;;;:33;;;11672:40;;;11449:294;;;;;:::o;55762:492::-;55875:4;55891:15;:2;-1:-1:-1;;;;;55891:13:0;;:15::i;:::-;55886:43;;-1:-1:-1;55920:4:0;55913:11;;55886:43;55932:23;55958:201;-1:-1:-1;;;56053:12:0;:10;:12::i;:::-;56071:4;56081:7;56094:5;55974:130;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;55974:130:0;;;;;;;-1:-1:-1;;;;;55974:130:0;;;;;;;;;;;55958:201;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55958:15:0;;;:201;:15;:201::i;:::-;55932:227;;56163:13;56190:10;56179:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;56223:26:0;-1:-1:-1;;;56223:26:0;;-1:-1:-1;;;55762:492:0;;;;;;:::o;9500:114::-;9571:4;9588:17;;;:12;;;;;:17;;;;;;:22;;;9500:114::o;52820:354::-;-1:-1:-1;;;;;52893:16:0;;52885:61;;;;-1:-1:-1;;;52885:61:0;;;;;;;:::i;:::-;52959:16;52967:7;52959;:16::i;:::-;52958:17;52950:58;;;;-1:-1:-1;;;52950:58:0;;;;;;;:::i;:::-;53013:45;53042:1;53046:2;53050:7;53013:20;:45::i;:::-;-1:-1:-1;;;;;53063:17:0;;;;;;:13;:17;;;;;:30;;53085:7;53063:21;:30::i;:::-;-1:-1:-1;53098:29:0;:12;53115:7;53124:2;53098:16;:29::i;:::-;-1:-1:-1;53137:33:0;;53162:7;;-1:-1:-1;;;;;53137:33:0;;;53154:1;;53137:33;;53154:1;;53137:33;52820:354;;:::o;15792:1317::-;15858:4;15983:19;;;:12;;;:19;;;;;;16011:15;;16007:1099;;16395:18;;-1:-1:-1;;16356:14:0;;;;16395:22;;;;16332:21;;16395:3;;:22;;16650;;;;;;;;;;;;;;16630:42;;16775:9;16746:3;:11;;16758:13;16746:26;;;;;;;;;;;;;;;;;;;:38;;;;16832:23;;;16874:1;16832:12;;;:23;;;;;;16858:17;;;16832:43;;16963:17;;16832:3;;16963:17;;;;;;;;;;;;;;;;;;;;;;17037:3;:12;;:19;17050:5;17037:19;;;;;;;;;;;17030:26;;;17069:4;17062:11;;;;;;;;16007:1099;17096:5;17089:12;;;;;15316:329;15379:4;15394:21;15404:3;15409:5;15394:9;:21::i;:::-;15389:253;;-1:-1:-1;15422:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;15575:18;;15553:19;;;:12;;;:19;;;;;;:40;;;;15598:11;;15389:253;-1:-1:-1;15632:5:0;15625:12;;7379:582;7455:4;7576:17;;;:12;;;:17;;;;;;7602:13;7598:360;;-1:-1:-1;;7677:38:0;;;;;;;;;;;;;;;;;;7659:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;7844:19;;7824:17;;;:12;;;:17;;;;;;;:39;7868:11;;7598:360;7931:5;7895:3;:12;;7919:1;7908:8;:12;7895:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;7948:5;7941:12;;;;;22785:368;23109:20;23141:8;;;22785:368::o;25432:184::-;25535:12;25560:52;25582:6;25590:4;25596:1;25599:12;25535;26622:18;26633:6;26622:10;:18::i;:::-;26614:60;;;;-1:-1:-1;;;26614:60:0;;;;;;;:::i;:::-;26733:12;26747:23;26774:6;-1:-1:-1;;;;;26774:11:0;26794:5;26802:4;26774:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26732:75;;;;26818:52;26836:7;26845:10;26857:12;26818:17;:52::i;:::-;26811:59;26384:490;-1:-1:-1;;;;;;;26384:490:0:o;28675:569::-;28790:12;28812:7;28808:433;;;-1:-1:-1;28833:10:0;28826:17;;28808:433;28920:17;;:21;28916:321;;29127:10;29121:17;29172:15;29159:10;29155:2;29151:19;29144:44;29091:103;29218:12;29211:20;;-1:-1:-1;;;29211:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:589:2;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;270:2;247:17;;-1:-1:-1;;243:31:2;231:44;;277:4;227:55;297:18;;;317:22;;;294:46;291:2;;;343:9;291:2;370;363:22;418;;;403:6;-1:-1:-1;403:6:2;455:16;;;452:25;-1:-1:-1;449:2:2;;;490:1;487;480:12;449:2;540:6;535:3;528:4;520:6;516:17;503:44;595:1;588:4;579:6;571;567:19;563:30;556:41;;;90:513;;;;;:::o;608:259::-;;720:2;708:9;699:7;695:23;691:32;688:2;;;741:6;733;726:22;688:2;785:9;772:23;804:33;831:5;804:33;:::i;872:263::-;;995:2;983:9;974:7;970:23;966:32;963:2;;;1016:6;1008;1001:22;963:2;1053:9;1047:16;1072:33;1099:5;1072:33;:::i;1140:402::-;;;1269:2;1257:9;1248:7;1244:23;1240:32;1237:2;;;1290:6;1282;1275:22;1237:2;1334:9;1321:23;1353:33;1380:5;1353:33;:::i;:::-;1405:5;-1:-1:-1;1462:2:2;1447:18;;1434:32;1475:35;1434:32;1475:35;:::i;:::-;1529:7;1519:17;;;1227:315;;;;;:::o;1547:470::-;;;;1693:2;1681:9;1672:7;1668:23;1664:32;1661:2;;;1714:6;1706;1699:22;1661:2;1758:9;1745:23;1777:33;1804:5;1777:33;:::i;:::-;1829:5;-1:-1:-1;1886:2:2;1871:18;;1858:32;1899:35;1858:32;1899:35;:::i;:::-;1651:366;;1953:7;;-1:-1:-1;;;2007:2:2;1992:18;;;;1979:32;;1651:366::o;2022:830::-;;;;;2194:3;2182:9;2173:7;2169:23;2165:33;2162:2;;;2216:6;2208;2201:22;2162:2;2260:9;2247:23;2279:33;2306:5;2279:33;:::i;:::-;2331:5;-1:-1:-1;2388:2:2;2373:18;;2360:32;2401:35;2360:32;2401:35;:::i;:::-;2455:7;-1:-1:-1;2509:2:2;2494:18;;2481:32;;-1:-1:-1;2564:2:2;2549:18;;2536:32;2591:18;2580:30;;2577:2;;;2628:6;2620;2613:22;2577:2;2656:22;;2709:4;2701:13;;2697:27;-1:-1:-1;2687:2:2;;2743:6;2735;2728:22;2687:2;2771:75;2838:7;2833:2;2820:16;2815:2;2811;2807:11;2771:75;:::i;:::-;2761:85;;;2152:700;;;;;;;:::o;2857:438::-;;;2983:2;2971:9;2962:7;2958:23;2954:32;2951:2;;;3004:6;2996;2989:22;2951:2;3048:9;3035:23;3067:33;3094:5;3067:33;:::i;:::-;3119:5;-1:-1:-1;3176:2:2;3161:18;;3148:32;3218:15;;3211:23;3199:36;;3189:2;;3254:6;3246;3239:22;3300:327;;;3429:2;3417:9;3408:7;3404:23;3400:32;3397:2;;;3450:6;3442;3435:22;3397:2;3494:9;3481:23;3513:33;3540:5;3513:33;:::i;:::-;3565:5;3617:2;3602:18;;;;3589:32;;-1:-1:-1;;;3387:240:2:o;3632:257::-;;3743:2;3731:9;3722:7;3718:23;3714:32;3711:2;;;3764:6;3756;3749:22;3711:2;3808:9;3795:23;3827:32;3853:5;3827:32;:::i;3894:261::-;;4016:2;4004:9;3995:7;3991:23;3987:32;3984:2;;;4037:6;4029;4022:22;3984:2;4074:9;4068:16;4093:32;4119:5;4093:32;:::i;4160:482::-;;4282:2;4270:9;4261:7;4257:23;4253:32;4250:2;;;4303:6;4295;4288:22;4250:2;4348:9;4335:23;4381:18;4373:6;4370:30;4367:2;;;4418:6;4410;4403:22;4367:2;4446:22;;4499:4;4491:13;;4487:27;-1:-1:-1;4477:2:2;;4533:6;4525;4518:22;4477:2;4561:75;4628:7;4623:2;4610:16;4605:2;4601;4597:11;4561:75;:::i;4647:190::-;;4759:2;4747:9;4738:7;4734:23;4730:32;4727:2;;;4780:6;4772;4765:22;4727:2;-1:-1:-1;4808:23:2;;4717:120;-1:-1:-1;4717:120:2:o;4842:259::-;;4923:5;4917:12;4950:6;4945:3;4938:19;4966:63;5022:6;5015:4;5010:3;5006:14;4999:4;4992:5;4988:16;4966:63;:::i;:::-;5083:2;5062:15;-1:-1:-1;;5058:29:2;5049:39;;;;5090:4;5045:50;;4893:208;-1:-1:-1;;4893:208:2:o;5106:274::-;;5273:6;5267:13;5289:53;5335:6;5330:3;5323:4;5315:6;5311:17;5289:53;:::i;:::-;5358:16;;;;;5243:137;-1:-1:-1;;5243:137:2:o;5666:470::-;;5883:6;5877:13;5899:53;5945:6;5940:3;5933:4;5925:6;5921:17;5899:53;:::i;:::-;6015:13;;5974:16;;;;6037:57;6015:13;5974:16;6071:4;6059:17;;6037:57;:::i;:::-;6110:20;;5853:283;-1:-1:-1;;;;5853:283:2:o;6141:1767::-;;6694:6;6688:13;6710:53;6756:6;6751:3;6744:4;6736:6;6732:17;6710:53;:::i;:::-;6794:6;6788:13;6810:68;6869:8;6860:6;6855:3;6851:16;6844:4;6836:6;6832:17;6810:68;:::i;:::-;6956:13;;6904:16;;;6900:31;;6978:57;6956:13;6900:31;7012:4;7000:17;;6978:57;:::i;:::-;7066:6;7060:13;7082:72;7145:8;7134;7127:5;7123:20;7116:4;7108:6;7104:17;7082:72;:::i;:::-;7236:13;;7180:20;;;;7176:35;;7258:57;7236:13;7176:35;7292:4;7280:17;;7258:57;:::i;:::-;7346:6;7340:13;7362:72;7425:8;7414;7407:5;7403:20;7396:4;7388:6;7384:17;7362:72;:::i;:::-;7516:13;;7460:20;;;;7456:35;;7538:57;7516:13;7456:35;7572:4;7560:17;;7538:57;:::i;:::-;7626:6;7620:13;7642:72;7705:8;7694;7687:5;7683:20;7676:4;7668:6;7664:17;7642:72;:::i;:::-;7793:13;;7737:20;;;;7733:35;;7815:54;7793:13;7733:35;7849:4;7837:17;;7815:54;:::i;:::-;7885:17;;6664:1244;-1:-1:-1;;;;;;;;;;;6664:1244:2:o;7913:614::-;;8231:6;8225:13;8247:53;8293:6;8288:3;8281:4;8273:6;8269:17;8247:53;:::i;:::-;-1:-1:-1;;;8322:16:2;;;8347:18;;;8390:13;;8412:65;8390:13;8464:1;8453:13;;8446:4;8434:17;;8412:65;:::i;:::-;8497:20;8519:1;8493:28;;8201:326;-1:-1:-1;;;;8201:326:2:o;8532:1287::-;;9148:6;9142:13;9164:53;9210:6;9205:3;9198:4;9190:6;9186:17;9164:53;:::i;:::-;9248:6;9243:3;9239:16;9226:29;;-1:-1:-1;;;9302:2:2;9295:5;9288:17;9336:6;9330:13;9352:65;9408:8;9404:1;9397:5;9393:13;9386:4;9378:6;9374:17;9352:65;:::i;:::-;9480:1;9436:20;;9472:10;;;9465:22;;;9512:13;;9534:62;9512:13;9583:1;9575:10;;9568:4;9556:17;;9534:62;:::i;:::-;9656:1;9615:17;;9648:10;;;9641:22;9688:13;;9710:62;9688:13;9759:1;9751:10;;9744:4;9732:17;;9710:62;:::i;:::-;9792:17;9811:1;9788:25;;9118:701;-1:-1:-1;;;;;;9118:701:2:o;9824:1306::-;-1:-1:-1;;;10324:59:2;;10406:13;;9824:1306;;10428:62;10406:13;10478:2;10469:12;;10462:4;10450:17;;10428:62;:::i;:::-;10554:66;10549:2;10509:16;;;10541:11;;;10534:87;10650:34;10645:2;10637:11;;10630:55;10714:34;10709:2;10701:11;;10694:55;10779:66;10773:3;10765:12;;10758:88;10876:27;10870:3;10862:12;;10855:49;10929:13;;10951:64;10929:13;11000:3;10992:12;;10985:4;10973:17;;10951:64;:::i;:::-;-1:-1:-1;;;11075:3:2;11034:17;;;;11067:12;;;11060:36;11120:3;11112:12;;10314:816;-1:-1:-1;;;;10314:816:2:o;11135:448::-;;11397:31;11392:3;11385:44;11458:6;11452:13;11474:62;11529:6;11524:2;11519:3;11515:12;11508:4;11500:6;11496:17;11474:62;:::i;:::-;11556:16;;;;11574:2;11552:25;;11375:208;-1:-1:-1;;11375:208:2:o;11588:203::-;-1:-1:-1;;;;;11752:32:2;;;;11734:51;;11722:2;11707:18;;11689:102::o;11796:506::-;-1:-1:-1;;;;;12081:15:2;;;12063:34;;12133:15;;12128:2;12113:18;;12106:43;12180:2;12165:18;;12158:34;;;12228:3;12223:2;12208:18;;12201:31;;;11796:506;;12249:47;;12276:19;;12268:6;12249:47;:::i;:::-;12241:55;12015:287;-1:-1:-1;;;;;;12015:287:2:o;12307:187::-;12472:14;;12465:22;12447:41;;12435:2;12420:18;;12402:92::o;12499:221::-;;12648:2;12637:9;12630:21;12668:46;12710:2;12699:9;12695:18;12687:6;12668:46;:::i;12725:398::-;12927:2;12909:21;;;12966:2;12946:18;;;12939:30;13005:34;13000:2;12985:18;;12978:62;-1:-1:-1;;;13071:2:2;13056:18;;13049:32;13113:3;13098:19;;12899:224::o;13128:345::-;13330:2;13312:21;;;13369:2;13349:18;;;13342:30;-1:-1:-1;;;13403:2:2;13388:18;;13381:51;13464:2;13449:18;;13302:171::o;13478:414::-;13680:2;13662:21;;;13719:2;13699:18;;;13692:30;13758:34;13753:2;13738:18;;13731:62;-1:-1:-1;;;13824:2:2;13809:18;;13802:48;13882:3;13867:19;;13652:240::o;13897:402::-;14099:2;14081:21;;;14138:2;14118:18;;;14111:30;14177:34;14172:2;14157:18;;14150:62;-1:-1:-1;;;14243:2:2;14228:18;;14221:36;14289:3;14274:19;;14071:228::o;14304:352::-;14506:2;14488:21;;;14545:2;14525:18;;;14518:30;14584;14579:2;14564:18;;14557:58;14647:2;14632:18;;14478:178::o;14661:345::-;14863:2;14845:21;;;14902:2;14882:18;;;14875:30;-1:-1:-1;;;14936:2:2;14921:18;;14914:51;14997:2;14982:18;;14835:171::o;15011:400::-;15213:2;15195:21;;;15252:2;15232:18;;;15225:30;15291:34;15286:2;15271:18;;15264:62;-1:-1:-1;;;15357:2:2;15342:18;;15335:34;15401:3;15386:19;;15185:226::o;15416:349::-;15618:2;15600:21;;;15657:2;15637:18;;;15630:30;15696:27;15691:2;15676:18;;15669:55;15756:2;15741:18;;15590:175::o;16177:408::-;16379:2;16361:21;;;16418:2;16398:18;;;16391:30;16457:34;16452:2;16437:18;;16430:62;-1:-1:-1;;;16523:2:2;16508:18;;16501:42;16575:3;16560:19;;16351:234::o;16590:420::-;16792:2;16774:21;;;16831:2;16811:18;;;16804:30;16870:34;16865:2;16850:18;;16843:62;16941:26;16936:2;16921:18;;16914:54;17000:3;16985:19;;16764:246::o;17015:406::-;17217:2;17199:21;;;17256:2;17236:18;;;17229:30;17295:34;17290:2;17275:18;;17268:62;-1:-1:-1;;;17361:2:2;17346:18;;17339:40;17411:3;17396:19;;17189:232::o;17426:398::-;17628:2;17610:21;;;17667:2;17647:18;;;17640:30;17706:34;17701:2;17686:18;;17679:62;-1:-1:-1;;;17772:2:2;17757:18;;17750:32;17814:3;17799:19;;17600:224::o;17829:356::-;18031:2;18013:21;;;18050:18;;;18043:30;18109:34;18104:2;18089:18;;18082:62;18176:2;18161:18;;18003:182::o;18190:408::-;18392:2;18374:21;;;18431:2;18411:18;;;18404:30;18470:34;18465:2;18450:18;;18443:62;-1:-1:-1;;;18536:2:2;18521:18;;18514:42;18588:3;18573:19;;18364:234::o;18603:356::-;18805:2;18787:21;;;18824:18;;;18817:30;18883:34;18878:2;18863:18;;18856:62;18950:2;18935:18;;18777:182::o;18964:405::-;19166:2;19148:21;;;19205:2;19185:18;;;19178:30;19244:34;19239:2;19224:18;;19217:62;-1:-1:-1;;;19310:2:2;19295:18;;19288:39;19359:3;19344:19;;19138:231::o;19374:400::-;19576:2;19558:21;;;19615:2;19595:18;;;19588:30;19654:34;19649:2;19634:18;;19627:62;-1:-1:-1;;;19720:2:2;19705:18;;19698:34;19764:3;19749:19;;19548:226::o;19779:397::-;19981:2;19963:21;;;20020:2;20000:18;;;19993:30;20059:34;20054:2;20039:18;;20032:62;-1:-1:-1;;;20125:2:2;20110:18;;20103:31;20166:3;20151:19;;19953:223::o;20181:413::-;20383:2;20365:21;;;20422:2;20402:18;;;20395:30;20461:34;20456:2;20441:18;;20434:62;-1:-1:-1;;;20527:2:2;20512:18;;20505:47;20584:3;20569:19;;20355:239::o;20599:353::-;20801:2;20783:21;;;20840:2;20820:18;;;20813:30;20879:31;20874:2;20859:18;;20852:59;20943:2;20928:18;;20773:179::o;20957:355::-;21159:2;21141:21;;;21198:2;21178:18;;;21171:30;21237:33;21232:2;21217:18;;21210:61;21303:2;21288:18;;21131:181::o;21317:177::-;21463:25;;;21451:2;21436:18;;21418:76::o;21499:258::-;21571:1;21581:113;21595:6;21592:1;21589:13;21581:113;;;21671:11;;;21665:18;21652:11;;;21645:39;21617:2;21610:10;21581:113;;;21712:6;21709:1;21706:13;21703:2;;;-1:-1:-1;;21747:1:2;21729:16;;21722:27;21552:205::o;21762:133::-;-1:-1:-1;;;;;21839:31:2;;21829:42;;21819:2;;21885:1;21882;21875:12;21900:133;-1:-1:-1;;;;;;21976:32:2;;21966:43;;21956:2;;22023:1;22020;22013:12

Swarm Source

ipfs://fece8027ee660ad05a7cf5e4a20196c33b8cbd333abfe43bf4569b5d94180fca
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.