Overview
TokenID
2542
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Wiiides
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-07 */ // SPDX-License-Identifier: MIT // // Wiiides // // @sterlingcrispin // @wiiides // wiiides.com // NotAudited.xyz // // no warranty expressed or implied // see wiiides.com for important terms of service // // // // // // WIIIIIIIIIIIIIIIIIIIIIIDE // WIIIIIIIIIIDE------------WIIIIIIIIIIDE // WIIIIIIIIIIIDE------------------------WIIIIIIIIIIDE // wiiiiiiiiiiide------------------------WIIIIIIIIIIDE // WIIIIIIIIIIDE,,,,,,,,,,,,-------------------------WIIIIIIIIIIDE // ,,,,,,,,,,,,,-------------------------------------WIIIIIIIIIIIIIIIIIIIIIIIDE // .........................-------------------------.........................W // ,,,,,,,,,,,,,........................-------------.........................I // ,,,,,,,,,,,,,........................-------------.........................I // ...........................................................................I // ...........................................................................D // ...........................................................................E // wiiiiiiide.................................................................. // wiiiiiiiiiiiiiiiiiiiiiide......................................wiiiiiiiiiide // WIIIIIIIIIIDE,,,,,,,,,,,,,.....................................WIIIIIIIIIIDE // ...........................................................................W // ...........................................................................I // .....................................wiiiiiiiiiiiiiiiiiiiiiiide............I // .....................................WIIIIIIIIIIIIIIIIIIIIIIIDE............I // ...........................................................................I // ...........WIIIIIIIIIIIDE..................................................I // .........................WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE............I // .........................WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE............I // ...........................................................................D // ...........................................................................E // ...........WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE // ...........WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE // ...........WIIIIIIIIIIIIDE // ...........WIIIIIIIIIIIIDE // // // File: https://raw.githubusercontent.com/Arachnid/solidity-stringutils/master/src/strings.sol /* * @title String & slice utility library for Solidity contracts. * @author Nick Johnson <[email protected]> * * @dev Functionality in this library is largely implemented using an * abstraction called a 'slice'. A slice represents a part of a string - * anything from the entire string to a single character, or even no * characters at all (a 0-length slice). Since a slice only has to specify * an offset and a length, copying and manipulating slices is a lot less * expensive than copying and manipulating the strings they reference. * * To further reduce gas costs, most functions on slice that need to return * a slice modify the original one instead of allocating a new one; for * instance, `s.split(".")` will return the text up to the first '.', * modifying s to only contain the remainder of the string after the '.'. * In situations where you do not want to modify the original slice, you * can make a copy first with `.copy()`, for example: * `s.copy().split(".")`. Try and avoid using this idiom in loops; since * Solidity has no memory management, it will result in allocating many * short-lived slices that are later discarded. * * Functions that return two slices come in two versions: a non-allocating * version that takes the second slice as an argument, modifying it in * place, and an allocating version that allocates and returns the second * slice; see `nextRune` for example. * * Functions that have to copy string data will return strings rather than * slices; these can be cast back to slices for further processing if * required. * * For convenience, some functions are provided with non-modifying * variants that create a new slice and return both; for instance, * `s.splitNew('.')` leaves s unmodified, and returns two values * corresponding to the left and right parts of the string. */ pragma solidity ^0.8.0; library strings { struct slice { uint _len; uint _ptr; } function memcpy(uint dest, uint src, uint len) private pure { // Copy word-length chunks while possible for(; len >= 32; len -= 32) { assembly { mstore(dest, mload(src)) } dest += 32; src += 32; } // Copy remaining bytes uint mask = type(uint).max; if (len > 0) { mask = 256 ** (32 - len) - 1; } assembly { let srcpart := and(mload(src), not(mask)) let destpart := and(mload(dest), mask) mstore(dest, or(destpart, srcpart)) } } /* * @dev Returns a slice containing the entire string. * @param self The string to make a slice from. * @return A newly allocated slice containing the entire string. */ function toSlice(string memory self) internal pure returns (slice memory) { uint ptr; assembly { ptr := add(self, 0x20) } return slice(bytes(self).length, ptr); } /* * @dev Returns the length of a null-terminated bytes32 string. * @param self The value to find the length of. * @return The length of the string, from 0 to 32. */ function len(bytes32 self) internal pure returns (uint) { uint ret; if (self == 0) return 0; if (uint(self) & type(uint128).max == 0) { ret += 16; self = bytes32(uint(self) / 0x100000000000000000000000000000000); } if (uint(self) & type(uint64).max == 0) { ret += 8; self = bytes32(uint(self) / 0x10000000000000000); } if (uint(self) & type(uint32).max == 0) { ret += 4; self = bytes32(uint(self) / 0x100000000); } if (uint(self) & type(uint16).max == 0) { ret += 2; self = bytes32(uint(self) / 0x10000); } if (uint(self) & type(uint8).max == 0) { ret += 1; } return 32 - ret; } /* * @dev Returns a slice containing the entire bytes32, interpreted as a * null-terminated utf-8 string. * @param self The bytes32 value to convert to a slice. * @return A new slice containing the value of the input argument up to the * first null. */ function toSliceB32(bytes32 self) internal pure returns (slice memory ret) { // Allocate space for `self` in memory, copy it there, and point ret at it assembly { let ptr := mload(0x40) mstore(0x40, add(ptr, 0x20)) mstore(ptr, self) mstore(add(ret, 0x20), ptr) } ret._len = len(self); } /* * @dev Returns a new slice containing the same data as the current slice. * @param self The slice to copy. * @return A new slice containing the same data as `self`. */ function copy(slice memory self) internal pure returns (slice memory) { return slice(self._len, self._ptr); } /* * @dev Copies a slice to a new string. * @param self The slice to copy. * @return A newly allocated string containing the slice's text. */ function toString(slice memory self) internal pure returns (string memory) { string memory ret = new string(self._len); uint retptr; assembly { retptr := add(ret, 32) } memcpy(retptr, self._ptr, self._len); return ret; } /* * @dev Returns the length in runes of the slice. Note that this operation * takes time proportional to the length of the slice; avoid using it * in loops, and call `slice.empty()` if you only need to know whether * the slice is empty or not. * @param self The slice to operate on. * @return The length of the slice in runes. */ function len(slice memory self) internal pure returns (uint l) { // Starting at ptr-31 means the LSB will be the byte we care about uint ptr = self._ptr - 31; uint end = ptr + self._len; for (l = 0; ptr < end; l++) { uint8 b; assembly { b := and(mload(ptr), 0xFF) } if (b < 0x80) { ptr += 1; } else if(b < 0xE0) { ptr += 2; } else if(b < 0xF0) { ptr += 3; } else if(b < 0xF8) { ptr += 4; } else if(b < 0xFC) { ptr += 5; } else { ptr += 6; } } } /* * @dev Returns true if the slice is empty (has a length of 0). * @param self The slice to operate on. * @return True if the slice is empty, False otherwise. */ function empty(slice memory self) internal pure returns (bool) { return self._len == 0; } /* * @dev Returns a positive number if `other` comes lexicographically after * `self`, a negative number if it comes before, or zero if the * contents of the two slices are equal. Comparison is done per-rune, * on unicode codepoints. * @param self The first slice to compare. * @param other The second slice to compare. * @return The result of the comparison. */ function compare(slice memory self, slice memory other) internal pure returns (int) { uint shortest = self._len; if (other._len < self._len) shortest = other._len; uint selfptr = self._ptr; uint otherptr = other._ptr; for (uint idx = 0; idx < shortest; idx += 32) { uint a; uint b; assembly { a := mload(selfptr) b := mload(otherptr) } if (a != b) { // Mask out irrelevant bytes and check again uint mask = type(uint).max; // 0xffff... if(shortest < 32) { mask = ~(2 ** (8 * (32 - shortest + idx)) - 1); } unchecked { uint diff = (a & mask) - (b & mask); if (diff != 0) return int(diff); } } selfptr += 32; otherptr += 32; } return int(self._len) - int(other._len); } /* * @dev Returns true if the two slices contain the same text. * @param self The first slice to compare. * @param self The second slice to compare. * @return True if the slices are equal, false otherwise. */ function equals(slice memory self, slice memory other) internal pure returns (bool) { return compare(self, other) == 0; } /* * @dev Extracts the first rune in the slice into `rune`, advancing the * slice to point to the next rune and returning `self`. * @param self The slice to operate on. * @param rune The slice that will contain the first rune. * @return `rune`. */ function nextRune(slice memory self, slice memory rune) internal pure returns (slice memory) { rune._ptr = self._ptr; if (self._len == 0) { rune._len = 0; return rune; } uint l; uint b; // Load the first byte of the rune into the LSBs of b assembly { b := and(mload(sub(mload(add(self, 32)), 31)), 0xFF) } if (b < 0x80) { l = 1; } else if(b < 0xE0) { l = 2; } else if(b < 0xF0) { l = 3; } else { l = 4; } // Check for truncated codepoints if (l > self._len) { rune._len = self._len; self._ptr += self._len; self._len = 0; return rune; } self._ptr += l; self._len -= l; rune._len = l; return rune; } /* * @dev Returns the first rune in the slice, advancing the slice to point * to the next rune. * @param self The slice to operate on. * @return A slice containing only the first rune from `self`. */ function nextRune(slice memory self) internal pure returns (slice memory ret) { nextRune(self, ret); } /* * @dev Returns the number of the first codepoint in the slice. * @param self The slice to operate on. * @return The number of the first codepoint in the slice. */ function ord(slice memory self) internal pure returns (uint ret) { if (self._len == 0) { return 0; } uint word; uint length; uint divisor = 2 ** 248; // Load the rune into the MSBs of b assembly { word:= mload(mload(add(self, 32))) } uint b = word / divisor; if (b < 0x80) { ret = b; length = 1; } else if(b < 0xE0) { ret = b & 0x1F; length = 2; } else if(b < 0xF0) { ret = b & 0x0F; length = 3; } else { ret = b & 0x07; length = 4; } // Check for truncated codepoints if (length > self._len) { return 0; } for (uint i = 1; i < length; i++) { divisor = divisor / 256; b = (word / divisor) & 0xFF; if (b & 0xC0 != 0x80) { // Invalid UTF-8 sequence return 0; } ret = (ret * 64) | (b & 0x3F); } return ret; } /* * @dev Returns the keccak-256 hash of the slice. * @param self The slice to hash. * @return The hash of the slice. */ function keccak(slice memory self) internal pure returns (bytes32 ret) { assembly { ret := keccak256(mload(add(self, 32)), mload(self)) } } /* * @dev Returns true if `self` starts with `needle`. * @param self The slice to operate on. * @param needle The slice to search for. * @return True if the slice starts with the provided text, false otherwise. */ function startsWith(slice memory self, slice memory needle) internal pure returns (bool) { if (self._len < needle._len) { return false; } if (self._ptr == needle._ptr) { return true; } bool equal; assembly { let length := mload(needle) let selfptr := mload(add(self, 0x20)) let needleptr := mload(add(needle, 0x20)) equal := eq(keccak256(selfptr, length), keccak256(needleptr, length)) } return equal; } /* * @dev If `self` starts with `needle`, `needle` is removed from the * beginning of `self`. Otherwise, `self` is unmodified. * @param self The slice to operate on. * @param needle The slice to search for. * @return `self` */ function beyond(slice memory self, slice memory needle) internal pure returns (slice memory) { if (self._len < needle._len) { return self; } bool equal = true; if (self._ptr != needle._ptr) { assembly { let length := mload(needle) let selfptr := mload(add(self, 0x20)) let needleptr := mload(add(needle, 0x20)) equal := eq(keccak256(selfptr, length), keccak256(needleptr, length)) } } if (equal) { self._len -= needle._len; self._ptr += needle._len; } return self; } /* * @dev Returns true if the slice ends with `needle`. * @param self The slice to operate on. * @param needle The slice to search for. * @return True if the slice starts with the provided text, false otherwise. */ function endsWith(slice memory self, slice memory needle) internal pure returns (bool) { if (self._len < needle._len) { return false; } uint selfptr = self._ptr + self._len - needle._len; if (selfptr == needle._ptr) { return true; } bool equal; assembly { let length := mload(needle) let needleptr := mload(add(needle, 0x20)) equal := eq(keccak256(selfptr, length), keccak256(needleptr, length)) } return equal; } /* * @dev If `self` ends with `needle`, `needle` is removed from the * end of `self`. Otherwise, `self` is unmodified. * @param self The slice to operate on. * @param needle The slice to search for. * @return `self` */ function until(slice memory self, slice memory needle) internal pure returns (slice memory) { if (self._len < needle._len) { return self; } uint selfptr = self._ptr + self._len - needle._len; bool equal = true; if (selfptr != needle._ptr) { assembly { let length := mload(needle) let needleptr := mload(add(needle, 0x20)) equal := eq(keccak256(selfptr, length), keccak256(needleptr, length)) } } if (equal) { self._len -= needle._len; } return self; } // Returns the memory address of the first byte of the first occurrence of // `needle` in `self`, or the first byte after `self` if not found. function findPtr(uint selflen, uint selfptr, uint needlelen, uint needleptr) private pure returns (uint) { uint ptr = selfptr; uint idx; if (needlelen <= selflen) { if (needlelen <= 32) { bytes32 mask; if (needlelen > 0) { mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1)); } bytes32 needledata; assembly { needledata := and(mload(needleptr), mask) } uint end = selfptr + selflen - needlelen; bytes32 ptrdata; assembly { ptrdata := and(mload(ptr), mask) } while (ptrdata != needledata) { if (ptr >= end) return selfptr + selflen; ptr++; assembly { ptrdata := and(mload(ptr), mask) } } return ptr; } else { // For long needles, use hashing bytes32 hash; assembly { hash := keccak256(needleptr, needlelen) } for (idx = 0; idx <= selflen - needlelen; idx++) { bytes32 testHash; assembly { testHash := keccak256(ptr, needlelen) } if (hash == testHash) return ptr; ptr += 1; } } } return selfptr + selflen; } // Returns the memory address of the first byte after the last occurrence of // `needle` in `self`, or the address of `self` if not found. function rfindPtr(uint selflen, uint selfptr, uint needlelen, uint needleptr) private pure returns (uint) { uint ptr; if (needlelen <= selflen) { if (needlelen <= 32) { bytes32 mask; if (needlelen > 0) { mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1)); } bytes32 needledata; assembly { needledata := and(mload(needleptr), mask) } ptr = selfptr + selflen - needlelen; bytes32 ptrdata; assembly { ptrdata := and(mload(ptr), mask) } while (ptrdata != needledata) { if (ptr <= selfptr) return selfptr; ptr--; assembly { ptrdata := and(mload(ptr), mask) } } return ptr + needlelen; } else { // For long needles, use hashing bytes32 hash; assembly { hash := keccak256(needleptr, needlelen) } ptr = selfptr + (selflen - needlelen); while (ptr >= selfptr) { bytes32 testHash; assembly { testHash := keccak256(ptr, needlelen) } if (hash == testHash) return ptr + needlelen; ptr -= 1; } } } return selfptr; } /* * @dev Modifies `self` to contain everything from the first occurrence of * `needle` to the end of the slice. `self` is set to the empty slice * if `needle` is not found. * @param self The slice to search and modify. * @param needle The text to search for. * @return `self`. */ function find(slice memory self, slice memory needle) internal pure returns (slice memory) { uint ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr); self._len -= ptr - self._ptr; self._ptr = ptr; return self; } /* * @dev Modifies `self` to contain the part of the string from the start of * `self` to the end of the first occurrence of `needle`. If `needle` * is not found, `self` is set to the empty slice. * @param self The slice to search and modify. * @param needle The text to search for. * @return `self`. */ function rfind(slice memory self, slice memory needle) internal pure returns (slice memory) { uint ptr = rfindPtr(self._len, self._ptr, needle._len, needle._ptr); self._len = ptr - self._ptr; return self; } /* * @dev Splits the slice, setting `self` to everything after the first * occurrence of `needle`, and `token` to everything before it. If * `needle` does not occur in `self`, `self` is set to the empty slice, * and `token` is set to the entirety of `self`. * @param self The slice to split. * @param needle The text to search for in `self`. * @param token An output parameter to which the first token is written. * @return `token`. */ function split(slice memory self, slice memory needle, slice memory token) internal pure returns (slice memory) { uint ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr); token._ptr = self._ptr; token._len = ptr - self._ptr; if (ptr == self._ptr + self._len) { // Not found self._len = 0; } else { self._len -= token._len + needle._len; self._ptr = ptr + needle._len; } return token; } /* * @dev Splits the slice, setting `self` to everything after the first * occurrence of `needle`, and returning everything before it. If * `needle` does not occur in `self`, `self` is set to the empty slice, * and the entirety of `self` is returned. * @param self The slice to split. * @param needle The text to search for in `self`. * @return The part of `self` up to the first occurrence of `delim`. */ function split(slice memory self, slice memory needle) internal pure returns (slice memory token) { split(self, needle, token); } /* * @dev Splits the slice, setting `self` to everything before the last * occurrence of `needle`, and `token` to everything after it. If * `needle` does not occur in `self`, `self` is set to the empty slice, * and `token` is set to the entirety of `self`. * @param self The slice to split. * @param needle The text to search for in `self`. * @param token An output parameter to which the first token is written. * @return `token`. */ function rsplit(slice memory self, slice memory needle, slice memory token) internal pure returns (slice memory) { uint ptr = rfindPtr(self._len, self._ptr, needle._len, needle._ptr); token._ptr = ptr; token._len = self._len - (ptr - self._ptr); if (ptr == self._ptr) { // Not found self._len = 0; } else { self._len -= token._len + needle._len; } return token; } /* * @dev Splits the slice, setting `self` to everything before the last * occurrence of `needle`, and returning everything after it. If * `needle` does not occur in `self`, `self` is set to the empty slice, * and the entirety of `self` is returned. * @param self The slice to split. * @param needle The text to search for in `self`. * @return The part of `self` after the last occurrence of `delim`. */ function rsplit(slice memory self, slice memory needle) internal pure returns (slice memory token) { rsplit(self, needle, token); } /* * @dev Counts the number of nonoverlapping occurrences of `needle` in `self`. * @param self The slice to search. * @param needle The text to search for in `self`. * @return The number of occurrences of `needle` found in `self`. */ function count(slice memory self, slice memory needle) internal pure returns (uint cnt) { uint ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr) + needle._len; while (ptr <= self._ptr + self._len) { cnt++; ptr = findPtr(self._len - (ptr - self._ptr), ptr, needle._len, needle._ptr) + needle._len; } } /* * @dev Returns True if `self` contains `needle`. * @param self The slice to search. * @param needle The text to search for in `self`. * @return True if `needle` is found in `self`, false otherwise. */ function contains(slice memory self, slice memory needle) internal pure returns (bool) { return rfindPtr(self._len, self._ptr, needle._len, needle._ptr) != self._ptr; } /* * @dev Returns a newly allocated string containing the concatenation of * `self` and `other`. * @param self The first slice to concatenate. * @param other The second slice to concatenate. * @return The concatenation of the two strings. */ function concat(slice memory self, slice memory other) internal pure returns (string memory) { string memory ret = new string(self._len + other._len); uint retptr; assembly { retptr := add(ret, 32) } memcpy(retptr, self._ptr, self._len); memcpy(retptr + self._len, other._ptr, other._len); return ret; } /* * @dev Joins an array of slices, using `self` as a delimiter, returning a * newly allocated string. * @param self The delimiter to use. * @param parts A list of slices to join. * @return A newly allocated string containing all the slices in `parts`, * joined with `self`. */ function join(slice memory self, slice[] memory parts) internal pure returns (string memory) { if (parts.length == 0) return ""; uint length = self._len * (parts.length - 1); for(uint i = 0; i < parts.length; i++) length += parts[i]._len; string memory ret = new string(length); uint retptr; assembly { retptr := add(ret, 32) } for(uint i = 0; i < parts.length; i++) { memcpy(retptr, parts[i]._ptr, parts[i]._len); retptr += parts[i]._len; if (i < parts.length - 1) { memcpy(retptr, self._ptr, self._len); retptr += self._len; } } return ret; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ 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 making 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; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner 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: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: Wiiides.sol // // Wiiides // // @sterlingcrispin // @wiiides // wiiides.com // NotAudited.xyz // // no warranty expressed or implied // see wiiides.com for important terms of service // // // // // // WIIIIIIIIIIIIIIIIIIIIIIDE // WIIIIIIIIIIDE------------WIIIIIIIIIIDE // WIIIIIIIIIIIDE------------------------WIIIIIIIIIIDE // wiiiiiiiiiiide------------------------WIIIIIIIIIIDE // WIIIIIIIIIIDE,,,,,,,,,,,,-------------------------WIIIIIIIIIIDE // ,,,,,,,,,,,,,-------------------------------------WIIIIIIIIIIIIIIIIIIIIIIIDE // .........................-------------------------.........................W // ,,,,,,,,,,,,,........................-------------.........................I // ,,,,,,,,,,,,,........................-------------.........................I // ...........................................................................I // ...........................................................................D // ...........................................................................E // wiiiiiiide.................................................................. // wiiiiiiiiiiiiiiiiiiiiiide......................................wiiiiiiiiiide // WIIIIIIIIIIDE,,,,,,,,,,,,,.....................................WIIIIIIIIIIDE // ...........................................................................W // ...........................................................................I // .....................................wiiiiiiiiiiiiiiiiiiiiiiide............I // .....................................WIIIIIIIIIIIIIIIIIIIIIIIDE............I // ...........................................................................I // ...........WIIIIIIIIIIIDE..................................................I // .........................WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE............I // .........................WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE............I // ...........................................................................D // ...........................................................................E // ...........WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE // ...........WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIDE // ...........WIIIIIIIIIIIIDE // ...........WIIIIIIIIIIIIDE // // pragma solidity ^0.8.12; pragma abicoder v2; abstract contract CryptoPunksMarket { mapping (uint => address) public punkIndexToAddress; } abstract contract CryptoPunksData{ function punkAttributes(uint16 index) external view returns (string memory text) {} function punkImageSvg(uint16 index) external view returns (string memory svg) {} } abstract contract BrainWorms { function uMad(uint256 idx) external pure returns (string memory madResult) {} function bigMad(uint256 idx) external pure returns (string memory bigMadResult) {} } abstract contract Lockout is ERC721 {} abstract contract UsrMessage is ERC721 {} abstract contract IdeasOfMountains is ERC721 {} abstract contract Neophyte is ERC721 {} contract Wiiides is ERC721Enumerable, ERC721Burnable, ReentrancyGuard, Ownable { using Strings for uint256; using strings for *; constructor() ERC721 ("Wiiides", "Wiiides") {} // Crypto punks CryptoPunksMarket cryptoPunks; CryptoPunksData cryptoPunksData; // Some of my previous projects ERC721[] prevProjects; mapping(ERC721 => mapping(uint256 => bool)) prevProjectsClaimed; // Got Brainworms? BrainWorms brainWorms; // Currency uint256 public MINT_PRICE_FIVE = 0.075 ether; // 0.015 each uint256 public MINT_PRICE_SIXNINE = 0.69 ether; // 0.01 each address payable public withdrawalAddress; // Minting states bool public mintActive = false; bool public claimActive = false; uint256 public constant maxSupply = 10000; mapping(uint256 => uint256) private tokenOrder; uint256 tokenOrderRange = 0; uint256 nextMintIdx = 0; // Token features uint256 maxWidth = 6000; mapping(uint256 => uint256) public tokenWidth; mapping(uint256 => bool) public uMad; bool public bigMad; bytes desc; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } // Because people can claim ID's with their punk // ahead of the mint sequence, // I need to find the next available unclaimed token. // I don't expect thousands of people to claim out of sequence, // otherwise I would rewrite this to be more gas efficient function _mint() internal { uint256 tokenToMint; while(true){ // pseudo random mint pattern by sampling from a list of random non-repeating integers unchecked{ tokenToMint = tokenOrder[nextMintIdx%tokenOrderRange] + (nextMintIdx/tokenOrderRange) * tokenOrderRange; } if(tokenWidth[tokenToMint] == 0 ){ tokenWidth[tokenToMint] = randWidth(tokenToMint); _safeMint(msg.sender, tokenToMint); unchecked{ nextMintIdx++; } break; } unchecked{ nextMintIdx++; } } } // mint the next available token function mintOne() public nonReentrant callerIsUser { require( mintActive, "mint not active" ); require( balanceOf(msg.sender) + 1 <= 2, "limit 2 free mints" ); require( totalSupply() + 1 <= maxSupply, "Request to mint tokens exceeds supply" ); _mint(); } // mint five function mintFive() external payable nonReentrant callerIsUser { require( balanceOf(msg.sender) + 5 <= 12, "you own too many" ); require( msg.value >= MINT_PRICE_FIVE, "Eth sent too low" ); require( mintActive, "mint not active" ); require( totalSupply() + 5 <= maxSupply, "Request to mint tokens exceeds supply" ); uint256 i; while (i < 5) { _mint(); unchecked{ i++; } } } // mint 69 function mintSixtyNine() external payable nonReentrant callerIsUser { require( balanceOf(msg.sender) + 69 <= 75, "you own too many" ); require( msg.value >= MINT_PRICE_SIXNINE, "Eth sent too low" ); require( mintActive, "mint not active" ); require( totalSupply() + 69 <= maxSupply, "Request to mint tokens exceeds supply" ); uint256 i; while (i < 69) { _mint(); unchecked{ i++; } } } // claim any token by the ID if you're a Crypto Punk holder function claimTokenByPunkId(uint256 id) external nonReentrant callerIsUser { require( claimActive == true, "claim not active" ); require( tokenWidth[id] == 0, "can't claim already minted" ); // this address check gives me authority to airdrop people their Wiiide, // if they don't want to interact with this contract out of paranoia if(msg.sender != withdrawalAddress){ require( cryptoPunks.punkIndexToAddress(id) == msg.sender, "not your punk" ); } require( totalSupply() + 1 <= maxSupply, "Request to mint tokens exceeds supply" ); tokenWidth[id] = randWidth(id); _safeMint(msg.sender, id); } // claim by one of my previous projects function claimTokenByProject(uint256 id, uint256 projectIndex) external nonReentrant callerIsUser{ require( claimActive == true, "claim not active" ); require( balanceOf(msg.sender) + 5 <= 75, "you own too many" ); require( prevProjects[projectIndex].ownerOf(id) == msg.sender, "not your token" ); require( prevProjectsClaimed[prevProjects[projectIndex]][id] == false, "token already claimed" ); // make sure it's in the neophyte token sequence if(projectIndex==3){ require( id >= 279000000 && id <= 279000167, "neophyte id out of range" ); } require( totalSupply() + 5 <= maxSupply, "Request to mint tokens exceeds supply" ); prevProjectsClaimed[prevProjects[projectIndex]][id] = true; uint256 i; while (i < 5) { _mint(); unchecked{ i++; } } } // reset the stretch if you're the wiiide holder // most people wont bother doing this and the whole collection will trend to oblivion // but maybe its nice to give some people a little control function tokenOwnerResetStretch(uint256 id) external { require( ownerOf(id) == msg.sender, "not your wiiide" ); tokenWidth[id] = randWidth(id); } // break the trait up from 'Mohawk' into 'M' 'Hawk', and jam some extra o's in there function splitTraitHalf(strings.slice memory secondHalf,string memory delim) internal pure returns(string memory result){ if(secondHalf.endsWith(delim.toSlice())){ secondHalf = string.concat(secondHalf.toString(), delim,delim).toSlice(); } strings.slice memory firstHalf = secondHalf.split(delim.toSlice()); if(secondHalf.len()>0){ result = string.concat(firstHalf.toString(),delim,delim,delim,secondHalf.toString()); } else { result = ""; } } // attempt to replace letters in the trait we're going to repeat function splitTrait(string memory stringToSplit) internal pure returns(string memory result){ result = splitTraitHalf(stringToSplit.toSlice(),"o"); if(bytes(result).length==0){ result = splitTraitHalf(stringToSplit.toSlice(),"a"); } if(bytes(result).length==0){ result = splitTraitHalf(stringToSplit.toSlice(),"e"); } if(bytes(result).length==0){ result = string.concat(stringToSplit,"RRR"); } return result; } // generate Wiiides function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { // I really don't want to resort to using these but I might be forced to if(bigMad){ return brainWorms.bigMad(tokenId); } if(uMad[tokenId]){ return brainWorms.uMad(tokenId); } // get the SVG string memory punkSVG = cryptoPunksData.punkImageSvg(uint16(tokenId)); strings.slice memory slicePunk = punkSVG.toSlice(); // cut the head off slicePunk.beyond("data:image/svg+xml;utf8,<svg".toSlice()); // future proofing max width for browser issues uint256 tempInt = tokenWidth[tokenId]; if(tempInt > maxWidth){ tempInt = maxWidth; } string[7] memory parts; // replace the svg head of the svg with a stretched style and filled background etc parts[0] = '<svg width="500" height="500" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect width="100%" height="100%" fill="#6a8494"/><svg x="-'; // the new x offset so the wiiide stays centered parts[1] = Strings.toString((tempInt-500)/2); parts[2] = '" width="'; // the new stretched width parts[3] = Strings.toString(tempInt); parts[4] = '" height="100%" preserveAspectRatio="none" '; // reattach the svg head parts[5] = slicePunk.toString(); parts[6] = '</svg>'; // get attributes which come in as a string like "Male 1, Smile, Mohawk" string memory attrs = cryptoPunksData.punkAttributes(uint16(tokenId)); strings.slice memory sliceAttr = attrs.toSlice(); strings.slice memory delimAttr = ", ".toSlice(); // break up that string into an array of independent values string[] memory attrParts = new string[](sliceAttr.count(delimAttr)+1); for (uint i = 0; i < attrParts.length; i++) { attrParts[i] = sliceAttr.split(delimAttr).toString(); } string memory output = string.concat(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6]); string memory trait = string.concat('","attributes": [{"trait_type": "Tyyype","value": "', splitTrait(attrParts[0]) , '"}'); // all the accessories for(uint256 i = 1; i < attrParts.length; i++){ trait = string.concat(trait,',{"trait_type": "Stuuuff","value": "', splitTrait(attrParts[i]), '"}'); } // count the traits trait = string.concat(trait,',{"trait_type": "Stuuuff","value": "', Strings.toString(attrParts.length-1) , ' Tings"}'); // show how stretched they are attrs = "i"; uint256 count = 1; while(count < (tempInt/500)*100){ attrs = string.concat(attrs, "i"); count += 100; } trait = string.concat(trait,',{"trait_type": "Wiiidth","value": "Wi', attrs , 'de"}'); // build the metadata and encode the image as base64 string memory json = Base64.encode(bytes(string.concat('{"name": "Wiiide #', Strings.toString(tokenId),trait, '], "description": "',string(desc),'", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))); // encode all of that as base64 and deliver the final TokenURI output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } // random width of tokens function randWidth(uint256 idx) internal view returns(uint256){ unchecked{ return rand(((idx%6)+1)*250,totalSupply()) + 550 ; } } // this is not a good random number generator but it's good enough for this function rand(uint256 num, uint256 swerve) internal view returns (uint256) { return uint256(keccak256(abi.encodePacked( block.timestamp, num, swerve))) % num; } // free mint for myself function authorMint(uint256 _amountToMint) external onlyOwner { require( totalSupply() + _amountToMint <= maxSupply, "Request to mint tokens exceeds supply" ); uint256 i; while (i < _amountToMint) { _mint(); unchecked{ i++; } } } // set mint prices function authorSetMintPrices(uint256 newMintPriceFive, uint256 newMintPriceSixNine) external onlyOwner { require( newMintPriceFive > 0.01 ether, "wrong units" ); require( newMintPriceSixNine > 0.01 ether, "wrong units" ); MINT_PRICE_FIVE = newMintPriceFive; MINT_PRICE_SIXNINE = newMintPriceSixNine; } // this avoids having to pre-populate a giant array // where the value stored at an index is equal to the index function getSwapIdx(uint256 idx) private view returns(uint256){ // the index to swap with if(tokenOrder[idx] !=0){ // there's actually a value there return tokenOrder[idx]; } else{ // no value has been assigned // so by default the value is the index return idx; } } // Non repeating integers via Fischer Yates Shuffle // this isn't a high security way of doing this, // as I'm just going to store the shuffle order as a private variable // and anyone determined enough could read it, and mint the wiiides // that are rarest. But most people won't bother or know how. // And if you're really that determined to exploit such a // goofy project, maybe you should be doing MEV or something instead, // or go buy a mountain bike and touch grass function authorInitTokenShuffle(uint256 newRange) external onlyOwner { require( tokenOrderRange == 0, "token shuffle already called" ); tokenOrderRange = newRange; uint256 i = tokenOrderRange-1; uint256 a; uint256 b; uint256 n; while(i > 0){ // the value we're at a = getSwapIdx(i); // the value to swap to n = rand(i+1,i); b = getSwapIdx(n); // do the swap tokenOrder[i] = b; tokenOrder[n] = a; unchecked{ i = i - 1; } } } // register contracts function authorRegisterContracts(address[] calldata addr) external onlyOwner{ prevProjects.push(Lockout(addr[0])); prevProjects.push(UsrMessage(addr[1])); prevProjects.push(IdeasOfMountains(addr[2])); prevProjects.push(Neophyte(addr[3])); cryptoPunks = CryptoPunksMarket(addr[4]); cryptoPunksData = CryptoPunksData(addr[5]); } // set desc for metadata because its looong for wiiides function authorSetDesc(bytes calldata newDesc) external onlyOwner{ desc = newDesc; } // emergency set new max width if there's a browser rendering problem in the future function authorSetMaxWidth(uint256 val) external onlyOwner { maxWidth = val; } // set withdraw address function authorRegisterWithdrawlAddress(address payable givenWithdrawalAddress) external onlyOwner { withdrawalAddress = givenWithdrawalAddress; } // toggle to start/pause minting function authorToggleMintState(bool mintState, bool claimState) external onlyOwner { mintActive = mintState; claimActive = claimState; } // thank you function authorWithdraw() external onlyOwner { (bool success, ) = withdrawalAddress.call{value:address(this).balance}(""); require(success, "Transfer failed."); } function authorYouMad(uint256 idx, bool b) external onlyOwner { uMad[idx] = b; } function authorBigMad(bool b) external onlyOwner{ bigMad = b; } function authorBrainWorms(address addr) external onlyOwner{ brainWorms = BrainWorms(addr); } // thanks but why did you send shitcoins to this contract function authorForwardERC20s(IERC20 _token, address _to, uint256 _amount) external onlyOwner { require( address(_to) != address(0), "Can't send to a zero address." ); _token.transfer(_to, _amount); } // widenoooor function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); if(tokenWidth[tokenId] < maxWidth){ // 1.2x to 2x growth rate depending on tokenId 0th to 20th // (tokenId %20)*50)+1150 // it's scaled up and divided by 1000 to behave like a decimal place unchecked { tokenWidth[tokenId] = (tokenWidth[tokenId]* ((tokenId % 20)*50+1150 ))/1000; } } } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> 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 ""; uint256 encodedLen = 4 * ((len + 2) / 3); 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"MINT_PRICE_FIVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_SIXNINE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"b","type":"bool"}],"name":"authorBigMad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"authorBrainWorms","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"authorForwardERC20s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRange","type":"uint256"}],"name":"authorInitTokenShuffle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"}],"name":"authorMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"}],"name":"authorRegisterContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"}],"name":"authorRegisterWithdrawlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"newDesc","type":"bytes"}],"name":"authorSetDesc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"authorSetMaxWidth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPriceFive","type":"uint256"},{"internalType":"uint256","name":"newMintPriceSixNine","type":"uint256"}],"name":"authorSetMintPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintState","type":"bool"},{"internalType":"bool","name":"claimState","type":"bool"}],"name":"authorToggleMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"authorWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"bool","name":"b","type":"bool"}],"name":"authorYouMad","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":"bigMad","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"projectIndex","type":"uint256"}],"name":"claimTokenByProject","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claimTokenByPunkId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintSixtyNine","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":"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":"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":"id","type":"uint256"}],"name":"tokenOwnerResetStretch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenWidth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uMad","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405267010a741a462780006011556709935f581f0500006012556013805461ffff60a01b19169055600060158190556016556117706017553480156200004757600080fd5b506040805180820182526007808252665769696964657360c81b6020808401828152855180870190965292855284015281519192916200008a916000916200010b565b508051620000a09060019060208401906200010b565b50506001600a5550620000b333620000b9565b620001ee565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b60208210811415620001e857634e487b7160e01b600052602260045260246000fd5b50919050565b6148e280620001fe6000396000f3fe6080604052600436106102935760003560e01c80638614896a1161015a578063c915e7c6116100c1578063e985e9c51161007a578063e985e9c5146107a5578063f2bcd022146107ee578063f2fde38b1461080e578063f41cfe831461082e578063f551a0ef1461084e578063f6d501a31461086e57600080fd5b8063c915e7c6146106d1578063d1107163146106f1578063d4a6a2fd14610711578063d5abeb0114610732578063da30dd2514610748578063e05309531461077557600080fd5b8063a32dfc7911610113578063a32dfc7914610625578063b20d10bf14610645578063b88d4fde1461065b578063beae6e3c1461067b578063bf0570181461069b578063c87b56dd146106b157600080fd5b80638614896a146105725780638da5cb5b146105925780638f3ac22e146105b0578063913de3ff146105d057806395d89b41146105f0578063a22cb4651461060557600080fd5b806340dd8e10116101fe5780635ac89d53116101b75780635ac89d53146104ce5780636352211e146104e85780636e8ff28e1461050857806370a082311461051d578063715018a61461053d5780637f0a9d8a1461055257600080fd5b806340dd8e101461040e57806342842e0e1461042e57806342966c681461044e5780634dea28431461046e5780634f6ccce71461048e57806352189762146104ae57600080fd5b806318160ddd1161025057806318160ddd1461036657806323b872dd1461038557806325fd90f3146103a55780632f745c59146103c6578063356a36b1146103e657806340826a711461040657600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef57806309327fac14610327578063095ea7b3146103315780630ced863714610351575b600080fd5b3480156102a457600080fd5b506102b86102b33660046139c3565b61088e565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e261089f565b6040516102c49190613a38565b3480156102fb57600080fd5b5061030f61030a366004613a4b565b610931565b6040516001600160a01b0390911681526020016102c4565b61032f610958565b005b34801561033d57600080fd5b5061032f61034c366004613a79565b610aa3565b34801561035d57600080fd5b5061032f610bb9565b34801561037257600080fd5b506008545b6040519081526020016102c4565b34801561039157600080fd5b5061032f6103a0366004613aa5565b610cc6565b3480156103b157600080fd5b506013546102b890600160a01b900460ff1681565b3480156103d257600080fd5b506103776103e1366004613a79565b610cf8565b3480156103f257600080fd5b5061032f610401366004613a4b565b610d8e565b61032f610dfb565b34801561041a57600080fd5b5061032f610429366004613a4b565b610f35565b34801561043a57600080fd5b5061032f610449366004613aa5565b610f91565b34801561045a57600080fd5b5061032f610469366004613a4b565b610fac565b34801561047a57600080fd5b5061032f610489366004613af4565b610fdd565b34801561049a57600080fd5b506103776104a9366004613a4b565b610ff8565b3480156104ba57600080fd5b5061032f6104c9366004613b11565b61108b565b3480156104da57600080fd5b50601a546102b89060ff1681565b3480156104f457600080fd5b5061030f610503366004613a4b565b6110c7565b34801561051457600080fd5b5061032f611127565b34801561052957600080fd5b50610377610538366004613b4a565b6111c5565b34801561054957600080fd5b5061032f61124b565b34801561055e57600080fd5b5061032f61056d366004613a4b565b61125f565b34801561057e57600080fd5b5061032f61058d366004613b67565b61126c565b34801561059e57600080fd5b50600b546001600160a01b031661030f565b3480156105bc57600080fd5b5061032f6105cb366004613bdc565b611479565b3480156105dc57600080fd5b5061032f6105eb366004613a4b565b6114a1565b3480156105fc57600080fd5b506102e2611572565b34801561061157600080fd5b5061032f610620366004613c01565b611581565b34801561063157600080fd5b5061032f610640366004613c1f565b61158c565b34801561065157600080fd5b5061037760125481565b34801561066757600080fd5b5061032f610676366004613cb0565b611627565b34801561068757600080fd5b5061032f610696366004613d5f565b61165f565b3480156106a757600080fd5b5061037760115481565b3480156106bd57600080fd5b506102e26106cc366004613a4b565b611673565b3480156106dd57600080fd5b5061032f6106ec366004613b4a565b611c72565b3480156106fd57600080fd5b5061032f61070c366004613aa5565b611c9c565b34801561071d57600080fd5b506013546102b890600160a81b900460ff1681565b34801561073e57600080fd5b5061037761271081565b34801561075457600080fd5b50610377610763366004613a4b565b60186020526000908152604090205481565b34801561078157600080fd5b506102b8610790366004613a4b565b60196020526000908152604090205460ff1681565b3480156107b157600080fd5b506102b86107c0366004613dbf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107fa57600080fd5b5060135461030f906001600160a01b031681565b34801561081a57600080fd5b5061032f610829366004613b4a565b611d6d565b34801561083a57600080fd5b5061032f610849366004613c1f565b611de3565b34801561085a57600080fd5b5061032f610869366004613b4a565b612137565b34801561087a57600080fd5b5061032f610889366004613a4b565b612161565b600061089982612371565b92915050565b6060600080546108ae90613ded565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90613ded565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c82612396565b506000908152600460205260409020546001600160a01b031690565b6002600a5414156109845760405162461bcd60e51b815260040161097b90613e28565b60405180910390fd5b6002600a553233146109a85760405162461bcd60e51b815260040161097b90613e5f565b600c6109b3336111c5565b6109be906005613eac565b11156109dc5760405162461bcd60e51b815260040161097b90613ec4565b601154341015610a215760405162461bcd60e51b815260206004820152601060248201526f4574682073656e7420746f6f206c6f7760801b604482015260640161097b565b601354600160a01b900460ff16610a4a5760405162461bcd60e51b815260040161097b90613eee565b612710610a5660085490565b610a61906005613eac565b1115610a7f5760405162461bcd60e51b815260040161097b90613f17565b60005b6005811015610a9b57610a936123f5565b600101610a82565b506001600a55565b6000610aae826110c7565b9050806001600160a01b0316836001600160a01b03161415610b1c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097b565b336001600160a01b0382161480610b385750610b3881336107c0565b610baa5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161097b565b610bb48383612492565b505050565b6002600a541415610bdc5760405162461bcd60e51b815260040161097b90613e28565b6002600a55323314610c005760405162461bcd60e51b815260040161097b90613e5f565b601354600160a01b900460ff16610c295760405162461bcd60e51b815260040161097b90613eee565b6002610c34336111c5565b610c3f906001613eac565b1115610c825760405162461bcd60e51b81526020600482015260126024820152716c696d697420322066726565206d696e747360701b604482015260640161097b565b612710610c8e60085490565b610c99906001613eac565b1115610cb75760405162461bcd60e51b815260040161097b90613f17565b610cbf6123f5565b6001600a55565b610cd1335b82612500565b610ced5760405162461bcd60e51b815260040161097b90613f5c565b610bb483838361257f565b6000610d03836111c5565b8210610d655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610d98826110c7565b6001600160a01b031614610de05760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420796f75722077696969646560881b604482015260640161097b565b610de981612726565b60009182526018602052604090912055565b6002600a541415610e1e5760405162461bcd60e51b815260040161097b90613e28565b6002600a55323314610e425760405162461bcd60e51b815260040161097b90613e5f565b604b610e4d336111c5565b610e58906045613eac565b1115610e765760405162461bcd60e51b815260040161097b90613ec4565b601254341015610ebb5760405162461bcd60e51b815260206004820152601060248201526f4574682073656e7420746f6f206c6f7760801b604482015260640161097b565b601354600160a01b900460ff16610ee45760405162461bcd60e51b815260040161097b90613eee565b612710610ef060085490565b610efb906045613eac565b1115610f195760405162461bcd60e51b815260040161097b90613f17565b60005b6045811015610a9b57610f2d6123f5565b600101610f1c565b610f3d61274d565b61271081610f4a60085490565b610f549190613eac565b1115610f725760405162461bcd60e51b815260040161097b90613f17565b60005b81811015610f8d57610f856123f5565b600101610f75565b5050565b610bb483838360405180602001604052806000815250611627565b610fb533610ccb565b610fd15760405162461bcd60e51b815260040161097b90613f5c565b610fda816127a7565b50565b610fe561274d565b601a805460ff1916911515919091179055565b600061100360085490565b82106110665760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097b565b6008828154811061107957611079613faa565b90600052602060002001549050919050565b61109361274d565b6013805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055565b6000818152600260205260408120546001600160a01b0316806108995760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161097b565b61112f61274d565b6013546040516000916001600160a01b03169047908381818185875af1925050503d806000811461117c576040519150601f19603f3d011682016040523d82523d6000602084013e611181565b606091505b5050905080610fda5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161097b565b60006001600160a01b03821661122f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161097b565b506001600160a01b031660009081526003602052604090205490565b61125361274d565b61125d600061284e565b565b61126761274d565b601755565b61127461274d565b600e8282600081811061128957611289613faa565b905060200201602081019061129e9190613b4a565b815460018082018455600093845260209093200180546001600160a01b0319166001600160a01b0392909216919091179055600e90839083908181106112e6576112e6613faa565b90506020020160208101906112fb9190613b4a565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b03909216919091179055600e8282600281811061134257611342613faa565b90506020020160208101906113579190613b4a565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b03909216919091179055600e8282600381811061139e5761139e613faa565b90506020020160208101906113b39190613b4a565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b03909216919091179055818160048181106113f8576113f8613faa565b905060200201602081019061140d9190613b4a565b600c80546001600160a01b0319166001600160a01b03929092169190911790558181600581811061144057611440613faa565b90506020020160208101906114559190613b4a565b600d80546001600160a01b0319166001600160a01b03929092169190911790555050565b61148161274d565b600091825260196020526040909120805460ff1916911515919091179055565b6114a961274d565b601554156114f95760405162461bcd60e51b815260206004820152601c60248201527f746f6b656e2073687566666c6520616c72656164792063616c6c656400000000604482015260640161097b565b6015819055600061150b600183613fc0565b905060008060005b831561156b57611522846128a0565b9250611538611532856001613eac565b856128d0565b9050611543816128a0565b6000858152601460205260408082208390558382529020849055600019909401939150611513565b5050505050565b6060600180546108ae90613ded565b610f8d338383612919565b61159461274d565b662386f26fc1000082116115d85760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720756e69747360a81b604482015260640161097b565b662386f26fc10000811161161c5760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720756e69747360a81b604482015260640161097b565b601191909155601255565b6116313383612500565b61164d5760405162461bcd60e51b815260040161097b90613f5c565b611659848484846129e8565b50505050565b61166761274d565b610bb4601b83836138f1565b601a5460609060ff16156116f35760105460405163b3159b6960e01b8152600481018490526001600160a01b039091169063b3159b69906024015b600060405180830381865afa1580156116cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108999190810190613fd7565b60008281526019602052604090205460ff161561173b5760105460405163e053095360e01b8152600481018490526001600160a01b039091169063e0530953906024016116ae565b600d546040516374beb04760e01b815261ffff841660048201526000916001600160a01b0316906374beb04790602401600060405180830381865afa158015611788573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117b09190810190613fd7565b905060006117bd82612a1b565b90506118076118006040518060400160405280601c81526020017f646174613a696d6167652f7376672b786d6c3b757466382c3c73766700000000815250612a1b565b8290612a48565b5060008481526018602052604090205460175481111561182657506017545b61182e613971565b6040518060c0016040528060968152602001614817609691398152611869600261185a6101f485613fc0565b6118649190614064565b612acd565b602082810191909152604080518082018252600981526811103bb4b23a341e9160b91b9281019290925282015261189f82612acd565b606080830191909152604080519182019052602b8082526147ac602083013960808201526118cc83612bcb565b60a0820152604080518082019091526006808252651e17b9bb339f60d11b602083015282906020020152600d546040516376dfe29760e01b815261ffff881660048201526000916001600160a01b0316906376dfe29790602401600060405180830381865afa158015611943573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261196b9190810190613fd7565b9050600061197882612a1b565b9050600061199f60405180604001604052806002815260200161016160f51b815250612a1b565b905060006119ad8383612c3b565b6119b8906001613eac565b67ffffffffffffffff8111156119d0576119d0613c41565b604051908082528060200260200182016040528015611a0357816020015b60608152602001906001900390816119ee5790505b50905060005b8151811015611a5457611a24611a1f8585612cd5565b612bcb565b828281518110611a3657611a36613faa565b60200260200101819052508080611a4c90614078565b915050611a09565b50845160208087015160408089015160608a015160808b015160a08c015160c08d01519451600098611a8a9890979691016140af565b60405160208183030381529060405290506000611ac083600081518110611ab357611ab3613faa565b6020026020010151612cf4565b604051602001611ad09190614141565b60408051601f19818403018152919052905060015b8351811015611b395781611b04858381518110611ab357611ab3613faa565b604051602001611b159291906141e4565b60405160208183030381529060405291508080611b3190614078565b915050611ae5565b5080611b4c600185516118649190613fc0565b604051602001611b5d929190614229565b60408051601f198184030181528282019091526001808352606960f81b602084015291975091505b611b916101f48a614064565b611b9c906064614274565b811015611bd85786604051602001611bb49190614293565b60408051601f198184030181529190529650611bd1606482613eac565b9050611b85565b8187604051602001611beb9291906142b8565b60405160208183030381529060405291506000611c3d611c0a8f612acd565b84601b611c1688612dbc565b604051602001611c299493929190614331565b604051602081830303815290604052612dbc565b905080604051602001611c509190614491565b60408051601f198184030181529190529e9d5050505050505050505050505050565b611c7a61274d565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b611ca461274d565b6001600160a01b038216611cfa5760405162461bcd60e51b815260206004820152601d60248201527f43616e27742073656e6420746f2061207a65726f20616464726573732e000000604482015260640161097b565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015611d49573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165991906144d6565b611d7561274d565b6001600160a01b038116611dda5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097b565b610fda8161284e565b6002600a541415611e065760405162461bcd60e51b815260040161097b90613e28565b6002600a55323314611e2a5760405162461bcd60e51b815260040161097b90613e5f565b601354600160a81b900460ff161515600114611e7b5760405162461bcd60e51b815260206004820152601060248201526f636c61696d206e6f742061637469766560801b604482015260640161097b565b604b611e86336111c5565b611e91906005613eac565b1115611eaf5760405162461bcd60e51b815260040161097b90613ec4565b336001600160a01b0316600e8281548110611ecc57611ecc613faa565b6000918252602090912001546040516331a9108f60e11b8152600481018590526001600160a01b0390911690636352211e90602401602060405180830381865afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4291906144f3565b6001600160a01b031614611f895760405162461bcd60e51b815260206004820152600e60248201526d3737ba103cb7bab9103a37b5b2b760911b604482015260640161097b565b600f6000600e8381548110611fa057611fa0613faa565b60009182526020808320909101546001600160a01b03168352828101939093526040918201812085825290925290205460ff16156120185760405162461bcd60e51b81526020600482015260156024820152741d1bdad95b88185b1c9958591e4818db185a5b5959605a1b604482015260640161097b565b8060031415612085576310a133c0821015801561203957506310a134678211155b6120855760405162461bcd60e51b815260206004820152601860248201527f6e656f7068797465206964206f7574206f662072616e67650000000000000000604482015260640161097b565b61271061209160085490565b61209c906005613eac565b11156120ba5760405162461bcd60e51b815260040161097b90613f17565b6001600f6000600e84815481106120d3576120d3613faa565b6000918252602080832091909101546001600160a01b0316835282810193909352604091820181208682529092528120805460ff1916921515929092179091555b600581101561212d576121256123f5565b600101612114565b50506001600a5550565b61213f61274d565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a5414156121845760405162461bcd60e51b815260040161097b90613e28565b6002600a553233146121a85760405162461bcd60e51b815260040161097b90613e5f565b601354600160a81b900460ff1615156001146121f95760405162461bcd60e51b815260206004820152601060248201526f636c61696d206e6f742061637469766560801b604482015260640161097b565b600081815260186020526040902054156122555760405162461bcd60e51b815260206004820152601a60248201527f63616e277420636c61696d20616c7265616479206d696e746564000000000000604482015260640161097b565b6013546001600160a01b0316331461231a57600c54604051630b02f02d60e31b81526004810183905233916001600160a01b031690635817816890602401602060405180830381865afa1580156122b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d491906144f3565b6001600160a01b03161461231a5760405162461bcd60e51b815260206004820152600d60248201526c6e6f7420796f75722070756e6b60981b604482015260640161097b565b61271061232660085490565b612331906001613eac565b111561234f5760405162461bcd60e51b815260040161097b90613f17565b61235881612726565b600082815260186020526040902055610a9b3382612f22565b60006001600160e01b0319821663780e9d6360e01b1480610899575061089982612f3c565b6000818152600260205260409020546001600160a01b0316610fda5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161097b565b60005b6015546015546016548161240e5761240e61404e565b040260146000601554601654816124275761242761404e565b068152602001908152602001600020540190506018600082815260200190815260200160002054600014156124845761245f81612726565b6000828152601860205260409020556124783382612f22565b60168054600101905550565b6016805460010190556123f8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124c7826110c7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061250c836110c7565b9050806001600160a01b0316846001600160a01b0316148061255357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806125775750836001600160a01b031661256c84610931565b6001600160a01b0316145b949350505050565b826001600160a01b0316612592826110c7565b6001600160a01b0316146125f65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161097b565b6001600160a01b0382166126585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097b565b612663838383612f8c565b61266e600082612492565b6001600160a01b0383166000908152600360205260408120805460019290612697908490613fc0565b90915550506001600160a01b03821660009081526003602052604081208054600192906126c5908490613eac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127436006830660010160fa0261273e60085490565b6128d0565b6102260192915050565b600b546001600160a01b0316331461125d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161097b565b60006127b2826110c7565b90506127c081600084612f8c565b6127cb600083612492565b6001600160a01b03811660009081526003602052604081208054600192906127f4908490613fc0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815260146020526040812054156128c7575060009081526014602052604090205490565b5090565b919050565b604080514260208201529081018390526060810182905260009083906080016040516020818303038152906040528051906020012060001c6129129190614510565b9392505050565b816001600160a01b0316836001600160a01b0316141561297b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6129f384848461257f565b6129ff84848484612fd9565b6116595760405162461bcd60e51b815260040161097b90614524565b60408051808201825260008082526020918201528151808301909252825182529182019181019190915290565b6040805180820190915260008082526020820152815183511015612a6d575081610899565b6020808301519084015160019114612a945750815160208481015190840151829020919020145b8015612ac557825184518590612aab908390613fc0565b9052508251602085018051612ac1908390613eac565b9052505b509192915050565b606081612af15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b1b5780612b0581614078565b9150612b149050600a83614064565b9150612af5565b60008167ffffffffffffffff811115612b3657612b36613c41565b6040519080825280601f01601f191660200182016040528015612b60576020820181803683370190505b5090505b841561257757612b75600183613fc0565b9150612b82600a86614510565b612b8d906030613eac565b60f81b818381518110612ba257612ba2613faa565b60200101906001600160f81b031916908160001a905350612bc4600a86614064565b9450612b64565b60606000826000015167ffffffffffffffff811115612bec57612bec613c41565b6040519080825280601f01601f191660200182016040528015612c16576020820181803683370190505b5090506000602082019050612c3481856020015186600001516130d7565b5092915050565b6000808260000151612c5f8560000151866020015186600001518760200151613151565b612c699190613eac565b90505b83516020850151612c7d9190613eac565b8111612c345781612c8d81614078565b9250508260000151612cc4856020015183612ca89190613fc0565b8651612cb49190613fc0565b8386600001518760200151613151565b612cce9190613eac565b9050612c6c565b6040805180820190915260008082526020820152612c34838383613272565b6060612d21612d0283612a1b565b604051806040016040528060018152602001606f60f81b81525061331e565b9050805160001415612d5b57612d58612d3983612a1b565b604051806040016040528060018152602001606160f81b81525061331e565b90505b8051612d8f57612d8c612d6d83612a1b565b604051806040016040528060018152602001606560f81b81525061331e565b90505b80516128cb5781604051602001612da69190614576565b6040516020818303038152906040529050919050565b805160609080612ddc575050604080516020810190915260008152919050565b60006003612deb836002613eac565b612df59190614064565b612e00906004614274565b90506000612e0f826020613eac565b67ffffffffffffffff811115612e2757612e27613c41565b6040519080825280601f01601f191660200182016040528015612e51576020820181803683370190505b50905060006040518060600160405280604081526020016147d7604091399050600181016020830160005b86811015612edd576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612e7c565b506003860660018114612ef75760028114612f0857612f14565b613d3d60f01b600119830152612f14565b603d60f81b6000198301525b505050918152949350505050565b610f8d8282604051806020016040528060008152506133ed565b60006001600160e01b031982166380ac58cd60e01b1480612f6d57506001600160e01b03198216635b5e139f60e01b145b8061089957506301ffc9a760e01b6001600160e01b0319831614610899565b612f97838383613420565b6017546000828152601860205260409020541015610bb457600081815260186020526040902080546103e8601490930660320261047e01029190910490555050565b60006001600160a01b0384163b156130cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061301d90339089908890889060040161459d565b6020604051808303816000875af1925050508015613058575060408051601f3d908101601f19168201909252613055918101906145da565b60015b6130b2573d808015613086576040519150601f19603f3d011682016040523d82523d6000602084013e61308b565b606091505b5080516130aa5760405162461bcd60e51b815260040161097b90614524565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612577565b506001949350505050565b6020811061310f57815183526130ee602084613eac565b92506130fb602083613eac565b9150613108602082613fc0565b90506130d7565b600019811561313e576001613125836020613fc0565b613131906101006146db565b61313b9190613fc0565b90505b9151835183169219169190911790915250565b6000838186851161325d576020851161320b576000851561319d576001613179876020613fc0565b613184906008614274565b61318f9060026146db565b6131999190613fc0565b1990505b845181166000876131ae8b8b613eac565b6131b89190613fc0565b855190915083165b8281146131fd578186106131e5576131d88b8b613eac565b9650505050505050612577565b856131ef81614078565b9650508386511690506131c0565b859650505050505050612577565b508383206000905b61321d8689613fc0565b821161325b578583208181141561323a5783945050505050612577565b613245600185613eac565b935050818061325390614078565b925050613213565b505b6132678787613eac565b979650505050505050565b604080518082019091526000808252602082015260006132a48560000151866020015186600001518760200151613151565b6020808701805191860191909152519091506132c09082613fc0565b8352845160208601516132d39190613eac565b8114156132e35760008552613315565b835183516132f19190613eac565b85518690613300908390613fc0565b905250835161330f9082613eac565b60208601525b50909392505050565b606061333361332c83612a1b565b84906134d8565b1561336f5761336c61334484612bcb565b8384604051602001613358939291906146e7565b604051602081830303815290604052612a1b565b92505b600061338461337d84612a1b565b8590612cd5565b905060006133918561353a565b11156133d6576133a081612bcb565b8384856133ac88612bcb565b6040516020016133c095949392919061472a565b6040516020818303038152906040529150612c34565b505060408051602081019091526000815292915050565b6133f78383613613565b6134046000848484612fd9565b610bb45760405162461bcd60e51b815260040161097b90614524565b6001600160a01b03831661347b5761347681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61349e565b816001600160a01b0316836001600160a01b03161461349e5761349e8382613761565b6001600160a01b0382166134b557610bb4816137fe565b826001600160a01b0316826001600160a01b031614610bb457610bb482826138ad565b8051825160009111156134ed57506000610899565b8151835160208501516000929161350391613eac565b61350d9190613fc0565b90508260200151811415613525576001915050610899565b82516020840151819020912014905092915050565b600080601f836020015161354e9190613fc0565b83519091506000906135609083613eac565b9050600092505b8082101561360c57815160ff16608081101561358f57613588600184613eac565b92506135f9565b60e08160ff1610156135a657613588600284613eac565b60f08160ff1610156135bd57613588600384613eac565b60f88160ff1610156135d457613588600484613eac565b60fc8160ff1610156135eb57613588600584613eac565b6135f6600684613eac565b92505b508261360481614078565b935050613567565b5050919050565b6001600160a01b0382166136695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097b565b6000818152600260205260409020546001600160a01b0316156136ce5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097b565b6136da60008383612f8c565b6001600160a01b0382166000908152600360205260408120805460019290613703908490613eac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161376e846111c5565b6137789190613fc0565b6000838152600760205260409020549091508082146137cb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061381090600190613fc0565b6000838152600960205260408120546008805493945090928490811061383857613838613faa565b90600052602060002001549050806008838154811061385957613859613faa565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061389157613891614795565b6001900381819060005260206000200160009055905550505050565b60006138b8836111c5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546138fd90613ded565b90600052602060002090601f01602090048101928261391f5760008555613965565b82601f106139385782800160ff19823516178555613965565b82800160010185558215613965579182015b8281111561396557823582559160200191906001019061394a565b506128c7929150613998565b6040518060e001604052806007905b60608152602001906001900390816139805790505090565b5b808211156128c75760008155600101613999565b6001600160e01b031981168114610fda57600080fd5b6000602082840312156139d557600080fd5b8135612912816139ad565b60005b838110156139fb5781810151838201526020016139e3565b838111156116595750506000910152565b60008151808452613a248160208601602086016139e0565b601f01601f19169290920160200192915050565b6020815260006129126020830184613a0c565b600060208284031215613a5d57600080fd5b5035919050565b6001600160a01b0381168114610fda57600080fd5b60008060408385031215613a8c57600080fd5b8235613a9781613a64565b946020939093013593505050565b600080600060608486031215613aba57600080fd5b8335613ac581613a64565b92506020840135613ad581613a64565b929592945050506040919091013590565b8015158114610fda57600080fd5b600060208284031215613b0657600080fd5b813561291281613ae6565b60008060408385031215613b2457600080fd5b8235613b2f81613ae6565b91506020830135613b3f81613ae6565b809150509250929050565b600060208284031215613b5c57600080fd5b813561291281613a64565b60008060208385031215613b7a57600080fd5b823567ffffffffffffffff80821115613b9257600080fd5b818501915085601f830112613ba657600080fd5b813581811115613bb557600080fd5b8660208260051b8501011115613bca57600080fd5b60209290920196919550909350505050565b60008060408385031215613bef57600080fd5b823591506020830135613b3f81613ae6565b60008060408385031215613c1457600080fd5b8235613b2f81613a64565b60008060408385031215613c3257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c8057613c80613c41565b604052919050565b600067ffffffffffffffff821115613ca257613ca2613c41565b50601f01601f191660200190565b60008060008060808587031215613cc657600080fd5b8435613cd181613a64565b93506020850135613ce181613a64565b925060408501359150606085013567ffffffffffffffff811115613d0457600080fd5b8501601f81018713613d1557600080fd5b8035613d28613d2382613c88565b613c57565b818152886020838501011115613d3d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060208385031215613d7257600080fd5b823567ffffffffffffffff80821115613d8a57600080fd5b818501915085601f830112613d9e57600080fd5b813581811115613dad57600080fd5b866020828501011115613bca57600080fd5b60008060408385031215613dd257600080fd5b8235613ddd81613a64565b91506020830135613b3f81613a64565b600181811c90821680613e0157607f821691505b60208210811415613e2257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613ebf57613ebf613e96565b500190565b60208082526010908201526f796f75206f776e20746f6f206d616e7960801b604082015260600190565b6020808252600f908201526e6d696e74206e6f742061637469766560881b604082015260600190565b60208082526025908201527f5265717565737420746f206d696e7420746f6b656e73206578636565647320736040820152647570706c7960d81b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600082821015613fd257613fd2613e96565b500390565b600060208284031215613fe957600080fd5b815167ffffffffffffffff81111561400057600080fd5b8201601f8101841361401157600080fd5b805161401f613d2382613c88565b81815285602083850101111561403457600080fd5b6140458260208301602086016139e0565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b6000826140735761407361404e565b500490565b600060001982141561408c5761408c613e96565b5060010190565b600081516140a58185602086016139e0565b9290920192915050565b6000885160206140c28285838e016139e0565b8951918401916140d58184848e016139e0565b89519201916140e78184848d016139e0565b88519201916140f98184848c016139e0565b875192019161410b8184848b016139e0565b865192019161411d8184848a016139e0565b855192019161412f81848489016139e0565b919091019a9950505050505050505050565b7f222c2261747472696275746573223a205b7b2274726169745f74797065223a20815272112a3cbcbcb8329116113b30b63ab2911d101160691b6020820152600082516141958160338501602087016139e0565b61227d60f01b6033939091019283015250603501919050565b7f2c7b2274726169745f74797065223a202253747575756666222c2276616c7565815263111d101160e11b602082015260240190565b600083516141f68184602088016139e0565b6142018184016141ae565b905083516142138183602088016139e0565b61227d60f01b9101908152600201949350505050565b6000835161423b8184602088016139e0565b6142468184016141ae565b905083516142588183602088016139e0565b672054696e6773227d60c01b9101908152600801949350505050565b600081600019048311821515161561428e5761428e613e96565b500290565b600082516142a58184602087016139e0565b606960f81b920191825250600101919050565b600083516142ca8184602088016139e0565b80830190507f2c7b2274726169745f74797065223a202257696969647468222c2276616c7565815265223a2022576960d01b602082015283516143148160268401602088016139e0565b636465227d60e01b60269290910191820152602a01949350505050565b717b226e616d65223a2022576969696465202360701b8152845160009060206143608260128601838b016139e0565b8651918401916143768160128501848b016139e0565b722e9610113232b9b1b934b83a34b7b7111d101160691b601293909101928301528554602590600090600181811c90808316806143b457607f831692505b8683108114156143d257634e487b7160e01b85526022600452602485fd5b8080156143e657600181146143fb5761442c565b60ff198516898801528389018701955061442c565b60008d81526020902060005b858110156144225781548b82018a0152908401908901614407565b505086848a010195505b50507f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b845250506618985cd94d8d0b60ca1b6020830152506144716027820188614093565b93505050506144848161227d60f01b9052565b6002019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516144c981601d8501602087016139e0565b91909101601d0192915050565b6000602082840312156144e857600080fd5b815161291281613ae6565b60006020828403121561450557600080fd5b815161291281613a64565b60008261451f5761451f61404e565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082516145888184602087016139e0565b6229292960e91b920191825250600301919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906145d090830184613a0c565b9695505050505050565b6000602082840312156145ec57600080fd5b8151612912816139ad565b600181815b8085111561463257816000190482111561461857614618613e96565b8085161561462557918102915b93841c93908002906145fc565b509250929050565b60008261464957506001610899565b8161465657506000610899565b816001811461466c576002811461467657614692565b6001915050610899565b60ff84111561468757614687613e96565b50506001821b610899565b5060208310610133831016604e8410600b84101617156146b5575081810a610899565b6146bf83836145f7565b80600019048211156146d3576146d3613e96565b029392505050565b6000612912838361463a565b600084516146f98184602089016139e0565b84519083019061470d8183602089016139e0565b84519101906147208183602088016139e0565b0195945050505050565b6000865161473c818460208b016139e0565b865190830190614750818360208b016139e0565b8651910190614763818360208a016139e0565b85519101906147768183602089016139e0565b84519101906147898183602088016139e0565b01979650505050505050565b634e487b7160e01b600052603160045260246000fdfe22206865696768743d223130302522207072657365727665417370656374526174696f3d226e6f6e6522204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672077696474683d2235303022206865696768743d223530302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d226e6f6e65223e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d2223366138343934222f3e3c73766720783d222da26469706673582212202144a30b8a9d33656b3ec249b6d7c3631d65233276005a6e35c02fdc4dcb2abe64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102935760003560e01c80638614896a1161015a578063c915e7c6116100c1578063e985e9c51161007a578063e985e9c5146107a5578063f2bcd022146107ee578063f2fde38b1461080e578063f41cfe831461082e578063f551a0ef1461084e578063f6d501a31461086e57600080fd5b8063c915e7c6146106d1578063d1107163146106f1578063d4a6a2fd14610711578063d5abeb0114610732578063da30dd2514610748578063e05309531461077557600080fd5b8063a32dfc7911610113578063a32dfc7914610625578063b20d10bf14610645578063b88d4fde1461065b578063beae6e3c1461067b578063bf0570181461069b578063c87b56dd146106b157600080fd5b80638614896a146105725780638da5cb5b146105925780638f3ac22e146105b0578063913de3ff146105d057806395d89b41146105f0578063a22cb4651461060557600080fd5b806340dd8e10116101fe5780635ac89d53116101b75780635ac89d53146104ce5780636352211e146104e85780636e8ff28e1461050857806370a082311461051d578063715018a61461053d5780637f0a9d8a1461055257600080fd5b806340dd8e101461040e57806342842e0e1461042e57806342966c681461044e5780634dea28431461046e5780634f6ccce71461048e57806352189762146104ae57600080fd5b806318160ddd1161025057806318160ddd1461036657806323b872dd1461038557806325fd90f3146103a55780632f745c59146103c6578063356a36b1146103e657806340826a711461040657600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef57806309327fac14610327578063095ea7b3146103315780630ced863714610351575b600080fd5b3480156102a457600080fd5b506102b86102b33660046139c3565b61088e565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e261089f565b6040516102c49190613a38565b3480156102fb57600080fd5b5061030f61030a366004613a4b565b610931565b6040516001600160a01b0390911681526020016102c4565b61032f610958565b005b34801561033d57600080fd5b5061032f61034c366004613a79565b610aa3565b34801561035d57600080fd5b5061032f610bb9565b34801561037257600080fd5b506008545b6040519081526020016102c4565b34801561039157600080fd5b5061032f6103a0366004613aa5565b610cc6565b3480156103b157600080fd5b506013546102b890600160a01b900460ff1681565b3480156103d257600080fd5b506103776103e1366004613a79565b610cf8565b3480156103f257600080fd5b5061032f610401366004613a4b565b610d8e565b61032f610dfb565b34801561041a57600080fd5b5061032f610429366004613a4b565b610f35565b34801561043a57600080fd5b5061032f610449366004613aa5565b610f91565b34801561045a57600080fd5b5061032f610469366004613a4b565b610fac565b34801561047a57600080fd5b5061032f610489366004613af4565b610fdd565b34801561049a57600080fd5b506103776104a9366004613a4b565b610ff8565b3480156104ba57600080fd5b5061032f6104c9366004613b11565b61108b565b3480156104da57600080fd5b50601a546102b89060ff1681565b3480156104f457600080fd5b5061030f610503366004613a4b565b6110c7565b34801561051457600080fd5b5061032f611127565b34801561052957600080fd5b50610377610538366004613b4a565b6111c5565b34801561054957600080fd5b5061032f61124b565b34801561055e57600080fd5b5061032f61056d366004613a4b565b61125f565b34801561057e57600080fd5b5061032f61058d366004613b67565b61126c565b34801561059e57600080fd5b50600b546001600160a01b031661030f565b3480156105bc57600080fd5b5061032f6105cb366004613bdc565b611479565b3480156105dc57600080fd5b5061032f6105eb366004613a4b565b6114a1565b3480156105fc57600080fd5b506102e2611572565b34801561061157600080fd5b5061032f610620366004613c01565b611581565b34801561063157600080fd5b5061032f610640366004613c1f565b61158c565b34801561065157600080fd5b5061037760125481565b34801561066757600080fd5b5061032f610676366004613cb0565b611627565b34801561068757600080fd5b5061032f610696366004613d5f565b61165f565b3480156106a757600080fd5b5061037760115481565b3480156106bd57600080fd5b506102e26106cc366004613a4b565b611673565b3480156106dd57600080fd5b5061032f6106ec366004613b4a565b611c72565b3480156106fd57600080fd5b5061032f61070c366004613aa5565b611c9c565b34801561071d57600080fd5b506013546102b890600160a81b900460ff1681565b34801561073e57600080fd5b5061037761271081565b34801561075457600080fd5b50610377610763366004613a4b565b60186020526000908152604090205481565b34801561078157600080fd5b506102b8610790366004613a4b565b60196020526000908152604090205460ff1681565b3480156107b157600080fd5b506102b86107c0366004613dbf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107fa57600080fd5b5060135461030f906001600160a01b031681565b34801561081a57600080fd5b5061032f610829366004613b4a565b611d6d565b34801561083a57600080fd5b5061032f610849366004613c1f565b611de3565b34801561085a57600080fd5b5061032f610869366004613b4a565b612137565b34801561087a57600080fd5b5061032f610889366004613a4b565b612161565b600061089982612371565b92915050565b6060600080546108ae90613ded565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90613ded565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c82612396565b506000908152600460205260409020546001600160a01b031690565b6002600a5414156109845760405162461bcd60e51b815260040161097b90613e28565b60405180910390fd5b6002600a553233146109a85760405162461bcd60e51b815260040161097b90613e5f565b600c6109b3336111c5565b6109be906005613eac565b11156109dc5760405162461bcd60e51b815260040161097b90613ec4565b601154341015610a215760405162461bcd60e51b815260206004820152601060248201526f4574682073656e7420746f6f206c6f7760801b604482015260640161097b565b601354600160a01b900460ff16610a4a5760405162461bcd60e51b815260040161097b90613eee565b612710610a5660085490565b610a61906005613eac565b1115610a7f5760405162461bcd60e51b815260040161097b90613f17565b60005b6005811015610a9b57610a936123f5565b600101610a82565b506001600a55565b6000610aae826110c7565b9050806001600160a01b0316836001600160a01b03161415610b1c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097b565b336001600160a01b0382161480610b385750610b3881336107c0565b610baa5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161097b565b610bb48383612492565b505050565b6002600a541415610bdc5760405162461bcd60e51b815260040161097b90613e28565b6002600a55323314610c005760405162461bcd60e51b815260040161097b90613e5f565b601354600160a01b900460ff16610c295760405162461bcd60e51b815260040161097b90613eee565b6002610c34336111c5565b610c3f906001613eac565b1115610c825760405162461bcd60e51b81526020600482015260126024820152716c696d697420322066726565206d696e747360701b604482015260640161097b565b612710610c8e60085490565b610c99906001613eac565b1115610cb75760405162461bcd60e51b815260040161097b90613f17565b610cbf6123f5565b6001600a55565b610cd1335b82612500565b610ced5760405162461bcd60e51b815260040161097b90613f5c565b610bb483838361257f565b6000610d03836111c5565b8210610d655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610d98826110c7565b6001600160a01b031614610de05760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420796f75722077696969646560881b604482015260640161097b565b610de981612726565b60009182526018602052604090912055565b6002600a541415610e1e5760405162461bcd60e51b815260040161097b90613e28565b6002600a55323314610e425760405162461bcd60e51b815260040161097b90613e5f565b604b610e4d336111c5565b610e58906045613eac565b1115610e765760405162461bcd60e51b815260040161097b90613ec4565b601254341015610ebb5760405162461bcd60e51b815260206004820152601060248201526f4574682073656e7420746f6f206c6f7760801b604482015260640161097b565b601354600160a01b900460ff16610ee45760405162461bcd60e51b815260040161097b90613eee565b612710610ef060085490565b610efb906045613eac565b1115610f195760405162461bcd60e51b815260040161097b90613f17565b60005b6045811015610a9b57610f2d6123f5565b600101610f1c565b610f3d61274d565b61271081610f4a60085490565b610f549190613eac565b1115610f725760405162461bcd60e51b815260040161097b90613f17565b60005b81811015610f8d57610f856123f5565b600101610f75565b5050565b610bb483838360405180602001604052806000815250611627565b610fb533610ccb565b610fd15760405162461bcd60e51b815260040161097b90613f5c565b610fda816127a7565b50565b610fe561274d565b601a805460ff1916911515919091179055565b600061100360085490565b82106110665760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097b565b6008828154811061107957611079613faa565b90600052602060002001549050919050565b61109361274d565b6013805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055565b6000818152600260205260408120546001600160a01b0316806108995760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161097b565b61112f61274d565b6013546040516000916001600160a01b03169047908381818185875af1925050503d806000811461117c576040519150601f19603f3d011682016040523d82523d6000602084013e611181565b606091505b5050905080610fda5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161097b565b60006001600160a01b03821661122f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161097b565b506001600160a01b031660009081526003602052604090205490565b61125361274d565b61125d600061284e565b565b61126761274d565b601755565b61127461274d565b600e8282600081811061128957611289613faa565b905060200201602081019061129e9190613b4a565b815460018082018455600093845260209093200180546001600160a01b0319166001600160a01b0392909216919091179055600e90839083908181106112e6576112e6613faa565b90506020020160208101906112fb9190613b4a565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b03909216919091179055600e8282600281811061134257611342613faa565b90506020020160208101906113579190613b4a565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b03909216919091179055600e8282600381811061139e5761139e613faa565b90506020020160208101906113b39190613b4a565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b03909216919091179055818160048181106113f8576113f8613faa565b905060200201602081019061140d9190613b4a565b600c80546001600160a01b0319166001600160a01b03929092169190911790558181600581811061144057611440613faa565b90506020020160208101906114559190613b4a565b600d80546001600160a01b0319166001600160a01b03929092169190911790555050565b61148161274d565b600091825260196020526040909120805460ff1916911515919091179055565b6114a961274d565b601554156114f95760405162461bcd60e51b815260206004820152601c60248201527f746f6b656e2073687566666c6520616c72656164792063616c6c656400000000604482015260640161097b565b6015819055600061150b600183613fc0565b905060008060005b831561156b57611522846128a0565b9250611538611532856001613eac565b856128d0565b9050611543816128a0565b6000858152601460205260408082208390558382529020849055600019909401939150611513565b5050505050565b6060600180546108ae90613ded565b610f8d338383612919565b61159461274d565b662386f26fc1000082116115d85760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720756e69747360a81b604482015260640161097b565b662386f26fc10000811161161c5760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720756e69747360a81b604482015260640161097b565b601191909155601255565b6116313383612500565b61164d5760405162461bcd60e51b815260040161097b90613f5c565b611659848484846129e8565b50505050565b61166761274d565b610bb4601b83836138f1565b601a5460609060ff16156116f35760105460405163b3159b6960e01b8152600481018490526001600160a01b039091169063b3159b69906024015b600060405180830381865afa1580156116cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108999190810190613fd7565b60008281526019602052604090205460ff161561173b5760105460405163e053095360e01b8152600481018490526001600160a01b039091169063e0530953906024016116ae565b600d546040516374beb04760e01b815261ffff841660048201526000916001600160a01b0316906374beb04790602401600060405180830381865afa158015611788573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117b09190810190613fd7565b905060006117bd82612a1b565b90506118076118006040518060400160405280601c81526020017f646174613a696d6167652f7376672b786d6c3b757466382c3c73766700000000815250612a1b565b8290612a48565b5060008481526018602052604090205460175481111561182657506017545b61182e613971565b6040518060c0016040528060968152602001614817609691398152611869600261185a6101f485613fc0565b6118649190614064565b612acd565b602082810191909152604080518082018252600981526811103bb4b23a341e9160b91b9281019290925282015261189f82612acd565b606080830191909152604080519182019052602b8082526147ac602083013960808201526118cc83612bcb565b60a0820152604080518082019091526006808252651e17b9bb339f60d11b602083015282906020020152600d546040516376dfe29760e01b815261ffff881660048201526000916001600160a01b0316906376dfe29790602401600060405180830381865afa158015611943573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261196b9190810190613fd7565b9050600061197882612a1b565b9050600061199f60405180604001604052806002815260200161016160f51b815250612a1b565b905060006119ad8383612c3b565b6119b8906001613eac565b67ffffffffffffffff8111156119d0576119d0613c41565b604051908082528060200260200182016040528015611a0357816020015b60608152602001906001900390816119ee5790505b50905060005b8151811015611a5457611a24611a1f8585612cd5565b612bcb565b828281518110611a3657611a36613faa565b60200260200101819052508080611a4c90614078565b915050611a09565b50845160208087015160408089015160608a015160808b015160a08c015160c08d01519451600098611a8a9890979691016140af565b60405160208183030381529060405290506000611ac083600081518110611ab357611ab3613faa565b6020026020010151612cf4565b604051602001611ad09190614141565b60408051601f19818403018152919052905060015b8351811015611b395781611b04858381518110611ab357611ab3613faa565b604051602001611b159291906141e4565b60405160208183030381529060405291508080611b3190614078565b915050611ae5565b5080611b4c600185516118649190613fc0565b604051602001611b5d929190614229565b60408051601f198184030181528282019091526001808352606960f81b602084015291975091505b611b916101f48a614064565b611b9c906064614274565b811015611bd85786604051602001611bb49190614293565b60408051601f198184030181529190529650611bd1606482613eac565b9050611b85565b8187604051602001611beb9291906142b8565b60405160208183030381529060405291506000611c3d611c0a8f612acd565b84601b611c1688612dbc565b604051602001611c299493929190614331565b604051602081830303815290604052612dbc565b905080604051602001611c509190614491565b60408051601f198184030181529190529e9d5050505050505050505050505050565b611c7a61274d565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b611ca461274d565b6001600160a01b038216611cfa5760405162461bcd60e51b815260206004820152601d60248201527f43616e27742073656e6420746f2061207a65726f20616464726573732e000000604482015260640161097b565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015611d49573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165991906144d6565b611d7561274d565b6001600160a01b038116611dda5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097b565b610fda8161284e565b6002600a541415611e065760405162461bcd60e51b815260040161097b90613e28565b6002600a55323314611e2a5760405162461bcd60e51b815260040161097b90613e5f565b601354600160a81b900460ff161515600114611e7b5760405162461bcd60e51b815260206004820152601060248201526f636c61696d206e6f742061637469766560801b604482015260640161097b565b604b611e86336111c5565b611e91906005613eac565b1115611eaf5760405162461bcd60e51b815260040161097b90613ec4565b336001600160a01b0316600e8281548110611ecc57611ecc613faa565b6000918252602090912001546040516331a9108f60e11b8152600481018590526001600160a01b0390911690636352211e90602401602060405180830381865afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4291906144f3565b6001600160a01b031614611f895760405162461bcd60e51b815260206004820152600e60248201526d3737ba103cb7bab9103a37b5b2b760911b604482015260640161097b565b600f6000600e8381548110611fa057611fa0613faa565b60009182526020808320909101546001600160a01b03168352828101939093526040918201812085825290925290205460ff16156120185760405162461bcd60e51b81526020600482015260156024820152741d1bdad95b88185b1c9958591e4818db185a5b5959605a1b604482015260640161097b565b8060031415612085576310a133c0821015801561203957506310a134678211155b6120855760405162461bcd60e51b815260206004820152601860248201527f6e656f7068797465206964206f7574206f662072616e67650000000000000000604482015260640161097b565b61271061209160085490565b61209c906005613eac565b11156120ba5760405162461bcd60e51b815260040161097b90613f17565b6001600f6000600e84815481106120d3576120d3613faa565b6000918252602080832091909101546001600160a01b0316835282810193909352604091820181208682529092528120805460ff1916921515929092179091555b600581101561212d576121256123f5565b600101612114565b50506001600a5550565b61213f61274d565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a5414156121845760405162461bcd60e51b815260040161097b90613e28565b6002600a553233146121a85760405162461bcd60e51b815260040161097b90613e5f565b601354600160a81b900460ff1615156001146121f95760405162461bcd60e51b815260206004820152601060248201526f636c61696d206e6f742061637469766560801b604482015260640161097b565b600081815260186020526040902054156122555760405162461bcd60e51b815260206004820152601a60248201527f63616e277420636c61696d20616c7265616479206d696e746564000000000000604482015260640161097b565b6013546001600160a01b0316331461231a57600c54604051630b02f02d60e31b81526004810183905233916001600160a01b031690635817816890602401602060405180830381865afa1580156122b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d491906144f3565b6001600160a01b03161461231a5760405162461bcd60e51b815260206004820152600d60248201526c6e6f7420796f75722070756e6b60981b604482015260640161097b565b61271061232660085490565b612331906001613eac565b111561234f5760405162461bcd60e51b815260040161097b90613f17565b61235881612726565b600082815260186020526040902055610a9b3382612f22565b60006001600160e01b0319821663780e9d6360e01b1480610899575061089982612f3c565b6000818152600260205260409020546001600160a01b0316610fda5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161097b565b60005b6015546015546016548161240e5761240e61404e565b040260146000601554601654816124275761242761404e565b068152602001908152602001600020540190506018600082815260200190815260200160002054600014156124845761245f81612726565b6000828152601860205260409020556124783382612f22565b60168054600101905550565b6016805460010190556123f8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124c7826110c7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061250c836110c7565b9050806001600160a01b0316846001600160a01b0316148061255357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806125775750836001600160a01b031661256c84610931565b6001600160a01b0316145b949350505050565b826001600160a01b0316612592826110c7565b6001600160a01b0316146125f65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161097b565b6001600160a01b0382166126585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097b565b612663838383612f8c565b61266e600082612492565b6001600160a01b0383166000908152600360205260408120805460019290612697908490613fc0565b90915550506001600160a01b03821660009081526003602052604081208054600192906126c5908490613eac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006127436006830660010160fa0261273e60085490565b6128d0565b6102260192915050565b600b546001600160a01b0316331461125d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161097b565b60006127b2826110c7565b90506127c081600084612f8c565b6127cb600083612492565b6001600160a01b03811660009081526003602052604081208054600192906127f4908490613fc0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815260146020526040812054156128c7575060009081526014602052604090205490565b5090565b919050565b604080514260208201529081018390526060810182905260009083906080016040516020818303038152906040528051906020012060001c6129129190614510565b9392505050565b816001600160a01b0316836001600160a01b0316141561297b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6129f384848461257f565b6129ff84848484612fd9565b6116595760405162461bcd60e51b815260040161097b90614524565b60408051808201825260008082526020918201528151808301909252825182529182019181019190915290565b6040805180820190915260008082526020820152815183511015612a6d575081610899565b6020808301519084015160019114612a945750815160208481015190840151829020919020145b8015612ac557825184518590612aab908390613fc0565b9052508251602085018051612ac1908390613eac565b9052505b509192915050565b606081612af15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b1b5780612b0581614078565b9150612b149050600a83614064565b9150612af5565b60008167ffffffffffffffff811115612b3657612b36613c41565b6040519080825280601f01601f191660200182016040528015612b60576020820181803683370190505b5090505b841561257757612b75600183613fc0565b9150612b82600a86614510565b612b8d906030613eac565b60f81b818381518110612ba257612ba2613faa565b60200101906001600160f81b031916908160001a905350612bc4600a86614064565b9450612b64565b60606000826000015167ffffffffffffffff811115612bec57612bec613c41565b6040519080825280601f01601f191660200182016040528015612c16576020820181803683370190505b5090506000602082019050612c3481856020015186600001516130d7565b5092915050565b6000808260000151612c5f8560000151866020015186600001518760200151613151565b612c699190613eac565b90505b83516020850151612c7d9190613eac565b8111612c345781612c8d81614078565b9250508260000151612cc4856020015183612ca89190613fc0565b8651612cb49190613fc0565b8386600001518760200151613151565b612cce9190613eac565b9050612c6c565b6040805180820190915260008082526020820152612c34838383613272565b6060612d21612d0283612a1b565b604051806040016040528060018152602001606f60f81b81525061331e565b9050805160001415612d5b57612d58612d3983612a1b565b604051806040016040528060018152602001606160f81b81525061331e565b90505b8051612d8f57612d8c612d6d83612a1b565b604051806040016040528060018152602001606560f81b81525061331e565b90505b80516128cb5781604051602001612da69190614576565b6040516020818303038152906040529050919050565b805160609080612ddc575050604080516020810190915260008152919050565b60006003612deb836002613eac565b612df59190614064565b612e00906004614274565b90506000612e0f826020613eac565b67ffffffffffffffff811115612e2757612e27613c41565b6040519080825280601f01601f191660200182016040528015612e51576020820181803683370190505b50905060006040518060600160405280604081526020016147d7604091399050600181016020830160005b86811015612edd576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612e7c565b506003860660018114612ef75760028114612f0857612f14565b613d3d60f01b600119830152612f14565b603d60f81b6000198301525b505050918152949350505050565b610f8d8282604051806020016040528060008152506133ed565b60006001600160e01b031982166380ac58cd60e01b1480612f6d57506001600160e01b03198216635b5e139f60e01b145b8061089957506301ffc9a760e01b6001600160e01b0319831614610899565b612f97838383613420565b6017546000828152601860205260409020541015610bb457600081815260186020526040902080546103e8601490930660320261047e01029190910490555050565b60006001600160a01b0384163b156130cc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061301d90339089908890889060040161459d565b6020604051808303816000875af1925050508015613058575060408051601f3d908101601f19168201909252613055918101906145da565b60015b6130b2573d808015613086576040519150601f19603f3d011682016040523d82523d6000602084013e61308b565b606091505b5080516130aa5760405162461bcd60e51b815260040161097b90614524565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612577565b506001949350505050565b6020811061310f57815183526130ee602084613eac565b92506130fb602083613eac565b9150613108602082613fc0565b90506130d7565b600019811561313e576001613125836020613fc0565b613131906101006146db565b61313b9190613fc0565b90505b9151835183169219169190911790915250565b6000838186851161325d576020851161320b576000851561319d576001613179876020613fc0565b613184906008614274565b61318f9060026146db565b6131999190613fc0565b1990505b845181166000876131ae8b8b613eac565b6131b89190613fc0565b855190915083165b8281146131fd578186106131e5576131d88b8b613eac565b9650505050505050612577565b856131ef81614078565b9650508386511690506131c0565b859650505050505050612577565b508383206000905b61321d8689613fc0565b821161325b578583208181141561323a5783945050505050612577565b613245600185613eac565b935050818061325390614078565b925050613213565b505b6132678787613eac565b979650505050505050565b604080518082019091526000808252602082015260006132a48560000151866020015186600001518760200151613151565b6020808701805191860191909152519091506132c09082613fc0565b8352845160208601516132d39190613eac565b8114156132e35760008552613315565b835183516132f19190613eac565b85518690613300908390613fc0565b905250835161330f9082613eac565b60208601525b50909392505050565b606061333361332c83612a1b565b84906134d8565b1561336f5761336c61334484612bcb565b8384604051602001613358939291906146e7565b604051602081830303815290604052612a1b565b92505b600061338461337d84612a1b565b8590612cd5565b905060006133918561353a565b11156133d6576133a081612bcb565b8384856133ac88612bcb565b6040516020016133c095949392919061472a565b6040516020818303038152906040529150612c34565b505060408051602081019091526000815292915050565b6133f78383613613565b6134046000848484612fd9565b610bb45760405162461bcd60e51b815260040161097b90614524565b6001600160a01b03831661347b5761347681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61349e565b816001600160a01b0316836001600160a01b03161461349e5761349e8382613761565b6001600160a01b0382166134b557610bb4816137fe565b826001600160a01b0316826001600160a01b031614610bb457610bb482826138ad565b8051825160009111156134ed57506000610899565b8151835160208501516000929161350391613eac565b61350d9190613fc0565b90508260200151811415613525576001915050610899565b82516020840151819020912014905092915050565b600080601f836020015161354e9190613fc0565b83519091506000906135609083613eac565b9050600092505b8082101561360c57815160ff16608081101561358f57613588600184613eac565b92506135f9565b60e08160ff1610156135a657613588600284613eac565b60f08160ff1610156135bd57613588600384613eac565b60f88160ff1610156135d457613588600484613eac565b60fc8160ff1610156135eb57613588600584613eac565b6135f6600684613eac565b92505b508261360481614078565b935050613567565b5050919050565b6001600160a01b0382166136695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097b565b6000818152600260205260409020546001600160a01b0316156136ce5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097b565b6136da60008383612f8c565b6001600160a01b0382166000908152600360205260408120805460019290613703908490613eac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161376e846111c5565b6137789190613fc0565b6000838152600760205260409020549091508082146137cb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061381090600190613fc0565b6000838152600960205260408120546008805493945090928490811061383857613838613faa565b90600052602060002001549050806008838154811061385957613859613faa565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061389157613891614795565b6001900381819060005260206000200160009055905550505050565b60006138b8836111c5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546138fd90613ded565b90600052602060002090601f01602090048101928261391f5760008555613965565b82601f106139385782800160ff19823516178555613965565b82800160010185558215613965579182015b8281111561396557823582559160200191906001019061394a565b506128c7929150613998565b6040518060e001604052806007905b60608152602001906001900390816139805790505090565b5b808211156128c75760008155600101613999565b6001600160e01b031981168114610fda57600080fd5b6000602082840312156139d557600080fd5b8135612912816139ad565b60005b838110156139fb5781810151838201526020016139e3565b838111156116595750506000910152565b60008151808452613a248160208601602086016139e0565b601f01601f19169290920160200192915050565b6020815260006129126020830184613a0c565b600060208284031215613a5d57600080fd5b5035919050565b6001600160a01b0381168114610fda57600080fd5b60008060408385031215613a8c57600080fd5b8235613a9781613a64565b946020939093013593505050565b600080600060608486031215613aba57600080fd5b8335613ac581613a64565b92506020840135613ad581613a64565b929592945050506040919091013590565b8015158114610fda57600080fd5b600060208284031215613b0657600080fd5b813561291281613ae6565b60008060408385031215613b2457600080fd5b8235613b2f81613ae6565b91506020830135613b3f81613ae6565b809150509250929050565b600060208284031215613b5c57600080fd5b813561291281613a64565b60008060208385031215613b7a57600080fd5b823567ffffffffffffffff80821115613b9257600080fd5b818501915085601f830112613ba657600080fd5b813581811115613bb557600080fd5b8660208260051b8501011115613bca57600080fd5b60209290920196919550909350505050565b60008060408385031215613bef57600080fd5b823591506020830135613b3f81613ae6565b60008060408385031215613c1457600080fd5b8235613b2f81613a64565b60008060408385031215613c3257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c8057613c80613c41565b604052919050565b600067ffffffffffffffff821115613ca257613ca2613c41565b50601f01601f191660200190565b60008060008060808587031215613cc657600080fd5b8435613cd181613a64565b93506020850135613ce181613a64565b925060408501359150606085013567ffffffffffffffff811115613d0457600080fd5b8501601f81018713613d1557600080fd5b8035613d28613d2382613c88565b613c57565b818152886020838501011115613d3d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060208385031215613d7257600080fd5b823567ffffffffffffffff80821115613d8a57600080fd5b818501915085601f830112613d9e57600080fd5b813581811115613dad57600080fd5b866020828501011115613bca57600080fd5b60008060408385031215613dd257600080fd5b8235613ddd81613a64565b91506020830135613b3f81613a64565b600181811c90821680613e0157607f821691505b60208210811415613e2257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613ebf57613ebf613e96565b500190565b60208082526010908201526f796f75206f776e20746f6f206d616e7960801b604082015260600190565b6020808252600f908201526e6d696e74206e6f742061637469766560881b604082015260600190565b60208082526025908201527f5265717565737420746f206d696e7420746f6b656e73206578636565647320736040820152647570706c7960d81b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600082821015613fd257613fd2613e96565b500390565b600060208284031215613fe957600080fd5b815167ffffffffffffffff81111561400057600080fd5b8201601f8101841361401157600080fd5b805161401f613d2382613c88565b81815285602083850101111561403457600080fd5b6140458260208301602086016139e0565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b6000826140735761407361404e565b500490565b600060001982141561408c5761408c613e96565b5060010190565b600081516140a58185602086016139e0565b9290920192915050565b6000885160206140c28285838e016139e0565b8951918401916140d58184848e016139e0565b89519201916140e78184848d016139e0565b88519201916140f98184848c016139e0565b875192019161410b8184848b016139e0565b865192019161411d8184848a016139e0565b855192019161412f81848489016139e0565b919091019a9950505050505050505050565b7f222c2261747472696275746573223a205b7b2274726169745f74797065223a20815272112a3cbcbcb8329116113b30b63ab2911d101160691b6020820152600082516141958160338501602087016139e0565b61227d60f01b6033939091019283015250603501919050565b7f2c7b2274726169745f74797065223a202253747575756666222c2276616c7565815263111d101160e11b602082015260240190565b600083516141f68184602088016139e0565b6142018184016141ae565b905083516142138183602088016139e0565b61227d60f01b9101908152600201949350505050565b6000835161423b8184602088016139e0565b6142468184016141ae565b905083516142588183602088016139e0565b672054696e6773227d60c01b9101908152600801949350505050565b600081600019048311821515161561428e5761428e613e96565b500290565b600082516142a58184602087016139e0565b606960f81b920191825250600101919050565b600083516142ca8184602088016139e0565b80830190507f2c7b2274726169745f74797065223a202257696969647468222c2276616c7565815265223a2022576960d01b602082015283516143148160268401602088016139e0565b636465227d60e01b60269290910191820152602a01949350505050565b717b226e616d65223a2022576969696465202360701b8152845160009060206143608260128601838b016139e0565b8651918401916143768160128501848b016139e0565b722e9610113232b9b1b934b83a34b7b7111d101160691b601293909101928301528554602590600090600181811c90808316806143b457607f831692505b8683108114156143d257634e487b7160e01b85526022600452602485fd5b8080156143e657600181146143fb5761442c565b60ff198516898801528389018701955061442c565b60008d81526020902060005b858110156144225781548b82018a0152908401908901614407565b505086848a010195505b50507f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b845250506618985cd94d8d0b60ca1b6020830152506144716027820188614093565b93505050506144848161227d60f01b9052565b6002019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516144c981601d8501602087016139e0565b91909101601d0192915050565b6000602082840312156144e857600080fd5b815161291281613ae6565b60006020828403121561450557600080fd5b815161291281613a64565b60008261451f5761451f61404e565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082516145888184602087016139e0565b6229292960e91b920191825250600301919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906145d090830184613a0c565b9695505050505050565b6000602082840312156145ec57600080fd5b8151612912816139ad565b600181815b8085111561463257816000190482111561461857614618613e96565b8085161561462557918102915b93841c93908002906145fc565b509250929050565b60008261464957506001610899565b8161465657506000610899565b816001811461466c576002811461467657614692565b6001915050610899565b60ff84111561468757614687613e96565b50506001821b610899565b5060208310610133831016604e8410600b84101617156146b5575081810a610899565b6146bf83836145f7565b80600019048211156146d3576146d3613e96565b029392505050565b6000612912838361463a565b600084516146f98184602089016139e0565b84519083019061470d8183602089016139e0565b84519101906147208183602088016139e0565b0195945050505050565b6000865161473c818460208b016139e0565b865190830190614750818360208b016139e0565b8651910190614763818360208a016139e0565b85519101906147768183602089016139e0565b84519101906147898183602088016139e0565b01979650505050505050565b634e487b7160e01b600052603160045260246000fdfe22206865696768743d223130302522207072657365727665417370656374526174696f3d226e6f6e6522204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672077696474683d2235303022206865696768743d223530302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d226e6f6e65223e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d2223366138343934222f3e3c73766720783d222da26469706673582212202144a30b8a9d33656b3ec249b6d7c3631d65233276005a6e35c02fdc4dcb2abe64736f6c634300080c0033
Deployed Bytecode Sourcemap
85095:17552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102411:229;;;;;;;;;;-1:-1:-1;102411:229:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;102411:229:0;;;;;;;;61517:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63030:171::-;;;;;;;;;;-1:-1:-1;63030:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;63030:171:0;1550:203:1;87922:638:0;;;:::i;:::-;;62547:417;;;;;;;;;;-1:-1:-1;62547:417:0;;;;;:::i;:::-;;:::i;87494:402::-;;;;;;;;;;;;;:::i;76211:113::-;;;;;;;;;;-1:-1:-1;76299:10:0;:17;76211:113;;;2360:25:1;;;2348:2;2333:18;76211:113:0;2214:177:1;63730:336:0;;;;;;;;;;-1:-1:-1;63730:336:0;;;;;:::i;:::-;;:::i;85879:30::-;;;;;;;;;;-1:-1:-1;85879:30:0;;;;-1:-1:-1;;;85879:30:0;;;;;;75879:256;;;;;;;;;;-1:-1:-1;75879:256:0;;;;;:::i;:::-;;:::i;91575:207::-;;;;;;;;;;-1:-1:-1;91575:207:0;;;;;:::i;:::-;;:::i;88584:649::-;;;:::i;97227:361::-;;;;;;;;;;-1:-1:-1;97227:361:0;;;;;:::i;:::-;;:::i;64137:185::-;;;;;;;;;;-1:-1:-1;64137:185:0;;;;;:::i;:::-;;:::i;74310:243::-;;;;;;;;;;-1:-1:-1;74310:243:0;;;;;:::i;:::-;;:::i;101246:77::-;;;;;;;;;;-1:-1:-1;101246:77:0;;;;;:::i;:::-;;:::i;76401:233::-;;;;;;;;;;-1:-1:-1;76401:233:0;;;;;:::i;:::-;;:::i;100765:159::-;;;;;;;;;;-1:-1:-1;100765:159:0;;;;;:::i;:::-;;:::i;86271:18::-;;;;;;;;;;-1:-1:-1;86271:18:0;;;;;;;;61228:222;;;;;;;;;;-1:-1:-1;61228:222:0;;;;;:::i;:::-;;:::i;100951:185::-;;;;;;;;;;;;;:::i;60959:207::-;;;;;;;;;;-1:-1:-1;60959:207:0;;;;;:::i;:::-;;:::i;40046:103::-;;;;;;;;;;;;;:::i;100430:92::-;;;;;;;;;;-1:-1:-1;100430:92:0;;;;;:::i;:::-;;:::i;99780:385::-;;;;;;;;;;-1:-1:-1;99780:385:0;;;;;:::i;:::-;;:::i;39398:87::-;;;;;;;;;;-1:-1:-1;39471:6:0;;-1:-1:-1;;;;;39471:6:0;39398:87;;101144:94;;;;;;;;;;-1:-1:-1;101144:94:0;;;;;:::i;:::-;;:::i;99062:683::-;;;;;;;;;;-1:-1:-1;99062:683:0;;;;;:::i;:::-;;:::i;61686:104::-;;;;;;;;;;;;;:::i;63273:155::-;;;;;;;;;;-1:-1:-1;63273:155:0;;;;;:::i;:::-;;:::i;97620:412::-;;;;;;;;;;-1:-1:-1;97620:412:0;;;;;:::i;:::-;;:::i;85741:46::-;;;;;;;;;;;;;;;;64393:323;;;;;;;;;;-1:-1:-1;64393:323:0;;;;;:::i;:::-;;:::i;100234:98::-;;;;;;;;;;-1:-1:-1;100234:98:0;;;;;:::i;:::-;;:::i;85676:44::-;;;;;;;;;;;;;;;;93079:3642;;;;;;;;;;-1:-1:-1;93079:3642:0;;;;;:::i;:::-;;:::i;101331:106::-;;;;;;;;;;-1:-1:-1;101331:106:0;;;;;:::i;:::-;;:::i;101508:257::-;;;;;;;;;;-1:-1:-1;101508:257:0;;;;;:::i;:::-;;:::i;85916:31::-;;;;;;;;;;-1:-1:-1;85916:31:0;;;;-1:-1:-1;;;85916:31:0;;;;;;85956:41;;;;;;;;;;;;85992:5;85956:41;;86176:45;;;;;;;;;;-1:-1:-1;86176:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;86228:36;;;;;;;;;;-1:-1:-1;86228:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;63499:164;;;;;;;;;;-1:-1:-1;63499:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;63620:25:0;;;63596:4;63620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;63499:164;85807:40;;;;;;;;;;-1:-1:-1;85807:40:0;;;;-1:-1:-1;;;;;85807:40:0;;;40304:201;;;;;;;;;;-1:-1:-1;40304:201:0;;;;;:::i;:::-;;:::i;90206:1148::-;;;;;;;;;;-1:-1:-1;90206:1148:0;;;;;:::i;:::-;;:::i;100559:160::-;;;;;;;;;;-1:-1:-1;100559:160:0;;;;;:::i;:::-;;:::i;89306:847::-;;;;;;;;;;-1:-1:-1;89306:847:0;;;;;:::i;:::-;;:::i;102411:229::-;102567:4;102596:36;102620:11;102596:23;:36::i;:::-;102589:43;102411:229;-1:-1:-1;;102411:229:0:o;61517:100::-;61571:13;61604:5;61597:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61517:100;:::o;63030:171::-;63106:7;63126:23;63141:7;63126:14;:23::i;:::-;-1:-1:-1;63169:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;63169:24:0;;63030:171::o;87922:638::-;33826:1;34424:7;;:19;;34416:63;;;;-1:-1:-1;;;34416:63:0;;;;;;;:::i;:::-;;;;;;;;;33826:1;34557:7;:18;86358:9:::1;86371:10;86358:23;86350:66;;;;-1:-1:-1::0;;;86350:66:0::1;;;;;;;:::i;:::-;88047:2:::2;88018:21;88028:10;88018:9;:21::i;:::-;:25;::::0;88042:1:::2;88018:25;:::i;:::-;:31;;87996:97;;;;-1:-1:-1::0;;;87996:97:0::2;;;;;;;:::i;:::-;88139:15;;88126:9;:28;;88104:94;;;::::0;-1:-1:-1;;;88104:94:0;;10922:2:1;88104:94:0::2;::::0;::::2;10904:21:1::0;10961:2;10941:18;;;10934:30;-1:-1:-1;;;10980:18:1;;;10973:46;11036:18;;88104:94:0::2;10720:340:1::0;88104:94:0::2;88231:10;::::0;-1:-1:-1;;;88231:10:0;::::2;;;88209:76;;;;-1:-1:-1::0;;;88209:76:0::2;;;;;;;:::i;:::-;85992:5;88318:13;76299:10:::0;:17;;76211:113;88318:13:::2;:17;::::0;88334:1:::2;88318:17;:::i;:::-;:30;;88296:117;;;;-1:-1:-1::0;;;88296:117:0::2;;;;;;;:::i;:::-;88424:9;88444:109;88455:1;88451;:5;88444:109;;;88473:7;:5;:7::i;:::-;88523:3;;88444:109;;;-1:-1:-1::0;33782:1:0;34736:7;:22;87922:638::o;62547:417::-;62628:13;62644:23;62659:7;62644:14;:23::i;:::-;62628:39;;62692:5;-1:-1:-1;;;;;62686:11:0;:2;-1:-1:-1;;;;;62686:11:0;;;62678:57;;;;-1:-1:-1;;;62678:57:0;;12017:2:1;62678:57:0;;;11999:21:1;12056:2;12036:18;;;12029:30;12095:34;12075:18;;;12068:62;-1:-1:-1;;;12146:18:1;;;12139:31;12187:19;;62678:57:0;11815:397:1;62678:57:0;38029:10;-1:-1:-1;;;;;62770:21:0;;;;:62;;-1:-1:-1;62795:37:0;62812:5;38029:10;63499:164;:::i;62795:37::-;62748:174;;;;-1:-1:-1;;;62748:174:0;;12419:2:1;62748:174:0;;;12401:21:1;12458:2;12438:18;;;12431:30;12497:34;12477:18;;;12470:62;12568:32;12548:18;;;12541:60;12618:19;;62748:174:0;12217:426:1;62748:174:0;62935:21;62944:2;62948:7;62935:8;:21::i;:::-;62617:347;62547:417;;:::o;87494:402::-;33826:1;34424:7;;:19;;34416:63;;;;-1:-1:-1;;;34416:63:0;;;;;;;:::i;:::-;33826:1;34557:7;:18;86358:9:::1;86371:10;86358:23;86350:66;;;;-1:-1:-1::0;;;86350:66:0::1;;;;;;;:::i;:::-;87579:10:::2;::::0;-1:-1:-1;;;87579:10:0;::::2;;;87557:76;;;;-1:-1:-1::0;;;87557:76:0::2;;;;;;;:::i;:::-;87695:1;87666:21;87676:10;87666:9;:21::i;:::-;:25;::::0;87690:1:::2;87666:25;:::i;:::-;:30;;87644:98;;;::::0;-1:-1:-1;;;87644:98:0;;12850:2:1;87644:98:0::2;::::0;::::2;12832:21:1::0;12889:2;12869:18;;;12862:30;-1:-1:-1;;;12908:18:1;;;12901:48;12966:18;;87644:98:0::2;12648:342:1::0;87644:98:0::2;85992:5;87775:13;76299:10:::0;:17;;76211:113;87775:13:::2;:17;::::0;87791:1:::2;87775:17;:::i;:::-;:30;;87753:117;;;;-1:-1:-1::0;;;87753:117:0::2;;;;;;;:::i;:::-;87881:7;:5;:7::i;:::-;33782:1:::0;34736:7;:22;87494:402::o;63730:336::-;63925:41;38029:10;63944:12;63958:7;63925:18;:41::i;:::-;63917:100;;;;-1:-1:-1;;;63917:100:0;;;;;;;:::i;:::-;64030:28;64040:4;64046:2;64050:7;64030:9;:28::i;75879:256::-;75976:7;76012:23;76029:5;76012:16;:23::i;:::-;76004:5;:31;75996:87;;;;-1:-1:-1;;;75996:87:0;;13612:2:1;75996:87:0;;;13594:21:1;13651:2;13631:18;;;13624:30;13690:34;13670:18;;;13663:62;-1:-1:-1;;;13741:18:1;;;13734:41;13792:19;;75996:87:0;13410:407:1;75996:87:0;-1:-1:-1;;;;;;76101:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;75879:256::o;91575:207::-;91676:10;91661:11;91669:2;91661:7;:11::i;:::-;-1:-1:-1;;;;;91661:25:0;;91639:94;;;;-1:-1:-1;;;91639:94:0;;14024:2:1;91639:94:0;;;14006:21:1;14063:2;14043:18;;;14036:30;-1:-1:-1;;;14082:18:1;;;14075:45;14137:18;;91639:94:0;13822:339:1;91639:94:0;91761:13;91771:2;91761:9;:13::i;:::-;91744:14;;;;:10;:14;;;;;;:30;91575:207::o;88584:649::-;33826:1;34424:7;;:19;;34416:63;;;;-1:-1:-1;;;34416:63:0;;;;;;;:::i;:::-;33826:1;34557:7;:18;86358:9:::1;86371:10;86358:23;86350:66;;;;-1:-1:-1::0;;;86350:66:0::1;;;;;;;:::i;:::-;88715:2:::2;88685:21;88695:10;88685:9;:21::i;:::-;:26;::::0;88709:2:::2;88685:26;:::i;:::-;:32;;88663:98;;;;-1:-1:-1::0;;;88663:98:0::2;;;;;;;:::i;:::-;88807:18;;88794:9;:31;;88772:97;;;::::0;-1:-1:-1;;;88772:97:0;;10922:2:1;88772:97:0::2;::::0;::::2;10904:21:1::0;10961:2;10941:18;;;10934:30;-1:-1:-1;;;10980:18:1;;;10973:46;11036:18;;88772:97:0::2;10720:340:1::0;88772:97:0::2;88902:10;::::0;-1:-1:-1;;;88902:10:0;::::2;;;88880:76;;;;-1:-1:-1::0;;;88880:76:0::2;;;;;;;:::i;:::-;85992:5;88989:13;76299:10:::0;:17;;76211:113;88989:13:::2;:18;::::0;89005:2:::2;88989:18;:::i;:::-;:31;;88967:118;;;;-1:-1:-1::0;;;88967:118:0::2;;;;;;;:::i;:::-;89096:9;89116:110;89127:2;89123:1;:6;89116:110;;;89146:7;:5;:7::i;:::-;89196:3;;89116:110;;97227:361:::0;39284:13;:11;:13::i;:::-;85992:5:::1;97338:13;97322;76299:10:::0;:17;;76211:113;97322:13:::1;:29;;;;:::i;:::-;:42;;97300:129;;;;-1:-1:-1::0;;;97300:129:0::1;;;;;;;:::i;:::-;97440:9;97460:121;97471:13;97467:1;:17;97460:121;;;97501:7;:5;:7::i;:::-;97551:3;;97460:121;;;97289:299;97227:361:::0;:::o;64137:185::-;64275:39;64292:4;64298:2;64302:7;64275:39;;;;;;;;;;;;:16;:39::i;74310:243::-;74428:41;38029:10;74447:12;37949:98;74428:41;74420:100;;;;-1:-1:-1;;;74420:100:0;;;;;;;:::i;:::-;74531:14;74537:7;74531:5;:14::i;:::-;74310:243;:::o;101246:77::-;39284:13;:11;:13::i;:::-;101305:6:::1;:10:::0;;-1:-1:-1;;101305:10:0::1;::::0;::::1;;::::0;;;::::1;::::0;;101246:77::o;76401:233::-;76476:7;76512:30;76299:10;:17;;76211:113;76512:30;76504:5;:38;76496:95;;;;-1:-1:-1;;;76496:95:0;;14368:2:1;76496:95:0;;;14350:21:1;14407:2;14387:18;;;14380:30;14446:34;14426:18;;;14419:62;-1:-1:-1;;;14497:18:1;;;14490:42;14549:19;;76496:95:0;14166:408:1;76496:95:0;76609:10;76620:5;76609:17;;;;;;;;:::i;:::-;;;;;;;;;76602:24;;76401:233;;;:::o;100765:159::-;39284:13;:11;:13::i;:::-;100859:10:::1;:22:::0;;-1:-1:-1;;;;100892:24:0;-1:-1:-1;;;100859:22:0;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;100892:24:0;;;;;-1:-1:-1;;;100892:24:0;::::1;;::::0;;;::::1;;::::0;;100765:159::o;61228:222::-;61300:7;61336:16;;;:7;:16;;;;;;-1:-1:-1;;;;;61336:16:0;61371:19;61363:56;;;;-1:-1:-1;;;61363:56:0;;14913:2:1;61363:56:0;;;14895:21:1;14952:2;14932:18;;;14925:30;-1:-1:-1;;;14971:18:1;;;14964:54;15035:18;;61363:56:0;14711:348:1;100951:185:0;39284:13;:11;:13::i;:::-;101026:17:::1;::::0;:55:::1;::::0;101008:12:::1;::::0;-1:-1:-1;;;;;101026:17:0::1;::::0;101055:21:::1;::::0;101008:12;101026:55;101008:12;101026:55;101055:21;101026:17;:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101007:74;;;101100:7;101092:36;;;::::0;-1:-1:-1;;;101092:36:0;;15476:2:1;101092:36:0::1;::::0;::::1;15458:21:1::0;15515:2;15495:18;;;15488:30;-1:-1:-1;;;15534:18:1;;;15527:46;15590:18;;101092:36:0::1;15274:340:1::0;60959:207:0;61031:7;-1:-1:-1;;;;;61059:19:0;;61051:73;;;;-1:-1:-1;;;61051:73:0;;15821:2:1;61051:73:0;;;15803:21:1;15860:2;15840:18;;;15833:30;15899:34;15879:18;;;15872:62;-1:-1:-1;;;15950:18:1;;;15943:39;15999:19;;61051:73:0;15619:405:1;61051:73:0;-1:-1:-1;;;;;;61142:16:0;;;;;:9;:16;;;;;;;60959:207::o;40046:103::-;39284:13;:11;:13::i;:::-;40111:30:::1;40138:1;40111:18;:30::i;:::-;40046:103::o:0;100430:92::-;39284:13;:11;:13::i;:::-;100500:8:::1;:14:::0;100430:92::o;99780:385::-;39284:13;:11;:13::i;:::-;99867:12:::1;99893:4;;99898:1;99893:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;99867:35:::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;99867:35:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;99867:35:0::1;-1:-1:-1::0;;;;;99867:35:0;;;::::1;::::0;;;::::1;::::0;;99913:12:::1;::::0;99942:4;;;;:7;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;99913:38:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;99913:38:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;99913:38:0::1;-1:-1:-1::0;;;;;99913:38:0;;::::1;::::0;;;::::1;::::0;;99962:12:::1;99997:4:::0;;100002:1:::1;99997:7:::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;99962:44:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;99962:44:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;99962:44:0::1;-1:-1:-1::0;;;;;99962:44:0;;::::1;::::0;;;::::1;::::0;;100017:12:::1;100044:4:::0;;100049:1:::1;100044:7:::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;100017:36:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;100017:36:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;100017:36:0::1;-1:-1:-1::0;;;;;100017:36:0;;::::1;::::0;;;::::1;::::0;;100096:4;;100101:1:::1;100096:7:::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;100064:11;:40:::0;;-1:-1:-1;;;;;;100064:40:0::1;-1:-1:-1::0;;;;;100064:40:0;;;::::1;::::0;;;::::1;::::0;;100149:4;;100154:1:::1;100149:7:::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;100115:15;:42:::0;;-1:-1:-1;;;;;;100115:42:0::1;-1:-1:-1::0;;;;;100115:42:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;99780:385:0:o;101144:94::-;39284:13;:11;:13::i;:::-;101217:9:::1;::::0;;;:4:::1;:9;::::0;;;;;:13;;-1:-1:-1;;101217:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;101144:94::o;99062:683::-;39284:13;:11;:13::i;:::-;99164:15:::1;::::0;:20;99142:98:::1;;;::::0;-1:-1:-1;;;99142:98:0;;16231:2:1;99142:98:0::1;::::0;::::1;16213:21:1::0;16270:2;16250:18;;;16243:30;16309;16289:18;;;16282:58;16357:18;;99142:98:0::1;16029:352:1::0;99142:98:0::1;99251:15;:26:::0;;;99288:9:::1;99300:17;99316:1;99269:8:::0;99300:17:::1;:::i;:::-;99288:29;;99328:9;99348::::0;99368::::1;99388:350;99394:5:::0;;99388:350:::1;;99454:13;99465:1;99454:10;:13::i;:::-;99450:17:::0;-1:-1:-1;99523:11:0::1;99528:3;:1:::0;99530::::1;99528:3;:::i;:::-;99532:1;99523:4;:11::i;:::-;99519:15;;99553:13;99564:1;99553:10;:13::i;:::-;99610;::::0;;;:10:::1;:13;::::0;;;;;:17;;;99642:13;;;;;:17;;;-1:-1:-1;;99706:5:0;;;;99549:17;-1:-1:-1;99388:350:0::1;;;99131:614;;;;99062:683:::0;:::o;61686:104::-;61742:13;61775:7;61768:14;;;;;:::i;63273:155::-;63368:52;38029:10;63401:8;63411;63368:18;:52::i;97620:412::-;39284:13;:11;:13::i;:::-;97775:10:::1;97756:16;:29;97734:90;;;::::0;-1:-1:-1;;;97734:90:0;;16718:2:1;97734:90:0::1;::::0;::::1;16700:21:1::0;16757:2;16737:18;;;16730:30;-1:-1:-1;;;16776:18:1;;;16769:41;16827:18;;97734:90:0::1;16516:335:1::0;97734:90:0::1;97879:10;97857:19;:32;97835:93;;;::::0;-1:-1:-1;;;97835:93:0;;16718:2:1;97835:93:0::1;::::0;::::1;16700:21:1::0;16757:2;16737:18;;;16730:30;-1:-1:-1;;;16776:18:1;;;16769:41;16827:18;;97835:93:0::1;16516:335:1::0;97835:93:0::1;97939:15;:34:::0;;;;97984:18:::1;:40:::0;97620:412::o;64393:323::-;64567:41;38029:10;64600:7;64567:18;:41::i;:::-;64559:100;;;;-1:-1:-1;;;64559:100:0;;;;;;;:::i;:::-;64670:38;64684:4;64690:2;64694:7;64703:4;64670:13;:38::i;:::-;64393:323;;;;:::o;100234:98::-;39284:13;:11;:13::i;:::-;100310:14:::1;:4;100317:7:::0;;100310:14:::1;:::i;93079:3642::-:0;93313:6;;93197:13;;93313:6;;93310:70;;;93342:10;;:26;;-1:-1:-1;;;93342:26:0;;;;;2360:25:1;;;-1:-1:-1;;;;;93342:10:0;;;;:17;;2333:18:1;;93342:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;93342:26:0;;;;;;;;;;;;:::i;93310:70::-;93393:13;;;;:4;:13;;;;;;;;93390:75;;;93429:10;;:24;;-1:-1:-1;;;93429:24:0;;;;;2360:25:1;;;-1:-1:-1;;;;;93429:10:0;;;;:15;;2333:18:1;;93429:24:0;2214:177:1;93390:75:0;93525:15;;:45;;-1:-1:-1;;;93525:45:0;;17670:6:1;17658:19;;93525:45:0;;;17640:38:1;93501:21:0;;-1:-1:-1;;;;;93525:15:0;;:28;;17613:18:1;;93525:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;93525:45:0;;;;;;;;;;;;:::i;:::-;93501:69;;93581:30;93614:17;:7;:15;:17::i;:::-;93581:50;;93683:58;93700:40;:38;;;;;;;;;;;;;;;;;;:40::i;:::-;93683:9;;:16;:58::i;:::-;-1:-1:-1;93811:15:0;93829:19;;;:10;:19;;;;;;93872:8;;93862:18;;93859:67;;;-1:-1:-1;93906:8:0;;93859:67;93938:22;;:::i;:::-;94064:163;;;;;;;;;;;;;;;;;;;94307:33;94338:1;94325:11;94333:3;94325:7;:11;:::i;:::-;94324:15;;;;:::i;:::-;94307:16;:33::i;:::-;94296:8;;;;:44;;;;94351:22;;;;;;;;;;;-1:-1:-1;;;94351:22:0;;;;;;;:8;;:22;94431:25;94448:7;94431:16;:25::i;:::-;94420:8;;;;:36;;;;94467:56;;;;;;;;;;;;;94420:8;94467:56;;;:8;;;:56;94579:20;:9;:18;:20::i;:::-;94568:8;;;:31;94610:19;;;;;;;;;;;;;-1:-1:-1;;;94568:8:0;94610:19;;;94568:5;;94610:8;;;:19;94745:15;;:47;;-1:-1:-1;;;94745:47:0;;17670:6:1;17658:19;;94745:47:0;;;17640:38:1;94723:19:0;;-1:-1:-1;;;;;94745:15:0;;:30;;17613:18:1;;94745:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;94745:47:0;;;;;;;;;;;;:::i;:::-;94723:69;;94803:30;94836:15;:5;:13;:15::i;:::-;94803:48;;94874:30;94907:14;:12;;;;;;;;;;;;;-1:-1:-1;;;94907:12:0;;;;:14::i;:::-;94874:47;-1:-1:-1;95008:25:0;95049:26;:9;94874:47;95049:15;:26::i;:::-;:28;;95076:1;95049:28;:::i;:::-;95036:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95008:70;;95095:6;95090:183;95111:9;:16;95107:1;:20;95090:183;;;95193:37;:26;:9;95209;95193:15;:26::i;:::-;:35;:37::i;:::-;95178:9;95188:1;95178:12;;;;;;;;:::i;:::-;;;;;;:52;;;;95129:3;;;;;:::i;:::-;;;;95090:183;;;-1:-1:-1;95331:8:0;;;95341;;;;95351;;;;;95361;;;;95371;;;;95381;;;;95391;;;;95317:83;;95294:20;;95317:83;;95331:8;;95341;95391;95317:83;;:::i;:::-;;;;;;;;;;;;;95294:106;;95411:19;95502:24;95513:9;95523:1;95513:12;;;;;;;;:::i;:::-;;;;;;;95502:10;:24::i;:::-;95433:101;;;;;;;;:::i;:::-;;;;-1:-1:-1;;95433:101:0;;;;;;;;;;-1:-1:-1;95603:1:0;95587:171;95610:9;:16;95606:1;:20;95587:171;;;95669:5;95715:24;95726:9;95736:1;95726:12;;;;;;;;:::i;95715:24::-;95655:91;;;;;;;;;:::i;:::-;;;;;;;;;;;;;95647:99;;95628:3;;;;;:::i;:::-;;;;95587:171;;;;95819:5;95866:36;95900:1;95883:9;:16;:18;;;;:::i;95866:36::-;95805:112;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;95805:112:0;;;;;;95968:11;;;;;;;;;;-1:-1:-1;;;95805:112:0;95968:11;;;95805:112;;-1:-1:-1;95805:112:0;-1:-1:-1;96018:119:0;96033:11;96041:3;96033:7;:11;:::i;:::-;96032:17;;96046:3;96032:17;:::i;:::-;96024:5;:25;96018:119;;;96087:5;96073:25;;;;;;;;:::i;:::-;;;;-1:-1:-1;;96073:25:0;;;;;;;;;;-1:-1:-1;96113:12:0;96122:3;96113:12;;:::i;:::-;;;96018:119;;;96169:5;96217;96155:77;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96147:85;;96307:18;96328:204;96384:25;96401:7;96384:16;:25::i;:::-;96410:5;96446:4;96495:28;96515:6;96495:13;:28::i;:::-;96348:182;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96328:13;:204::i;:::-;96307:225;;96681:4;96631:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;96631:55:0;;;;;;;;;;93079:3642;-1:-1:-1;;;;;;;;;;;;;;93079:3642:0:o;101331:106::-;39284:13;:11;:13::i;:::-;101400:10:::1;:29:::0;;-1:-1:-1;;;;;;101400:29:0::1;-1:-1:-1::0;;;;;101400:29:0;;;::::1;::::0;;;::::1;::::0;;101331:106::o;101508:257::-;39284:13;:11;:13::i;:::-;-1:-1:-1;;;;;101634:26:0;::::1;101612:105;;;::::0;-1:-1:-1;;;101612:105:0;;27124:2:1;101612:105:0::1;::::0;::::1;27106:21:1::0;27163:2;27143:18;;;27136:30;27202:31;27182:18;;;27175:59;27251:18;;101612:105:0::1;26922:353:1::0;101612:105:0::1;101728:29;::::0;-1:-1:-1;;;101728:29:0;;-1:-1:-1;;;;;27472:32:1;;;101728:29:0::1;::::0;::::1;27454:51:1::0;27521:18;;;27514:34;;;101728:15:0;::::1;::::0;::::1;::::0;27427:18:1;;101728:29:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40304:201::-:0;39284:13;:11;:13::i;:::-;-1:-1:-1;;;;;40393:22:0;::::1;40385:73;;;::::0;-1:-1:-1;;;40385:73:0;;28011:2:1;40385:73:0::1;::::0;::::1;27993:21:1::0;28050:2;28030:18;;;28023:30;28089:34;28069:18;;;28062:62;-1:-1:-1;;;28140:18:1;;;28133:36;28186:19;;40385:73:0::1;27809:402:1::0;40385:73:0::1;40469:28;40488:8;40469:18;:28::i;90206:1148::-:0;33826:1;34424:7;;:19;;34416:63;;;;-1:-1:-1;;;34416:63:0;;;;;;;:::i;:::-;33826:1;34557:7;:18;86358:9:::1;86371:10;86358:23;86350:66;;;;-1:-1:-1::0;;;86350:66:0::1;;;;;;;:::i;:::-;90336:11:::2;::::0;-1:-1:-1;;;90336:11:0;::::2;;;:19;;90351:4;90336:19;90314:85;;;::::0;-1:-1:-1;;;90314:85:0;;28418:2:1;90314:85:0::2;::::0;::::2;28400:21:1::0;28457:2;28437:18;;;28430:30;-1:-1:-1;;;28476:18:1;;;28469:46;28532:18;;90314:85:0::2;28216:340:1::0;90314:85:0::2;90461:2;90432:21;90442:10;90432:9;:21::i;:::-;:25;::::0;90456:1:::2;90432:25;:::i;:::-;:31;;90410:97;;;;-1:-1:-1::0;;;90410:97:0::2;;;;;;;:::i;:::-;90582:10;-1:-1:-1::0;;;;;90540:52:0::2;:12;90553;90540:26;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;:38:::2;::::0;-1:-1:-1;;;90540:38:0;;::::2;::::0;::::2;2360:25:1::0;;;-1:-1:-1;;;;;90540:26:0;;::::2;::::0;:34:::2;::::0;2333:18:1;;90540:38:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;90540:52:0::2;;90518:116;;;::::0;-1:-1:-1;;;90518:116:0;;29019:2:1;90518:116:0::2;::::0;::::2;29001:21:1::0;29058:2;29038:18;;;29031:30;-1:-1:-1;;;29077:18:1;;;29070:44;29131:18;;90518:116:0::2;28817:338:1::0;90518:116:0::2;90667:19;:47;90687:12;90700;90687:26;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;;;::::2;::::0;-1:-1:-1;;;;;90687:26:0::2;90667:47:::0;;;;::::2;::::0;;;;;;;;;;:51;;;;;;;;;::::2;;:60;90645:131;;;::::0;-1:-1:-1;;;90645:131:0;;29362:2:1;90645:131:0::2;::::0;::::2;29344:21:1::0;29401:2;29381:18;;;29374:30;-1:-1:-1;;;29420:18:1;;;29413:51;29481:18;;90645:131:0::2;29160:345:1::0;90645:131:0::2;90848:12;90862:1;90848:15;90845:166;;;90911:9;90905:2;:15;;:34;;;;;90930:9;90924:2;:15;;90905:34;90879:120;;;::::0;-1:-1:-1;;;90879:120:0;;29712:2:1;90879:120:0::2;::::0;::::2;29694:21:1::0;29751:2;29731:18;;;29724:30;29790:26;29770:18;;;29763:54;29834:18;;90879:120:0::2;29510:348:1::0;90879:120:0::2;85992:5;91043:13;76299:10:::0;:17;;76211:113;91043:13:::2;:17;::::0;91059:1:::2;91043:17;:::i;:::-;:30;;91021:117;;;;-1:-1:-1::0;;;91021:117:0::2;;;;;;;:::i;:::-;91203:4;91149:19;:47;91169:12;91182;91169:26;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;;;;::::2;::::0;-1:-1:-1;;;;;91169:26:0::2;91149:47:::0;;;;::::2;::::0;;;;;;;;;;:51;;;;;;;;:58;;-1:-1:-1;;91149:58:0::2;::::0;::::2;;::::0;;;::::2;::::0;;;91238:109:::2;91249:1;91245;:5;91238:109;;;91267:7;:5;:7::i;:::-;91317:3;;91238:109;;;-1:-1:-1::0;;33782:1:0;34736:7;:22;-1:-1:-1;90206:1148:0:o;100559:160::-;39284:13;:11;:13::i;:::-;100669:17:::1;:42:::0;;-1:-1:-1;;;;;;100669:42:0::1;-1:-1:-1::0;;;;;100669:42:0;;;::::1;::::0;;;::::1;::::0;;100559:160::o;89306:847::-;33826:1;34424:7;;:19;;34416:63;;;;-1:-1:-1;;;34416:63:0;;;;;;;:::i;:::-;33826:1;34557:7;:18;86358:9:::1;86371:10;86358:23;86350:66;;;;-1:-1:-1::0;;;86350:66:0::1;;;;;;;:::i;:::-;89414:11:::2;::::0;-1:-1:-1;;;89414:11:0;::::2;;;:19;;89429:4;89414:19;89392:85;;;::::0;-1:-1:-1;;;89392:85:0;;28418:2:1;89392:85:0::2;::::0;::::2;28400:21:1::0;28457:2;28437:18;;;28430:30;-1:-1:-1;;;28476:18:1;;;28469:46;28532:18;;89392:85:0::2;28216:340:1::0;89392:85:0::2;89510:14;::::0;;;:10:::2;:14;::::0;;;;;:19;89488:96:::2;;;::::0;-1:-1:-1;;;89488:96:0;;30065:2:1;89488:96:0::2;::::0;::::2;30047:21:1::0;30104:2;30084:18;;;30077:30;30143:28;30123:18;;;30116:56;30189:18;;89488:96:0::2;29863:350:1::0;89488:96:0::2;89773:17;::::0;-1:-1:-1;;;;;89773:17:0::2;89759:10;:31;89756:185;;89832:11;::::0;:34:::2;::::0;-1:-1:-1;;;89832:34:0;;::::2;::::0;::::2;2360:25:1::0;;;89870:10:0::2;::::0;-1:-1:-1;;;;;89832:11:0::2;::::0;:30:::2;::::0;2333:18:1;;89832:34:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;89832:48:0::2;;89806:123;;;::::0;-1:-1:-1;;;89806:123:0;;30420:2:1;89806:123:0::2;::::0;::::2;30402:21:1::0;30459:2;30439:18;;;30432:30;-1:-1:-1;;;30478:18:1;;;30471:43;30531:18;;89806:123:0::2;30218:337:1::0;89806:123:0::2;85992:5;89973:13;76299:10:::0;:17;;76211:113;89973:13:::2;:17;::::0;89989:1:::2;89973:17;:::i;:::-;:30;;89951:117;;;;-1:-1:-1::0;;;89951:117:0::2;;;;;;;:::i;:::-;90096:13;90106:2;90096:9;:13::i;:::-;90079:14;::::0;;;:10:::2;:14;::::0;;;;:30;90120:25:::2;90130:10;90090:2:::0;90120:9:::2;:25::i;75571:224::-:0;75673:4;-1:-1:-1;;;;;;75697:50:0;;-1:-1:-1;;;75697:50:0;;:90;;;75751:36;75775:11;75751:23;:36::i;71005:135::-;66288:4;66312:16;;;:7;:16;;;;;;-1:-1:-1;;;;;66312:16:0;71079:53;;;;-1:-1:-1;;;71079:53:0;;14913:2:1;71079:53:0;;;14895:21:1;14952:2;14932:18;;;14925:30;-1:-1:-1;;;14971:18:1;;;14964:54;15035:18;;71079:53:0;14711:348:1;86725:722:0;86762:19;86792:646;87034:15;;87015;;87003:11;;:27;;;;;:::i;:::-;;87002:47;86960:10;:39;86983:15;;86971:11;;:27;;;;;:::i;:::-;;86960:39;;;;;;;;;;;;:89;86946:103;;87082:10;:23;87093:11;87082:23;;;;;;;;;;;;87109:1;87082:28;87079:276;;;87157:22;87167:11;87157:9;:22::i;:::-;87131:23;;;;:10;:23;;;;;:48;87198:34;87208:10;87142:11;87198:9;:34::i;:::-;87283:11;:13;;;;;;74310:243;:::o;87079:276::-;87398:11;:13;;;;;;86792:646;;70284:174;70359:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;70359:29:0;-1:-1:-1;;;;;70359:29:0;;;;;;;;:24;;70413:23;70359:24;70413:14;:23::i;:::-;-1:-1:-1;;;;;70404:46:0;;;;;;;;;;;70284:174;;:::o;66517:264::-;66610:4;66627:13;66643:23;66658:7;66643:14;:23::i;:::-;66627:39;;66696:5;-1:-1:-1;;;;;66685:16:0;:7;-1:-1:-1;;;;;66685:16:0;;:52;;;-1:-1:-1;;;;;;63620:25:0;;;63596:4;63620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;66705:32;66685:87;;;;66765:7;-1:-1:-1;;;;;66741:31:0;:20;66753:7;66741:11;:20::i;:::-;-1:-1:-1;;;;;66741:31:0;;66685:87;66677:96;66517:264;-1:-1:-1;;;;66517:264:0:o;69540:625::-;69699:4;-1:-1:-1;;;;;69672:31:0;:23;69687:7;69672:14;:23::i;:::-;-1:-1:-1;;;;;69672:31:0;;69664:81;;;;-1:-1:-1;;;69664:81:0;;30762:2:1;69664:81:0;;;30744:21:1;30801:2;30781:18;;;30774:30;30840:34;30820:18;;;30813:62;-1:-1:-1;;;30891:18:1;;;30884:35;30936:19;;69664:81:0;30560:401:1;69664:81:0;-1:-1:-1;;;;;69764:16:0;;69756:65;;;;-1:-1:-1;;;69756:65:0;;31168:2:1;69756:65:0;;;31150:21:1;31207:2;31187:18;;;31180:30;31246:34;31226:18;;;31219:62;-1:-1:-1;;;31297:18:1;;;31290:34;31341:19;;69756:65:0;30966:400:1;69756:65:0;69834:39;69855:4;69861:2;69865:7;69834:20;:39::i;:::-;69938:29;69955:1;69959:7;69938:8;:29::i;:::-;-1:-1:-1;;;;;69980:15:0;;;;;;:9;:15;;;;;:20;;69999:1;;69980:15;:20;;69999:1;;69980:20;:::i;:::-;;;;-1:-1:-1;;;;;;;70011:13:0;;;;;;:9;:13;;;;;:18;;70028:1;;70011:13;:18;;70028:1;;70011:18;:::i;:::-;;;;-1:-1:-1;;70040:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;70040:21:0;-1:-1:-1;;;;;70040:21:0;;;;;;;;;70079:27;;70040:16;;70079:27;;;;;;;62617:347;62547:417;;:::o;96760:165::-;96814:7;96864:35;96875:1;96871:3;:5;96878:1;96870:9;96881:3;96869:15;96885:13;76299:10;:17;;76211:113;96885:13;96864:4;:35::i;:::-;96902:3;96864:41;;96760:165;-1:-1:-1;;96760:165:0:o;39563:132::-;39471:6;;-1:-1:-1;;;;;39471:6:0;38029:10;39627:23;39619:68;;;;-1:-1:-1;;;39619:68:0;;31573:2:1;39619:68:0;;;31555:21:1;;;31592:18;;;31585:30;31651:34;31631:18;;;31624:62;31703:18;;39619:68:0;31371:356:1;68783:420:0;68843:13;68859:23;68874:7;68859:14;:23::i;:::-;68843:39;;68895:48;68916:5;68931:1;68935:7;68895:20;:48::i;:::-;68984:29;69001:1;69005:7;68984:8;:29::i;:::-;-1:-1:-1;;;;;69026:16:0;;;;;;:9;:16;;;;;:21;;69046:1;;69026:16;:21;;69046:1;;69026:21;:::i;:::-;;;;-1:-1:-1;;69065:16:0;;;;:7;:16;;;;;;69058:23;;-1:-1:-1;;;;;;69058:23:0;;;69099:36;69073:7;;69065:16;-1:-1:-1;;;;;69099:36:0;;;;;69065:16;;69099:36;97289:299:::1;97227:361:::0;:::o;40665:191::-;40758:6;;;-1:-1:-1;;;;;40775:17:0;;;-1:-1:-1;;;;;;40775:17:0;;;;;;;40808:40;;40758:6;;;40775:17;40758:6;;40808:40;;40739:16;;40808:40;40728:128;40665:191;:::o;98166:373::-;98220:7;98277:15;;;:10;:15;;;;;;:19;98274:258;;-1:-1:-1;98366:15:0;;;;:10;:15;;;;;;;98166:373::o;98274:258::-;-1:-1:-1;98517:3:0;98166:373::o;98274:258::-;98166:373;;;:::o;97014:175::-;97126:47;;;97144:15;97126:47;;;31917:19:1;31952:12;;;31945:28;;;31989:12;;;31982:28;;;97080:7:0;;97178:3;;32026:12:1;;97126:47:0;;;;;;;;;;;;97116:58;;;;;;97108:67;;:73;;;;:::i;:::-;97100:81;97014:175;-1:-1:-1;;;97014:175:0:o;70601:315::-;70756:8;-1:-1:-1;;;;;70747:17:0;:5;-1:-1:-1;;;;;70747:17:0;;;70739:55;;;;-1:-1:-1;;;70739:55:0;;32368:2:1;70739:55:0;;;32350:21:1;32407:2;32387:18;;;32380:30;32446:27;32426:18;;;32419:55;32491:18;;70739:55:0;32166:349:1;70739:55:0;-1:-1:-1;;;;;70805:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;70805:46:0;;;;;;;;;;70867:41;;540::1;;;70867::0;;513:18:1;70867:41:0;;;;;;;70601:315;;;:::o;65597:313::-;65753:28;65763:4;65769:2;65773:7;65753:9;:28::i;:::-;65800:47;65823:4;65829:2;65833:7;65842:4;65800:22;:47::i;:::-;65792:110;;;;-1:-1:-1;;;65792:110:0;;;;;;;:::i;5695:216::-;-1:-1:-1;;;;;;;;;;;;;;;;;5873:30:0;;;;;;;;5879:18;;5873:30;;5830:15;;;5873:30;;;;;;;;5695:216::o;16073:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;16193:11:0;;16181:9;;:23;16177:67;;;-1:-1:-1;16228:4:0;16221:11;;16177:67;16301:11;;;;;16288:9;;;;16269:4;;16288:24;16284:327;;-1:-1:-1;16371:13:0;;16433:4;16423:15;;;16417:22;16480:17;;;16474:24;16556:28;;;16528:26;;;16525:60;16284:327;16627:5;16623:101;;;16662:11;;16649:24;;:4;;:24;;16662:11;;16649:24;:::i;:::-;;;-1:-1:-1;16701:11:0;;16688:9;;;:24;;;;16701:11;;16688:24;:::i;:::-;;;-1:-1:-1;16623:101:0;-1:-1:-1;16743:4:0;;16073:682;-1:-1:-1;;16073:682:0:o;35203:723::-;35259:13;35480:10;35476:53;;-1:-1:-1;;35507:10:0;;;;;;;;;;;;-1:-1:-1;;;35507:10:0;;;;;35203:723::o;35476:53::-;35554:5;35539:12;35595:78;35602:9;;35595:78;;35628:8;;;;:::i;:::-;;-1:-1:-1;35651:10:0;;-1:-1:-1;35659:2:0;35651:10;;:::i;:::-;;;35595:78;;;35683:19;35715:6;35705:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35705:17:0;;35683:39;;35733:154;35740:10;;35733:154;;35767:11;35777:1;35767:11;;:::i;:::-;;-1:-1:-1;35836:10:0;35844:2;35836:5;:10;:::i;:::-;35823:24;;:2;:24;:::i;:::-;35810:39;;35793:6;35800;35793:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;35793:56:0;;;;;;;;-1:-1:-1;35864:11:0;35873:2;35864:11;;:::i;:::-;;;35733:154;;8148:272;8208:13;8234:17;8265:4;:9;;;8254:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8254:21:0;;8234:41;;8286:11;8338:2;8333:3;8329:12;8319:22;;8355:36;8362:6;8370:4;:9;;;8381:4;:9;;;8355:6;:36::i;:::-;-1:-1:-1;8409:3:0;8148:272;-1:-1:-1;;8148:272:0:o;26575:370::-;26653:8;26674;26743:6;:11;;;26685:55;26693:4;:9;;;26704:4;:9;;;26715:6;:11;;;26728:6;:11;;;26685:7;:55::i;:::-;:69;;;;:::i;:::-;26674:80;;26765:173;26791:9;;26779;;;;:21;;26791:9;26779:21;:::i;:::-;26772:3;:28;26765:173;;26817:5;;;;:::i;:::-;;;;26915:6;:11;;;26843:69;26870:4;:9;;;26864:3;:15;;;;:::i;:::-;26851:9;;:29;;;;:::i;:::-;26882:3;26887:6;:11;;;26900:6;:11;;;26843:7;:69::i;:::-;:83;;;;:::i;:::-;26837:89;;26765:173;;24543:143;-1:-1:-1;;;;;;;;;;;;;;;;;24652:26:0;24658:4;24664:6;24672:5;24652;:26::i;92513:530::-;92584:20;92627:43;92642:23;:13;:21;:23::i;:::-;92627:43;;;;;;;;;;;;;-1:-1:-1;;;92627:43:0;;;:14;:43::i;:::-;92618:52;;92692:6;92686:20;92708:1;92686:23;92683:106;;;92734:43;92749:23;:13;:21;:23::i;:::-;92734:43;;;;;;;;;;;;;-1:-1:-1;;;92734:43:0;;;:14;:43::i;:::-;92725:52;;92683:106;92802:20;;92799:106;;92850:43;92865:23;:13;:21;:23::i;:::-;92850:43;;;;;;;;;;;;;-1:-1:-1;;;92850:43:0;;;:14;:43::i;:::-;92841:52;;92799:106;92918:20;;92915:97;;92980:13;92966:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;92957:43;;92513:530;;;:::o;102996:1503::-;103094:11;;103054:13;;103120:8;103116:23;;-1:-1:-1;;103130:9:0;;;;;;;;;-1:-1:-1;103130:9:0;;;102996:1503;-1:-1:-1;102996:1503:0:o;103116:23::-;103150:18;103188:1;103177:7;:3;103183:1;103177:7;:::i;:::-;103176:13;;;;:::i;:::-;103171:19;;:1;:19;:::i;:::-;103150:40;-1:-1:-1;103201:19:0;103233:15;103150:40;103246:2;103233:15;:::i;:::-;103223:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;103223:26:0;;103201:48;;103260:18;103281:5;;;;;;;;;;;;;;;;;103260:26;;103350:1;103343:5;103339:13;103395:2;103387:6;103383:15;103444:1;103412:771;103467:3;103464:1;103461:10;103412:771;;;103522:1;103565:12;;;;;103559:19;103658:4;103646:2;103642:14;;;;;103624:40;;103618:47;103767:2;103763:14;;;103759:25;;103745:40;;103739:47;103896:1;103892:13;;;103888:24;;103874:39;;103868:46;104016:16;;;;104002:31;;103996:38;103694:1;103690:11;;;103788:4;103735:58;;;103726:68;103819:11;;103864:57;;;103855:67;;;;103947:11;;103992:49;;103983:59;104071:3;104067:13;104098:22;;104166:1;104151:17;;;;103515:9;103412:771;;;103416:44;104213:1;104208:3;104204:11;104234:1;104229:84;;;;104332:1;104327:82;;;;104197:212;;104229:84;-1:-1:-1;;;;;104262:17:0;;104255:43;104229:84;;104327:82;-1:-1:-1;;;;;104360:17:0;;104353:41;104197:212;-1:-1:-1;;;104423:26:0;;;104430:6;102996:1503;-1:-1:-1;;;;102996:1503:0:o;67123:110::-;67199:26;67209:2;67213:7;67199:26;;;;;;;;;;;;:9;:26::i;60590:305::-;60692:4;-1:-1:-1;;;;;;60729:40:0;;-1:-1:-1;;;60729:40:0;;:105;;-1:-1:-1;;;;;;;60786:48:0;;-1:-1:-1;;;60786:48:0;60729:105;:158;;;-1:-1:-1;;;;;;;;;;52361:40:0;;;60851:36;52252:157;101795:608;101965:45;101992:4;101998:2;102002:7;101965:26;:45::i;:::-;102046:8;;102024:19;;;;:10;:19;;;;;;:30;102021:374;;;102316:19;;;;:10;:19;;;;;;;102364:4;102349:2;102339:12;;;102353:2;102338:17;102356:4;102338:22;102316:46;102315:53;;;;102292:76;;-1:-1:-1;;101795:608:0:o;71704:853::-;71858:4;-1:-1:-1;;;;;71879:13:0;;42391:19;:23;71875:675;;71915:71;;-1:-1:-1;;;71915:71:0;;-1:-1:-1;;;;;71915:36:0;;;;;:71;;38029:10;;71966:4;;71972:7;;71981:4;;71915:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71915:71:0;;;;;;;;-1:-1:-1;;71915:71:0;;;;;;;;;;;;:::i;:::-;;;71911:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72156:13:0;;72152:328;;72199:60;;-1:-1:-1;;;72199:60:0;;;;;;;:::i;72152:328::-;72430:6;72424:13;72415:6;72411:2;72407:15;72400:38;71911:584;-1:-1:-1;;;;;;72037:51:0;-1:-1:-1;;;72037:51:0;;-1:-1:-1;72030:58:0;;71875:675;-1:-1:-1;72534:4:0;71704:853;;;;;;:::o;4852:636::-;4987:2;4980:3;:9;4974:170;;5058:10;;5045:24;;5098:10;5106:2;5052:4;5098:10;:::i;:::-;;-1:-1:-1;5123:9:0;5130:2;5123:9;;:::i;:::-;;-1:-1:-1;4991:9:0;4998:2;4991:9;;:::i;:::-;;;4974:170;;;-1:-1:-1;;5230:7:0;;5226:68;;5281:1;5269:8;5274:3;5269:2;:8;:::i;:::-;5261:17;;:3;:17;:::i;:::-;:21;;;;:::i;:::-;5254:28;;5226:68;5347:10;;5403:11;;5399:22;;5359:9;;5343:26;5448:21;;;;5435:35;;;-1:-1:-1;4852:636:0:o;18665:1493::-;18764:4;18792:7;18764:4;18835:20;;;18831:1285;;18889:2;18876:9;:15;18872:1233;;18912:12;18947:13;;18943:112;;19032:1;19013:14;19018:9;19013:2;:14;:::i;:::-;19008:20;;:1;:20;:::i;:::-;19002:27;;:1;:27;:::i;:::-;:31;;;;:::i;:::-;19000:34;;-1:-1:-1;18943:112:0;19141:16;;19137:27;;19075:18;19217:9;19197:17;19207:7;19197;:17;:::i;:::-;:29;;;;:::i;:::-;19305:10;;19186:40;;-1:-1:-1;19301:21:0;;19344:233;19362:10;19351:7;:21;19344:233;;19408:3;19401;:10;19397:65;;19445:17;19455:7;19445;:17;:::i;:::-;19438:24;;;;;;;;;;19397:65;19485:5;;;;:::i;:::-;;;;19551:4;19545:3;19539:10;19535:21;19524:32;;19344:233;;;19602:3;19595:10;;;;;;;;;;18872:1233;-1:-1:-1;19746:31:0;;;19696:12;;19799:291;19820:19;19830:9;19820:7;:19;:::i;:::-;19813:3;:26;19799:291;;19933:25;;;19986:16;;;19982:57;;;20036:3;20029:10;;;;;;;;19982:57;20062:8;20069:1;20062:8;;:::i;:::-;;;19848:242;19841:5;;;;;:::i;:::-;;;;19799:291;;;19627:478;18872:1233;20133:17;20143:7;20133;:17;:::i;:::-;20126:24;18665:1493;-1:-1:-1;;;;;;;18665:1493:0:o;23545:516::-;-1:-1:-1;;;;;;;;;;;;;;;;;23668:8:0;23679:55;23687:4;:9;;;23698:4;:9;;;23709:6;:11;;;23722:6;:11;;;23679:7;:55::i;:::-;23758:9;;;;;;23745:10;;;:22;;;;23797:9;23668:66;;-1:-1:-1;23791:15:0;;23668:66;23791:15;:::i;:::-;23778:28;;23840:9;;23828;;;;:21;;23840:9;23828:21;:::i;:::-;23821:3;:28;23817:214;;;23904:1;23892:13;;23817:214;;;23964:11;;23951:10;;:24;;23964:11;23951:24;:::i;:::-;23938:37;;:4;;:37;;;;;:::i;:::-;;;-1:-1:-1;24008:11:0;;24002:17;;:3;:17;:::i;:::-;23990:9;;;:29;23817:214;-1:-1:-1;24048:5:0;;23545:516;-1:-1:-1;;;23545:516:0:o;91884:551::-;91983:20;92018:36;92038:15;:5;:13;:15::i;:::-;92018:10;;:19;:36::i;:::-;92015:139;;;92083:59;92097:21;:10;:19;:21::i;:::-;92120:5;92126;92083:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:57;:59::i;:::-;92070:72;;92015:139;92164:30;92197:33;92214:15;:5;:13;:15::i;:::-;92197:10;;:16;:33::i;:::-;92164:66;;92261:1;92244:16;:10;:14;:16::i;:::-;:18;92241:177;;;92301:20;:9;:18;:20::i;:::-;92322:5;92328;92334;92340:21;:10;:19;:21::i;:::-;92287:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92278:84;;92241:177;;;-1:-1:-1;;92395:11:0;;;;;;;;;-1:-1:-1;92395:11:0;;;91884:551;-1:-1:-1;;91884:551:0:o;67460:319::-;67589:18;67595:2;67599:7;67589:5;:18::i;:::-;67640:53;67671:1;67675:2;67679:7;67688:4;67640:22;:53::i;:::-;67618:153;;;;-1:-1:-1;;;67618:153:0;;;;;;;:::i;77247:589::-;-1:-1:-1;;;;;77453:18:0;;77449:187;;77488:40;77520:7;78663:10;:17;;78636:24;;;;:15;:24;;;;;:44;;;78691:24;;;;;;;;;;;;78559:164;77488:40;77449:187;;;77558:2;-1:-1:-1;;;;;77550:10:0;:4;-1:-1:-1;;;;;77550:10:0;;77546:90;;77577:47;77610:4;77616:7;77577:32;:47::i;:::-;-1:-1:-1;;;;;77650:16:0;;77646:183;;77683:45;77720:7;77683:36;:45::i;77646:183::-;77756:4;-1:-1:-1;;;;;77750:10:0;:2;-1:-1:-1;;;;;77750:10:0;;77746:83;;77777:40;77805:2;77809:7;77777:27;:40::i;17013:572::-;17127:11;;17115:9;;17094:4;;-1:-1:-1;17111:68:0;;;-1:-1:-1;17162:5:0;17155:12;;17111:68;17230:11;;17218:9;;17206;;;;17191:12;;17230:11;17206:21;;;:::i;:::-;:35;;;;:::i;:::-;17191:50;;17269:6;:11;;;17258:7;:22;17254:66;;;17304:4;17297:11;;;;;17254:66;17391:13;;17453:4;17441:17;;17435:24;17513:28;;;17485:26;;17482:60;;-1:-1:-1;17013:572:0;;;;:::o;8821:713::-;8876:6;8971:8;8994:2;8982:4;:9;;;:14;;;;:::i;:::-;9024:9;;8971:25;;-1:-1:-1;9007:8:0;;9018:15;;8971:25;9018:15;:::i;:::-;9007:26;;9053:1;9049:5;;9044:483;9062:3;9056;:9;9044:483;;;9129:10;;9141:4;9125:21;9170:4;9166:8;;9162:354;;;9195:8;9202:1;9195:8;;:::i;:::-;;;9162:354;;;9232:4;9228:1;:8;;;9225:291;;;9257:8;9264:1;9257:8;;:::i;9225:291::-;9294:4;9290:1;:8;;;9287:229;;;9319:8;9326:1;9319:8;;:::i;9287:229::-;9356:4;9352:1;:8;;;9349:167;;;9381:8;9388:1;9381:8;;:::i;9349:167::-;9418:4;9414:1;:8;;;9411:105;;;9443:8;9450:1;9443:8;;:::i;9411:105::-;9492:8;9499:1;9492:8;;:::i;:::-;;;9411:105;-1:-1:-1;9067:3:0;;;;:::i;:::-;;;;9044:483;;;8884:650;;8821:713;;;:::o;68115:439::-;-1:-1:-1;;;;;68195:16:0;;68187:61;;;;-1:-1:-1;;;68187:61:0;;37435:2:1;68187:61:0;;;37417:21:1;;;37454:18;;;37447:30;37513:34;37493:18;;;37486:62;37565:18;;68187:61:0;37233:356:1;68187:61:0;66288:4;66312:16;;;:7;:16;;;;;;-1:-1:-1;;;;;66312:16:0;:30;68259:58;;;;-1:-1:-1;;;68259:58:0;;37796:2:1;68259:58:0;;;37778:21:1;37835:2;37815:18;;;37808:30;37874;37854:18;;;37847:58;37922:18;;68259:58:0;37594:352:1;68259:58:0;68330:45;68359:1;68363:2;68367:7;68330:20;:45::i;:::-;-1:-1:-1;;;;;68388:13:0;;;;;;:9;:13;;;;;:18;;68405:1;;68388:13;:18;;68405:1;;68388:18;:::i;:::-;;;;-1:-1:-1;;68417:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;68417:21:0;-1:-1:-1;;;;;68417:21:0;;;;;;;;68456:33;;68417:16;;;68456:33;;68417:16;;68456:33;97289:299:::1;97227:361:::0;:::o;79350:988::-;79616:22;79666:1;79641:22;79658:4;79641:16;:22::i;:::-;:26;;;;:::i;:::-;79678:18;79699:26;;;:17;:26;;;;;;79616:51;;-1:-1:-1;79832:28:0;;;79828:328;;-1:-1:-1;;;;;79899:18:0;;79877:19;79899:18;;;:12;:18;;;;;;;;:34;;;;;;;;;79950:30;;;;;;:44;;;80067:30;;:17;:30;;;;;:43;;;79828:328;-1:-1:-1;80252:26:0;;;;:17;:26;;;;;;;;80245:33;;;-1:-1:-1;;;;;80296:18:0;;;;;:12;:18;;;;;:34;;;;;;;80289:41;79350:988::o;80633:1079::-;80911:10;:17;80886:22;;80911:21;;80931:1;;80911:21;:::i;:::-;80943:18;80964:24;;;:15;:24;;;;;;81337:10;:26;;80886:46;;-1:-1:-1;80964:24:0;;80886:46;;81337:26;;;;;;:::i;:::-;;;;;;;;;81315:48;;81401:11;81376:10;81387;81376:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;81481:28;;;:15;:28;;;;;;;:41;;;81653:24;;;;;81646:31;81688:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;80704:1008;;;80633:1079;:::o;78137:221::-;78222:14;78239:20;78256:2;78239:16;:20::i;:::-;-1:-1:-1;;;;;78270:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;78315:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;78137:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:118::-;2943:5;2936:13;2929:21;2922:5;2919:32;2909:60;;2965:1;2962;2955:12;2980:241;3036:6;3089:2;3077:9;3068:7;3064:23;3060:32;3057:52;;;3105:1;3102;3095:12;3057:52;3144:9;3131:23;3163:28;3185:5;3163:28;:::i;3226:376::-;3288:6;3296;3349:2;3337:9;3328:7;3324:23;3320:32;3317:52;;;3365:1;3362;3355:12;3317:52;3404:9;3391:23;3423:28;3445:5;3423:28;:::i;:::-;3470:5;-1:-1:-1;3527:2:1;3512:18;;3499:32;3540:30;3499:32;3540:30;:::i;:::-;3589:7;3579:17;;;3226:376;;;;;:::o;3607:247::-;3666:6;3719:2;3707:9;3698:7;3694:23;3690:32;3687:52;;;3735:1;3732;3725:12;3687:52;3774:9;3761:23;3793:31;3818:5;3793:31;:::i;3859:615::-;3945:6;3953;4006:2;3994:9;3985:7;3981:23;3977:32;3974:52;;;4022:1;4019;4012:12;3974:52;4062:9;4049:23;4091:18;4132:2;4124:6;4121:14;4118:34;;;4148:1;4145;4138:12;4118:34;4186:6;4175:9;4171:22;4161:32;;4231:7;4224:4;4220:2;4216:13;4212:27;4202:55;;4253:1;4250;4243:12;4202:55;4293:2;4280:16;4319:2;4311:6;4308:14;4305:34;;;4335:1;4332;4325:12;4305:34;4388:7;4383:2;4373:6;4370:1;4366:14;4362:2;4358:23;4354:32;4351:45;4348:65;;;4409:1;4406;4399:12;4348:65;4440:2;4432:11;;;;;4462:6;;-1:-1:-1;3859:615:1;;-1:-1:-1;;;;3859:615:1:o;4479:309::-;4544:6;4552;4605:2;4593:9;4584:7;4580:23;4576:32;4573:52;;;4621:1;4618;4611:12;4573:52;4657:9;4644:23;4634:33;;4717:2;4706:9;4702:18;4689:32;4730:28;4752:5;4730:28;:::i;4793:382::-;4858:6;4866;4919:2;4907:9;4898:7;4894:23;4890:32;4887:52;;;4935:1;4932;4925:12;4887:52;4974:9;4961:23;4993:31;5018:5;4993:31;:::i;5180:248::-;5248:6;5256;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;-1:-1:-1;;5348:23:1;;;5418:2;5403:18;;;5390:32;;-1:-1:-1;5180:248:1:o;5433:127::-;5494:10;5489:3;5485:20;5482:1;5475:31;5525:4;5522:1;5515:15;5549:4;5546:1;5539:15;5565:275;5636:2;5630:9;5701:2;5682:13;;-1:-1:-1;;5678:27:1;5666:40;;5736:18;5721:34;;5757:22;;;5718:62;5715:88;;;5783:18;;:::i;:::-;5819:2;5812:22;5565:275;;-1:-1:-1;5565:275:1:o;5845:186::-;5893:4;5926:18;5918:6;5915:30;5912:56;;;5948:18;;:::i;:::-;-1:-1:-1;6014:2:1;5993:15;-1:-1:-1;;5989:29:1;6020:4;5985:40;;5845:186::o;6036:1016::-;6131:6;6139;6147;6155;6208:3;6196:9;6187:7;6183:23;6179:33;6176:53;;;6225:1;6222;6215:12;6176:53;6264:9;6251:23;6283:31;6308:5;6283:31;:::i;:::-;6333:5;-1:-1:-1;6390:2:1;6375:18;;6362:32;6403:33;6362:32;6403:33;:::i;:::-;6455:7;-1:-1:-1;6509:2:1;6494:18;;6481:32;;-1:-1:-1;6564:2:1;6549:18;;6536:32;6591:18;6580:30;;6577:50;;;6623:1;6620;6613:12;6577:50;6646:22;;6699:4;6691:13;;6687:27;-1:-1:-1;6677:55:1;;6728:1;6725;6718:12;6677:55;6764:2;6751:16;6789:48;6805:31;6833:2;6805:31;:::i;:::-;6789:48;:::i;:::-;6860:2;6853:5;6846:17;6900:7;6895:2;6890;6886;6882:11;6878:20;6875:33;6872:53;;;6921:1;6918;6911:12;6872:53;6976:2;6971;6967;6963:11;6958:2;6951:5;6947:14;6934:45;7020:1;7015:2;7010;7003:5;6999:14;6995:23;6988:34;7041:5;7031:15;;;;;6036:1016;;;;;;;:::o;7057:591::-;7127:6;7135;7188:2;7176:9;7167:7;7163:23;7159:32;7156:52;;;7204:1;7201;7194:12;7156:52;7244:9;7231:23;7273:18;7314:2;7306:6;7303:14;7300:34;;;7330:1;7327;7320:12;7300:34;7368:6;7357:9;7353:22;7343:32;;7413:7;7406:4;7402:2;7398:13;7394:27;7384:55;;7435:1;7432;7425:12;7384:55;7475:2;7462:16;7501:2;7493:6;7490:14;7487:34;;;7517:1;7514;7507:12;7487:34;7562:7;7557:2;7548:6;7544:2;7540:15;7536:24;7533:37;7530:57;;;7583:1;7580;7573:12;8129:388;8197:6;8205;8258:2;8246:9;8237:7;8233:23;8229:32;8226:52;;;8274:1;8271;8264:12;8226:52;8313:9;8300:23;8332:31;8357:5;8332:31;:::i;:::-;8382:5;-1:-1:-1;8439:2:1;8424:18;;8411:32;8452:33;8411:32;8452:33;:::i;9006:380::-;9085:1;9081:12;;;;9128;;;9149:61;;9203:4;9195:6;9191:17;9181:27;;9149:61;9256:2;9248:6;9245:14;9225:18;9222:38;9219:161;;;9302:10;9297:3;9293:20;9290:1;9283:31;9337:4;9334:1;9327:15;9365:4;9362:1;9355:15;9219:161;;9006:380;;;:::o;9391:355::-;9593:2;9575:21;;;9632:2;9612:18;;;9605:30;9671:33;9666:2;9651:18;;9644:61;9737:2;9722:18;;9391:355::o;9751:354::-;9953:2;9935:21;;;9992:2;9972:18;;;9965:30;10031:32;10026:2;10011:18;;10004:60;10096:2;10081:18;;9751:354::o;10110:127::-;10171:10;10166:3;10162:20;10159:1;10152:31;10202:4;10199:1;10192:15;10226:4;10223:1;10216:15;10242:128;10282:3;10313:1;10309:6;10306:1;10303:13;10300:39;;;10319:18;;:::i;:::-;-1:-1:-1;10355:9:1;;10242:128::o;10375:340::-;10577:2;10559:21;;;10616:2;10596:18;;;10589:30;-1:-1:-1;;;10650:2:1;10635:18;;10628:46;10706:2;10691:18;;10375:340::o;11065:339::-;11267:2;11249:21;;;11306:2;11286:18;;;11279:30;-1:-1:-1;;;11340:2:1;11325:18;;11318:45;11395:2;11380:18;;11065:339::o;11409:401::-;11611:2;11593:21;;;11650:2;11630:18;;;11623:30;11689:34;11684:2;11669:18;;11662:62;-1:-1:-1;;;11755:2:1;11740:18;;11733:35;11800:3;11785:19;;11409:401::o;12995:410::-;13197:2;13179:21;;;13236:2;13216:18;;;13209:30;13275:34;13270:2;13255:18;;13248:62;-1:-1:-1;;;13341:2:1;13326:18;;13319:44;13395:3;13380:19;;12995:410::o;14579:127::-;14640:10;14635:3;14631:20;14628:1;14621:31;14671:4;14668:1;14661:15;14695:4;14692:1;14685:15;16386:125;16426:4;16454:1;16451;16448:8;16445:34;;;16459:18;;:::i;:::-;-1:-1:-1;16496:9:1;;16386:125::o;16856:635::-;16936:6;16989:2;16977:9;16968:7;16964:23;16960:32;16957:52;;;17005:1;17002;16995:12;16957:52;17038:9;17032:16;17071:18;17063:6;17060:30;17057:50;;;17103:1;17100;17093:12;17057:50;17126:22;;17179:4;17171:13;;17167:27;-1:-1:-1;17157:55:1;;17208:1;17205;17198:12;17157:55;17237:2;17231:9;17262:48;17278:31;17306:2;17278:31;:::i;17262:48::-;17333:2;17326:5;17319:17;17373:7;17368:2;17363;17359;17355:11;17351:20;17348:33;17345:53;;;17394:1;17391;17384:12;17345:53;17407:54;17458:2;17453;17446:5;17442:14;17437:2;17433;17429:11;17407:54;:::i;:::-;17480:5;16856:635;-1:-1:-1;;;;;16856:635:1:o;17689:127::-;17750:10;17745:3;17741:20;17738:1;17731:31;17781:4;17778:1;17771:15;17805:4;17802:1;17795:15;17821:120;17861:1;17887;17877:35;;17892:18;;:::i;:::-;-1:-1:-1;17926:9:1;;17821:120::o;17946:135::-;17985:3;-1:-1:-1;;18006:17:1;;18003:43;;;18026:18;;:::i;:::-;-1:-1:-1;18073:1:1;18062:13;;17946:135::o;18086:185::-;18128:3;18166:5;18160:12;18181:52;18226:6;18221:3;18214:4;18207:5;18203:16;18181:52;:::i;:::-;18249:16;;;;;18086:185;-1:-1:-1;;18086:185:1:o;18276:1449::-;18695:3;18733:6;18727:13;18759:4;18772:51;18816:6;18811:3;18806:2;18798:6;18794:15;18772:51;:::i;:::-;18886:13;;18845:16;;;;18908:55;18886:13;18845:16;18930:15;;;18908:55;:::i;:::-;19030:13;;18985:20;;;19052:55;19030:13;18985:20;19074:15;;;19052:55;:::i;:::-;19174:13;;19129:20;;;19196:55;19174:13;19129:20;19218:15;;;19196:55;:::i;:::-;19318:13;;19273:20;;;19340:55;19318:13;19273:20;19362:15;;;19340:55;:::i;:::-;19462:13;;19417:20;;;19484:55;19462:13;19417:20;19506:15;;;19484:55;:::i;:::-;19606:13;;19561:20;;;19628:55;19606:13;19561:20;19650:15;;;19628:55;:::i;:::-;19699:20;;;;;18276:1449;-1:-1:-1;;;;;;;;;;18276:1449:1:o;19814:717::-;20166:66;20161:3;20154:79;20272:40;20267:3;20263:50;20258:2;20253:3;20249:12;20242:72;20136:3;20343:6;20337:13;20359:60;20412:6;20407:2;20402:3;20398:12;20393:2;20385:6;20381:15;20359:60;:::i;:::-;-1:-1:-1;;;20478:2:1;20438:16;;;;20470:11;;;20463:35;-1:-1:-1;20522:2:1;20514:11;;19814:717;-1:-1:-1;19814:717:1:o;20536:229::-;20613:66;20601:79;;-1:-1:-1;;;20705:2:1;20696:12;;20689:42;20756:2;20747:12;;20536:229::o;20770:756::-;21140:3;21178:6;21172:13;21194:53;21240:6;21235:3;21228:4;21220:6;21216:17;21194:53;:::i;:::-;21266:47;21305:6;21300:3;21296:16;21266:47;:::i;:::-;21256:57;;21344:6;21338:13;21360:54;21405:8;21401:2;21394:4;21386:6;21382:17;21360:54;:::i;:::-;-1:-1:-1;;;21436:17:1;;21462:29;;;21518:1;21507:13;;20770:756;-1:-1:-1;;;;20770:756:1:o;21531:770::-;21901:3;21939:6;21933:13;21955:53;22001:6;21996:3;21989:4;21981:6;21977:17;21955:53;:::i;:::-;22027:47;22066:6;22061:3;22057:16;22027:47;:::i;:::-;22017:57;;22105:6;22099:13;22121:54;22166:8;22162:2;22155:4;22147:6;22143:17;22121:54;:::i;:::-;-1:-1:-1;;;22197:17:1;;22223:43;;;22293:1;22282:13;;21531:770;-1:-1:-1;;;;21531:770:1:o;22306:168::-;22346:7;22412:1;22408;22404:6;22400:14;22397:1;22394:21;22389:1;22382:9;22375:17;22371:45;22368:71;;;22419:18;;:::i;:::-;-1:-1:-1;22459:9:1;;22306:168::o;22479:428::-;22700:3;22738:6;22732:13;22754:53;22800:6;22795:3;22788:4;22780:6;22776:17;22754:53;:::i;:::-;-1:-1:-1;;;22829:16:1;;22854:18;;;-1:-1:-1;22899:1:1;22888:13;;22479:428;-1:-1:-1;22479:428:1:o;22912:899::-;23282:3;23320:6;23314:13;23336:53;23382:6;23377:3;23370:4;23362:6;23358:17;23336:53;:::i;:::-;23420:6;23415:3;23411:16;23398:29;;23450:66;23443:5;23436:81;23560:14;23555:3;23551:24;23544:4;23537:5;23533:16;23526:50;23607:6;23601:13;23623:66;23680:8;23675:2;23668:5;23664:14;23657:4;23649:6;23645:17;23623:66;:::i;:::-;-1:-1:-1;;;23752:2:1;23708:20;;;;23744:11;;;23737:41;23802:2;23794:11;;22912:899;-1:-1:-1;;;;22912:899:1:o;24169:2295::-;-1:-1:-1;;;24836:61:1;;24920:13;;24818:3;;24952:4;24965:60;24920:13;25013:2;25004:12;;24987:15;;;24965:60;:::i;:::-;25085:13;;25044:16;;;;25107:61;25085:13;25154:2;25146:11;;25129:15;;;25107:61;:::i;:::-;-1:-1:-1;;;25228:2:1;25187:17;;;;25220:11;;;25213:71;25352:13;;25303:2;;25325:1;;25412;25434:18;;;;25487;;;;25514:93;;25592:4;25582:8;25578:19;25566:31;;25514:93;25655:2;25645:8;25642:16;25622:18;25619:40;25616:167;;;-1:-1:-1;;;25682:33:1;;25738:4;25735:1;25728:15;25768:4;25689:3;25756:17;25616:167;25799:18;25826:122;;;;25962:1;25957:344;;;;25792:509;;25826:122;-1:-1:-1;;25867:24:1;;25854:11;;;25847:45;25916:17;;;25912:26;;;-1:-1:-1;25826:122:1;;25957:344;23893:1;23886:14;;;23930:4;23917:18;;26056:1;26070:175;26084:8;26081:1;26078:15;26070:175;;;26172:14;;26155:10;;;26151:19;;26144:43;26215:16;;;;26101:10;;26070:175;;;26074:3;;26288:2;26277:8;26273:2;26269:17;26265:26;26258:33;;25792:509;-1:-1:-1;;24023:66:1;24011:79;;-1:-1:-1;;;;;24115:2:1;24106:12;;24099:31;-1:-1:-1;26323:61:1;24155:2;24146:12;;26341:6;26323:61;:::i;:::-;26310:74;;;;;26393:36;26423:5;-1:-1:-1;;;19780:27:1;;19730:79;26393:36;26456:1;26445:13;;24169:2295;-1:-1:-1;;;;;;24169:2295:1:o;26469:448::-;26731:31;26726:3;26719:44;26701:3;26792:6;26786:13;26808:62;26863:6;26858:2;26853:3;26849:12;26842:4;26834:6;26830:17;26808:62;:::i;:::-;26890:16;;;;26908:2;26886:25;;26469:448;-1:-1:-1;;26469:448:1:o;27559:245::-;27626:6;27679:2;27667:9;27658:7;27654:23;27650:32;27647:52;;;27695:1;27692;27685:12;27647:52;27727:9;27721:16;27746:28;27768:5;27746:28;:::i;28561:251::-;28631:6;28684:2;28672:9;28663:7;28659:23;28655:32;28652:52;;;28700:1;28697;28690:12;28652:52;28732:9;28726:16;28751:31;28776:5;28751:31;:::i;32049:112::-;32081:1;32107;32097:35;;32112:18;;:::i;:::-;-1:-1:-1;32146:9:1;;32049:112::o;32520:414::-;32722:2;32704:21;;;32761:2;32741:18;;;32734:30;32800:34;32795:2;32780:18;;32773:62;-1:-1:-1;;;32866:2:1;32851:18;;32844:48;32924:3;32909:19;;32520:414::o;32939:430::-;33160:3;33198:6;33192:13;33214:53;33260:6;33255:3;33248:4;33240:6;33236:17;33214:53;:::i;:::-;-1:-1:-1;;;33289:16:1;;33314:20;;;-1:-1:-1;33361:1:1;33350:13;;32939:430;-1:-1:-1;32939:430:1:o;33374:500::-;-1:-1:-1;;;;;33643:15:1;;;33625:34;;33695:15;;33690:2;33675:18;;33668:43;33742:2;33727:18;;33720:34;;;33790:3;33785:2;33770:18;;33763:31;;;33568:4;;33811:57;;33848:19;;33840:6;33811:57;:::i;:::-;33803:65;33374:500;-1:-1:-1;;;;;;33374:500:1:o;33879:249::-;33948:6;34001:2;33989:9;33980:7;33976:23;33972:32;33969:52;;;34017:1;34014;34007:12;33969:52;34049:9;34043:16;34068:30;34092:5;34068:30;:::i;34133:422::-;34222:1;34265:5;34222:1;34279:270;34300:7;34290:8;34287:21;34279:270;;;34359:4;34355:1;34351:6;34347:17;34341:4;34338:27;34335:53;;;34368:18;;:::i;:::-;34418:7;34408:8;34404:22;34401:55;;;34438:16;;;;34401:55;34517:22;;;;34477:15;;;;34279:270;;;34283:3;34133:422;;;;;:::o;34560:806::-;34609:5;34639:8;34629:80;;-1:-1:-1;34680:1:1;34694:5;;34629:80;34728:4;34718:76;;-1:-1:-1;34765:1:1;34779:5;;34718:76;34810:4;34828:1;34823:59;;;;34896:1;34891:130;;;;34803:218;;34823:59;34853:1;34844:10;;34867:5;;;34891:130;34928:3;34918:8;34915:17;34912:43;;;34935:18;;:::i;:::-;-1:-1:-1;;34991:1:1;34977:16;;35006:5;;34803:218;;35105:2;35095:8;35092:16;35086:3;35080:4;35077:13;35073:36;35067:2;35057:8;35054:16;35049:2;35043:4;35040:12;35036:35;35033:77;35030:159;;;-1:-1:-1;35142:19:1;;;35174:5;;35030:159;35221:34;35246:8;35240:4;35221:34;:::i;:::-;35291:6;35287:1;35283:6;35279:19;35270:7;35267:32;35264:58;;;35302:18;;:::i;:::-;35340:20;;34560:806;-1:-1:-1;;;34560:806:1:o;35371:131::-;35431:5;35460:36;35487:8;35481:4;35460:36;:::i;35507:664::-;35734:3;35772:6;35766:13;35788:53;35834:6;35829:3;35822:4;35814:6;35810:17;35788:53;:::i;:::-;35904:13;;35863:16;;;;35926:57;35904:13;35863:16;35960:4;35948:17;;35926:57;:::i;:::-;36050:13;;36005:20;;;36072:57;36050:13;36005:20;36106:4;36094:17;;36072:57;:::i;:::-;36145:20;;35507:664;-1:-1:-1;;;;;35507:664:1:o;36176:1052::-;36499:3;36537:6;36531:13;36553:53;36599:6;36594:3;36587:4;36579:6;36575:17;36553:53;:::i;:::-;36669:13;;36628:16;;;;36691:57;36669:13;36628:16;36725:4;36713:17;;36691:57;:::i;:::-;36815:13;;36770:20;;;36837:57;36815:13;36770:20;36871:4;36859:17;;36837:57;:::i;:::-;36961:13;;36916:20;;;36983:57;36961:13;36916:20;37017:4;37005:17;;36983:57;:::i;:::-;37107:13;;37062:20;;;37129:57;37107:13;37062:20;37163:4;37151:17;;37129:57;:::i;:::-;37202:20;;36176:1052;-1:-1:-1;;;;;;;36176:1052:1:o;37951:127::-;38012:10;38007:3;38003:20;38000:1;37993:31;38043:4;38040:1;38033:15;38067:4;38064:1;38057:15
Swarm Source
ipfs://2144a30b8a9d33656b3ec249b6d7c3631d65233276005a6e35c02fdc4dcb2abe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.