Overview
AVAX Balance
AVAX Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
44769250 | 360 days ago | 0.1 AVAX |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SupeerID
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2024-04-28 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the 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 towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (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 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 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. uint256 twos = denominator & (0 - denominator); 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 (unsignedRoundsUp(rounding) && 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 * towards zero. * * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * 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 256, 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @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), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @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) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } 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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @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 address zero. * * 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 v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; /** * @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}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => 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 returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(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 { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * 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 { _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); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @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 { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - 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) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. 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 */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @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. * * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`, * interfere with enumerability and should not be used together with `ERC721Enumerable`. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens; mapping(uint256 tokenId => uint256) private _ownedTokensIndex; uint256[] private _allTokens; mapping(uint256 tokenId => uint256) private _allTokensIndex; /** * @dev An `owner`'s token query was out of bounds for `index`. * * NOTE: The owner being `address(0)` indicates a global out of bounds index. */ error ERC721OutOfBoundsIndex(address owner, uint256 index); /** * @dev Batch mint is not allowed. */ error ERC721EnumerableForbiddenBatchMint(); /** * @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 returns (uint256) { if (index >= balanceOf(owner)) { revert ERC721OutOfBoundsIndex(owner, index); } return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual returns (uint256) { if (index >= totalSupply()) { revert ERC721OutOfBoundsIndex(address(0), index); } return _allTokens[index]; } /** * @dev See {ERC721-_update}. */ function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) { address previousOwner = super._update(to, tokenId, auth); if (previousOwner == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _removeTokenFromOwnerEnumeration(previousOwner, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _addTokenToOwnerEnumeration(to, tokenId); } return previousOwner; } /** * @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 = balanceOf(to) - 1; _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 = balanceOf(from); 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(); } /** * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch */ function _increaseBalance(address account, uint128 amount) internal virtual override { if (amount > 0) { revert ERC721EnumerableForbiddenBatchMint(); } super._increaseBalance(account, amount); } } // File: SupeerID/SupeerID.sol pragma solidity ^0.8.4; contract SupeerID is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public mintPrice = 0.01 ether; mapping(uint256 => string) private _tokenUsernames; mapping(string => uint256) private _usernameToTokenId; event UsernameMinted(uint256 tokenId, string username); constructor() ERC721("SupeerID", "SupeerID") Ownable(msg.sender) { _tokenIdCounter.increment(); // Ensure token IDs start at 1 } function isUsernameAvailable(string memory username) public view returns (bool) { return _usernameToTokenId[username] == 0; } function mint(string memory username) public payable { require(isUsernameAvailable(username), "Username is already taken"); require(msg.value >= mintPrice, "Insufficient ether sent"); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(msg.sender, tokenId); _setUsername(tokenId, username); emit UsernameMinted(tokenId, username); } function mintBatch(string[] memory usernames) public payable { require( msg.value >= mintPrice * usernames.length, "Insufficient ether sent" ); for (uint256 i = 0; i < usernames.length; i++) { require(isUsernameAvailable(usernames[i]), "Username taken"); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(msg.sender, tokenId); _setUsername(tokenId, usernames[i]); emit UsernameMinted(tokenId, usernames[i]); } } function setMintPrice(uint256 newPrice) public onlyOwner { mintPrice = newPrice; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No ether to withdraw"); (bool success, ) = owner().call{value: balance}(""); require(success, "Transfer failed"); } function getUsername(uint256 tokenId) public view returns (string memory) { require(ownerOf(tokenId) != address(0), "Token does not exist"); return _tokenUsernames[tokenId]; } function getTokenId(string memory username) public view returns (uint256) { require(_usernameToTokenId[username] != 0, "Username does not exist"); return _usernameToTokenId[username]; } function tokensOfOwner(address owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokens = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokens[i] = tokenOfOwnerByIndex(owner, i); } return tokens; } function usernamesOfOwner(address owner) public view returns (string[] memory) { uint256 tokenCount = balanceOf(owner); string[] memory usernames = new string[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { uint256 tokenId = tokenOfOwnerByIndex(owner, i); usernames[i] = _tokenUsernames[tokenId]; } return usernames; } function _baseURI() internal view virtual override returns (string memory) { return "https://furler.supeer.tech/supeerid/metadata/"; } function _setUsername(uint256 tokenId, string memory username) private { _tokenUsernames[tokenId] = username; _usernameToTokenId[username] = tokenId; } function getAllUsernames() public view returns (string[] memory) { uint256 totalTokens = _tokenIdCounter.current() - 1; // Assuming counter starts at 1 string[] memory usernames = new string[](totalTokens); for (uint256 i = 0; i < totalTokens; i++) { uint256 tokenId = tokenByIndex(i); // Using ERC721Enumerable's function usernames[i] = _tokenUsernames[tokenId]; } return usernames; } function getAllTokenIds() public view returns (uint256[] memory) { uint256 totalTokens = _tokenIdCounter.current() - 1; // Assuming counter starts at 1 uint256[] memory tokenIds = new uint256[](totalTokens); for (uint256 i = 0; i < totalTokens; i++) { tokenIds[i] = tokenByIndex(i); // Using ERC721Enumerable's function } return tokenIds; } function ownerOfUsername(string memory username) public view returns (address) { uint256 tokenId = _usernameToTokenId[username]; require(tokenId != 0, "Username does not exist"); return ownerOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"username","type":"string"}],"name":"UsernameMinted","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllUsernames","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"username","type":"string"}],"name":"getTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getUsername","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"username","type":"string"}],"name":"isUsernameAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"username","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string[]","name":"usernames","type":"string[]"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"string","name":"username","type":"string"}],"name":"ownerOfUsername","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":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"usernamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052662386f26fc10000600c5534801561001b57600080fd5b50336040518060400160405280600881526020017f53757065657249440000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f53757065657249440000000000000000000000000000000000000000000000008152508160009081610098919061046e565b5080600190816100a8919061046e565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361011d5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101149190610581565b60405180910390fd5b61012c8161014260201b60201c565b5061013d600b61020860201b60201c565b61059c565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061029f57607f821691505b6020821081036102b2576102b1610258565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261031a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826102dd565b61032486836102dd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061036b6103666103618461033c565b610346565b61033c565b9050919050565b6000819050919050565b61038583610350565b61039961039182610372565b8484546102ea565b825550505050565b600090565b6103ae6103a1565b6103b981848461037c565b505050565b5b818110156103dd576103d26000826103a6565b6001810190506103bf565b5050565b601f821115610422576103f3816102b8565b6103fc846102cd565b8101602085101561040b578190505b61041f610417856102cd565b8301826103be565b50505b505050565b600082821c905092915050565b600061044560001984600802610427565b1980831691505092915050565b600061045e8383610434565b9150826002028217905092915050565b6104778261021e565b67ffffffffffffffff8111156104905761048f610229565b5b61049a8254610287565b6104a58282856103e1565b600060209050601f8311600181146104d857600084156104c6578287015190505b6104d08582610452565b865550610538565b601f1984166104e6866102b8565b60005b8281101561050e578489015182556001820191506020850194506020810190506104e9565b8683101561052b5784890151610527601f891682610434565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061056b82610540565b9050919050565b61057b81610560565b82525050565b60006020820190506105966000830184610572565b92915050565b61404b806105ab6000396000f3fe6080604052600436106101e35760003560e01c80638462151c11610102578063def4af6311610095578063f2fde38b11610064578063f2fde38b14610724578063f4a0a5281461074d578063f69c6dec14610776578063f898bc96146107b3576101e3565b8063def4af6314610651578063e985e9c51461068e578063f09dfbe9146106cb578063f18d18cc146106e7576101e3565b8063b88d4fde116100d1578063b88d4fde146105a4578063bdbed722146105cd578063c87b56dd146105f8578063d85d3d2714610635576101e3565b80638462151c146104e85780638da5cb5b1461052557806395d89b4114610550578063a22cb4651461057b576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e1461042c5780636817c76c1461046957806370a0823114610494578063715018a6146104d1576101e3565b80633ccfd60b1461038457806342842e0e1461039b5780634f6ccce7146103c45780635362037514610401576101e3565b806318160ddd116101b657806318160ddd146102b65780631e7663bc146102e157806323b872dd1461031e5780632f745c5914610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d3f565b6107f0565b60405161021c9190612d87565b60405180910390f35b34801561023157600080fd5b5061023a61086a565b6040516102479190612e32565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612e8a565b6108fc565b6040516102849190612ef8565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f3f565b610918565b005b3480156102c257600080fd5b506102cb61092e565b6040516102d89190612f8e565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130de565b61093b565b6040516103159190612f8e565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613127565b6109c3565b005b34801561035357600080fd5b5061036e60048036038101906103699190612f3f565b610ac5565b60405161037b9190612f8e565b60405180910390f35b34801561039057600080fd5b50610399610b6e565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190613127565b610c75565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190612e8a565b610c95565b6040516103f89190612f8e565b60405180910390f35b34801561040d57600080fd5b50610416610d0b565b6040516104239190613286565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190612e8a565b610e62565b6040516104609190612ef8565b60405180910390f35b34801561047557600080fd5b5061047e610e74565b60405161048b9190612f8e565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906132a8565b610e7a565b6040516104c89190612f8e565b60405180910390f35b3480156104dd57600080fd5b506104e6610f34565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906132a8565b610f48565b60405161051c9190613393565b60405180910390f35b34801561053157600080fd5b5061053a610ff0565b6040516105479190612ef8565b60405180910390f35b34801561055c57600080fd5b5061056561101a565b6040516105729190612e32565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906133e1565b6110ac565b005b3480156105b057600080fd5b506105cb60048036038101906105c691906134c2565b6110c2565b005b3480156105d957600080fd5b506105e26110df565b6040516105ef9190613393565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e8a565b611191565b60405161062c9190612e32565b60405180910390f35b61064f600480360381019061064a91906130de565b6111fa565b005b34801561065d57600080fd5b50610678600480360381019061067391906130de565b6112f0565b6040516106859190612ef8565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190613545565b611368565b6040516106c29190612d87565b60405180910390f35b6106e560048036038101906106e0919061366b565b6113fc565b005b3480156106f357600080fd5b5061070e60048036038101906107099190612e8a565b611566565b60405161071b9190612e32565b60405180910390f35b34801561073057600080fd5b5061074b600480360381019061074691906132a8565b611682565b005b34801561075957600080fd5b50610774600480360381019061076f9190612e8a565b611708565b005b34801561078257600080fd5b5061079d600480360381019061079891906130de565b61171a565b6040516107aa9190612d87565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906132a8565b611744565b6040516107e79190613286565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610863575061086282611891565b5b9050919050565b606060008054610879906136e3565b80601f01602080910402602001604051908101604052809291908181526020018280546108a5906136e3565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b600061090782611973565b50610911826119fb565b9050919050565b61092a8282610925611a38565b611a40565b5050565b6000600880549050905090565b600080600e8360405161094e9190613750565b9081526020016040518091039020540361099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610994906137b3565b60405180910390fd5b600e826040516109ad9190613750565b9081526020016040518091039020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a355760006040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610a2c9190612ef8565b60405180910390fd5b6000610a498383610a44611a38565b611a52565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610abf578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610ab6939291906137d3565b60405180910390fd5b50505050565b6000610ad083610e7a565b8210610b155782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610b0c92919061380a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b76611b6f565b600047905060008111610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb59061387f565b60405180910390fd5b6000610bc8610ff0565b73ffffffffffffffffffffffffffffffffffffffff1682604051610beb906138d0565b60006040518083038185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b5050905080610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613931565b60405180910390fd5b5050565b610c90838383604051806020016040528060008152506110c2565b505050565b6000610c9f61092e565b8210610ce5576000826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cdc92919061380a565b60405180910390fd5b60088281548110610cf957610cf8613951565b5b90600052602060002001549050919050565b606060006001610d1b600b611bf6565b610d2591906139af565b905060008167ffffffffffffffff811115610d4357610d42612fb3565b5b604051908082528060200260200182016040528015610d7657816020015b6060815260200190600190039081610d615790505b50905060005b82811015610e59576000610d8f82610c95565b9050600d60008281526020019081526020016000208054610daf906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb906136e3565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b5050505050838381518110610e4057610e3f613951565b5b6020026020010181905250508080600101915050610d7c565b50809250505090565b6000610e6d82611973565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eed5760006040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ee49190612ef8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f3c611b6f565b610f466000611c04565b565b60606000610f5583610e7a565b905060008167ffffffffffffffff811115610f7357610f72612fb3565b5b604051908082528060200260200182016040528015610fa15781602001602082028036833780820191505090505b50905060005b82811015610fe557610fb98582610ac5565b828281518110610fcc57610fcb613951565b5b6020026020010181815250508080600101915050610fa7565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611029906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611055906136e3565b80156110a25780601f10611077576101008083540402835291602001916110a2565b820191906000526020600020905b81548152906001019060200180831161108557829003601f168201915b5050505050905090565b6110be6110b7611a38565b8383611cca565b5050565b6110cd8484846109c3565b6110d984848484611e39565b50505050565b6060600060016110ef600b611bf6565b6110f991906139af565b905060008167ffffffffffffffff81111561111757611116612fb3565b5b6040519080825280602002602001820160405280156111455781602001602082028036833780820191505090505b50905060005b828110156111885761115c81610c95565b82828151811061116f5761116e613951565b5b602002602001018181525050808060010191505061114b565b50809250505090565b606061119c82611973565b5060006111a7611ff0565b905060008151116111c757604051806020016040528060008152506111f2565b806111d184612010565b6040516020016111e29291906139e3565b6040516020818303038152906040525b915050919050565b6112038161171a565b611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613a53565b60405180910390fd5b600c54341015611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613abf565b60405180910390fd5b6000611293600b611bf6565b905061129f600b6120de565b6112a933826120f4565b6112b38183612112565b7f0519a1418aca49025ebc195d2b009b3b9597e0538df930b0514040932c1de86e81836040516112e4929190613adf565b60405180910390a15050565b600080600e836040516113039190613750565b908152602001604051809103902054905060008103611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906137b3565b60405180910390fd5b61136081610e62565b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8051600c5461140b9190613b0f565b34101561144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613abf565b60405180910390fd5b60005b81518110156115625761147c82828151811061146f5761146e613951565b5b602002602001015161171a565b6114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290613b9d565b60405180910390fd5b60006114c7600b611bf6565b90506114d3600b6120de565b6114dd33826120f4565b611501818484815181106114f4576114f3613951565b5b6020026020010151612112565b7f0519a1418aca49025ebc195d2b009b3b9597e0538df930b0514040932c1de86e8184848151811061153657611535613951565b5b602002602001015160405161154c929190613adf565b60405180910390a1508080600101915050611450565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff1661158983610e62565b73ffffffffffffffffffffffffffffffffffffffff16036115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613c09565b60405180910390fd5b600d600083815260200190815260200160002080546115fd906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611629906136e3565b80156116765780601f1061164b57610100808354040283529160200191611676565b820191906000526020600020905b81548152906001019060200180831161165957829003601f168201915b50505050509050919050565b61168a611b6f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116fc5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016116f39190612ef8565b60405180910390fd5b61170581611c04565b50565b611710611b6f565b80600c8190555050565b600080600e8360405161172d9190613750565b908152602001604051809103902054149050919050565b6060600061175183610e7a565b905060008167ffffffffffffffff81111561176f5761176e612fb3565b5b6040519080825280602002602001820160405280156117a257816020015b606081526020019060019003908161178d5790505b50905060005b828110156118865760006117bc8683610ac5565b9050600d600082815260200190815260200160002080546117dc906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611808906136e3565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505083838151811061186d5761186c613951565b5b60200260200101819052505080806001019150506117a8565b508092505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061195c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061196c575061196b8261215a565b5b9050919050565b60008061197f836121c4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119f257826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016119e99190612f8e565b60405180910390fd5b80915050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600033905090565b611a4d8383836001612201565b505050565b600080611a608585856123c6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aa457611a9f846125e0565b611ae3565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ae257611ae18185612629565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b2557611b208461278a565b611b64565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b6357611b62858561285b565b5b5b809150509392505050565b611b77611a38565b73ffffffffffffffffffffffffffffffffffffffff16611b95610ff0565b73ffffffffffffffffffffffffffffffffffffffff1614611bf457611bb8611a38565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611beb9190612ef8565b60405180910390fd5b565b600081600001549050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3b57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611d329190612ef8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e2c9190612d87565b60405180910390a3505050565b60008373ffffffffffffffffffffffffffffffffffffffff163b1115611fea578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e7d611a38565b8685856040518563ffffffff1660e01b8152600401611e9f9493929190613c7e565b6020604051808303816000875af1925050508015611edb57506040513d601f19601f82011682018060405250810190611ed89190613cdf565b60015b611f5f573d8060008114611f0b576040519150601f19603f3d011682016040523d82523d6000602084013e611f10565b606091505b506000815103611f5757836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611f4e9190612ef8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611fe857836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611fdf9190612ef8565b60405180910390fd5b505b50505050565b60606040518060600160405280602d8152602001613fe9602d9139905090565b60606000600161201f846128e6565b01905060008167ffffffffffffffff81111561203e5761203d612fb3565b5b6040519080825280601f01601f1916602001820160405280156120705781602001600182028036833780820191505090505b509050600082602001820190505b6001156120d3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120c7576120c6613d0c565b5b0494506000850361207e575b819350505050919050565b6001816000016000828254019250508190555050565b61210e828260405180602001604052806000815250612a39565b5050565b80600d600084815260200190815260200160002090816121329190613ee7565b5081600e826040516121449190613750565b9081526020016040518091039020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061223a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561236e57600061224a84611973565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122b557508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156122c857506122c68184611368565b155b1561230a57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016123019190612ef8565b60405180910390fd5b811561236c57838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b836004600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6000806123d2846121c4565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461241457612413818486612a55565b5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124a557612456600085600080612201565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612528576001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600061263483610e7a565b9050600060076000848152602001908152602001600020549050818114612719576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061279e91906139af565b90506000600960008481526020019081526020016000205490506000600883815481106127ce576127cd613951565b5b9060005260206000200154905080600883815481106127f0576127ef613951565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061283f5761283e613fb9565b5b6001900381819060005260206000200160009055905550505050565b6000600161286884610e7a565b61287291906139af565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612944577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161293a57612939613d0c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612981576d04ee2d6d415b85acef8100000000838161297757612976613d0c565b5b0492506020810190505b662386f26fc1000083106129b057662386f26fc1000083816129a6576129a5613d0c565b5b0492506010810190505b6305f5e10083106129d9576305f5e10083816129cf576129ce613d0c565b5b0492506008810190505b61271083106129fe5761271083816129f4576129f3613d0c565b5b0492506004810190505b60648310612a215760648381612a1757612a16613d0c565b5b0492506002810190505b600a8310612a30576001810190505b80915050919050565b612a438383612b19565b612a506000848484611e39565b505050565b612a60838383612c12565b612b1457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ad557806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612acc9190612f8e565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612b0b92919061380a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b8b5760006040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612b829190612ef8565b60405180910390fd5b6000612b9983836000611a52565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c0d5760006040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612c049190612ef8565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cca57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c8b5750612c8a8484611368565b5b80612cc957508273ffffffffffffffffffffffffffffffffffffffff16612cb1836119fb565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1c81612ce7565b8114612d2757600080fd5b50565b600081359050612d3981612d13565b92915050565b600060208284031215612d5557612d54612cdd565b5b6000612d6384828501612d2a565b91505092915050565b60008115159050919050565b612d8181612d6c565b82525050565b6000602082019050612d9c6000830184612d78565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ddc578082015181840152602081019050612dc1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e0482612da2565b612e0e8185612dad565b9350612e1e818560208601612dbe565b612e2781612de8565b840191505092915050565b60006020820190508181036000830152612e4c8184612df9565b905092915050565b6000819050919050565b612e6781612e54565b8114612e7257600080fd5b50565b600081359050612e8481612e5e565b92915050565b600060208284031215612ea057612e9f612cdd565b5b6000612eae84828501612e75565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee282612eb7565b9050919050565b612ef281612ed7565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b612f1c81612ed7565b8114612f2757600080fd5b50565b600081359050612f3981612f13565b92915050565b60008060408385031215612f5657612f55612cdd565b5b6000612f6485828601612f2a565b9250506020612f7585828601612e75565b9150509250929050565b612f8881612e54565b82525050565b6000602082019050612fa36000830184612f7f565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612feb82612de8565b810181811067ffffffffffffffff8211171561300a57613009612fb3565b5b80604052505050565b600061301d612cd3565b90506130298282612fe2565b919050565b600067ffffffffffffffff82111561304957613048612fb3565b5b61305282612de8565b9050602081019050919050565b82818337600083830152505050565b600061308161307c8461302e565b613013565b90508281526020810184848401111561309d5761309c612fae565b5b6130a884828561305f565b509392505050565b600082601f8301126130c5576130c4612fa9565b5b81356130d584826020860161306e565b91505092915050565b6000602082840312156130f4576130f3612cdd565b5b600082013567ffffffffffffffff81111561311257613111612ce2565b5b61311e848285016130b0565b91505092915050565b6000806000606084860312156131405761313f612cdd565b5b600061314e86828701612f2a565b935050602061315f86828701612f2a565b925050604061317086828701612e75565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b60006131c282612da2565b6131cc81856131a6565b93506131dc818560208601612dbe565b6131e581612de8565b840191505092915050565b60006131fc83836131b7565b905092915050565b6000602082019050919050565b600061321c8261317a565b6132268185613185565b93508360208202850161323885613196565b8060005b85811015613274578484038952815161325585826131f0565b945061326083613204565b925060208a0199505060018101905061323c565b50829750879550505050505092915050565b600060208201905081810360008301526132a08184613211565b905092915050565b6000602082840312156132be576132bd612cdd565b5b60006132cc84828501612f2a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61330a81612e54565b82525050565b600061331c8383613301565b60208301905092915050565b6000602082019050919050565b6000613340826132d5565b61334a81856132e0565b9350613355836132f1565b8060005b8381101561338657815161336d8882613310565b975061337883613328565b925050600181019050613359565b5085935050505092915050565b600060208201905081810360008301526133ad8184613335565b905092915050565b6133be81612d6c565b81146133c957600080fd5b50565b6000813590506133db816133b5565b92915050565b600080604083850312156133f8576133f7612cdd565b5b600061340685828601612f2a565b9250506020613417858286016133cc565b9150509250929050565b600067ffffffffffffffff82111561343c5761343b612fb3565b5b61344582612de8565b9050602081019050919050565b600061346561346084613421565b613013565b90508281526020810184848401111561348157613480612fae565b5b61348c84828561305f565b509392505050565b600082601f8301126134a9576134a8612fa9565b5b81356134b9848260208601613452565b91505092915050565b600080600080608085870312156134dc576134db612cdd565b5b60006134ea87828801612f2a565b94505060206134fb87828801612f2a565b935050604061350c87828801612e75565b925050606085013567ffffffffffffffff81111561352d5761352c612ce2565b5b61353987828801613494565b91505092959194509250565b6000806040838503121561355c5761355b612cdd565b5b600061356a85828601612f2a565b925050602061357b85828601612f2a565b9150509250929050565b600067ffffffffffffffff8211156135a05761359f612fb3565b5b602082029050602081019050919050565b600080fd5b60006135c96135c484613585565b613013565b905080838252602082019050602084028301858111156135ec576135eb6135b1565b5b835b8181101561363357803567ffffffffffffffff81111561361157613610612fa9565b5b80860161361e89826130b0565b855260208501945050506020810190506135ee565b5050509392505050565b600082601f83011261365257613651612fa9565b5b81356136628482602086016135b6565b91505092915050565b60006020828403121561368157613680612cdd565b5b600082013567ffffffffffffffff81111561369f5761369e612ce2565b5b6136ab8482850161363d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136fb57607f821691505b60208210810361370e5761370d6136b4565b5b50919050565b600081905092915050565b600061372a82612da2565b6137348185613714565b9350613744818560208601612dbe565b80840191505092915050565b600061375c828461371f565b915081905092915050565b7f557365726e616d6520646f6573206e6f74206578697374000000000000000000600082015250565b600061379d601783612dad565b91506137a882613767565b602082019050919050565b600060208201905081810360008301526137cc81613790565b9050919050565b60006060820190506137e86000830186612ee9565b6137f56020830185612f7f565b6138026040830184612ee9565b949350505050565b600060408201905061381f6000830185612ee9565b61382c6020830184612f7f565b9392505050565b7f4e6f20657468657220746f207769746864726177000000000000000000000000600082015250565b6000613869601483612dad565b915061387482613833565b602082019050919050565b600060208201905081810360008301526138988161385c565b9050919050565b600081905092915050565b50565b60006138ba60008361389f565b91506138c5826138aa565b600082019050919050565b60006138db826138ad565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b600061391b600f83612dad565b9150613926826138e5565b602082019050919050565b6000602082019050818103600083015261394a8161390e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139ba82612e54565b91506139c583612e54565b92508282039050818111156139dd576139dc613980565b5b92915050565b60006139ef828561371f565b91506139fb828461371f565b91508190509392505050565b7f557365726e616d6520697320616c72656164792074616b656e00000000000000600082015250565b6000613a3d601983612dad565b9150613a4882613a07565b602082019050919050565b60006020820190508181036000830152613a6c81613a30565b9050919050565b7f496e73756666696369656e742065746865722073656e74000000000000000000600082015250565b6000613aa9601783612dad565b9150613ab482613a73565b602082019050919050565b60006020820190508181036000830152613ad881613a9c565b9050919050565b6000604082019050613af46000830185612f7f565b8181036020830152613b068184612df9565b90509392505050565b6000613b1a82612e54565b9150613b2583612e54565b9250828202613b3381612e54565b91508282048414831517613b4a57613b49613980565b5b5092915050565b7f557365726e616d652074616b656e000000000000000000000000000000000000600082015250565b6000613b87600e83612dad565b9150613b9282613b51565b602082019050919050565b60006020820190508181036000830152613bb681613b7a565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613bf3601483612dad565b9150613bfe82613bbd565b602082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5082613c29565b613c5a8185613c34565b9350613c6a818560208601612dbe565b613c7381612de8565b840191505092915050565b6000608082019050613c936000830187612ee9565b613ca06020830186612ee9565b613cad6040830185612f7f565b8181036060830152613cbf8184613c45565b905095945050505050565b600081519050613cd981612d13565b92915050565b600060208284031215613cf557613cf4612cdd565b5b6000613d0384828501613cca565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d9d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d60565b613da78683613d60565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613de4613ddf613dda84612e54565b613dbf565b612e54565b9050919050565b6000819050919050565b613dfe83613dc9565b613e12613e0a82613deb565b848454613d6d565b825550505050565b600090565b613e27613e1a565b613e32818484613df5565b505050565b5b81811015613e5657613e4b600082613e1f565b600181019050613e38565b5050565b601f821115613e9b57613e6c81613d3b565b613e7584613d50565b81016020851015613e84578190505b613e98613e9085613d50565b830182613e37565b50505b505050565b600082821c905092915050565b6000613ebe60001984600802613ea0565b1980831691505092915050565b6000613ed78383613ead565b9150826002028217905092915050565b613ef082612da2565b67ffffffffffffffff811115613f0957613f08612fb3565b5b613f1382546136e3565b613f1e828285613e5a565b600060209050601f831160018114613f515760008415613f3f578287015190505b613f498582613ecb565b865550613fb1565b601f198416613f5f86613d3b565b60005b82811015613f8757848901518255600182019150602085019450602081019050613f62565b86831015613fa45784890151613fa0601f891682613ead565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f6675726c65722e7375706565722e746563682f73757065657269642f6d657461646174612fa264697066735822122006d789adec820de031aaa2767075ce6d88c547cc0dc73cce13cc63950248a91564736f6c63430008190033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80638462151c11610102578063def4af6311610095578063f2fde38b11610064578063f2fde38b14610724578063f4a0a5281461074d578063f69c6dec14610776578063f898bc96146107b3576101e3565b8063def4af6314610651578063e985e9c51461068e578063f09dfbe9146106cb578063f18d18cc146106e7576101e3565b8063b88d4fde116100d1578063b88d4fde146105a4578063bdbed722146105cd578063c87b56dd146105f8578063d85d3d2714610635576101e3565b80638462151c146104e85780638da5cb5b1461052557806395d89b4114610550578063a22cb4651461057b576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e1461042c5780636817c76c1461046957806370a0823114610494578063715018a6146104d1576101e3565b80633ccfd60b1461038457806342842e0e1461039b5780634f6ccce7146103c45780635362037514610401576101e3565b806318160ddd116101b657806318160ddd146102b65780631e7663bc146102e157806323b872dd1461031e5780632f745c5914610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d3f565b6107f0565b60405161021c9190612d87565b60405180910390f35b34801561023157600080fd5b5061023a61086a565b6040516102479190612e32565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612e8a565b6108fc565b6040516102849190612ef8565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f3f565b610918565b005b3480156102c257600080fd5b506102cb61092e565b6040516102d89190612f8e565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906130de565b61093b565b6040516103159190612f8e565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613127565b6109c3565b005b34801561035357600080fd5b5061036e60048036038101906103699190612f3f565b610ac5565b60405161037b9190612f8e565b60405180910390f35b34801561039057600080fd5b50610399610b6e565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190613127565b610c75565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190612e8a565b610c95565b6040516103f89190612f8e565b60405180910390f35b34801561040d57600080fd5b50610416610d0b565b6040516104239190613286565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190612e8a565b610e62565b6040516104609190612ef8565b60405180910390f35b34801561047557600080fd5b5061047e610e74565b60405161048b9190612f8e565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906132a8565b610e7a565b6040516104c89190612f8e565b60405180910390f35b3480156104dd57600080fd5b506104e6610f34565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906132a8565b610f48565b60405161051c9190613393565b60405180910390f35b34801561053157600080fd5b5061053a610ff0565b6040516105479190612ef8565b60405180910390f35b34801561055c57600080fd5b5061056561101a565b6040516105729190612e32565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906133e1565b6110ac565b005b3480156105b057600080fd5b506105cb60048036038101906105c691906134c2565b6110c2565b005b3480156105d957600080fd5b506105e26110df565b6040516105ef9190613393565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e8a565b611191565b60405161062c9190612e32565b60405180910390f35b61064f600480360381019061064a91906130de565b6111fa565b005b34801561065d57600080fd5b50610678600480360381019061067391906130de565b6112f0565b6040516106859190612ef8565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190613545565b611368565b6040516106c29190612d87565b60405180910390f35b6106e560048036038101906106e0919061366b565b6113fc565b005b3480156106f357600080fd5b5061070e60048036038101906107099190612e8a565b611566565b60405161071b9190612e32565b60405180910390f35b34801561073057600080fd5b5061074b600480360381019061074691906132a8565b611682565b005b34801561075957600080fd5b50610774600480360381019061076f9190612e8a565b611708565b005b34801561078257600080fd5b5061079d600480360381019061079891906130de565b61171a565b6040516107aa9190612d87565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906132a8565b611744565b6040516107e79190613286565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610863575061086282611891565b5b9050919050565b606060008054610879906136e3565b80601f01602080910402602001604051908101604052809291908181526020018280546108a5906136e3565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b600061090782611973565b50610911826119fb565b9050919050565b61092a8282610925611a38565b611a40565b5050565b6000600880549050905090565b600080600e8360405161094e9190613750565b9081526020016040518091039020540361099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610994906137b3565b60405180910390fd5b600e826040516109ad9190613750565b9081526020016040518091039020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a355760006040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610a2c9190612ef8565b60405180910390fd5b6000610a498383610a44611a38565b611a52565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610abf578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610ab6939291906137d3565b60405180910390fd5b50505050565b6000610ad083610e7a565b8210610b155782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610b0c92919061380a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b76611b6f565b600047905060008111610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb59061387f565b60405180910390fd5b6000610bc8610ff0565b73ffffffffffffffffffffffffffffffffffffffff1682604051610beb906138d0565b60006040518083038185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b5050905080610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613931565b60405180910390fd5b5050565b610c90838383604051806020016040528060008152506110c2565b505050565b6000610c9f61092e565b8210610ce5576000826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cdc92919061380a565b60405180910390fd5b60088281548110610cf957610cf8613951565b5b90600052602060002001549050919050565b606060006001610d1b600b611bf6565b610d2591906139af565b905060008167ffffffffffffffff811115610d4357610d42612fb3565b5b604051908082528060200260200182016040528015610d7657816020015b6060815260200190600190039081610d615790505b50905060005b82811015610e59576000610d8f82610c95565b9050600d60008281526020019081526020016000208054610daf906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb906136e3565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b5050505050838381518110610e4057610e3f613951565b5b6020026020010181905250508080600101915050610d7c565b50809250505090565b6000610e6d82611973565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eed5760006040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ee49190612ef8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f3c611b6f565b610f466000611c04565b565b60606000610f5583610e7a565b905060008167ffffffffffffffff811115610f7357610f72612fb3565b5b604051908082528060200260200182016040528015610fa15781602001602082028036833780820191505090505b50905060005b82811015610fe557610fb98582610ac5565b828281518110610fcc57610fcb613951565b5b6020026020010181815250508080600101915050610fa7565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611029906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611055906136e3565b80156110a25780601f10611077576101008083540402835291602001916110a2565b820191906000526020600020905b81548152906001019060200180831161108557829003601f168201915b5050505050905090565b6110be6110b7611a38565b8383611cca565b5050565b6110cd8484846109c3565b6110d984848484611e39565b50505050565b6060600060016110ef600b611bf6565b6110f991906139af565b905060008167ffffffffffffffff81111561111757611116612fb3565b5b6040519080825280602002602001820160405280156111455781602001602082028036833780820191505090505b50905060005b828110156111885761115c81610c95565b82828151811061116f5761116e613951565b5b602002602001018181525050808060010191505061114b565b50809250505090565b606061119c82611973565b5060006111a7611ff0565b905060008151116111c757604051806020016040528060008152506111f2565b806111d184612010565b6040516020016111e29291906139e3565b6040516020818303038152906040525b915050919050565b6112038161171a565b611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613a53565b60405180910390fd5b600c54341015611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613abf565b60405180910390fd5b6000611293600b611bf6565b905061129f600b6120de565b6112a933826120f4565b6112b38183612112565b7f0519a1418aca49025ebc195d2b009b3b9597e0538df930b0514040932c1de86e81836040516112e4929190613adf565b60405180910390a15050565b600080600e836040516113039190613750565b908152602001604051809103902054905060008103611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906137b3565b60405180910390fd5b61136081610e62565b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8051600c5461140b9190613b0f565b34101561144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613abf565b60405180910390fd5b60005b81518110156115625761147c82828151811061146f5761146e613951565b5b602002602001015161171a565b6114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290613b9d565b60405180910390fd5b60006114c7600b611bf6565b90506114d3600b6120de565b6114dd33826120f4565b611501818484815181106114f4576114f3613951565b5b6020026020010151612112565b7f0519a1418aca49025ebc195d2b009b3b9597e0538df930b0514040932c1de86e8184848151811061153657611535613951565b5b602002602001015160405161154c929190613adf565b60405180910390a1508080600101915050611450565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff1661158983610e62565b73ffffffffffffffffffffffffffffffffffffffff16036115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613c09565b60405180910390fd5b600d600083815260200190815260200160002080546115fd906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611629906136e3565b80156116765780601f1061164b57610100808354040283529160200191611676565b820191906000526020600020905b81548152906001019060200180831161165957829003601f168201915b50505050509050919050565b61168a611b6f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116fc5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016116f39190612ef8565b60405180910390fd5b61170581611c04565b50565b611710611b6f565b80600c8190555050565b600080600e8360405161172d9190613750565b908152602001604051809103902054149050919050565b6060600061175183610e7a565b905060008167ffffffffffffffff81111561176f5761176e612fb3565b5b6040519080825280602002602001820160405280156117a257816020015b606081526020019060019003908161178d5790505b50905060005b828110156118865760006117bc8683610ac5565b9050600d600082815260200190815260200160002080546117dc906136e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611808906136e3565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505083838151811061186d5761186c613951565b5b60200260200101819052505080806001019150506117a8565b508092505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061195c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061196c575061196b8261215a565b5b9050919050565b60008061197f836121c4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119f257826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016119e99190612f8e565b60405180910390fd5b80915050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600033905090565b611a4d8383836001612201565b505050565b600080611a608585856123c6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aa457611a9f846125e0565b611ae3565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ae257611ae18185612629565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b2557611b208461278a565b611b64565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b6357611b62858561285b565b5b5b809150509392505050565b611b77611a38565b73ffffffffffffffffffffffffffffffffffffffff16611b95610ff0565b73ffffffffffffffffffffffffffffffffffffffff1614611bf457611bb8611a38565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611beb9190612ef8565b60405180910390fd5b565b600081600001549050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3b57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611d329190612ef8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e2c9190612d87565b60405180910390a3505050565b60008373ffffffffffffffffffffffffffffffffffffffff163b1115611fea578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e7d611a38565b8685856040518563ffffffff1660e01b8152600401611e9f9493929190613c7e565b6020604051808303816000875af1925050508015611edb57506040513d601f19601f82011682018060405250810190611ed89190613cdf565b60015b611f5f573d8060008114611f0b576040519150601f19603f3d011682016040523d82523d6000602084013e611f10565b606091505b506000815103611f5757836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611f4e9190612ef8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611fe857836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611fdf9190612ef8565b60405180910390fd5b505b50505050565b60606040518060600160405280602d8152602001613fe9602d9139905090565b60606000600161201f846128e6565b01905060008167ffffffffffffffff81111561203e5761203d612fb3565b5b6040519080825280601f01601f1916602001820160405280156120705781602001600182028036833780820191505090505b509050600082602001820190505b6001156120d3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816120c7576120c6613d0c565b5b0494506000850361207e575b819350505050919050565b6001816000016000828254019250508190555050565b61210e828260405180602001604052806000815250612a39565b5050565b80600d600084815260200190815260200160002090816121329190613ee7565b5081600e826040516121449190613750565b9081526020016040518091039020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061223a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561236e57600061224a84611973565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122b557508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156122c857506122c68184611368565b155b1561230a57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016123019190612ef8565b60405180910390fd5b811561236c57838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b836004600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6000806123d2846121c4565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461241457612413818486612a55565b5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124a557612456600085600080612201565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612528576001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600061263483610e7a565b9050600060076000848152602001908152602001600020549050818114612719576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061279e91906139af565b90506000600960008481526020019081526020016000205490506000600883815481106127ce576127cd613951565b5b9060005260206000200154905080600883815481106127f0576127ef613951565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061283f5761283e613fb9565b5b6001900381819060005260206000200160009055905550505050565b6000600161286884610e7a565b61287291906139af565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612944577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161293a57612939613d0c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612981576d04ee2d6d415b85acef8100000000838161297757612976613d0c565b5b0492506020810190505b662386f26fc1000083106129b057662386f26fc1000083816129a6576129a5613d0c565b5b0492506010810190505b6305f5e10083106129d9576305f5e10083816129cf576129ce613d0c565b5b0492506008810190505b61271083106129fe5761271083816129f4576129f3613d0c565b5b0492506004810190505b60648310612a215760648381612a1757612a16613d0c565b5b0492506002810190505b600a8310612a30576001810190505b80915050919050565b612a438383612b19565b612a506000848484611e39565b505050565b612a60838383612c12565b612b1457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ad557806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612acc9190612f8e565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612b0b92919061380a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b8b5760006040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612b829190612ef8565b60405180910390fd5b6000612b9983836000611a52565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c0d5760006040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612c049190612ef8565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cca57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c8b5750612c8a8484611368565b5b80612cc957508273ffffffffffffffffffffffffffffffffffffffff16612cb1836119fb565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1c81612ce7565b8114612d2757600080fd5b50565b600081359050612d3981612d13565b92915050565b600060208284031215612d5557612d54612cdd565b5b6000612d6384828501612d2a565b91505092915050565b60008115159050919050565b612d8181612d6c565b82525050565b6000602082019050612d9c6000830184612d78565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ddc578082015181840152602081019050612dc1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e0482612da2565b612e0e8185612dad565b9350612e1e818560208601612dbe565b612e2781612de8565b840191505092915050565b60006020820190508181036000830152612e4c8184612df9565b905092915050565b6000819050919050565b612e6781612e54565b8114612e7257600080fd5b50565b600081359050612e8481612e5e565b92915050565b600060208284031215612ea057612e9f612cdd565b5b6000612eae84828501612e75565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee282612eb7565b9050919050565b612ef281612ed7565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b612f1c81612ed7565b8114612f2757600080fd5b50565b600081359050612f3981612f13565b92915050565b60008060408385031215612f5657612f55612cdd565b5b6000612f6485828601612f2a565b9250506020612f7585828601612e75565b9150509250929050565b612f8881612e54565b82525050565b6000602082019050612fa36000830184612f7f565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612feb82612de8565b810181811067ffffffffffffffff8211171561300a57613009612fb3565b5b80604052505050565b600061301d612cd3565b90506130298282612fe2565b919050565b600067ffffffffffffffff82111561304957613048612fb3565b5b61305282612de8565b9050602081019050919050565b82818337600083830152505050565b600061308161307c8461302e565b613013565b90508281526020810184848401111561309d5761309c612fae565b5b6130a884828561305f565b509392505050565b600082601f8301126130c5576130c4612fa9565b5b81356130d584826020860161306e565b91505092915050565b6000602082840312156130f4576130f3612cdd565b5b600082013567ffffffffffffffff81111561311257613111612ce2565b5b61311e848285016130b0565b91505092915050565b6000806000606084860312156131405761313f612cdd565b5b600061314e86828701612f2a565b935050602061315f86828701612f2a565b925050604061317086828701612e75565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b60006131c282612da2565b6131cc81856131a6565b93506131dc818560208601612dbe565b6131e581612de8565b840191505092915050565b60006131fc83836131b7565b905092915050565b6000602082019050919050565b600061321c8261317a565b6132268185613185565b93508360208202850161323885613196565b8060005b85811015613274578484038952815161325585826131f0565b945061326083613204565b925060208a0199505060018101905061323c565b50829750879550505050505092915050565b600060208201905081810360008301526132a08184613211565b905092915050565b6000602082840312156132be576132bd612cdd565b5b60006132cc84828501612f2a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61330a81612e54565b82525050565b600061331c8383613301565b60208301905092915050565b6000602082019050919050565b6000613340826132d5565b61334a81856132e0565b9350613355836132f1565b8060005b8381101561338657815161336d8882613310565b975061337883613328565b925050600181019050613359565b5085935050505092915050565b600060208201905081810360008301526133ad8184613335565b905092915050565b6133be81612d6c565b81146133c957600080fd5b50565b6000813590506133db816133b5565b92915050565b600080604083850312156133f8576133f7612cdd565b5b600061340685828601612f2a565b9250506020613417858286016133cc565b9150509250929050565b600067ffffffffffffffff82111561343c5761343b612fb3565b5b61344582612de8565b9050602081019050919050565b600061346561346084613421565b613013565b90508281526020810184848401111561348157613480612fae565b5b61348c84828561305f565b509392505050565b600082601f8301126134a9576134a8612fa9565b5b81356134b9848260208601613452565b91505092915050565b600080600080608085870312156134dc576134db612cdd565b5b60006134ea87828801612f2a565b94505060206134fb87828801612f2a565b935050604061350c87828801612e75565b925050606085013567ffffffffffffffff81111561352d5761352c612ce2565b5b61353987828801613494565b91505092959194509250565b6000806040838503121561355c5761355b612cdd565b5b600061356a85828601612f2a565b925050602061357b85828601612f2a565b9150509250929050565b600067ffffffffffffffff8211156135a05761359f612fb3565b5b602082029050602081019050919050565b600080fd5b60006135c96135c484613585565b613013565b905080838252602082019050602084028301858111156135ec576135eb6135b1565b5b835b8181101561363357803567ffffffffffffffff81111561361157613610612fa9565b5b80860161361e89826130b0565b855260208501945050506020810190506135ee565b5050509392505050565b600082601f83011261365257613651612fa9565b5b81356136628482602086016135b6565b91505092915050565b60006020828403121561368157613680612cdd565b5b600082013567ffffffffffffffff81111561369f5761369e612ce2565b5b6136ab8482850161363d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136fb57607f821691505b60208210810361370e5761370d6136b4565b5b50919050565b600081905092915050565b600061372a82612da2565b6137348185613714565b9350613744818560208601612dbe565b80840191505092915050565b600061375c828461371f565b915081905092915050565b7f557365726e616d6520646f6573206e6f74206578697374000000000000000000600082015250565b600061379d601783612dad565b91506137a882613767565b602082019050919050565b600060208201905081810360008301526137cc81613790565b9050919050565b60006060820190506137e86000830186612ee9565b6137f56020830185612f7f565b6138026040830184612ee9565b949350505050565b600060408201905061381f6000830185612ee9565b61382c6020830184612f7f565b9392505050565b7f4e6f20657468657220746f207769746864726177000000000000000000000000600082015250565b6000613869601483612dad565b915061387482613833565b602082019050919050565b600060208201905081810360008301526138988161385c565b9050919050565b600081905092915050565b50565b60006138ba60008361389f565b91506138c5826138aa565b600082019050919050565b60006138db826138ad565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b600061391b600f83612dad565b9150613926826138e5565b602082019050919050565b6000602082019050818103600083015261394a8161390e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139ba82612e54565b91506139c583612e54565b92508282039050818111156139dd576139dc613980565b5b92915050565b60006139ef828561371f565b91506139fb828461371f565b91508190509392505050565b7f557365726e616d6520697320616c72656164792074616b656e00000000000000600082015250565b6000613a3d601983612dad565b9150613a4882613a07565b602082019050919050565b60006020820190508181036000830152613a6c81613a30565b9050919050565b7f496e73756666696369656e742065746865722073656e74000000000000000000600082015250565b6000613aa9601783612dad565b9150613ab482613a73565b602082019050919050565b60006020820190508181036000830152613ad881613a9c565b9050919050565b6000604082019050613af46000830185612f7f565b8181036020830152613b068184612df9565b90509392505050565b6000613b1a82612e54565b9150613b2583612e54565b9250828202613b3381612e54565b91508282048414831517613b4a57613b49613980565b5b5092915050565b7f557365726e616d652074616b656e000000000000000000000000000000000000600082015250565b6000613b87600e83612dad565b9150613b9282613b51565b602082019050919050565b60006020820190508181036000830152613bb681613b7a565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613bf3601483612dad565b9150613bfe82613bbd565b602082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5082613c29565b613c5a8185613c34565b9350613c6a818560208601612dbe565b613c7381612de8565b840191505092915050565b6000608082019050613c936000830187612ee9565b613ca06020830186612ee9565b613cad6040830185612f7f565b8181036060830152613cbf8184613c45565b905095945050505050565b600081519050613cd981612d13565b92915050565b600060208284031215613cf557613cf4612cdd565b5b6000613d0384828501613cca565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d9d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d60565b613da78683613d60565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613de4613ddf613dda84612e54565b613dbf565b612e54565b9050919050565b6000819050919050565b613dfe83613dc9565b613e12613e0a82613deb565b848454613d6d565b825550505050565b600090565b613e27613e1a565b613e32818484613df5565b505050565b5b81811015613e5657613e4b600082613e1f565b600181019050613e38565b5050565b601f821115613e9b57613e6c81613d3b565b613e7584613d50565b81016020851015613e84578190505b613e98613e9085613d50565b830182613e37565b50505b505050565b600082821c905092915050565b6000613ebe60001984600802613ea0565b1980831691505092915050565b6000613ed78383613ead565b9150826002028217905092915050565b613ef082612da2565b67ffffffffffffffff811115613f0957613f08612fb3565b5b613f1382546136e3565b613f1e828285613e5a565b600060209050601f831160018114613f515760008415613f3f578287015190505b613f498582613ecb565b865550613fb1565b601f198416613f5f86613d3b565b60005b82811015613f8757848901518255600182019150602085019450602081019050613f62565b86831015613fa45784890151613fa0601f891682613ead565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f6675726c65722e7375706565722e746563682f73757065657269642f6d657461646174612fa264697066735822122006d789adec820de031aaa2767075ce6d88c547cc0dc73cce13cc63950248a91564736f6c63430008190033
Deployed Bytecode Sourcemap
67571:4846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61515:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44403:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45575:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45394:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62159:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69889:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46244:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61823:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69417:258;;;;;;;;;;;;;:::i;:::-;;46903:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62340:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71265:461;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44216:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67716:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43941:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31619:103;;;;;;;;;;;;;:::i;:::-;;70105:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30944:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44563:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45805:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47108:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71734:403;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44729:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68273:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72145:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46022:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68715:590;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69683:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31877:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69313:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68094:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70483:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61515:224;61617:4;61656:35;61641:50;;;:11;:50;;;;:90;;;;61695:36;61719:11;61695:23;:36::i;:::-;61641:90;61634:97;;61515:224;;;:::o;44403:91::-;44448:13;44481:5;44474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44403:91;:::o;45575:158::-;45642:7;45662:22;45676:7;45662:13;:22::i;:::-;;45704:21;45717:7;45704:12;:21::i;:::-;45697:28;;45575:158;;;:::o;45394:115::-;45466:35;45475:2;45479:7;45488:12;:10;:12::i;:::-;45466:8;:35::i;:::-;45394:115;;:::o;62159:104::-;62211:7;62238:10;:17;;;;62231:24;;62159:104;:::o;69889:208::-;69954:7;70014:1;69982:18;70001:8;69982:28;;;;;;:::i;:::-;;;;;;;;;;;;;;:33;69974:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;70061:18;70080:8;70061:28;;;;;;:::i;:::-;;;;;;;;;;;;;;70054:35;;69889:208;;;:::o;46244:588::-;46353:1;46339:16;;:2;:16;;;46335:89;;46409:1;46379:33;;;;;;;;;;;:::i;:::-;;;;;;;;46335:89;46645:21;46669:34;46677:2;46681:7;46690:12;:10;:12::i;:::-;46669:7;:34::i;:::-;46645:58;;46735:4;46718:21;;:13;:21;;;46714:111;;46784:4;46790:7;46799:13;46763:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;46714:111;46324:508;46244:588;;;:::o;61823:260::-;61911:7;61944:16;61954:5;61944:9;:16::i;:::-;61935:5;:25;61931:101;;62007:5;62014;61984:36;;;;;;;;;;;;:::i;:::-;;;;;;;;61931:101;62049:12;:19;62062:5;62049:19;;;;;;;;;;;;;;;:26;62069:5;62049:26;;;;;;;;;;;;62042:33;;61823:260;;;;:::o;69417:258::-;30830:13;:11;:13::i;:::-;69465:15:::1;69483:21;69465:39;;69533:1;69523:7;:11;69515:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;69571:12;69589:7;:5;:7::i;:::-;:12;;69609:7;69589:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69570:51;;;69640:7;69632:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;69454:221;;69417:258::o:0;46903:134::-;46990:39;47007:4;47013:2;47017:7;46990:39;;;;;;;;;;;;:16;:39::i;:::-;46903:134;;;:::o;62340:231::-;62406:7;62439:13;:11;:13::i;:::-;62430:5;:22;62426:103;;62507:1;62511:5;62476:41;;;;;;;;;;;;:::i;:::-;;;;;;;;62426:103;62546:10;62557:5;62546:17;;;;;;;;:::i;:::-;;;;;;;;;;62539:24;;62340:231;;;:::o;71265:461::-;71313:15;71341:19;71391:1;71363:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;71341:51;;71435:25;71476:11;71463:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71435:53;;71504:9;71499:193;71523:11;71519:1;:15;71499:193;;;71556:15;71574;71587:1;71574:12;:15::i;:::-;71556:33;;71656:15;:24;71672:7;71656:24;;;;;;;;;;;71641:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;71651:1;71641:12;;;;;;;;:::i;:::-;;;;;;;:39;;;;71541:151;71536:3;;;;;;;71499:193;;;;71709:9;71702:16;;;;71265:461;:::o;44216:120::-;44279:7;44306:22;44320:7;44306:13;:22::i;:::-;44299:29;;44216:120;;;:::o;67716:37::-;;;;:::o;43941:213::-;44004:7;44045:1;44028:19;;:5;:19;;;44024:89;;44098:1;44071:30;;;;;;;;;;;:::i;:::-;;;;;;;;44024:89;44130:9;:16;44140:5;44130:16;;;;;;;;;;;;;;;;44123:23;;43941:213;;;:::o;31619:103::-;30830:13;:11;:13::i;:::-;31684:30:::1;31711:1;31684:18;:30::i;:::-;31619:103::o:0;70105:370::-;70191:16;70225:18;70246:16;70256:5;70246:9;:16::i;:::-;70225:37;;70273:23;70313:10;70299:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70273:51;;70340:9;70335:109;70359:10;70355:1;:14;70335:109;;;70403:29;70423:5;70430:1;70403:19;:29::i;:::-;70391:6;70398:1;70391:9;;;;;;;;:::i;:::-;;;;;;;:41;;;;;70371:3;;;;;;;70335:109;;;;70461:6;70454:13;;;;70105:370;;;:::o;30944:87::-;30990:7;31017:6;;;;;;;;;;;31010:13;;30944:87;:::o;44563:95::-;44610:13;44643:7;44636:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44563:95;:::o;45805:146::-;45891:52;45910:12;:10;:12::i;:::-;45924:8;45934;45891:18;:52::i;:::-;45805:146;;:::o;47108:211::-;47222:31;47235:4;47241:2;47245:7;47222:12;:31::i;:::-;47264:47;47287:4;47293:2;47297:7;47306:4;47264:22;:47::i;:::-;47108:211;;;;:::o;71734:403::-;71781:16;71810:19;71860:1;71832:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;71810:51;;71904:25;71946:11;71932:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71904:54;;71974:9;71969:135;71993:11;71989:1;:15;71969:135;;;72040:15;72053:1;72040:12;:15::i;:::-;72026:8;72035:1;72026:11;;;;;;;;:::i;:::-;;;;;;;:29;;;;;72006:3;;;;;;;71969:135;;;;72121:8;72114:15;;;;71734:403;:::o;44729:260::-;44793:13;44819:22;44833:7;44819:13;:22::i;:::-;;44854:21;44878:10;:8;:10::i;:::-;44854:34;;44930:1;44912:7;44906:21;:25;:75;;;;;;;;;;;;;;;;;44948:7;44957:18;:7;:16;:18::i;:::-;44934:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44906:75;44899:82;;;44729:260;;;:::o;68273:434::-;68345:29;68365:8;68345:19;:29::i;:::-;68337:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;68436:9;;68423;:22;;68415:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;68486:15;68504:25;:15;:23;:25::i;:::-;68486:43;;68540:27;:15;:25;:27::i;:::-;68578:30;68588:10;68600:7;68578:9;:30::i;:::-;68619:31;68632:7;68641:8;68619:12;:31::i;:::-;68666:33;68681:7;68690:8;68666:33;;;;;;;:::i;:::-;;;;;;;;68326:381;68273:434;:::o;72145:269::-;72242:7;72267:15;72285:18;72304:8;72285:28;;;;;;:::i;:::-;;;;;;;;;;;;;;72267:46;;72343:1;72332:7;:12;72324:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;72390:16;72398:7;72390;:16::i;:::-;72383:23;;;72145:269;;;:::o;46022:155::-;46110:4;46134:18;:25;46153:5;46134:25;;;;;;;;;;;;;;;:35;46160:8;46134:35;;;;;;;;;;;;;;;;;;;;;;;;;46127:42;;46022:155;;;;:::o;68715:590::-;68834:9;:16;68822:9;;:28;;;;:::i;:::-;68809:9;:41;;68787:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;68917:9;68912:386;68936:9;:16;68932:1;:20;68912:386;;;68982:33;69002:9;69012:1;69002:12;;;;;;;;:::i;:::-;;;;;;;;68982:19;:33::i;:::-;68974:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;69049:15;69067:25;:15;:23;:25::i;:::-;69049:43;;69107:27;:15;:25;:27::i;:::-;69149:30;69159:10;69171:7;69149:9;:30::i;:::-;69194:35;69207:7;69216:9;69226:1;69216:12;;;;;;;;:::i;:::-;;;;;;;;69194;:35::i;:::-;69249:37;69264:7;69273:9;69283:1;69273:12;;;;;;;;:::i;:::-;;;;;;;;69249:37;;;;;;;:::i;:::-;;;;;;;;68959:339;68954:3;;;;;;;68912:386;;;;68715:590;:::o;69683:198::-;69742:13;69804:1;69776:30;;:16;69784:7;69776;:16::i;:::-;:30;;;69768:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;69849:15;:24;69865:7;69849:24;;;;;;;;;;;69842:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69683:198;;;:::o;31877:220::-;30830:13;:11;:13::i;:::-;31982:1:::1;31962:22;;:8;:22;;::::0;31958:93:::1;;32036:1;32008:31;;;;;;;;;;;:::i;:::-;;;;;;;;31958:93;32061:28;32080:8;32061:18;:28::i;:::-;31877:220:::0;:::o;69313:96::-;30830:13;:11;:13::i;:::-;69393:8:::1;69381:9;:20;;;;69313:96:::0;:::o;68094:171::-;68195:4;68256:1;68224:18;68243:8;68224:28;;;;;;:::i;:::-;;;;;;;;;;;;;;:33;68217:40;;68094:171;;;:::o;70483:436::-;70572:15;70605:18;70626:16;70636:5;70626:9;:16::i;:::-;70605:37;;70653:25;70694:10;70681:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70653:52;;70721:9;70716:169;70740:10;70736:1;:14;70716:169;;;70772:15;70790:29;70810:5;70817:1;70790:19;:29::i;:::-;70772:47;;70849:15;:24;70865:7;70849:24;;;;;;;;;;;70834:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;70844:1;70834:12;;;;;;;;:::i;:::-;;;;;;;:39;;;;70757:128;70752:3;;;;;;;70716:169;;;;70902:9;70895:16;;;;70483:436;;;:::o;43572:305::-;43674:4;43726:25;43711:40;;;:11;:40;;;;:105;;;;43783:33;43768:48;;;:11;:48;;;;43711:105;:158;;;;43833:36;43857:11;43833:23;:36::i;:::-;43711:158;43691:178;;43572:305;;;:::o;58550:247::-;58613:7;58633:13;58649:17;58658:7;58649:8;:17::i;:::-;58633:33;;58698:1;58681:19;;:5;:19;;;58677:90;;58747:7;58724:31;;;;;;;;;;;:::i;:::-;;;;;;;;58677:90;58784:5;58777:12;;;58550:247;;;:::o;48081:129::-;48151:7;48178:15;:24;48194:7;48178:24;;;;;;;;;;;;;;;;;;;;;48171:31;;48081:129;;;:::o;28953:98::-;29006:7;29033:10;29026:17;;28953:98;:::o;56782:122::-;56863:33;56872:2;56876:7;56885:4;56891;56863:8;:33::i;:::-;56782:122;;;:::o;62632:640::-;62727:7;62747:21;62771:32;62785:2;62789:7;62798:4;62771:13;:32::i;:::-;62747:56;;62845:1;62820:27;;:13;:27;;;62816:214;;62864:40;62896:7;62864:31;:40::i;:::-;62816:214;;;62943:2;62926:19;;:13;:19;;;62922:108;;62962:56;62995:13;63010:7;62962:32;:56::i;:::-;62922:108;62816:214;63058:1;63044:16;;:2;:16;;;63040:192;;63077:45;63114:7;63077:36;:45::i;:::-;63040:192;;;63161:2;63144:19;;:13;:19;;;63140:92;;63180:40;63208:2;63212:7;63180:27;:40::i;:::-;63140:92;63040:192;63251:13;63244:20;;;62632:640;;;;;:::o;31109:166::-;31180:12;:10;:12::i;:::-;31169:23;;:7;:5;:7::i;:::-;:23;;;31165:103;;31243:12;:10;:12::i;:::-;31216:40;;;;;;;;;;;:::i;:::-;;;;;;;;31165:103;31109:166::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;32257:191::-;32331:16;32350:6;;;;;;;;;;;32331:25;;32376:8;32367:6;;:17;;;;;;;;;;;;;;;;;;32431:8;32400:40;;32421:8;32400:40;;;;;;;;;;;;32320:128;32257:191;:::o;57989:318::-;58117:1;58097:22;;:8;:22;;;58093:93;;58165:8;58143:31;;;;;;;;;;;:::i;:::-;;;;;;;;58093:93;58234:8;58196:18;:25;58215:5;58196:25;;;;;;;;;;;;;;;:35;58222:8;58196:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;58280:8;58258:41;;58273:5;58258:41;;;58290:8;58258:41;;;;;;:::i;:::-;;;;;;;;57989:318;;;:::o;59347:799::-;59481:1;59464:2;:14;;;:18;59460:679;;;59519:2;59503:36;;;59540:12;:10;:12::i;:::-;59554:4;59560:7;59569:4;59503:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59499:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59834:1;59817:6;:13;:18;59813:300;;59889:2;59867:25;;;;;;;;;;;:::i;:::-;;;;;;;;59813:300;60063:6;60057:13;60048:6;60044:2;60040:15;60033:38;59499:629;59632:41;;;59622:51;;;:6;:51;;;;59618:132;;59727:2;59705:25;;;;;;;;;;;:::i;:::-;;;;;;;;59618:132;59575:190;59460:679;59347:799;;;;:::o;70927:148::-;70987:13;71013:54;;;;;;;;;;;;;;;;;;;70927:148;:::o;25723:718::-;25779:13;25830:14;25867:1;25847:17;25858:5;25847:10;:17::i;:::-;:21;25830:38;;25883:20;25917:6;25906:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25883:41;;25939:11;26068:6;26064:2;26060:15;26052:6;26048:28;26041:35;;26105:290;26112:4;26105:290;;;26137:5;;;;;;;;26279:10;26274:2;26267:5;26263:14;26258:32;26253:3;26245:46;26337:2;26328:11;;;;;;:::i;:::-;;;;;26371:1;26362:5;:10;26105:290;26358:21;26105:290;26416:6;26409:13;;;;;25723:718;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;52901:102::-;52969:26;52979:2;52983:7;52969:26;;;;;;;;;;;;:9;:26::i;:::-;52901:102;;:::o;71083:174::-;71192:8;71165:15;:24;71181:7;71165:24;;;;;;;;;;;:35;;;;;;:::i;:::-;;71242:7;71211:18;71230:8;71211:28;;;;;;:::i;:::-;;;;;;;;;;;;;:38;;;;71083:174;;:::o;35232:148::-;35308:4;35347:25;35332:40;;;:11;:40;;;;35325:47;;35232:148;;;:::o;47843:117::-;47909:7;47936;:16;47944:7;47936:16;;;;;;;;;;;;;;;;;;;;;47929:23;;47843:117;;;:::o;57092:678::-;57254:9;:31;;;;57283:1;57267:18;;:4;:18;;;;57254:31;57250:471;;;57302:13;57318:22;57332:7;57318:13;:22::i;:::-;57302:38;;57487:1;57471:18;;:4;:18;;;;:35;;;;;57502:4;57493:13;;:5;:13;;;;57471:35;:69;;;;;57511:29;57528:5;57535:4;57511:16;:29::i;:::-;57510:30;57471:69;57467:144;;;57590:4;57568:27;;;;;;;;;;;:::i;:::-;;;;;;;;57467:144;57631:9;57627:83;;;57686:7;57682:2;57666:28;;57675:5;57666:28;;;;;;;;;;;;57627:83;57287:434;57250:471;57760:2;57733:15;:24;57749:7;57733:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;57092:678;;;;:::o;51043:824::-;51129:7;51149:12;51164:17;51173:7;51164:8;:17::i;:::-;51149:32;;51260:1;51244:18;;:4;:18;;;51240:88;;51279:37;51296:4;51302;51308:7;51279:16;:37::i;:::-;51240:88;51391:1;51375:18;;:4;:18;;;51371:263;;51493:48;51510:1;51514:7;51531:1;51535:5;51493:8;:48::i;:::-;51606:1;51587:9;:15;51597:4;51587:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51371:263;51664:1;51650:16;;:2;:16;;;51646:111;;51729:1;51712:9;:13;51722:2;51712:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51646:111;51788:2;51769:7;:16;51777:7;51769:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51827:7;51823:2;51808:27;;51817:4;51808:27;;;;;;;;;;;;51855:4;51848:11;;;51043:824;;;;;:::o;63992:164::-;64096:10;:17;;;;64069:15;:24;64085:7;64069:24;;;;;;;;;;;:44;;;;64124:10;64140:7;64124:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63992:164;:::o;64783:977::-;65049:22;65074:15;65084:4;65074:9;:15::i;:::-;65049:40;;65100:18;65121:17;:26;65139:7;65121:26;;;;;;;;;;;;65100:47;;65268:14;65254:10;:28;65250:328;;65299:19;65321:12;:18;65334:4;65321:18;;;;;;;;;;;;;;;:34;65340:14;65321:34;;;;;;;;;;;;65299:56;;65405:11;65372:12;:18;65385:4;65372:18;;;;;;;;;;;;;;;:30;65391:10;65372:30;;;;;;;;;;;:44;;;;65522:10;65489:17;:30;65507:11;65489:30;;;;;;;;;;;:43;;;;65284:294;65250:328;65674:17;:26;65692:7;65674:26;;;;;;;;;;;65667:33;;;65718:12;:18;65731:4;65718:18;;;;;;;;;;;;;;;:34;65737:14;65718:34;;;;;;;;;;;65711:41;;;64864:896;;64783:977;;:::o;66055:1079::-;66308:22;66353:1;66333:10;:17;;;;:21;;;;:::i;:::-;66308:46;;66365:18;66386:15;:24;66402:7;66386:24;;;;;;;;;;;;66365:45;;66737:19;66759:10;66770:14;66759:26;;;;;;;;:::i;:::-;;;;;;;;;;66737:48;;66823:11;66798:10;66809;66798:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;66934:10;66903:15;:28;66919:11;66903:28;;;;;;;;;;;:41;;;;67075:15;:24;67091:7;67075:24;;;;;;;;;;;67068:31;;;67110:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66126:1008;;;66055:1079;:::o;63573:218::-;63658:14;63691:1;63675:13;63685:2;63675:9;:13::i;:::-;:17;;;;:::i;:::-;63658:34;;63730:7;63703:12;:16;63716:2;63703:16;;;;;;;;;;;;;;;:24;63720:6;63703:24;;;;;;;;;;;:34;;;;63777:6;63748:17;:26;63766:7;63748:26;;;;;;;;;;;:35;;;;63647:144;63573:218;;:::o;22127:948::-;22180:7;22200:14;22217:1;22200:18;;22267:8;22258:5;:17;22254:106;;22305:8;22296:17;;;;;;:::i;:::-;;;;;22342:2;22332:12;;;;22254:106;22387:8;22378:5;:17;22374:106;;22425:8;22416:17;;;;;;:::i;:::-;;;;;22462:2;22452:12;;;;22374:106;22507:8;22498:5;:17;22494:106;;22545:8;22536:17;;;;;;:::i;:::-;;;;;22582:2;22572:12;;;;22494:106;22627:7;22618:5;:16;22614:103;;22664:7;22655:16;;;;;;:::i;:::-;;;;;22700:1;22690:11;;;;22614:103;22744:7;22735:5;:16;22731:103;;22781:7;22772:16;;;;;;:::i;:::-;;;;;22817:1;22807:11;;;;22731:103;22861:7;22852:5;:16;22848:103;;22898:7;22889:16;;;;;;:::i;:::-;;;;;22934:1;22924:11;;;;22848:103;22978:7;22969:5;:16;22965:68;;23016:1;23006:11;;;;22965:68;23061:6;23054:13;;;22127:948;;;:::o;53230:185::-;53325:18;53331:2;53335:7;53325:5;:18::i;:::-;53354:53;53385:1;53389:2;53393:7;53402:4;53354:22;:53::i;:::-;53230:185;;;:::o;49250:376::-;49363:38;49377:5;49384:7;49393;49363:13;:38::i;:::-;49358:261;;49439:1;49422:19;;:5;:19;;;49418:190;;49492:7;49469:31;;;;;;;;;;;:::i;:::-;;;;;;;;49418:190;49575:7;49584;49548:44;;;;;;;;;;;;:::i;:::-;;;;;;;;49358:261;49250:376;;;:::o;52203:335::-;52285:1;52271:16;;:2;:16;;;52267:89;;52341:1;52311:33;;;;;;;;;;;:::i;:::-;;;;;;;;52267:89;52366:21;52390:32;52398:2;52402:7;52419:1;52390:7;:32::i;:::-;52366:56;;52462:1;52437:27;;:13;:27;;;52433:98;;52516:1;52488:31;;;;;;;;;;;:::i;:::-;;;;;;;;52433:98;52256:282;52203:335;;:::o;48530:276::-;48633:4;48689:1;48670:21;;:7;:21;;;;:128;;;;;48718:7;48709:16;;:5;:16;;;:52;;;;48729:32;48746:5;48753:7;48729:16;:32::i;:::-;48709:52;:88;;;;48790:7;48765:32;;:21;48778:7;48765:12;:21::i;:::-;:32;;;48709:88;48670:128;48650:148;;48530:276;;;;;:::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:248::-;1880:1;1890:113;1904:6;1901:1;1898:13;1890:113;;;1989:1;1984:3;1980:11;1974:18;1970:1;1965:3;1961:11;1954:39;1926:2;1923:1;1919:10;1914:15;;1890:113;;;2037:1;2028:6;2023:3;2019:16;2012:27;1860:186;1798:248;;;:::o;2052:102::-;2093:6;2144:2;2140:7;2135:2;2128:5;2124:14;2120:28;2110:38;;2052:102;;;:::o;2160:377::-;2248:3;2276:39;2309:5;2276:39;:::i;:::-;2331:71;2395:6;2390:3;2331:71;:::i;:::-;2324:78;;2411:65;2469:6;2464:3;2457:4;2450:5;2446:16;2411:65;:::i;:::-;2501:29;2523:6;2501:29;:::i;:::-;2496:3;2492:39;2485:46;;2252:285;2160:377;;;;:::o;2543:313::-;2656:4;2694:2;2683:9;2679:18;2671:26;;2743:9;2737:4;2733:20;2729:1;2718:9;2714:17;2707:47;2771:78;2844:4;2835:6;2771:78;:::i;:::-;2763:86;;2543:313;;;;:::o;2862:77::-;2899:7;2928:5;2917:16;;2862:77;;;:::o;2945:122::-;3018:24;3036:5;3018:24;:::i;:::-;3011:5;3008:35;2998:63;;3057:1;3054;3047:12;2998:63;2945:122;:::o;3073:139::-;3119:5;3157:6;3144:20;3135:29;;3173:33;3200:5;3173:33;:::i;:::-;3073:139;;;;:::o;3218:329::-;3277:6;3326:2;3314:9;3305:7;3301:23;3297:32;3294:119;;;3332:79;;:::i;:::-;3294:119;3452:1;3477:53;3522:7;3513:6;3502:9;3498:22;3477:53;:::i;:::-;3467:63;;3423:117;3218:329;;;;:::o;3553:126::-;3590:7;3630:42;3623:5;3619:54;3608:65;;3553:126;;;:::o;3685:96::-;3722:7;3751:24;3769:5;3751:24;:::i;:::-;3740:35;;3685:96;;;:::o;3787:118::-;3874:24;3892:5;3874:24;:::i;:::-;3869:3;3862:37;3787:118;;:::o;3911:222::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:71;4123:1;4112:9;4108:17;4099:6;4055:71;:::i;:::-;3911:222;;;;:::o;4139:122::-;4212:24;4230:5;4212:24;:::i;:::-;4205:5;4202:35;4192:63;;4251:1;4248;4241:12;4192:63;4139:122;:::o;4267:139::-;4313:5;4351:6;4338:20;4329:29;;4367:33;4394:5;4367:33;:::i;:::-;4267:139;;;;:::o;4412:474::-;4480:6;4488;4537:2;4525:9;4516:7;4512:23;4508:32;4505:119;;;4543:79;;:::i;:::-;4505:119;4663:1;4688:53;4733:7;4724:6;4713:9;4709:22;4688:53;:::i;:::-;4678:63;;4634:117;4790:2;4816:53;4861:7;4852:6;4841:9;4837:22;4816:53;:::i;:::-;4806:63;;4761:118;4412:474;;;;;:::o;4892:118::-;4979:24;4997:5;4979:24;:::i;:::-;4974:3;4967:37;4892:118;;:::o;5016:222::-;5109:4;5147:2;5136:9;5132:18;5124:26;;5160:71;5228:1;5217:9;5213:17;5204:6;5160:71;:::i;:::-;5016:222;;;;:::o;5244:117::-;5353:1;5350;5343:12;5367:117;5476:1;5473;5466:12;5490:180;5538:77;5535:1;5528:88;5635:4;5632:1;5625:15;5659:4;5656:1;5649:15;5676:281;5759:27;5781:4;5759:27;:::i;:::-;5751:6;5747:40;5889:6;5877:10;5874:22;5853:18;5841:10;5838:34;5835:62;5832:88;;;5900:18;;:::i;:::-;5832:88;5940:10;5936:2;5929:22;5719:238;5676:281;;:::o;5963:129::-;5997:6;6024:20;;:::i;:::-;6014:30;;6053:33;6081:4;6073:6;6053:33;:::i;:::-;5963:129;;;:::o;6098:308::-;6160:4;6250:18;6242:6;6239:30;6236:56;;;6272:18;;:::i;:::-;6236:56;6310:29;6332:6;6310:29;:::i;:::-;6302:37;;6394:4;6388;6384:15;6376:23;;6098:308;;;:::o;6412:148::-;6510:6;6505:3;6500;6487:30;6551:1;6542:6;6537:3;6533:16;6526:27;6412:148;;;:::o;6566:425::-;6644:5;6669:66;6685:49;6727:6;6685:49;:::i;:::-;6669:66;:::i;:::-;6660:75;;6758:6;6751:5;6744:21;6796:4;6789:5;6785:16;6834:3;6825:6;6820:3;6816:16;6813:25;6810:112;;;6841:79;;:::i;:::-;6810:112;6931:54;6978:6;6973:3;6968;6931:54;:::i;:::-;6650:341;6566:425;;;;;:::o;7011:340::-;7067:5;7116:3;7109:4;7101:6;7097:17;7093:27;7083:122;;7124:79;;:::i;:::-;7083:122;7241:6;7228:20;7266:79;7341:3;7333:6;7326:4;7318:6;7314:17;7266:79;:::i;:::-;7257:88;;7073:278;7011:340;;;;:::o;7357:509::-;7426:6;7475:2;7463:9;7454:7;7450:23;7446:32;7443:119;;;7481:79;;:::i;:::-;7443:119;7629:1;7618:9;7614:17;7601:31;7659:18;7651:6;7648:30;7645:117;;;7681:79;;:::i;:::-;7645:117;7786:63;7841:7;7832:6;7821:9;7817:22;7786:63;:::i;:::-;7776:73;;7572:287;7357:509;;;;:::o;7872:619::-;7949:6;7957;7965;8014:2;8002:9;7993:7;7989:23;7985:32;7982:119;;;8020:79;;:::i;:::-;7982:119;8140:1;8165:53;8210:7;8201:6;8190:9;8186:22;8165:53;:::i;:::-;8155:63;;8111:117;8267:2;8293:53;8338:7;8329:6;8318:9;8314:22;8293:53;:::i;:::-;8283:63;;8238:118;8395:2;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8366:118;7872:619;;;;;:::o;8497:124::-;8574:6;8608:5;8602:12;8592:22;;8497:124;;;:::o;8627:194::-;8736:11;8770:6;8765:3;8758:19;8810:4;8805:3;8801:14;8786:29;;8627:194;;;;:::o;8827:142::-;8904:4;8927:3;8919:11;;8957:4;8952:3;8948:14;8940:22;;8827:142;;;:::o;8975:159::-;9049:11;9083:6;9078:3;9071:19;9123:4;9118:3;9114:14;9099:29;;8975:159;;;;:::o;9140:357::-;9218:3;9246:39;9279:5;9246:39;:::i;:::-;9301:61;9355:6;9350:3;9301:61;:::i;:::-;9294:68;;9371:65;9429:6;9424:3;9417:4;9410:5;9406:16;9371:65;:::i;:::-;9461:29;9483:6;9461:29;:::i;:::-;9456:3;9452:39;9445:46;;9222:275;9140:357;;;;:::o;9503:196::-;9592:10;9627:66;9689:3;9681:6;9627:66;:::i;:::-;9613:80;;9503:196;;;;:::o;9705:123::-;9785:4;9817;9812:3;9808:14;9800:22;;9705:123;;;:::o;9862:991::-;10001:3;10030:64;10088:5;10030:64;:::i;:::-;10110:96;10199:6;10194:3;10110:96;:::i;:::-;10103:103;;10232:3;10277:4;10269:6;10265:17;10260:3;10256:27;10307:66;10367:5;10307:66;:::i;:::-;10396:7;10427:1;10412:396;10437:6;10434:1;10431:13;10412:396;;;10508:9;10502:4;10498:20;10493:3;10486:33;10559:6;10553:13;10587:84;10666:4;10651:13;10587:84;:::i;:::-;10579:92;;10694:70;10757:6;10694:70;:::i;:::-;10684:80;;10793:4;10788:3;10784:14;10777:21;;10472:336;10459:1;10456;10452:9;10447:14;;10412:396;;;10416:14;10824:4;10817:11;;10844:3;10837:10;;10006:847;;;;;9862:991;;;;:::o;10859:413::-;11022:4;11060:2;11049:9;11045:18;11037:26;;11109:9;11103:4;11099:20;11095:1;11084:9;11080:17;11073:47;11137:128;11260:4;11251:6;11137:128;:::i;:::-;11129:136;;10859:413;;;;:::o;11278:329::-;11337:6;11386:2;11374:9;11365:7;11361:23;11357:32;11354:119;;;11392:79;;:::i;:::-;11354:119;11512:1;11537:53;11582:7;11573:6;11562:9;11558:22;11537:53;:::i;:::-;11527:63;;11483:117;11278:329;;;;:::o;11613:114::-;11680:6;11714:5;11708:12;11698:22;;11613:114;;;:::o;11733:184::-;11832:11;11866:6;11861:3;11854:19;11906:4;11901:3;11897:14;11882:29;;11733:184;;;;:::o;11923:132::-;11990:4;12013:3;12005:11;;12043:4;12038:3;12034:14;12026:22;;11923:132;;;:::o;12061:108::-;12138:24;12156:5;12138:24;:::i;:::-;12133:3;12126:37;12061:108;;:::o;12175:179::-;12244:10;12265:46;12307:3;12299:6;12265:46;:::i;:::-;12343:4;12338:3;12334:14;12320:28;;12175:179;;;;:::o;12360:113::-;12430:4;12462;12457:3;12453:14;12445:22;;12360:113;;;:::o;12509:732::-;12628:3;12657:54;12705:5;12657:54;:::i;:::-;12727:86;12806:6;12801:3;12727:86;:::i;:::-;12720:93;;12837:56;12887:5;12837:56;:::i;:::-;12916:7;12947:1;12932:284;12957:6;12954:1;12951:13;12932:284;;;13033:6;13027:13;13060:63;13119:3;13104:13;13060:63;:::i;:::-;13053:70;;13146:60;13199:6;13146:60;:::i;:::-;13136:70;;12992:224;12979:1;12976;12972:9;12967:14;;12932:284;;;12936:14;13232:3;13225:10;;12633:608;;;12509:732;;;;:::o;13247:373::-;13390:4;13428:2;13417:9;13413:18;13405:26;;13477:9;13471:4;13467:20;13463:1;13452:9;13448:17;13441:47;13505:108;13608:4;13599:6;13505:108;:::i;:::-;13497:116;;13247:373;;;;:::o;13626:116::-;13696:21;13711:5;13696:21;:::i;:::-;13689:5;13686:32;13676:60;;13732:1;13729;13722:12;13676:60;13626:116;:::o;13748:133::-;13791:5;13829:6;13816:20;13807:29;;13845:30;13869:5;13845:30;:::i;:::-;13748:133;;;;:::o;13887:468::-;13952:6;13960;14009:2;13997:9;13988:7;13984:23;13980:32;13977:119;;;14015:79;;:::i;:::-;13977:119;14135:1;14160:53;14205:7;14196:6;14185:9;14181:22;14160:53;:::i;:::-;14150:63;;14106:117;14262:2;14288:50;14330:7;14321:6;14310:9;14306:22;14288:50;:::i;:::-;14278:60;;14233:115;13887:468;;;;;:::o;14361:307::-;14422:4;14512:18;14504:6;14501:30;14498:56;;;14534:18;;:::i;:::-;14498:56;14572:29;14594:6;14572:29;:::i;:::-;14564:37;;14656:4;14650;14646:15;14638:23;;14361:307;;;:::o;14674:423::-;14751:5;14776:65;14792:48;14833:6;14792:48;:::i;:::-;14776:65;:::i;:::-;14767:74;;14864:6;14857:5;14850:21;14902:4;14895:5;14891:16;14940:3;14931:6;14926:3;14922:16;14919:25;14916:112;;;14947:79;;:::i;:::-;14916:112;15037:54;15084:6;15079:3;15074;15037:54;:::i;:::-;14757:340;14674:423;;;;;:::o;15116:338::-;15171:5;15220:3;15213:4;15205:6;15201:17;15197:27;15187:122;;15228:79;;:::i;:::-;15187:122;15345:6;15332:20;15370:78;15444:3;15436:6;15429:4;15421:6;15417:17;15370:78;:::i;:::-;15361:87;;15177:277;15116:338;;;;:::o;15460:943::-;15555:6;15563;15571;15579;15628:3;15616:9;15607:7;15603:23;15599:33;15596:120;;;15635:79;;:::i;:::-;15596:120;15755:1;15780:53;15825:7;15816:6;15805:9;15801:22;15780:53;:::i;:::-;15770:63;;15726:117;15882:2;15908:53;15953:7;15944:6;15933:9;15929:22;15908:53;:::i;:::-;15898:63;;15853:118;16010:2;16036:53;16081:7;16072:6;16061:9;16057:22;16036:53;:::i;:::-;16026:63;;15981:118;16166:2;16155:9;16151:18;16138:32;16197:18;16189:6;16186:30;16183:117;;;16219:79;;:::i;:::-;16183:117;16324:62;16378:7;16369:6;16358:9;16354:22;16324:62;:::i;:::-;16314:72;;16109:287;15460:943;;;;;;;:::o;16409:474::-;16477:6;16485;16534:2;16522:9;16513:7;16509:23;16505:32;16502:119;;;16540:79;;:::i;:::-;16502:119;16660:1;16685:53;16730:7;16721:6;16710:9;16706:22;16685:53;:::i;:::-;16675:63;;16631:117;16787:2;16813:53;16858:7;16849:6;16838:9;16834:22;16813:53;:::i;:::-;16803:63;;16758:118;16409:474;;;;;:::o;16889:321::-;16976:4;17066:18;17058:6;17055:30;17052:56;;;17088:18;;:::i;:::-;17052:56;17138:4;17130:6;17126:17;17118:25;;17198:4;17192;17188:15;17180:23;;16889:321;;;:::o;17216:117::-;17325:1;17322;17315:12;17355:945;17461:5;17486:91;17502:74;17569:6;17502:74;:::i;:::-;17486:91;:::i;:::-;17477:100;;17597:5;17626:6;17619:5;17612:21;17660:4;17653:5;17649:16;17642:23;;17713:4;17705:6;17701:17;17693:6;17689:30;17742:3;17734:6;17731:15;17728:122;;;17761:79;;:::i;:::-;17728:122;17876:6;17859:435;17893:6;17888:3;17885:15;17859:435;;;17982:3;17969:17;18018:18;18005:11;18002:35;17999:122;;;18040:79;;:::i;:::-;17999:122;18164:11;18156:6;18152:24;18202:47;18245:3;18233:10;18202:47;:::i;:::-;18197:3;18190:60;18279:4;18274:3;18270:14;18263:21;;17935:359;;17919:4;17914:3;17910:14;17903:21;;17859:435;;;17863:21;17467:833;;17355:945;;;;;:::o;18322:390::-;18403:5;18452:3;18445:4;18437:6;18433:17;18429:27;18419:122;;18460:79;;:::i;:::-;18419:122;18577:6;18564:20;18602:104;18702:3;18694:6;18687:4;18679:6;18675:17;18602:104;:::i;:::-;18593:113;;18409:303;18322:390;;;;:::o;18718:559::-;18812:6;18861:2;18849:9;18840:7;18836:23;18832:32;18829:119;;;18867:79;;:::i;:::-;18829:119;19015:1;19004:9;19000:17;18987:31;19045:18;19037:6;19034:30;19031:117;;;19067:79;;:::i;:::-;19031:117;19172:88;19252:7;19243:6;19232:9;19228:22;19172:88;:::i;:::-;19162:98;;18958:312;18718:559;;;;:::o;19283:180::-;19331:77;19328:1;19321:88;19428:4;19425:1;19418:15;19452:4;19449:1;19442:15;19469:320;19513:6;19550:1;19544:4;19540:12;19530:22;;19597:1;19591:4;19587:12;19618:18;19608:81;;19674:4;19666:6;19662:17;19652:27;;19608:81;19736:2;19728:6;19725:14;19705:18;19702:38;19699:84;;19755:18;;:::i;:::-;19699:84;19520:269;19469:320;;;:::o;19795:148::-;19897:11;19934:3;19919:18;;19795:148;;;;:::o;19949:390::-;20055:3;20083:39;20116:5;20083:39;:::i;:::-;20138:89;20220:6;20215:3;20138:89;:::i;:::-;20131:96;;20236:65;20294:6;20289:3;20282:4;20275:5;20271:16;20236:65;:::i;:::-;20326:6;20321:3;20317:16;20310:23;;20059:280;19949:390;;;;:::o;20345:275::-;20477:3;20499:95;20590:3;20581:6;20499:95;:::i;:::-;20492:102;;20611:3;20604:10;;20345:275;;;;:::o;20626:173::-;20766:25;20762:1;20754:6;20750:14;20743:49;20626:173;:::o;20805:366::-;20947:3;20968:67;21032:2;21027:3;20968:67;:::i;:::-;20961:74;;21044:93;21133:3;21044:93;:::i;:::-;21162:2;21157:3;21153:12;21146:19;;20805:366;;;:::o;21177:419::-;21343:4;21381:2;21370:9;21366:18;21358:26;;21430:9;21424:4;21420:20;21416:1;21405:9;21401:17;21394:47;21458:131;21584:4;21458:131;:::i;:::-;21450:139;;21177:419;;;:::o;21602:442::-;21751:4;21789:2;21778:9;21774:18;21766:26;;21802:71;21870:1;21859:9;21855:17;21846:6;21802:71;:::i;:::-;21883:72;21951:2;21940:9;21936:18;21927:6;21883:72;:::i;:::-;21965;22033:2;22022:9;22018:18;22009:6;21965:72;:::i;:::-;21602:442;;;;;;:::o;22050:332::-;22171:4;22209:2;22198:9;22194:18;22186:26;;22222:71;22290:1;22279:9;22275:17;22266:6;22222:71;:::i;:::-;22303:72;22371:2;22360:9;22356:18;22347:6;22303:72;:::i;:::-;22050:332;;;;;:::o;22388:170::-;22528:22;22524:1;22516:6;22512:14;22505:46;22388:170;:::o;22564:366::-;22706:3;22727:67;22791:2;22786:3;22727:67;:::i;:::-;22720:74;;22803:93;22892:3;22803:93;:::i;:::-;22921:2;22916:3;22912:12;22905:19;;22564:366;;;:::o;22936:419::-;23102:4;23140:2;23129:9;23125:18;23117:26;;23189:9;23183:4;23179:20;23175:1;23164:9;23160:17;23153:47;23217:131;23343:4;23217:131;:::i;:::-;23209:139;;22936:419;;;:::o;23361:147::-;23462:11;23499:3;23484:18;;23361:147;;;;:::o;23514:114::-;;:::o;23634:398::-;23793:3;23814:83;23895:1;23890:3;23814:83;:::i;:::-;23807:90;;23906:93;23995:3;23906:93;:::i;:::-;24024:1;24019:3;24015:11;24008:18;;23634:398;;;:::o;24038:379::-;24222:3;24244:147;24387:3;24244:147;:::i;:::-;24237:154;;24408:3;24401:10;;24038:379;;;:::o;24423:165::-;24563:17;24559:1;24551:6;24547:14;24540:41;24423:165;:::o;24594:366::-;24736:3;24757:67;24821:2;24816:3;24757:67;:::i;:::-;24750:74;;24833:93;24922:3;24833:93;:::i;:::-;24951:2;24946:3;24942:12;24935:19;;24594:366;;;:::o;24966:419::-;25132:4;25170:2;25159:9;25155:18;25147:26;;25219:9;25213:4;25209:20;25205:1;25194:9;25190:17;25183:47;25247:131;25373:4;25247:131;:::i;:::-;25239:139;;24966:419;;;:::o;25391:180::-;25439:77;25436:1;25429:88;25536:4;25533:1;25526:15;25560:4;25557:1;25550:15;25577:180;25625:77;25622:1;25615:88;25722:4;25719:1;25712:15;25746:4;25743:1;25736:15;25763:194;25803:4;25823:20;25841:1;25823:20;:::i;:::-;25818:25;;25857:20;25875:1;25857:20;:::i;:::-;25852:25;;25901:1;25898;25894:9;25886:17;;25925:1;25919:4;25916:11;25913:37;;;25930:18;;:::i;:::-;25913:37;25763:194;;;;:::o;25963:435::-;26143:3;26165:95;26256:3;26247:6;26165:95;:::i;:::-;26158:102;;26277:95;26368:3;26359:6;26277:95;:::i;:::-;26270:102;;26389:3;26382:10;;25963:435;;;;;:::o;26404:175::-;26544:27;26540:1;26532:6;26528:14;26521:51;26404:175;:::o;26585:366::-;26727:3;26748:67;26812:2;26807:3;26748:67;:::i;:::-;26741:74;;26824:93;26913:3;26824:93;:::i;:::-;26942:2;26937:3;26933:12;26926:19;;26585:366;;;:::o;26957:419::-;27123:4;27161:2;27150:9;27146:18;27138:26;;27210:9;27204:4;27200:20;27196:1;27185:9;27181:17;27174:47;27238:131;27364:4;27238:131;:::i;:::-;27230:139;;26957:419;;;:::o;27382:173::-;27522:25;27518:1;27510:6;27506:14;27499:49;27382:173;:::o;27561:366::-;27703:3;27724:67;27788:2;27783:3;27724:67;:::i;:::-;27717:74;;27800:93;27889:3;27800:93;:::i;:::-;27918:2;27913:3;27909:12;27902:19;;27561:366;;;:::o;27933:419::-;28099:4;28137:2;28126:9;28122:18;28114:26;;28186:9;28180:4;28176:20;28172:1;28161:9;28157:17;28150:47;28214:131;28340:4;28214:131;:::i;:::-;28206:139;;27933:419;;;:::o;28358:423::-;28499:4;28537:2;28526:9;28522:18;28514:26;;28550:71;28618:1;28607:9;28603:17;28594:6;28550:71;:::i;:::-;28668:9;28662:4;28658:20;28653:2;28642:9;28638:18;28631:48;28696:78;28769:4;28760:6;28696:78;:::i;:::-;28688:86;;28358:423;;;;;:::o;28787:410::-;28827:7;28850:20;28868:1;28850:20;:::i;:::-;28845:25;;28884:20;28902:1;28884:20;:::i;:::-;28879:25;;28939:1;28936;28932:9;28961:30;28979:11;28961:30;:::i;:::-;28950:41;;29140:1;29131:7;29127:15;29124:1;29121:22;29101:1;29094:9;29074:83;29051:139;;29170:18;;:::i;:::-;29051:139;28835:362;28787:410;;;;:::o;29203:164::-;29343:16;29339:1;29331:6;29327:14;29320:40;29203:164;:::o;29373:366::-;29515:3;29536:67;29600:2;29595:3;29536:67;:::i;:::-;29529:74;;29612:93;29701:3;29612:93;:::i;:::-;29730:2;29725:3;29721:12;29714:19;;29373:366;;;:::o;29745:419::-;29911:4;29949:2;29938:9;29934:18;29926:26;;29998:9;29992:4;29988:20;29984:1;29973:9;29969:17;29962:47;30026:131;30152:4;30026:131;:::i;:::-;30018:139;;29745:419;;;:::o;30170:170::-;30310:22;30306:1;30298:6;30294:14;30287:46;30170:170;:::o;30346:366::-;30488:3;30509:67;30573:2;30568:3;30509:67;:::i;:::-;30502:74;;30585:93;30674:3;30585:93;:::i;:::-;30703:2;30698:3;30694:12;30687:19;;30346:366;;;:::o;30718:419::-;30884:4;30922:2;30911:9;30907:18;30899:26;;30971:9;30965:4;30961:20;30957:1;30946:9;30942:17;30935:47;30999:131;31125:4;30999:131;:::i;:::-;30991:139;;30718:419;;;:::o;31143:98::-;31194:6;31228:5;31222:12;31212:22;;31143:98;;;:::o;31247:168::-;31330:11;31364:6;31359:3;31352:19;31404:4;31399:3;31395:14;31380:29;;31247:168;;;;:::o;31421:373::-;31507:3;31535:38;31567:5;31535:38;:::i;:::-;31589:70;31652:6;31647:3;31589:70;:::i;:::-;31582:77;;31668:65;31726:6;31721:3;31714:4;31707:5;31703:16;31668:65;:::i;:::-;31758:29;31780:6;31758:29;:::i;:::-;31753:3;31749:39;31742:46;;31511:283;31421:373;;;;:::o;31800:640::-;31995:4;32033:3;32022:9;32018:19;32010:27;;32047:71;32115:1;32104:9;32100:17;32091:6;32047:71;:::i;:::-;32128:72;32196:2;32185:9;32181:18;32172:6;32128:72;:::i;:::-;32210;32278:2;32267:9;32263:18;32254:6;32210:72;:::i;:::-;32329:9;32323:4;32319:20;32314:2;32303:9;32299:18;32292:48;32357:76;32428:4;32419:6;32357:76;:::i;:::-;32349:84;;31800:640;;;;;;;:::o;32446:141::-;32502:5;32533:6;32527:13;32518:22;;32549:32;32575:5;32549:32;:::i;:::-;32446:141;;;;:::o;32593:349::-;32662:6;32711:2;32699:9;32690:7;32686:23;32682:32;32679:119;;;32717:79;;:::i;:::-;32679:119;32837:1;32862:63;32917:7;32908:6;32897:9;32893:22;32862:63;:::i;:::-;32852:73;;32808:127;32593:349;;;;:::o;32948:180::-;32996:77;32993:1;32986:88;33093:4;33090:1;33083:15;33117:4;33114:1;33107:15;33134:141;33183:4;33206:3;33198:11;;33229:3;33226:1;33219:14;33263:4;33260:1;33250:18;33242:26;;33134:141;;;:::o;33281:93::-;33318:6;33365:2;33360;33353:5;33349:14;33345:23;33335:33;;33281:93;;;:::o;33380:107::-;33424:8;33474:5;33468:4;33464:16;33443:37;;33380:107;;;;:::o;33493:393::-;33562:6;33612:1;33600:10;33596:18;33635:97;33665:66;33654:9;33635:97;:::i;:::-;33753:39;33783:8;33772:9;33753:39;:::i;:::-;33741:51;;33825:4;33821:9;33814:5;33810:21;33801:30;;33874:4;33864:8;33860:19;33853:5;33850:30;33840:40;;33569:317;;33493:393;;;;;:::o;33892:60::-;33920:3;33941:5;33934:12;;33892:60;;;:::o;33958:142::-;34008:9;34041:53;34059:34;34068:24;34086:5;34068:24;:::i;:::-;34059:34;:::i;:::-;34041:53;:::i;:::-;34028:66;;33958:142;;;:::o;34106:75::-;34149:3;34170:5;34163:12;;34106:75;;;:::o;34187:269::-;34297:39;34328:7;34297:39;:::i;:::-;34358:91;34407:41;34431:16;34407:41;:::i;:::-;34399:6;34392:4;34386:11;34358:91;:::i;:::-;34352:4;34345:105;34263:193;34187:269;;;:::o;34462:73::-;34507:3;34462:73;:::o;34541:189::-;34618:32;;:::i;:::-;34659:65;34717:6;34709;34703:4;34659:65;:::i;:::-;34594:136;34541:189;;:::o;34736:186::-;34796:120;34813:3;34806:5;34803:14;34796:120;;;34867:39;34904:1;34897:5;34867:39;:::i;:::-;34840:1;34833:5;34829:13;34820:22;;34796:120;;;34736:186;;:::o;34928:543::-;35029:2;35024:3;35021:11;35018:446;;;35063:38;35095:5;35063:38;:::i;:::-;35147:29;35165:10;35147:29;:::i;:::-;35137:8;35133:44;35330:2;35318:10;35315:18;35312:49;;;35351:8;35336:23;;35312:49;35374:80;35430:22;35448:3;35430:22;:::i;:::-;35420:8;35416:37;35403:11;35374:80;:::i;:::-;35033:431;;35018:446;34928:543;;;:::o;35477:117::-;35531:8;35581:5;35575:4;35571:16;35550:37;;35477:117;;;;:::o;35600:169::-;35644:6;35677:51;35725:1;35721:6;35713:5;35710:1;35706:13;35677:51;:::i;:::-;35673:56;35758:4;35752;35748:15;35738:25;;35651:118;35600:169;;;;:::o;35774:295::-;35850:4;35996:29;36021:3;36015:4;35996:29;:::i;:::-;35988:37;;36058:3;36055:1;36051:11;36045:4;36042:21;36034:29;;35774:295;;;;:::o;36074:1395::-;36191:37;36224:3;36191:37;:::i;:::-;36293:18;36285:6;36282:30;36279:56;;;36315:18;;:::i;:::-;36279:56;36359:38;36391:4;36385:11;36359:38;:::i;:::-;36444:67;36504:6;36496;36490:4;36444:67;:::i;:::-;36538:1;36562:4;36549:17;;36594:2;36586:6;36583:14;36611:1;36606:618;;;;37268:1;37285:6;37282:77;;;37334:9;37329:3;37325:19;37319:26;37310:35;;37282:77;37385:67;37445:6;37438:5;37385:67;:::i;:::-;37379:4;37372:81;37241:222;36576:887;;36606:618;36658:4;36654:9;36646:6;36642:22;36692:37;36724:4;36692:37;:::i;:::-;36751:1;36765:208;36779:7;36776:1;36773:14;36765:208;;;36858:9;36853:3;36849:19;36843:26;36835:6;36828:42;36909:1;36901:6;36897:14;36887:24;;36956:2;36945:9;36941:18;36928:31;;36802:4;36799:1;36795:12;36790:17;;36765:208;;;37001:6;36992:7;36989:19;36986:179;;;37059:9;37054:3;37050:19;37044:26;37102:48;37144:4;37136:6;37132:17;37121:9;37102:48;:::i;:::-;37094:6;37087:64;37009:156;36986:179;37211:1;37207;37199:6;37195:14;37191:22;37185:4;37178:36;36613:611;;;36576:887;;36166:1303;;;36074:1395;;:::o;37475:180::-;37523:77;37520:1;37513:88;37620:4;37617:1;37610:15;37644:4;37641:1;37634:15
Swarm Source
ipfs://06d789adec820de031aaa2767075ce6d88c547cc0dc73cce13cc63950248a915
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.