ERC-721
Overview
Max Total Supply
100 FLWR
Holders
92
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FLWRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EdensFlowers
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-19 */ // SPDX-License-Identifier: MIT //Flowers Created by Newt9 //.........................................╓╓................................. //......................................╓▄▓▌▓▓╖............................... //....................................á▓▓▓▓░▓▓▓█╖............................. //..................................╓▓▓▓▓▓▓]▓▓▓▓▓▓............................ //.................................¿▓▓▓▓▓▓▓▐▓▓▓▓▓▓▓........................... //................................j▓▓▓▓▓▓▓▓▐▓▓╬▓▓▓▓▓.......................... //................................]▓▓▓▓▓▓▓▓▐▓▓Ü▓▓▓▓▓.......................... //.......................,r▄▄▄▄▄,..▓▓▓▓▓╬▓▓▐▓▓Ü▓▓▓▓▓...,,▄▄▄▄▄▄q,,............ //.................,▄▀▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▐▓▓╬▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄....... //...............≡Ñ▓▓▓▓▓▄▄▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀▀▀▓▓▓╜..... //...............╙▓▓▓▓▓▓▓▓▓▓▓▀▀▓▓▓▓▓▓▓▓▓▓▓╣▓]▓▌▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀▀▓▓▓▓▓▓█`...... //.................▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄▓▀▀▓▓▀▓▄▓▓▄╣▀▓▓▓▓▓▓▓▓▀▓▄▓▓▓▓▓▓▓▓▓▓▀........ //...................▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓C▓▓▓▓▓▓▓▓╙▓▓▄▄▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀.......... //.....................▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓U▓▓▓▓▓▓▓▓]▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀............ //.......................╙▀▓▓▓▓▓▓▓▓▓▓▓▓▄▀▀▓▓▓▓╓▀▓▓▓▓▓▓▓▓▓▓▓▓▓▀"............... //..........................▄▓▓▓▓▓▓▓▓▓▀▄▓▓▄▄▄▓▓▓▓▓▓▓▓▓▓▓▓▓`................... //........................╓▓▓▓▓▓▓▓▓▓▄▓▓▓▓▓▓▓▓▓▓▓╙▓▓▓▓▓▓▓▓▓▓................... //.......................╓▓▓▓▓▓▓▓▓▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄▓▓▓▓▓▓▓▓▓▓.................. //.......................▓▓▓▓▓▓▓▄▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀▓▓▓▓▓▓▓▓[................. //......................▐▓▓▓▓▓▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█╨▓▓▓▓▓▓▓▌................. //......................╟▓▓▓▀▓▓▓▓▓▓▓▓▓▓▓▀..╙▓▓▓▓▓▓▓▓▓▄▓▓▓▓▓▓▌................. //......................╟▓▓▄▓▓▓▓▓▓▓▓▀".......╙▓▓▓▓▓▓▓▓▓▄▓▓▓▓.................. //......................╟▓▄▓▓▓▀▀╙...............▀▓▓▓▓▓▓▓▀▓▓▌.................. //................................................`▀▓▓▓▓▓╜▓................... //...................................................."╜▀╙.................... // File: contracts/Interfaces/Ilove.sol pragma solidity ^0.8.6; interface LoveToken { function balanceOf(address owner) external view returns (uint256 balance); } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @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.8.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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @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.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @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.8.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 = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (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 See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: contracts/edensflowers.sol pragma solidity ^0.8.9; contract EdensFlowers is ERC721Enumerable, Ownable { string public baseURI = "https://ipfs.io/ipfs/bafybeiggybn2qnqqizr7w4rwsp3ud76fgulayewmlcmvlkszce7d24u4dy/"; uint256 public supplyMinted = 0; uint256 public expiration; address public burnercontract; mapping (uint256 => uint256) public flowerId; LoveToken public LoveTokenAddress = LoveToken(0x64F9670a6eb014e222a5a97C131FC8D19c98f128); constructor() ERC721("Edens Flowers", "FLWR") { Mint(); expiration = block.timestamp + 500 weeks; } function Mint() public { uint256 id = supplyMinted+1; require(id < 101); _mint(msg.sender, id); flowerId[id] = id; supplyMinted++; } function AirdropMint(address[] calldata _addresses) public { for(uint i;i < _addresses.length;){ unchecked{ uint256 id = supplyMinted+1; require(id < 101); _mint(_addresses[i], id); flowerId[id] = id; supplyMinted = id; ++i; }} } //Optional burn function setBurner(address burner) external onlyOwner { burnercontract = burner; } function burnit(uint256 tokenId) external { require(tx.origin == ownerOf(tokenId)); require(msg.sender == burnercontract); _burn(tokenId); } //Switch Flower images function flowerSwitch(uint256 _from, uint256 _to) external { address switcher = ownerOf(_from); address switchee = ownerOf(_to); require(msg.sender == switcher); require(address(0) != switchee); require(LoveTokenAddress.balanceOf(switcher) > 0); require(LoveTokenAddress.balanceOf(switchee) > 0); uint256 tokento = flowerId[_to]; uint256 tokenfrom = flowerId[_from]; flowerId[_to] = tokenfrom; flowerId[_from] = tokento; expireCheck(); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistant token"); address tokenowner = ownerOf(tokenId); string memory currentBaseURI = _baseURI(); if(LoveTokenAddress.balanceOf(tokenowner) < 1){ return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, "0", ".json")): ""; } if(tokenowner == address(0)){ return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, "0", ".json")): ""; } return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(flowerId[tokenId]), ".json")): ""; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _transfer(address from, address to, uint256 tokenId) internal virtual override { super._transfer(from,to,tokenId); expireCheck(); } function exiprationTime() public view returns (uint256){ if(expiration > block.timestamp){ return(expiration - block.timestamp); } return 0; } function expireCheck() public { if(block.timestamp > expiration){ selfdestruct(payable(address(msg.sender))); } } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"AirdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LoveTokenAddress","outputs":[{"internalType":"contract LoveToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnercontract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exiprationTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expireCheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"flowerId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"flowerSwitch","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":"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":"address","name":"burner","type":"address"}],"name":"setBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280605181526020016200559860519139600b90816200002e919062000ea4565b506000600c557364f9670a6eb014e222a5a97c131fc8d19c98f128601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009657600080fd5b506040518060400160405280600d81526020017f4564656e7320466c6f77657273000000000000000000000000000000000000008152506040518060400160405280600481526020017f464c575200000000000000000000000000000000000000000000000000000000815250816000908162000114919062000ea4565b50806001908162000126919062000ea4565b505050620001496200013d6200017760201b60201c565b6200017f60201b60201c565b620001596200024560201b60201c565b6312064200426200016b919062000fba565b600d8190555062001300565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001600c5462000258919062000fba565b9050606581106200026857600080fd5b6200027a3382620002af60201b60201c565b80600f600083815260200190815260200160002081905550600c6000815480929190620002a79062000ff5565b919050555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000321576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031890620010a3565b60405180910390fd5b6200033281620004f560201b60201c565b1562000375576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036c9062001115565b60405180910390fd5b6200038b6000838360016200053e60201b60201c565b6200039c81620004f560201b60201c565b15620003df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d69062001115565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004f1600083836001620006d260201b60201c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166200051f83620006d860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000557848484846200071560201b6200173c1760201c565b60018111156200059e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059590620011ad565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603620005ef57620005e9816200084260201b60201c565b62000637565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161462000636576200063585826200088b60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000683576200067d8162000a0860201b60201c565b620006cb565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620006ca57620006c9848262000ae460201b60201c565b5b5b5050505050565b50505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60018111156200083c57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620007ad5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007a59190620011cf565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200083b5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000833919062000fba565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008a58462000b7060201b620010a91760201c565b620008b19190620011cf565b905060006007600084815260200190815260200160002054905081811462000997576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a1e9190620011cf565b905060006009600084815260200190815260200160002054905060006008838154811062000a515762000a506200120a565b5b90600052602060002001549050806008838154811062000a765762000a756200120a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000ac85762000ac762001239565b5b6001900381819060005260206000200160009055905550505050565b600062000afc8362000b7060201b620010a91760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bda90620012de565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cac57607f821691505b60208210810362000cc25762000cc162000c64565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ced565b62000d38868362000ced565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d8562000d7f62000d798462000d50565b62000d5a565b62000d50565b9050919050565b6000819050919050565b62000da18362000d64565b62000db962000db08262000d8c565b84845462000cfa565b825550505050565b600090565b62000dd062000dc1565b62000ddd81848462000d96565b505050565b5b8181101562000e055762000df960008262000dc6565b60018101905062000de3565b5050565b601f82111562000e545762000e1e8162000cc8565b62000e298462000cdd565b8101602085101562000e39578190505b62000e5162000e488562000cdd565b83018262000de2565b50505b505050565b600082821c905092915050565b600062000e796000198460080262000e59565b1980831691505092915050565b600062000e94838362000e66565b9150826002028217905092915050565b62000eaf8262000c2a565b67ffffffffffffffff81111562000ecb5762000eca62000c35565b5b62000ed7825462000c93565b62000ee482828562000e09565b600060209050601f83116001811462000f1c576000841562000f07578287015190505b62000f13858262000e86565b86555062000f83565b601f19841662000f2c8662000cc8565b60005b8281101562000f565784890151825560018201915060208501945060208101905062000f2f565b8683101562000f76578489015162000f72601f89168262000e66565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fc78262000d50565b915062000fd48362000d50565b925082820190508082111562000fef5762000fee62000f8b565b5b92915050565b6000620010028262000d50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001037576200103662000f8b565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200108b60208362001042565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620010fd601c8362001042565b91506200110a82620010c5565b602082019050919050565b600060208201905081810360008301526200113081620010ee565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006200119560358362001042565b9150620011a28262001137565b604082019050919050565b60006020820190508181036000830152620011c88162001186565b9050919050565b6000620011dc8262000d50565b9150620011e98362000d50565b925082820390508181111562001204576200120362000f8b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000620012c660298362001042565b9150620012d38262001268565b604082019050919050565b60006020820190508181036000830152620012f981620012b7565b9050919050565b61428880620013106000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106b8578063c87b56dd146106e1578063d12c30161461071e578063e985e9c514610749578063f2fde38b14610786576101ee565b806395d89b4114610624578063970cf3821461064f578063a22cb46514610666578063a996d6ce1461068f576101ee565b80637483e01d116100dc5780637483e01d1461057a5780637e9845f5146105a357806380d580f9146105ce5780638da5cb5b146105f9576101ee565b80636352211e146104be5780636c0360eb146104fb57806370a0823114610526578063715018a614610563576101ee565b8063269f08d71161018557806342842e0e1161015457806342842e0e146104045780634665096d1461042d5780634f6ccce71461045857806354f9b13614610495576101ee565b8063269f08d7146103695780632f745c59146103a657806334c73884146103e35780633ccfd60b146103fa576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806312a35675146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b57806308f9da5414610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e88565b6107af565b6040516102279190612ed0565b60405180910390f35b34801561023c57600080fd5b50610245610829565b6040516102529190612f7b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612fd3565b6108bb565b60405161028f9190613041565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612fd3565b610901565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190613088565b6109a7565b005b3480156102f657600080fd5b506102ff610abe565b60405161030c9190613041565b60405180910390f35b34801561032157600080fd5b5061032a610ae4565b60405161033791906130d7565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906130f2565b610af1565b005b34801561037557600080fd5b50610390600480360381019061038b9190612fd3565b610b51565b60405161039d91906130d7565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613088565b610b69565b6040516103da91906130d7565b60405180910390f35b3480156103ef57600080fd5b506103f8610c0e565b005b610402610c6b565b005b34801561041057600080fd5b5061042b600480360381019061042691906130f2565b610cb3565b005b34801561043957600080fd5b50610442610cd3565b60405161044f91906130d7565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612fd3565b610cd9565b60405161048c91906130d7565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613145565b610d4a565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612fd3565b610f95565b6040516104f29190613041565b60405180910390f35b34801561050757600080fd5b5061051061101b565b60405161051d9190612f7b565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613185565b6110a9565b60405161055a91906130d7565b60405180910390f35b34801561056f57600080fd5b50610578611160565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613217565b611174565b005b3480156105af57600080fd5b506105b86111fa565b6040516105c591906130d7565b60405180910390f35b3480156105da57600080fd5b506105e3611200565b6040516105f091906132c3565b60405180910390f35b34801561060557600080fd5b5061060e611226565b60405161061b9190613041565b60405180910390f35b34801561063057600080fd5b50610639611250565b6040516106469190612f7b565b60405180910390f35b34801561065b57600080fd5b506106646112e2565b005b34801561067257600080fd5b5061068d6004803603810190610688919061330a565b611307565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613185565b61131d565b005b3480156106c457600080fd5b506106df60048036038101906106da919061347a565b611369565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612fd3565b6113cb565b6040516107159190612f7b565b60405180910390f35b34801561072a57600080fd5b506107336115fc565b60405161074091906130d7565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b91906134fd565b611625565b60405161077d9190612ed0565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613185565b6116b9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610822575061082182611862565b5b9050919050565b6060600080546108389061356c565b80601f01602080910402602001604051908101604052809291908181526020018280546108649061356c565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611944565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61090a81610f95565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461094157600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099b57600080fd5b6109a48161198f565b50565b60006109b282610f95565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a199061360f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611add565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611add565b611625565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906136a1565b60405180910390fd5b610ab98383611ae5565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600880549050905090565b610b02610afc611add565b82611b9e565b610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890613733565b60405180910390fd5b610b4c838383611c33565b505050565b600f6020528060005260406000206000915090505481565b6000610b74836110a9565b8210610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906137c5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006001600c54610c1f9190613814565b905060658110610c2e57600080fd5b610c383382611c4b565b80600f600083815260200190815260200160002081905550600c6000815480929190610c6390613848565b919050555050565b610c73611e68565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cb157600080fd5b565b610cce83838360405180602001604052806000815250611369565b505050565b600d5481565b6000610ce3610ae4565b8210610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613902565b60405180910390fd5b60088281548110610d3857610d37613922565b5b90600052602060002001549050919050565b6000610d5583610f95565b90506000610d6283610f95565b90508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d9c57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1603610dd557600080fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610e329190613041565b602060405180830381865afa158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e739190613966565b11610e7d57600080fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610eda9190613041565b602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b9190613966565b11610f2557600080fd5b6000600f60008581526020019081526020016000205490506000600f600087815260200190815260200160002054905080600f60008781526020019081526020016000208190555081600f600088815260200190815260200160002081905550610f8d6112e2565b505050505050565b600080610fa183611ee6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611009906139df565b60405180910390fd5b80915050919050565b600b80546110289061356c565b80601f01602080910402602001604051908101604052809291908181526020018280546110549061356c565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613a71565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611168611e68565b6111726000611f23565b565b60005b828290508110156111f55760006001600c540190506065811061119957600080fd5b6111ca8484848181106111af576111ae613922565b5b90506020020160208101906111c49190613185565b82611c4b565b80600f60008381526020019081526020016000208190555080600c8190555081600101915050611177565b505050565b600c5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125f9061356c565b80601f016020809104026020016040519081016040528092919081815260200182805461128b9061356c565b80156112d85780601f106112ad576101008083540402835291602001916112d8565b820191906000526020600020905b8154815290600101906020018083116112bb57829003601f168201915b5050505050905090565b600d54421115611305573373ffffffffffffffffffffffffffffffffffffffff16ff5b565b611319611312611add565b8383611fe9565b5050565b611325611e68565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61137a611374611add565b83611b9e565b6113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613733565b60405180910390fd5b6113c584848484612155565b50505050565b60606113d6826121b1565b611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613b03565b60405180910390fd5b600061142083610f95565b9050600061142c6121f2565b90506001601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161148b9190613041565b602060405180830381865afa1580156114a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cc9190613966565b101561151a5760008151116114f05760405180602001604052806000815250611511565b806040516020016115019190613bf7565b6040516020818303038152906040525b925050506115f7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159657600081511161156c576040518060200160405280600081525061158d565b8060405160200161157d9190613bf7565b6040516020818303038152906040525b925050506115f7565b60008151116115b457604051806020016040528060008152506115f2565b806115d1600f600087815260200190815260200160002054612284565b6040516020016115e2929190613c24565b6040516020818303038152906040525b925050505b919050565b600042600d54111561161d5742600d546116169190613c53565b9050611622565b600090505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c1611e68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613cf9565b60405180910390fd5b61173981611f23565b50565b600181111561185c57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146117d05780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c89190613c53565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461185b5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118539190613814565b925050819055505b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061192d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061193d575061193c82612352565b5b9050919050565b61194d816121b1565b61198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906139df565b60405180910390fd5b50565b600061199a82610f95565b90506119aa8160008460016123bc565b6119b382610f95565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ad981600084600161251a565b5050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b5883610f95565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611baa83610f95565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bec5750611beb8185611625565b5b80611c2a57508373ffffffffffffffffffffffffffffffffffffffff16611c12846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b611c3e838383612520565b611c466112e2565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613d65565b60405180910390fd5b611cc3816121b1565b15611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613dd1565b60405180910390fd5b611d116000838360016123bc565b611d1a816121b1565b15611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613dd1565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6460008383600161251a565b5050565b611e70611add565b73ffffffffffffffffffffffffffffffffffffffff16611e8e611226565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613e3d565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e90613ea9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121489190612ed0565b60405180910390a3505050565b612160848484611c33565b61216c84848484612819565b6121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290613f3b565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166121d383611ee6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546122019061356c565b80601f016020809104026020016040519081016040528092919081815260200182805461222d9061356c565b801561227a5780601f1061224f5761010080835404028352916020019161227a565b820191906000526020600020905b81548152906001019060200180831161225d57829003601f168201915b5050505050905090565b606060006001612293846129a0565b01905060008167ffffffffffffffff8111156122b2576122b161334f565b5b6040519080825280601f01601f1916602001820160405280156122e45781602001600182028036833780820191505090505b509050600082602001820190505b600115612347578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161233b5761233a613f5b565b5b049450600085036122f2575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123c88484848461173c565b600181111561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390613ffc565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124535761244e81612af3565b612492565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612491576124908582612b3c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124d4576124cf81612ca9565b612513565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612512576125118482612d7a565b5b5b5050505050565b50505050565b8273ffffffffffffffffffffffffffffffffffffffff1661254082610f95565b73ffffffffffffffffffffffffffffffffffffffff1614612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061408e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614120565b60405180910390fd5b61261283838360016123bc565b8273ffffffffffffffffffffffffffffffffffffffff1661263282610f95565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f9061408e565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612814838383600161251a565b505050565b600061283a8473ffffffffffffffffffffffffffffffffffffffff16612df9565b15612993578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612863611add565b8786866040518563ffffffff1660e01b81526004016128859493929190614195565b6020604051808303816000875af19250505080156128c157506040513d601f19601f820116820180604052508101906128be91906141f6565b60015b612943573d80600081146128f1576040519150601f19603f3d011682016040523d82523d6000602084013e6128f6565b606091505b50600081510361293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290613f3b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612998565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106129fe577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816129f4576129f3613f5b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a3b576d04ee2d6d415b85acef81000000008381612a3157612a30613f5b565b5b0492506020810190505b662386f26fc100008310612a6a57662386f26fc100008381612a6057612a5f613f5b565b5b0492506010810190505b6305f5e1008310612a93576305f5e1008381612a8957612a88613f5b565b5b0492506008810190505b6127108310612ab8576127108381612aae57612aad613f5b565b5b0492506004810190505b60648310612adb5760648381612ad157612ad0613f5b565b5b0492506002810190505b600a8310612aea576001810190505b80915050919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b49846110a9565b612b539190613c53565b9050600060076000848152602001908152602001600020549050818114612c38576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612cbd9190613c53565b9050600060096000848152602001908152602001600020549050600060088381548110612ced57612cec613922565b5b906000526020600020015490508060088381548110612d0f57612d0e613922565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d5e57612d5d614223565b5b6001900381819060005260206000200160009055905550505050565b6000612d85836110a9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e6581612e30565b8114612e7057600080fd5b50565b600081359050612e8281612e5c565b92915050565b600060208284031215612e9e57612e9d612e26565b5b6000612eac84828501612e73565b91505092915050565b60008115159050919050565b612eca81612eb5565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f25578082015181840152602081019050612f0a565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f4d82612eeb565b612f578185612ef6565b9350612f67818560208601612f07565b612f7081612f31565b840191505092915050565b60006020820190508181036000830152612f958184612f42565b905092915050565b6000819050919050565b612fb081612f9d565b8114612fbb57600080fd5b50565b600081359050612fcd81612fa7565b92915050565b600060208284031215612fe957612fe8612e26565b5b6000612ff784828501612fbe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061302b82613000565b9050919050565b61303b81613020565b82525050565b60006020820190506130566000830184613032565b92915050565b61306581613020565b811461307057600080fd5b50565b6000813590506130828161305c565b92915050565b6000806040838503121561309f5761309e612e26565b5b60006130ad85828601613073565b92505060206130be85828601612fbe565b9150509250929050565b6130d181612f9d565b82525050565b60006020820190506130ec60008301846130c8565b92915050565b60008060006060848603121561310b5761310a612e26565b5b600061311986828701613073565b935050602061312a86828701613073565b925050604061313b86828701612fbe565b9150509250925092565b6000806040838503121561315c5761315b612e26565b5b600061316a85828601612fbe565b925050602061317b85828601612fbe565b9150509250929050565b60006020828403121561319b5761319a612e26565b5b60006131a984828501613073565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126131d7576131d66131b2565b5b8235905067ffffffffffffffff8111156131f4576131f36131b7565b5b6020830191508360208202830111156132105761320f6131bc565b5b9250929050565b6000806020838503121561322e5761322d612e26565b5b600083013567ffffffffffffffff81111561324c5761324b612e2b565b5b613258858286016131c1565b92509250509250929050565b6000819050919050565b600061328961328461327f84613000565b613264565b613000565b9050919050565b600061329b8261326e565b9050919050565b60006132ad82613290565b9050919050565b6132bd816132a2565b82525050565b60006020820190506132d860008301846132b4565b92915050565b6132e781612eb5565b81146132f257600080fd5b50565b600081359050613304816132de565b92915050565b6000806040838503121561332157613320612e26565b5b600061332f85828601613073565b9250506020613340858286016132f5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61338782612f31565b810181811067ffffffffffffffff821117156133a6576133a561334f565b5b80604052505050565b60006133b9612e1c565b90506133c5828261337e565b919050565b600067ffffffffffffffff8211156133e5576133e461334f565b5b6133ee82612f31565b9050602081019050919050565b82818337600083830152505050565b600061341d613418846133ca565b6133af565b9050828152602081018484840111156134395761343861334a565b5b6134448482856133fb565b509392505050565b600082601f830112613461576134606131b2565b5b813561347184826020860161340a565b91505092915050565b6000806000806080858703121561349457613493612e26565b5b60006134a287828801613073565b94505060206134b387828801613073565b93505060406134c487828801612fbe565b925050606085013567ffffffffffffffff8111156134e5576134e4612e2b565b5b6134f18782880161344c565b91505092959194509250565b6000806040838503121561351457613513612e26565b5b600061352285828601613073565b925050602061353385828601613073565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061358457607f821691505b6020821081036135975761359661353d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135f9602183612ef6565b91506136048261359d565b604082019050919050565b60006020820190508181036000830152613628816135ec565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061368b603d83612ef6565b91506136968261362f565b604082019050919050565b600060208201905081810360008301526136ba8161367e565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061371d602d83612ef6565b9150613728826136c1565b604082019050919050565b6000602082019050818103600083015261374c81613710565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137af602b83612ef6565b91506137ba82613753565b604082019050919050565b600060208201905081810360008301526137de816137a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061381f82612f9d565b915061382a83612f9d565b9250828201905080821115613842576138416137e5565b5b92915050565b600061385382612f9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613885576138846137e5565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006138ec602c83612ef6565b91506138f782613890565b604082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061396081612fa7565b92915050565b60006020828403121561397c5761397b612e26565b5b600061398a84828501613951565b91505092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006139c9601883612ef6565b91506139d482613993565b602082019050919050565b600060208201905081810360008301526139f8816139bc565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613a5b602983612ef6565b9150613a66826139ff565b604082019050919050565b60006020820190508181036000830152613a8a81613a4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613aed602f83612ef6565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b600081905092915050565b6000613b3982612eeb565b613b438185613b23565b9350613b53818560208601612f07565b80840191505092915050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000613b95600183613b23565b9150613ba082613b5f565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613be1600583613b23565b9150613bec82613bab565b600582019050919050565b6000613c038284613b2e565b9150613c0e82613b88565b9150613c1982613bd4565b915081905092915050565b6000613c308285613b2e565b9150613c3c8284613b2e565b9150613c4782613bd4565b91508190509392505050565b6000613c5e82612f9d565b9150613c6983612f9d565b9250828203905081811115613c8157613c806137e5565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ce3602683612ef6565b9150613cee82613c87565b604082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613d4f602083612ef6565b9150613d5a82613d19565b602082019050919050565b60006020820190508181036000830152613d7e81613d42565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613dbb601c83612ef6565b9150613dc682613d85565b602082019050919050565b60006020820190508181036000830152613dea81613dae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e27602083612ef6565b9150613e3282613df1565b602082019050919050565b60006020820190508181036000830152613e5681613e1a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e93601983612ef6565b9150613e9e82613e5d565b602082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f25603283612ef6565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613fe6603583612ef6565b9150613ff182613f8a565b604082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614078602583612ef6565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061410a602483612ef6565b9150614115826140ae565b604082019050919050565b60006020820190508181036000830152614139816140fd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061416782614140565b614171818561414b565b9350614181818560208601612f07565b61418a81612f31565b840191505092915050565b60006080820190506141aa6000830187613032565b6141b76020830186613032565b6141c460408301856130c8565b81810360608301526141d6818461415c565b905095945050505050565b6000815190506141f081612e5c565b92915050565b60006020828403121561420c5761420b612e26565b5b600061421a848285016141e1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220ad62fb6e97633dacb9ce5cf040d4cb909a1c44837ceaee830f06ef33b0c07c8a64736f6c6343000811003368747470733a2f2f697066732e696f2f697066732f62616679626569676779626e32716e7171697a723777347277737033756437366667756c617965776d6c636d766c6b737a636537643234753464792f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106b8578063c87b56dd146106e1578063d12c30161461071e578063e985e9c514610749578063f2fde38b14610786576101ee565b806395d89b4114610624578063970cf3821461064f578063a22cb46514610666578063a996d6ce1461068f576101ee565b80637483e01d116100dc5780637483e01d1461057a5780637e9845f5146105a357806380d580f9146105ce5780638da5cb5b146105f9576101ee565b80636352211e146104be5780636c0360eb146104fb57806370a0823114610526578063715018a614610563576101ee565b8063269f08d71161018557806342842e0e1161015457806342842e0e146104045780634665096d1461042d5780634f6ccce71461045857806354f9b13614610495576101ee565b8063269f08d7146103695780632f745c59146103a657806334c73884146103e35780633ccfd60b146103fa576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806312a35675146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b57806308f9da5414610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612e88565b6107af565b6040516102279190612ed0565b60405180910390f35b34801561023c57600080fd5b50610245610829565b6040516102529190612f7b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612fd3565b6108bb565b60405161028f9190613041565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612fd3565b610901565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190613088565b6109a7565b005b3480156102f657600080fd5b506102ff610abe565b60405161030c9190613041565b60405180910390f35b34801561032157600080fd5b5061032a610ae4565b60405161033791906130d7565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906130f2565b610af1565b005b34801561037557600080fd5b50610390600480360381019061038b9190612fd3565b610b51565b60405161039d91906130d7565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613088565b610b69565b6040516103da91906130d7565b60405180910390f35b3480156103ef57600080fd5b506103f8610c0e565b005b610402610c6b565b005b34801561041057600080fd5b5061042b600480360381019061042691906130f2565b610cb3565b005b34801561043957600080fd5b50610442610cd3565b60405161044f91906130d7565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612fd3565b610cd9565b60405161048c91906130d7565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613145565b610d4a565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612fd3565b610f95565b6040516104f29190613041565b60405180910390f35b34801561050757600080fd5b5061051061101b565b60405161051d9190612f7b565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613185565b6110a9565b60405161055a91906130d7565b60405180910390f35b34801561056f57600080fd5b50610578611160565b005b34801561058657600080fd5b506105a1600480360381019061059c9190613217565b611174565b005b3480156105af57600080fd5b506105b86111fa565b6040516105c591906130d7565b60405180910390f35b3480156105da57600080fd5b506105e3611200565b6040516105f091906132c3565b60405180910390f35b34801561060557600080fd5b5061060e611226565b60405161061b9190613041565b60405180910390f35b34801561063057600080fd5b50610639611250565b6040516106469190612f7b565b60405180910390f35b34801561065b57600080fd5b506106646112e2565b005b34801561067257600080fd5b5061068d6004803603810190610688919061330a565b611307565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613185565b61131d565b005b3480156106c457600080fd5b506106df60048036038101906106da919061347a565b611369565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612fd3565b6113cb565b6040516107159190612f7b565b60405180910390f35b34801561072a57600080fd5b506107336115fc565b60405161074091906130d7565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b91906134fd565b611625565b60405161077d9190612ed0565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613185565b6116b9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610822575061082182611862565b5b9050919050565b6060600080546108389061356c565b80601f01602080910402602001604051908101604052809291908181526020018280546108649061356c565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611944565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61090a81610f95565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461094157600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099b57600080fd5b6109a48161198f565b50565b60006109b282610f95565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a199061360f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611add565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611add565b611625565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906136a1565b60405180910390fd5b610ab98383611ae5565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600880549050905090565b610b02610afc611add565b82611b9e565b610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890613733565b60405180910390fd5b610b4c838383611c33565b505050565b600f6020528060005260406000206000915090505481565b6000610b74836110a9565b8210610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906137c5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006001600c54610c1f9190613814565b905060658110610c2e57600080fd5b610c383382611c4b565b80600f600083815260200190815260200160002081905550600c6000815480929190610c6390613848565b919050555050565b610c73611e68565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cb157600080fd5b565b610cce83838360405180602001604052806000815250611369565b505050565b600d5481565b6000610ce3610ae4565b8210610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613902565b60405180910390fd5b60088281548110610d3857610d37613922565b5b90600052602060002001549050919050565b6000610d5583610f95565b90506000610d6283610f95565b90508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d9c57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1603610dd557600080fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610e329190613041565b602060405180830381865afa158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e739190613966565b11610e7d57600080fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610eda9190613041565b602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b9190613966565b11610f2557600080fd5b6000600f60008581526020019081526020016000205490506000600f600087815260200190815260200160002054905080600f60008781526020019081526020016000208190555081600f600088815260200190815260200160002081905550610f8d6112e2565b505050505050565b600080610fa183611ee6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611009906139df565b60405180910390fd5b80915050919050565b600b80546110289061356c565b80601f01602080910402602001604051908101604052809291908181526020018280546110549061356c565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613a71565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611168611e68565b6111726000611f23565b565b60005b828290508110156111f55760006001600c540190506065811061119957600080fd5b6111ca8484848181106111af576111ae613922565b5b90506020020160208101906111c49190613185565b82611c4b565b80600f60008381526020019081526020016000208190555080600c8190555081600101915050611177565b505050565b600c5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125f9061356c565b80601f016020809104026020016040519081016040528092919081815260200182805461128b9061356c565b80156112d85780601f106112ad576101008083540402835291602001916112d8565b820191906000526020600020905b8154815290600101906020018083116112bb57829003601f168201915b5050505050905090565b600d54421115611305573373ffffffffffffffffffffffffffffffffffffffff16ff5b565b611319611312611add565b8383611fe9565b5050565b611325611e68565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61137a611374611add565b83611b9e565b6113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613733565b60405180910390fd5b6113c584848484612155565b50505050565b60606113d6826121b1565b611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90613b03565b60405180910390fd5b600061142083610f95565b9050600061142c6121f2565b90506001601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161148b9190613041565b602060405180830381865afa1580156114a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cc9190613966565b101561151a5760008151116114f05760405180602001604052806000815250611511565b806040516020016115019190613bf7565b6040516020818303038152906040525b925050506115f7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159657600081511161156c576040518060200160405280600081525061158d565b8060405160200161157d9190613bf7565b6040516020818303038152906040525b925050506115f7565b60008151116115b457604051806020016040528060008152506115f2565b806115d1600f600087815260200190815260200160002054612284565b6040516020016115e2929190613c24565b6040516020818303038152906040525b925050505b919050565b600042600d54111561161d5742600d546116169190613c53565b9050611622565b600090505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c1611e68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613cf9565b60405180910390fd5b61173981611f23565b50565b600181111561185c57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146117d05780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c89190613c53565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461185b5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118539190613814565b925050819055505b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061192d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061193d575061193c82612352565b5b9050919050565b61194d816121b1565b61198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906139df565b60405180910390fd5b50565b600061199a82610f95565b90506119aa8160008460016123bc565b6119b382610f95565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ad981600084600161251a565b5050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b5883610f95565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611baa83610f95565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bec5750611beb8185611625565b5b80611c2a57508373ffffffffffffffffffffffffffffffffffffffff16611c12846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b611c3e838383612520565b611c466112e2565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613d65565b60405180910390fd5b611cc3816121b1565b15611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613dd1565b60405180910390fd5b611d116000838360016123bc565b611d1a816121b1565b15611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613dd1565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6460008383600161251a565b5050565b611e70611add565b73ffffffffffffffffffffffffffffffffffffffff16611e8e611226565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613e3d565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e90613ea9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121489190612ed0565b60405180910390a3505050565b612160848484611c33565b61216c84848484612819565b6121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290613f3b565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166121d383611ee6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546122019061356c565b80601f016020809104026020016040519081016040528092919081815260200182805461222d9061356c565b801561227a5780601f1061224f5761010080835404028352916020019161227a565b820191906000526020600020905b81548152906001019060200180831161225d57829003601f168201915b5050505050905090565b606060006001612293846129a0565b01905060008167ffffffffffffffff8111156122b2576122b161334f565b5b6040519080825280601f01601f1916602001820160405280156122e45781602001600182028036833780820191505090505b509050600082602001820190505b600115612347578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161233b5761233a613f5b565b5b049450600085036122f2575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123c88484848461173c565b600181111561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390613ffc565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124535761244e81612af3565b612492565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612491576124908582612b3c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124d4576124cf81612ca9565b612513565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612512576125118482612d7a565b5b5b5050505050565b50505050565b8273ffffffffffffffffffffffffffffffffffffffff1661254082610f95565b73ffffffffffffffffffffffffffffffffffffffff1614612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061408e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614120565b60405180910390fd5b61261283838360016123bc565b8273ffffffffffffffffffffffffffffffffffffffff1661263282610f95565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f9061408e565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612814838383600161251a565b505050565b600061283a8473ffffffffffffffffffffffffffffffffffffffff16612df9565b15612993578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612863611add565b8786866040518563ffffffff1660e01b81526004016128859493929190614195565b6020604051808303816000875af19250505080156128c157506040513d601f19601f820116820180604052508101906128be91906141f6565b60015b612943573d80600081146128f1576040519150601f19603f3d011682016040523d82523d6000602084013e6128f6565b606091505b50600081510361293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290613f3b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612998565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106129fe577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816129f4576129f3613f5b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a3b576d04ee2d6d415b85acef81000000008381612a3157612a30613f5b565b5b0492506020810190505b662386f26fc100008310612a6a57662386f26fc100008381612a6057612a5f613f5b565b5b0492506010810190505b6305f5e1008310612a93576305f5e1008381612a8957612a88613f5b565b5b0492506008810190505b6127108310612ab8576127108381612aae57612aad613f5b565b5b0492506004810190505b60648310612adb5760648381612ad157612ad0613f5b565b5b0492506002810190505b600a8310612aea576001810190505b80915050919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b49846110a9565b612b539190613c53565b9050600060076000848152602001908152602001600020549050818114612c38576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612cbd9190613c53565b9050600060096000848152602001908152602001600020549050600060088381548110612ced57612cec613922565b5b906000526020600020015490508060088381548110612d0f57612d0e613922565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d5e57612d5d614223565b5b6001900381819060005260206000200160009055905550505050565b6000612d85836110a9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e6581612e30565b8114612e7057600080fd5b50565b600081359050612e8281612e5c565b92915050565b600060208284031215612e9e57612e9d612e26565b5b6000612eac84828501612e73565b91505092915050565b60008115159050919050565b612eca81612eb5565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f25578082015181840152602081019050612f0a565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f4d82612eeb565b612f578185612ef6565b9350612f67818560208601612f07565b612f7081612f31565b840191505092915050565b60006020820190508181036000830152612f958184612f42565b905092915050565b6000819050919050565b612fb081612f9d565b8114612fbb57600080fd5b50565b600081359050612fcd81612fa7565b92915050565b600060208284031215612fe957612fe8612e26565b5b6000612ff784828501612fbe565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061302b82613000565b9050919050565b61303b81613020565b82525050565b60006020820190506130566000830184613032565b92915050565b61306581613020565b811461307057600080fd5b50565b6000813590506130828161305c565b92915050565b6000806040838503121561309f5761309e612e26565b5b60006130ad85828601613073565b92505060206130be85828601612fbe565b9150509250929050565b6130d181612f9d565b82525050565b60006020820190506130ec60008301846130c8565b92915050565b60008060006060848603121561310b5761310a612e26565b5b600061311986828701613073565b935050602061312a86828701613073565b925050604061313b86828701612fbe565b9150509250925092565b6000806040838503121561315c5761315b612e26565b5b600061316a85828601612fbe565b925050602061317b85828601612fbe565b9150509250929050565b60006020828403121561319b5761319a612e26565b5b60006131a984828501613073565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126131d7576131d66131b2565b5b8235905067ffffffffffffffff8111156131f4576131f36131b7565b5b6020830191508360208202830111156132105761320f6131bc565b5b9250929050565b6000806020838503121561322e5761322d612e26565b5b600083013567ffffffffffffffff81111561324c5761324b612e2b565b5b613258858286016131c1565b92509250509250929050565b6000819050919050565b600061328961328461327f84613000565b613264565b613000565b9050919050565b600061329b8261326e565b9050919050565b60006132ad82613290565b9050919050565b6132bd816132a2565b82525050565b60006020820190506132d860008301846132b4565b92915050565b6132e781612eb5565b81146132f257600080fd5b50565b600081359050613304816132de565b92915050565b6000806040838503121561332157613320612e26565b5b600061332f85828601613073565b9250506020613340858286016132f5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61338782612f31565b810181811067ffffffffffffffff821117156133a6576133a561334f565b5b80604052505050565b60006133b9612e1c565b90506133c5828261337e565b919050565b600067ffffffffffffffff8211156133e5576133e461334f565b5b6133ee82612f31565b9050602081019050919050565b82818337600083830152505050565b600061341d613418846133ca565b6133af565b9050828152602081018484840111156134395761343861334a565b5b6134448482856133fb565b509392505050565b600082601f830112613461576134606131b2565b5b813561347184826020860161340a565b91505092915050565b6000806000806080858703121561349457613493612e26565b5b60006134a287828801613073565b94505060206134b387828801613073565b93505060406134c487828801612fbe565b925050606085013567ffffffffffffffff8111156134e5576134e4612e2b565b5b6134f18782880161344c565b91505092959194509250565b6000806040838503121561351457613513612e26565b5b600061352285828601613073565b925050602061353385828601613073565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061358457607f821691505b6020821081036135975761359661353d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135f9602183612ef6565b91506136048261359d565b604082019050919050565b60006020820190508181036000830152613628816135ec565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061368b603d83612ef6565b91506136968261362f565b604082019050919050565b600060208201905081810360008301526136ba8161367e565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061371d602d83612ef6565b9150613728826136c1565b604082019050919050565b6000602082019050818103600083015261374c81613710565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137af602b83612ef6565b91506137ba82613753565b604082019050919050565b600060208201905081810360008301526137de816137a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061381f82612f9d565b915061382a83612f9d565b9250828201905080821115613842576138416137e5565b5b92915050565b600061385382612f9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613885576138846137e5565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006138ec602c83612ef6565b91506138f782613890565b604082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061396081612fa7565b92915050565b60006020828403121561397c5761397b612e26565b5b600061398a84828501613951565b91505092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006139c9601883612ef6565b91506139d482613993565b602082019050919050565b600060208201905081810360008301526139f8816139bc565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613a5b602983612ef6565b9150613a66826139ff565b604082019050919050565b60006020820190508181036000830152613a8a81613a4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613aed602f83612ef6565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b600081905092915050565b6000613b3982612eeb565b613b438185613b23565b9350613b53818560208601612f07565b80840191505092915050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000613b95600183613b23565b9150613ba082613b5f565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613be1600583613b23565b9150613bec82613bab565b600582019050919050565b6000613c038284613b2e565b9150613c0e82613b88565b9150613c1982613bd4565b915081905092915050565b6000613c308285613b2e565b9150613c3c8284613b2e565b9150613c4782613bd4565b91508190509392505050565b6000613c5e82612f9d565b9150613c6983612f9d565b9250828203905081811115613c8157613c806137e5565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ce3602683612ef6565b9150613cee82613c87565b604082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613d4f602083612ef6565b9150613d5a82613d19565b602082019050919050565b60006020820190508181036000830152613d7e81613d42565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613dbb601c83612ef6565b9150613dc682613d85565b602082019050919050565b60006020820190508181036000830152613dea81613dae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e27602083612ef6565b9150613e3282613df1565b602082019050919050565b60006020820190508181036000830152613e5681613e1a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e93601983612ef6565b9150613e9e82613e5d565b602082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f25603283612ef6565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613fe6603583612ef6565b9150613ff182613f8a565b604082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614078602583612ef6565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061410a602483612ef6565b9150614115826140ae565b604082019050919050565b60006020820190508181036000830152614139816140fd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061416782614140565b614171818561414b565b9350614181818560208601612f07565b61418a81612f31565b840191505092915050565b60006080820190506141aa6000830187613032565b6141b76020830186613032565b6141c460408301856130c8565b81810360608301526141d6818461415c565b905095945050505050565b6000815190506141f081612e5c565b92915050565b60006020828403121561420c5761420b612e26565b5b600061421a848285016141e1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220ad62fb6e97633dacb9ce5cf040d4cb909a1c44837ceaee830f06ef33b0c07c8a64736f6c63430008110033
Deployed Bytecode Sourcemap
68084:3513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60110:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45684:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69301:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45202:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68326:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60750:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46384:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68362:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60418:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68649:191;;;;;;;;;;;;;:::i;:::-;;71474:120;;;:::i;:::-;;46790:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68294:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60940:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69509:541;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43882:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68142:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43613:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21595:103;;;;;;;;;;;;;:::i;:::-;;68848:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68256:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68413:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20947:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44341:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71317:149;;;;;;;;;;;;;:::i;:::-;;45927:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69199:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47046:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70058:773;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71124:187;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46153:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21853:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60110:224;60212:4;60251:35;60236:50;;;:11;:50;;;;:90;;;;60290:36;60314:11;60290:23;:36::i;:::-;60236:90;60229:97;;60110:224;;;:::o;44172:100::-;44226:13;44259:5;44252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44172:100;:::o;45684:171::-;45760:7;45780:23;45795:7;45780:14;:23::i;:::-;45823:15;:24;45839:7;45823:24;;;;;;;;;;;;;;;;;;;;;45816:31;;45684:171;;;:::o;69301:172::-;69375:16;69383:7;69375;:16::i;:::-;69362:29;;:9;:29;;;69354:38;;;;;;69425:14;;;;;;;;;;;69411:28;;:10;:28;;;69403:37;;;;;;69451:14;69457:7;69451:5;:14::i;:::-;69301:172;:::o;45202:416::-;45283:13;45299:23;45314:7;45299:14;:23::i;:::-;45283:39;;45347:5;45341:11;;:2;:11;;;45333:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45441:5;45425:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45450:37;45467:5;45474:12;:10;:12::i;:::-;45450:16;:37::i;:::-;45425:62;45403:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;45589:21;45598:2;45602:7;45589:8;:21::i;:::-;45272:346;45202:416;;:::o;68326:29::-;;;;;;;;;;;;;:::o;60750:113::-;60811:7;60838:10;:17;;;;60831:24;;60750:113;:::o;46384:335::-;46579:41;46598:12;:10;:12::i;:::-;46612:7;46579:18;:41::i;:::-;46571:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;46683:28;46693:4;46699:2;46703:7;46683:9;:28::i;:::-;46384:335;;;:::o;68362:44::-;;;;;;;;;;;;;;;;;:::o;60418:256::-;60515:7;60551:23;60568:5;60551:16;:23::i;:::-;60543:5;:31;60535:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60640:12;:19;60653:5;60640:19;;;;;;;;;;;;;;;:26;60660:5;60640:26;;;;;;;;;;;;60633:33;;60418:256;;;;:::o;68649:191::-;68696:10;68722:1;68709:12;;:14;;;;:::i;:::-;68696:27;;68746:3;68741:2;:8;68733:17;;;;;;68760:21;68766:10;68778:2;68760:5;:21::i;:::-;68806:2;68791:8;:12;68800:2;68791:12;;;;;;;;;;;:17;;;;68818:12;;:14;;;;;;;;;:::i;:::-;;;;;;68686:154;68649:191::o;71474:120::-;20833:13;:11;:13::i;:::-;71546:10:::1;71538:24;;:47;71563:21;71538:47;;;;;;;;;;;;;;;;;;;;;;;71530:56;;;::::0;::::1;;71474:120::o:0;46790:185::-;46928:39;46945:4;46951:2;46955:7;46928:39;;;;;;;;;;;;:16;:39::i;:::-;46790:185;;;:::o;68294:25::-;;;;:::o;60940:233::-;61015:7;61051:30;:28;:30::i;:::-;61043:5;:38;61035:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;61148:10;61159:5;61148:17;;;;;;;;:::i;:::-;;;;;;;;;;61141:24;;60940:233;;;:::o;69509:541::-;69579:16;69598:14;69606:5;69598:7;:14::i;:::-;69579:33;;69623:16;69642:12;69650:3;69642:7;:12::i;:::-;69623:31;;69687:8;69673:22;;:10;:22;;;69665:31;;;;;;69729:8;69715:22;;69723:1;69715:22;;;69707:31;;;;;;69796:1;69757:16;;;;;;;;;;;:26;;;69784:8;69757:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;69749:49;;;;;;69856:1;69817:16;;;;;;;;;;;:26;;;69844:8;69817:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;69809:49;;;;;;69869:15;69887:8;:13;69896:3;69887:13;;;;;;;;;;;;69869:31;;69911:17;69931:8;:15;69940:5;69931:15;;;;;;;;;;;;69911:35;;69973:9;69957:8;:13;69966:3;69957:13;;;;;;;;;;;:25;;;;70011:7;69993:8;:15;70002:5;69993:15;;;;;;;;;;;:25;;;;70029:13;:11;:13::i;:::-;69568:482;;;;69509:541;;:::o;43882:223::-;43954:7;43974:13;43990:17;43999:7;43990:8;:17::i;:::-;43974:33;;44043:1;44026:19;;:5;:19;;;44018:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;44092:5;44085:12;;;43882:223;;;:::o;68142:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43613:207::-;43685:7;43730:1;43713:19;;:5;:19;;;43705:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43796:9;:16;43806:5;43796:16;;;;;;;;;;;;;;;;43789:23;;43613:207;;;:::o;21595:103::-;20833:13;:11;:13::i;:::-;21660:30:::1;21687:1;21660:18;:30::i;:::-;21595:103::o:0;68848:322::-;68929:6;68925:238;68940:10;;:17;;68936:1;:21;68925:238;;;68990:10;69016:1;69003:12;;:14;68990:27;;69041:3;69036:2;:8;69028:17;;;;;;69056:24;69062:10;;69073:1;69062:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;69077:2;69056:5;:24::i;:::-;69106:2;69091:8;:12;69100:2;69091:12;;;;;;;;;;;:17;;;;69134:2;69119:12;:17;;;;69147:3;;;;;68970:192;68925:238;;;;68848:322;;:::o;68256:31::-;;;;:::o;68413:89::-;;;;;;;;;;;;;:::o;20947:87::-;20993:7;21020:6;;;;;;;;;;;21013:13;;20947:87;:::o;44341:104::-;44397:13;44430:7;44423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44341:104;:::o;71317:149::-;71379:10;;71361:15;:28;71358:101;;;71434:10;71405:42;;;71358:101;71317:149::o;45927:155::-;46022:52;46041:12;:10;:12::i;:::-;46055:8;46065;46022:18;:52::i;:::-;45927:155;;:::o;69199:96::-;20833:13;:11;:13::i;:::-;69281:6:::1;69264:14;;:23;;;;;;;;;;;;;;;;;;69199:96:::0;:::o;47046:322::-;47220:41;47239:12;:10;:12::i;:::-;47253:7;47220:18;:41::i;:::-;47212:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;47322:38;47336:4;47342:2;47346:7;47355:4;47322:13;:38::i;:::-;47046:322;;;;:::o;70058:773::-;70131:13;70165:16;70173:7;70165;:16::i;:::-;70157:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;70243:18;70264:16;70272:7;70264;:16::i;:::-;70243:37;;70291:28;70322:10;:8;:10::i;:::-;70291:41;;70387:1;70346:16;;;;;;;;;;;:26;;;70373:10;70346:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;70343:173;;;70442:1;70417:14;70411:28;:32;:93;;;;;;;;;;;;;;;;;70470:14;70453:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;70411:93;70404:100;;;;;;70343:173;70551:1;70529:24;;:10;:24;;;70526:155;;70607:1;70582:14;70576:28;:32;:93;;;;;;;;;;;;;;;;;70635:14;70618:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;70576:93;70569:100;;;;;;70526:155;70729:1;70704:14;70698:28;:32;:125;;;;;;;;;;;;;;;;;70757:14;70773:35;70790:8;:17;70799:7;70790:17;;;;;;;;;;;;70773:16;:35::i;:::-;70740:78;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70698:125;70691:132;;;;70058:773;;;;:::o;71124:187::-;71171:7;71206:15;71193:10;;:28;71190:95;;;71257:15;71244:10;;:28;;;;:::i;:::-;71237:36;;;;71190:95;71302:1;71295:8;;71124:187;;:::o;46153:164::-;46250:4;46274:18;:25;46293:5;46274:25;;;;;;;;;;;;;;;:35;46300:8;46274:35;;;;;;;;;;;;;;;;;;;;;;;;;46267:42;;46153:164;;;;:::o;21853:201::-;20833:13;:11;:13::i;:::-;21962:1:::1;21942:22;;:8;:22;;::::0;21934:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22018:28;22037:8;22018:18;:28::i;:::-;21853:201:::0;:::o;57787:410::-;57977:1;57965:9;:13;57961:229;;;58015:1;57999:18;;:4;:18;;;57995:87;;58057:9;58038;:15;58048:4;58038:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;57995:87;58114:1;58100:16;;:2;:16;;;58096:83;;58154:9;58137;:13;58147:2;58137:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;58096:83;57961:229;57787:410;;;;:::o;43244:305::-;43346:4;43398:25;43383:40;;;:11;:40;;;;:105;;;;43455:33;43440:48;;;:11;:48;;;;43383:105;:158;;;;43505:36;43529:11;43505:23;:36::i;:::-;43383:158;43363:178;;43244:305;;;:::o;55503:135::-;55585:16;55593:7;55585;:16::i;:::-;55577:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;55503:135;:::o;52280:783::-;52340:13;52356:23;52371:7;52356:14;:23::i;:::-;52340:39;;52392:51;52413:5;52428:1;52432:7;52441:1;52392:20;:51::i;:::-;52556:23;52571:7;52556:14;:23::i;:::-;52548:31;;52627:15;:24;52643:7;52627:24;;;;;;;;;;;;52620:31;;;;;;;;;;;52892:1;52872:9;:16;52882:5;52872:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;52922:7;:16;52930:7;52922:16;;;;;;;;;;;;52915:23;;;;;;;;;;;52984:7;52980:1;52956:36;;52965:5;52956:36;;;;;;;;;;;;53005:50;53025:5;53040:1;53044:7;53053:1;53005:19;:50::i;:::-;52329:734;52280:783;:::o;19498:98::-;19551:7;19578:10;19571:17;;19498:98;:::o;54782:174::-;54884:2;54857:15;:24;54873:7;54857:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54940:7;54936:2;54902:46;;54911:23;54926:7;54911:14;:23::i;:::-;54902:46;;;;;;;;;;;;54782:174;;:::o;49401:264::-;49494:4;49511:13;49527:23;49542:7;49527:14;:23::i;:::-;49511:39;;49580:5;49569:16;;:7;:16;;;:52;;;;49589:32;49606:5;49613:7;49589:16;:32::i;:::-;49569:52;:87;;;;49649:7;49625:31;;:20;49637:7;49625:11;:20::i;:::-;:31;;;49569:87;49561:96;;;49401:264;;;;:::o;70955:163::-;71054:32;71070:4;71075:2;71078:7;71054:15;:32::i;:::-;71097:13;:11;:13::i;:::-;70955:163;;;:::o;50999:942::-;51093:1;51079:16;;:2;:16;;;51071:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51152:16;51160:7;51152;:16::i;:::-;51151:17;51143:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51214:48;51243:1;51247:2;51251:7;51260:1;51214:20;:48::i;:::-;51361:16;51369:7;51361;:16::i;:::-;51360:17;51352:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51776:1;51759:9;:13;51769:2;51759:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51820:2;51801:7;:16;51809:7;51801:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51865:7;51861:2;51840:33;;51857:1;51840:33;;;;;;;;;;;;51886:47;51914:1;51918:2;51922:7;51931:1;51886:19;:47::i;:::-;50999:942;;:::o;21112:132::-;21187:12;:10;:12::i;:::-;21176:23;;:7;:5;:7::i;:::-;:23;;;21168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21112:132::o;48676:117::-;48742:7;48769;:16;48777:7;48769:16;;;;;;;;;;;;;;;;;;;;;48762:23;;48676:117;;;:::o;22214:191::-;22288:16;22307:6;;;;;;;;;;;22288:25;;22333:8;22324:6;;:17;;;;;;;;;;;;;;;;;;22388:8;22357:40;;22378:8;22357:40;;;;;;;;;;;;22277:128;22214:191;:::o;55099:315::-;55254:8;55245:17;;:5;:17;;;55237:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55341:8;55303:18;:25;55322:5;55303:25;;;;;;;;;;;;;;;:35;55329:8;55303:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;55387:8;55365:41;;55380:5;55365:41;;;55397:8;55365:41;;;;;;:::i;:::-;;;;;;;;55099:315;;;:::o;48249:313::-;48405:28;48415:4;48421:2;48425:7;48405:9;:28::i;:::-;48452:47;48475:4;48481:2;48485:7;48494:4;48452:22;:47::i;:::-;48444:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48249:313;;;;:::o;49106:128::-;49171:4;49224:1;49195:31;;:17;49204:7;49195:8;:17::i;:::-;:31;;;;49188:38;;49106:128;;;:::o;70839:108::-;70899:13;70932:7;70925:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70839:108;:::o;16925:716::-;16981:13;17032:14;17069:1;17049:17;17060:5;17049:10;:17::i;:::-;:21;17032:38;;17085:20;17119:6;17108:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17085:41;;17141:11;17270:6;17266:2;17262:15;17254:6;17250:28;17243:35;;17307:288;17314:4;17307:288;;;17339:5;;;;;;;;17481:8;17476:2;17469:5;17465:14;17460:30;17455:3;17447:44;17537:2;17528:11;;;;;;:::i;:::-;;;;;17571:1;17562:5;:10;17307:288;17558:21;17307:288;17616:6;17609:13;;;;;16925:716;;;:::o;34676:157::-;34761:4;34800:25;34785:40;;;:11;:40;;;;34778:47;;34676:157;;;:::o;61247:915::-;61424:61;61451:4;61457:2;61461:12;61475:9;61424:26;:61::i;:::-;61514:1;61502:9;:13;61498:222;;;61645:63;;;;;;;;;;:::i;:::-;;;;;;;;61498:222;61732:15;61750:12;61732:30;;61795:1;61779:18;;:4;:18;;;61775:187;;61814:40;61846:7;61814:31;:40::i;:::-;61775:187;;;61884:2;61876:10;;:4;:10;;;61872:90;;61903:47;61936:4;61942:7;61903:32;:47::i;:::-;61872:90;61775:187;61990:1;61976:16;;:2;:16;;;61972:183;;62009:45;62046:7;62009:36;:45::i;:::-;61972:183;;;62082:4;62076:10;;:2;:10;;;62072:83;;62103:40;62131:2;62135:7;62103:27;:40::i;:::-;62072:83;61972:183;61413:749;61247:915;;;;:::o;58919:158::-;;;;;:::o;53400:1263::-;53559:4;53532:31;;:23;53547:7;53532:14;:23::i;:::-;:31;;;53524:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53638:1;53624:16;;:2;:16;;;53616:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53694:42;53715:4;53721:2;53725:7;53734:1;53694:20;:42::i;:::-;53866:4;53839:31;;:23;53854:7;53839:14;:23::i;:::-;:31;;;53831:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53984:15;:24;54000:7;53984:24;;;;;;;;;;;;53977:31;;;;;;;;;;;54479:1;54460:9;:15;54470:4;54460:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;54512:1;54495:9;:13;54505:2;54495:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;54554:2;54535:7;:16;54543:7;54535:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54593:7;54589:2;54574:27;;54583:4;54574:27;;;;;;;;;;;;54614:41;54634:4;54640:2;54644:7;54653:1;54614:19;:41::i;:::-;53400:1263;;;:::o;56202:853::-;56356:4;56377:15;:2;:13;;;:15::i;:::-;56373:675;;;56429:2;56413:36;;;56450:12;:10;:12::i;:::-;56464:4;56470:7;56479:4;56413:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56409:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56671:1;56654:6;:13;:18;56650:328;;56697:60;;;;;;;;;;:::i;:::-;;;;;;;;56650:328;56928:6;56922:13;56913:6;56909:2;56905:15;56898:38;56409:584;56545:41;;;56535:51;;;:6;:51;;;;56528:58;;;;;56373:675;57032:4;57025:11;;56202:853;;;;;;;:::o;13799:922::-;13852:7;13872:14;13889:1;13872:18;;13939:6;13930:5;:15;13926:102;;13975:6;13966:15;;;;;;:::i;:::-;;;;;14010:2;14000:12;;;;13926:102;14055:6;14046:5;:15;14042:102;;14091:6;14082:15;;;;;;:::i;:::-;;;;;14126:2;14116:12;;;;14042:102;14171:6;14162:5;:15;14158:102;;14207:6;14198:15;;;;;;:::i;:::-;;;;;14242:2;14232:12;;;;14158:102;14287:5;14278;:14;14274:99;;14322:5;14313:14;;;;;;:::i;:::-;;;;;14356:1;14346:11;;;;14274:99;14400:5;14391;:14;14387:99;;14435:5;14426:14;;;;;;:::i;:::-;;;;;14469:1;14459:11;;;;14387:99;14513:5;14504;:14;14500:99;;14548:5;14539:14;;;;;;:::i;:::-;;;;;14582:1;14572:11;;;;14500:99;14626:5;14617;:14;14613:66;;14662:1;14652:11;;;;14613:66;14707:6;14700:13;;;13799:922;;;:::o;62885:164::-;62989:10;:17;;;;62962:15;:24;62978:7;62962:24;;;;;;;;;;;:44;;;;63017:10;63033:7;63017:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62885:164;:::o;63676:988::-;63942:22;63992:1;63967:22;63984:4;63967:16;:22::i;:::-;:26;;;;:::i;:::-;63942:51;;64004:18;64025:17;:26;64043:7;64025:26;;;;;;;;;;;;64004:47;;64172:14;64158:10;:28;64154:328;;64203:19;64225:12;:18;64238:4;64225:18;;;;;;;;;;;;;;;:34;64244:14;64225:34;;;;;;;;;;;;64203:56;;64309:11;64276:12;:18;64289:4;64276:18;;;;;;;;;;;;;;;:30;64295:10;64276:30;;;;;;;;;;;:44;;;;64426:10;64393:17;:30;64411:11;64393:30;;;;;;;;;;;:43;;;;64188:294;64154:328;64578:17;:26;64596:7;64578:26;;;;;;;;;;;64571:33;;;64622:12;:18;64635:4;64622:18;;;;;;;;;;;;;;;:34;64641:14;64622:34;;;;;;;;;;;64615:41;;;63757:907;;63676:988;;:::o;64959:1079::-;65212:22;65257:1;65237:10;:17;;;;:21;;;;:::i;:::-;65212:46;;65269:18;65290:15;:24;65306:7;65290:24;;;;;;;;;;;;65269:45;;65641:19;65663:10;65674:14;65663:26;;;;;;;;:::i;:::-;;;;;;;;;;65641:48;;65727:11;65702:10;65713;65702:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;65838:10;65807:15;:28;65823:11;65807:28;;;;;;;;;;;:41;;;;65979:15;:24;65995:7;65979:24;;;;;;;;;;;65972:31;;;66014:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65030:1008;;;64959:1079;:::o;62463:221::-;62548:14;62565:20;62582:2;62565:16;:20::i;:::-;62548:37;;62623:7;62596:12;:16;62609:2;62596:16;;;;;;;;;;;;;;;:24;62613:6;62596:24;;;;;;;;;;;:34;;;;62670:6;62641:17;:26;62659:7;62641:26;;;;;;;;;;;:35;;;;62537:147;62463:221;;:::o;23645:326::-;23705:4;23962:1;23940:7;:19;;;:23;23933:30;;23645:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:329::-;6406:6;6455:2;6443:9;6434:7;6430:23;6426:32;6423:119;;;6461:79;;:::i;:::-;6423:119;6581:1;6606:53;6651:7;6642:6;6631:9;6627:22;6606:53;:::i;:::-;6596:63;;6552:117;6347:329;;;;:::o;6682:117::-;6791:1;6788;6781:12;6805:117;6914:1;6911;6904:12;6928:117;7037:1;7034;7027:12;7068:568;7141:8;7151:6;7201:3;7194:4;7186:6;7182:17;7178:27;7168:122;;7209:79;;:::i;:::-;7168:122;7322:6;7309:20;7299:30;;7352:18;7344:6;7341:30;7338:117;;;7374:79;;:::i;:::-;7338:117;7488:4;7480:6;7476:17;7464:29;;7542:3;7534:4;7526:6;7522:17;7512:8;7508:32;7505:41;7502:128;;;7549:79;;:::i;:::-;7502:128;7068:568;;;;;:::o;7642:559::-;7728:6;7736;7785:2;7773:9;7764:7;7760:23;7756:32;7753:119;;;7791:79;;:::i;:::-;7753:119;7939:1;7928:9;7924:17;7911:31;7969:18;7961:6;7958:30;7955:117;;;7991:79;;:::i;:::-;7955:117;8104:80;8176:7;8167:6;8156:9;8152:22;8104:80;:::i;:::-;8086:98;;;;7882:312;7642:559;;;;;:::o;8207:60::-;8235:3;8256:5;8249:12;;8207:60;;;:::o;8273:142::-;8323:9;8356:53;8374:34;8383:24;8401:5;8383:24;:::i;:::-;8374:34;:::i;:::-;8356:53;:::i;:::-;8343:66;;8273:142;;;:::o;8421:126::-;8471:9;8504:37;8535:5;8504:37;:::i;:::-;8491:50;;8421:126;;;:::o;8553:141::-;8618:9;8651:37;8682:5;8651:37;:::i;:::-;8638:50;;8553:141;;;:::o;8700:161::-;8802:52;8848:5;8802:52;:::i;:::-;8797:3;8790:65;8700:161;;:::o;8867:252::-;8975:4;9013:2;9002:9;8998:18;8990:26;;9026:86;9109:1;9098:9;9094:17;9085:6;9026:86;:::i;:::-;8867:252;;;;:::o;9125:116::-;9195:21;9210:5;9195:21;:::i;:::-;9188:5;9185:32;9175:60;;9231:1;9228;9221:12;9175:60;9125:116;:::o;9247:133::-;9290:5;9328:6;9315:20;9306:29;;9344:30;9368:5;9344:30;:::i;:::-;9247:133;;;;:::o;9386:468::-;9451:6;9459;9508:2;9496:9;9487:7;9483:23;9479:32;9476:119;;;9514:79;;:::i;:::-;9476:119;9634:1;9659:53;9704:7;9695:6;9684:9;9680:22;9659:53;:::i;:::-;9649:63;;9605:117;9761:2;9787:50;9829:7;9820:6;9809:9;9805:22;9787:50;:::i;:::-;9777:60;;9732:115;9386:468;;;;;:::o;9860:117::-;9969:1;9966;9959:12;9983:180;10031:77;10028:1;10021:88;10128:4;10125:1;10118:15;10152:4;10149:1;10142:15;10169:281;10252:27;10274:4;10252:27;:::i;:::-;10244:6;10240:40;10382:6;10370:10;10367:22;10346:18;10334:10;10331:34;10328:62;10325:88;;;10393:18;;:::i;:::-;10325:88;10433:10;10429:2;10422:22;10212:238;10169:281;;:::o;10456:129::-;10490:6;10517:20;;:::i;:::-;10507:30;;10546:33;10574:4;10566:6;10546:33;:::i;:::-;10456:129;;;:::o;10591:307::-;10652:4;10742:18;10734:6;10731:30;10728:56;;;10764:18;;:::i;:::-;10728:56;10802:29;10824:6;10802:29;:::i;:::-;10794:37;;10886:4;10880;10876:15;10868:23;;10591:307;;;:::o;10904:146::-;11001:6;10996:3;10991;10978:30;11042:1;11033:6;11028:3;11024:16;11017:27;10904:146;;;:::o;11056:423::-;11133:5;11158:65;11174:48;11215:6;11174:48;:::i;:::-;11158:65;:::i;:::-;11149:74;;11246:6;11239:5;11232:21;11284:4;11277:5;11273:16;11322:3;11313:6;11308:3;11304:16;11301:25;11298:112;;;11329:79;;:::i;:::-;11298:112;11419:54;11466:6;11461:3;11456;11419:54;:::i;:::-;11139:340;11056:423;;;;;:::o;11498:338::-;11553:5;11602:3;11595:4;11587:6;11583:17;11579:27;11569:122;;11610:79;;:::i;:::-;11569:122;11727:6;11714:20;11752:78;11826:3;11818:6;11811:4;11803:6;11799:17;11752:78;:::i;:::-;11743:87;;11559:277;11498:338;;;;:::o;11842:943::-;11937:6;11945;11953;11961;12010:3;11998:9;11989:7;11985:23;11981:33;11978:120;;;12017:79;;:::i;:::-;11978:120;12137:1;12162:53;12207:7;12198:6;12187:9;12183:22;12162:53;:::i;:::-;12152:63;;12108:117;12264:2;12290:53;12335:7;12326:6;12315:9;12311:22;12290:53;:::i;:::-;12280:63;;12235:118;12392:2;12418:53;12463:7;12454:6;12443:9;12439:22;12418:53;:::i;:::-;12408:63;;12363:118;12548:2;12537:9;12533:18;12520:32;12579:18;12571:6;12568:30;12565:117;;;12601:79;;:::i;:::-;12565:117;12706:62;12760:7;12751:6;12740:9;12736:22;12706:62;:::i;:::-;12696:72;;12491:287;11842:943;;;;;;;:::o;12791:474::-;12859:6;12867;12916:2;12904:9;12895:7;12891:23;12887:32;12884:119;;;12922:79;;:::i;:::-;12884:119;13042:1;13067:53;13112:7;13103:6;13092:9;13088:22;13067:53;:::i;:::-;13057:63;;13013:117;13169:2;13195:53;13240:7;13231:6;13220:9;13216:22;13195:53;:::i;:::-;13185:63;;13140:118;12791:474;;;;;:::o;13271:180::-;13319:77;13316:1;13309:88;13416:4;13413:1;13406:15;13440:4;13437:1;13430:15;13457:320;13501:6;13538:1;13532:4;13528:12;13518:22;;13585:1;13579:4;13575:12;13606:18;13596:81;;13662:4;13654:6;13650:17;13640:27;;13596:81;13724:2;13716:6;13713:14;13693:18;13690:38;13687:84;;13743:18;;:::i;:::-;13687:84;13508:269;13457:320;;;:::o;13783:220::-;13923:34;13919:1;13911:6;13907:14;13900:58;13992:3;13987:2;13979:6;13975:15;13968:28;13783:220;:::o;14009:366::-;14151:3;14172:67;14236:2;14231:3;14172:67;:::i;:::-;14165:74;;14248:93;14337:3;14248:93;:::i;:::-;14366:2;14361:3;14357:12;14350:19;;14009:366;;;:::o;14381:419::-;14547:4;14585:2;14574:9;14570:18;14562:26;;14634:9;14628:4;14624:20;14620:1;14609:9;14605:17;14598:47;14662:131;14788:4;14662:131;:::i;:::-;14654:139;;14381:419;;;:::o;14806:248::-;14946:34;14942:1;14934:6;14930:14;14923:58;15015:31;15010:2;15002:6;14998:15;14991:56;14806:248;:::o;15060:366::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:419::-;15598:4;15636:2;15625:9;15621:18;15613:26;;15685:9;15679:4;15675:20;15671:1;15660:9;15656:17;15649:47;15713:131;15839:4;15713:131;:::i;:::-;15705:139;;15432:419;;;:::o;15857:232::-;15997:34;15993:1;15985:6;15981:14;15974:58;16066:15;16061:2;16053:6;16049:15;16042:40;15857:232;:::o;16095:366::-;16237:3;16258:67;16322:2;16317:3;16258:67;:::i;:::-;16251:74;;16334:93;16423:3;16334:93;:::i;:::-;16452:2;16447:3;16443:12;16436:19;;16095:366;;;:::o;16467:419::-;16633:4;16671:2;16660:9;16656:18;16648:26;;16720:9;16714:4;16710:20;16706:1;16695:9;16691:17;16684:47;16748:131;16874:4;16748:131;:::i;:::-;16740:139;;16467:419;;;:::o;16892:230::-;17032:34;17028:1;17020:6;17016:14;17009:58;17101:13;17096:2;17088:6;17084:15;17077:38;16892:230;:::o;17128:366::-;17270:3;17291:67;17355:2;17350:3;17291:67;:::i;:::-;17284:74;;17367:93;17456:3;17367:93;:::i;:::-;17485:2;17480:3;17476:12;17469:19;;17128:366;;;:::o;17500:419::-;17666:4;17704:2;17693:9;17689:18;17681:26;;17753:9;17747:4;17743:20;17739:1;17728:9;17724:17;17717:47;17781:131;17907:4;17781:131;:::i;:::-;17773:139;;17500:419;;;:::o;17925:180::-;17973:77;17970:1;17963:88;18070:4;18067:1;18060:15;18094:4;18091:1;18084:15;18111:191;18151:3;18170:20;18188:1;18170:20;:::i;:::-;18165:25;;18204:20;18222:1;18204:20;:::i;:::-;18199:25;;18247:1;18244;18240:9;18233:16;;18268:3;18265:1;18262:10;18259:36;;;18275:18;;:::i;:::-;18259:36;18111:191;;;;:::o;18308:233::-;18347:3;18370:24;18388:5;18370:24;:::i;:::-;18361:33;;18416:66;18409:5;18406:77;18403:103;;18486:18;;:::i;:::-;18403:103;18533:1;18526:5;18522:13;18515:20;;18308:233;;;:::o;18547:231::-;18687:34;18683:1;18675:6;18671:14;18664:58;18756:14;18751:2;18743:6;18739:15;18732:39;18547:231;:::o;18784:366::-;18926:3;18947:67;19011:2;19006:3;18947:67;:::i;:::-;18940:74;;19023:93;19112:3;19023:93;:::i;:::-;19141:2;19136:3;19132:12;19125:19;;18784:366;;;:::o;19156:419::-;19322:4;19360:2;19349:9;19345:18;19337:26;;19409:9;19403:4;19399:20;19395:1;19384:9;19380:17;19373:47;19437:131;19563:4;19437:131;:::i;:::-;19429:139;;19156:419;;;:::o;19581:180::-;19629:77;19626:1;19619:88;19726:4;19723:1;19716:15;19750:4;19747:1;19740:15;19767:143;19824:5;19855:6;19849:13;19840:22;;19871:33;19898:5;19871:33;:::i;:::-;19767:143;;;;:::o;19916:351::-;19986:6;20035:2;20023:9;20014:7;20010:23;20006:32;20003:119;;;20041:79;;:::i;:::-;20003:119;20161:1;20186:64;20242:7;20233:6;20222:9;20218:22;20186:64;:::i;:::-;20176:74;;20132:128;19916:351;;;;:::o;20273:174::-;20413:26;20409:1;20401:6;20397:14;20390:50;20273:174;:::o;20453:366::-;20595:3;20616:67;20680:2;20675:3;20616:67;:::i;:::-;20609:74;;20692:93;20781:3;20692:93;:::i;:::-;20810:2;20805:3;20801:12;20794:19;;20453:366;;;:::o;20825:419::-;20991:4;21029:2;21018:9;21014:18;21006:26;;21078:9;21072:4;21068:20;21064:1;21053:9;21049:17;21042:47;21106:131;21232:4;21106:131;:::i;:::-;21098:139;;20825:419;;;:::o;21250:228::-;21390:34;21386:1;21378:6;21374:14;21367:58;21459:11;21454:2;21446:6;21442:15;21435:36;21250:228;:::o;21484:366::-;21626:3;21647:67;21711:2;21706:3;21647:67;:::i;:::-;21640:74;;21723:93;21812:3;21723:93;:::i;:::-;21841:2;21836:3;21832:12;21825:19;;21484:366;;;:::o;21856:419::-;22022:4;22060:2;22049:9;22045:18;22037:26;;22109:9;22103:4;22099:20;22095:1;22084:9;22080:17;22073:47;22137:131;22263:4;22137:131;:::i;:::-;22129:139;;21856:419;;;:::o;22281:234::-;22421:34;22417:1;22409:6;22405:14;22398:58;22490:17;22485:2;22477:6;22473:15;22466:42;22281:234;:::o;22521:366::-;22663:3;22684:67;22748:2;22743:3;22684:67;:::i;:::-;22677:74;;22760:93;22849:3;22760:93;:::i;:::-;22878:2;22873:3;22869:12;22862:19;;22521:366;;;:::o;22893:419::-;23059:4;23097:2;23086:9;23082:18;23074:26;;23146:9;23140:4;23136:20;23132:1;23121:9;23117:17;23110:47;23174:131;23300:4;23174:131;:::i;:::-;23166:139;;22893:419;;;:::o;23318:148::-;23420:11;23457:3;23442:18;;23318:148;;;;:::o;23472:390::-;23578:3;23606:39;23639:5;23606:39;:::i;:::-;23661:89;23743:6;23738:3;23661:89;:::i;:::-;23654:96;;23759:65;23817:6;23812:3;23805:4;23798:5;23794:16;23759:65;:::i;:::-;23849:6;23844:3;23840:16;23833:23;;23582:280;23472:390;;;;:::o;23868:151::-;24008:3;24004:1;23996:6;23992:14;23985:27;23868:151;:::o;24025:400::-;24185:3;24206:84;24288:1;24283:3;24206:84;:::i;:::-;24199:91;;24299:93;24388:3;24299:93;:::i;:::-;24417:1;24412:3;24408:11;24401:18;;24025:400;;;:::o;24431:155::-;24571:7;24567:1;24559:6;24555:14;24548:31;24431:155;:::o;24592:400::-;24752:3;24773:84;24855:1;24850:3;24773:84;:::i;:::-;24766:91;;24866:93;24955:3;24866:93;:::i;:::-;24984:1;24979:3;24975:11;24968:18;;24592:400;;;:::o;24998:807::-;25332:3;25354:95;25445:3;25436:6;25354:95;:::i;:::-;25347:102;;25466:148;25610:3;25466:148;:::i;:::-;25459:155;;25631:148;25775:3;25631:148;:::i;:::-;25624:155;;25796:3;25789:10;;24998:807;;;;:::o;25811:701::-;26092:3;26114:95;26205:3;26196:6;26114:95;:::i;:::-;26107:102;;26226:95;26317:3;26308:6;26226:95;:::i;:::-;26219:102;;26338:148;26482:3;26338:148;:::i;:::-;26331:155;;26503:3;26496:10;;25811:701;;;;;:::o;26518:194::-;26558:4;26578:20;26596:1;26578:20;:::i;:::-;26573:25;;26612:20;26630:1;26612:20;:::i;:::-;26607:25;;26656:1;26653;26649:9;26641:17;;26680:1;26674:4;26671:11;26668:37;;;26685:18;;:::i;:::-;26668:37;26518:194;;;;:::o;26718:225::-;26858:34;26854:1;26846:6;26842:14;26835:58;26927:8;26922:2;26914:6;26910:15;26903:33;26718:225;:::o;26949:366::-;27091:3;27112:67;27176:2;27171:3;27112:67;:::i;:::-;27105:74;;27188:93;27277:3;27188:93;:::i;:::-;27306:2;27301:3;27297:12;27290:19;;26949:366;;;:::o;27321:419::-;27487:4;27525:2;27514:9;27510:18;27502:26;;27574:9;27568:4;27564:20;27560:1;27549:9;27545:17;27538:47;27602:131;27728:4;27602:131;:::i;:::-;27594:139;;27321:419;;;:::o;27746:182::-;27886:34;27882:1;27874:6;27870:14;27863:58;27746:182;:::o;27934:366::-;28076:3;28097:67;28161:2;28156:3;28097:67;:::i;:::-;28090:74;;28173:93;28262:3;28173:93;:::i;:::-;28291:2;28286:3;28282:12;28275:19;;27934:366;;;:::o;28306:419::-;28472:4;28510:2;28499:9;28495:18;28487:26;;28559:9;28553:4;28549:20;28545:1;28534:9;28530:17;28523:47;28587:131;28713:4;28587:131;:::i;:::-;28579:139;;28306:419;;;:::o;28731:178::-;28871:30;28867:1;28859:6;28855:14;28848:54;28731:178;:::o;28915:366::-;29057:3;29078:67;29142:2;29137:3;29078:67;:::i;:::-;29071:74;;29154:93;29243:3;29154:93;:::i;:::-;29272:2;29267:3;29263:12;29256:19;;28915:366;;;:::o;29287:419::-;29453:4;29491:2;29480:9;29476:18;29468:26;;29540:9;29534:4;29530:20;29526:1;29515:9;29511:17;29504:47;29568:131;29694:4;29568:131;:::i;:::-;29560:139;;29287:419;;;:::o;29712:182::-;29852:34;29848:1;29840:6;29836:14;29829:58;29712:182;:::o;29900:366::-;30042:3;30063:67;30127:2;30122:3;30063:67;:::i;:::-;30056:74;;30139:93;30228:3;30139:93;:::i;:::-;30257:2;30252:3;30248:12;30241:19;;29900:366;;;:::o;30272:419::-;30438:4;30476:2;30465:9;30461:18;30453:26;;30525:9;30519:4;30515:20;30511:1;30500:9;30496:17;30489:47;30553:131;30679:4;30553:131;:::i;:::-;30545:139;;30272:419;;;:::o;30697:175::-;30837:27;30833:1;30825:6;30821:14;30814:51;30697:175;:::o;30878:366::-;31020:3;31041:67;31105:2;31100:3;31041:67;:::i;:::-;31034:74;;31117:93;31206:3;31117:93;:::i;:::-;31235:2;31230:3;31226:12;31219:19;;30878:366;;;:::o;31250:419::-;31416:4;31454:2;31443:9;31439:18;31431:26;;31503:9;31497:4;31493:20;31489:1;31478:9;31474:17;31467:47;31531:131;31657:4;31531:131;:::i;:::-;31523:139;;31250:419;;;:::o;31675:237::-;31815:34;31811:1;31803:6;31799:14;31792:58;31884:20;31879:2;31871:6;31867:15;31860:45;31675:237;:::o;31918:366::-;32060:3;32081:67;32145:2;32140:3;32081:67;:::i;:::-;32074:74;;32157:93;32246:3;32157:93;:::i;:::-;32275:2;32270:3;32266:12;32259:19;;31918:366;;;:::o;32290:419::-;32456:4;32494:2;32483:9;32479:18;32471:26;;32543:9;32537:4;32533:20;32529:1;32518:9;32514:17;32507:47;32571:131;32697:4;32571:131;:::i;:::-;32563:139;;32290:419;;;:::o;32715:180::-;32763:77;32760:1;32753:88;32860:4;32857:1;32850:15;32884:4;32881:1;32874:15;32901:240;33041:34;33037:1;33029:6;33025:14;33018:58;33110:23;33105:2;33097:6;33093:15;33086:48;32901:240;:::o;33147:366::-;33289:3;33310:67;33374:2;33369:3;33310:67;:::i;:::-;33303:74;;33386:93;33475:3;33386:93;:::i;:::-;33504:2;33499:3;33495:12;33488:19;;33147:366;;;:::o;33519:419::-;33685:4;33723:2;33712:9;33708:18;33700:26;;33772:9;33766:4;33762:20;33758:1;33747:9;33743:17;33736:47;33800:131;33926:4;33800:131;:::i;:::-;33792:139;;33519:419;;;:::o;33944:224::-;34084:34;34080:1;34072:6;34068:14;34061:58;34153:7;34148:2;34140:6;34136:15;34129:32;33944:224;:::o;34174:366::-;34316:3;34337:67;34401:2;34396:3;34337:67;:::i;:::-;34330:74;;34413:93;34502:3;34413:93;:::i;:::-;34531:2;34526:3;34522:12;34515:19;;34174:366;;;:::o;34546:419::-;34712:4;34750:2;34739:9;34735:18;34727:26;;34799:9;34793:4;34789:20;34785:1;34774:9;34770:17;34763:47;34827:131;34953:4;34827:131;:::i;:::-;34819:139;;34546:419;;;:::o;34971:223::-;35111:34;35107:1;35099:6;35095:14;35088:58;35180:6;35175:2;35167:6;35163:15;35156:31;34971:223;:::o;35200:366::-;35342:3;35363:67;35427:2;35422:3;35363:67;:::i;:::-;35356:74;;35439:93;35528:3;35439:93;:::i;:::-;35557:2;35552:3;35548:12;35541:19;;35200:366;;;:::o;35572:419::-;35738:4;35776:2;35765:9;35761:18;35753:26;;35825:9;35819:4;35815:20;35811:1;35800:9;35796:17;35789:47;35853:131;35979:4;35853:131;:::i;:::-;35845:139;;35572:419;;;:::o;35997:98::-;36048:6;36082:5;36076:12;36066:22;;35997:98;;;:::o;36101:168::-;36184:11;36218:6;36213:3;36206:19;36258:4;36253:3;36249:14;36234:29;;36101:168;;;;:::o;36275:373::-;36361:3;36389:38;36421:5;36389:38;:::i;:::-;36443:70;36506:6;36501:3;36443:70;:::i;:::-;36436:77;;36522:65;36580:6;36575:3;36568:4;36561:5;36557:16;36522:65;:::i;:::-;36612:29;36634:6;36612:29;:::i;:::-;36607:3;36603:39;36596:46;;36365:283;36275:373;;;;:::o;36654:640::-;36849:4;36887:3;36876:9;36872:19;36864:27;;36901:71;36969:1;36958:9;36954:17;36945:6;36901:71;:::i;:::-;36982:72;37050:2;37039:9;37035:18;37026:6;36982:72;:::i;:::-;37064;37132:2;37121:9;37117:18;37108:6;37064:72;:::i;:::-;37183:9;37177:4;37173:20;37168:2;37157:9;37153:18;37146:48;37211:76;37282:4;37273:6;37211:76;:::i;:::-;37203:84;;36654:640;;;;;;;:::o;37300:141::-;37356:5;37387:6;37381:13;37372:22;;37403:32;37429:5;37403:32;:::i;:::-;37300:141;;;;:::o;37447:349::-;37516:6;37565:2;37553:9;37544:7;37540:23;37536:32;37533:119;;;37571:79;;:::i;:::-;37533:119;37691:1;37716:63;37771:7;37762:6;37751:9;37747:22;37716:63;:::i;:::-;37706:73;;37662:127;37447:349;;;;:::o;37802:180::-;37850:77;37847:1;37840:88;37947:4;37944:1;37937:15;37971:4;37968:1;37961:15
Swarm Source
ipfs://ad62fb6e97633dacb9ce5cf040d4cb909a1c44837ceaee830f06ef33b0c07c8a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.