Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 184 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 18405782 | 433 days ago | IN | 0 ETH | 0.00031126 | ||||
Transfer From | 17520432 | 558 days ago | IN | 0 ETH | 0.00078732 | ||||
Set Approval For... | 17045022 | 625 days ago | IN | 0 ETH | 0.0013088 | ||||
Safe Transfer Fr... | 16621386 | 684 days ago | IN | 0 ETH | 0.00175737 | ||||
Safe Transfer Fr... | 16576761 | 690 days ago | IN | 0 ETH | 0.00096129 | ||||
Safe Transfer Fr... | 16576605 | 690 days ago | IN | 0 ETH | 0.00157977 | ||||
Safe Transfer Fr... | 16570178 | 691 days ago | IN | 0 ETH | 0.00137568 | ||||
Withdraw | 16554126 | 694 days ago | IN | 0 ETH | 0.00076715 | ||||
Usual Mint | 16548151 | 694 days ago | IN | 0.025 ETH | 0.00118838 | ||||
Usual Mint | 16547965 | 694 days ago | IN | 0.025 ETH | 0.00061956 | ||||
Usual Mint | 16545241 | 695 days ago | IN | 0.025 ETH | 0.00186144 | ||||
Withdraw | 16541809 | 695 days ago | IN | 0 ETH | 0.00090234 | ||||
Usual Mint | 16539225 | 696 days ago | IN | 0.025 ETH | 0.00155813 | ||||
Usual Mint | 16537090 | 696 days ago | IN | 0.025 ETH | 0.00282465 | ||||
Set Approval For... | 16536927 | 696 days ago | IN | 0 ETH | 0.00195448 | ||||
Usual Mint | 16534372 | 696 days ago | IN | 0.025 ETH | 0.00159548 | ||||
Usual Mint | 16532137 | 697 days ago | IN | 0.025 ETH | 0.001382 | ||||
Set Approval For... | 16531107 | 697 days ago | IN | 0 ETH | 0.00085226 | ||||
Usual Mint | 16527558 | 697 days ago | IN | 0.025 ETH | 0.00219582 | ||||
Withdraw | 16527316 | 697 days ago | IN | 0 ETH | 0.00184939 | ||||
Usual Mint | 16526617 | 697 days ago | IN | 0.025 ETH | 0.00124963 | ||||
Regular Pass Min... | 16526186 | 698 days ago | IN | 0.025 ETH | 0.0012215 | ||||
Regular Pass Min... | 16526172 | 698 days ago | IN | 0.025 ETH | 0.00185982 | ||||
Regular Pass Min... | 16526164 | 698 days ago | IN | 0.025 ETH | 0.00118231 | ||||
Regular Pass Min... | 16526008 | 698 days ago | IN | 0.025 ETH | 0.00163908 |
Loading...
Loading
Contract Name:
ZoomanTicketPass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-25 */ // SPDX-License-Identifier: MIT // Sources flattened with hardhat v2.12.5 https://hardhat.org // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/token/common/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Royalty.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment * information. * * Royalty information can be specified globally for all token ids via {ERC2981-_setDefaultRoyalty}, and/or individually for * specific token ids via {ERC2981-_setTokenRoyalty}. The latter takes precedence over the first. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC721Royalty is ERC2981, ERC721 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } } // File contracts/ticketaddresslisttemp.sol pragma solidity ^0.8.6; contract ticketaddresslist is AccessControl { bytes32 TICKET_ROLE = keccak256('TICKET_ROLE'); mapping(address => bool) premiumPassAcceptAddress; mapping(address => uint256) regularPassAcceptAddress; mapping(address => bool) premiumPassUsed; mapping(address => uint256) regularPassUsedAmount; uint256 premiumPassAccessAmount; uint256 regularPassAccessAmount; uint256 premiumPassMaxAmount = 10; uint256 regularPassMaxAmount = 190; constructor() { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setRoleAdmin(TICKET_ROLE, DEFAULT_ADMIN_ROLE); } function addPremiumPass(address to) public onlyRole(DEFAULT_ADMIN_ROLE) { require(premiumPassAcceptAddress[to] == false); require(premiumPassAccessAmount < premiumPassMaxAmount); premiumPassAcceptAddress[to] = true; premiumPassAccessAmount++; } function addRegularPass(address to, uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) { require(regularPassAcceptAddress[to] == 0); require((regularPassAccessAmount + amount) <= regularPassMaxAmount); regularPassAcceptAddress[to] = amount; regularPassAccessAmount + amount; } function changeRegularPassAmount(address to, uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) { require(regularPassAcceptAddress[to] != 0); require((regularPassAccessAmount - regularPassAcceptAddress[to] + amount) <= regularPassMaxAmount); regularPassAcceptAddress[to] = amount; regularPassAccessAmount = regularPassAccessAmount - regularPassAcceptAddress[to] + amount; } function revokePremiumPass(address to) public onlyRole(DEFAULT_ADMIN_ROLE) { require(premiumPassAcceptAddress[to] == true); premiumPassAcceptAddress[to] == false; premiumPassAccessAmount--; } function revokeRegularPassAmount(address to) public onlyRole(DEFAULT_ADMIN_ROLE) { require(regularPassAcceptAddress[to] != 0); regularPassAccessAmount -= regularPassAcceptAddress[to]; regularPassAcceptAddress[to] == 0; } function usePremiumPass(address to) public onlyRole(TICKET_ROLE) { premiumPassUsed[to] = true; } function useRegularPass(address to) public onlyRole(TICKET_ROLE) { regularPassUsedAmount[to] ++; } function premiumPassAcceptCheck(address to) public view returns(bool) { if(premiumPassUsed[to] == true) { return false; } else if(premiumPassAcceptAddress[to] == true) { return true; } else { return false; } } function premiumPassUseCheck(address to) public view returns(bool) { return premiumPassUsed[to]; } function regularPassAceeptCheck(address to) public view returns(uint256) { return regularPassAcceptAddress[to] - regularPassUsedAmount[to]; } } // File contracts/ticket.sol pragma solidity ^0.8.6; contract ZoomanTicketPass is ERC721Royalty, AccessControl { using Strings for uint256; bytes32 CHANGE_ROLE = keccak256('CHANGE_ROLE'); // 10枚がプレミアムパス、残り190枚が通常のパス constructor() ERC721("Zoo-manTicket", "ZMT") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setRoleAdmin(CHANGE_ROLE, DEFAULT_ADMIN_ROLE); _setDefaultRoyalty(0xEbC1E578eFE8aDEdC3d397fbb7DC25dD902b1748, 1000); _safeMint(0x6279a308D1919b62646dd65c14754e706E8d59AF, regularPassCounter++); _safeMint(0xc061e8516e3a49c88ffd783DBF73f6327583AEDC, regularPassCounter++); for (uint8 i = 0; i < 5; i++){ _safeMint(0xEbC1E578eFE8aDEdC3d397fbb7DC25dD902b1748, regularPassCounter++); } } string baseURI = "https://zoo-man.com/nftmetadata/pass/json/"; uint16 premiumPassCounter; uint16 regularPassCounter = 10; uint16 premiumPassMaxAmount = 10; uint16 totalPassMaxAmount = 200; uint256 reservationMintFinishTime = 1675162800; uint256 usualMintFinishTime = 1675422000; uint256 private premiumSalePrice = 0.05 ether; uint256 private regularSalePrice = 0.025 ether; address listAddress = 0xb8Ac436f196B4f8AE9B37A66aad3f055e8E9830B; function setURI(string memory uri) public onlyRole(DEFAULT_ADMIN_ROLE) { baseURI = uri; } function setListAddress(address contractaddress) public onlyRole(DEFAULT_ADMIN_ROLE) { listAddress = contractaddress; } function changeFeeRoyalty(uint96 fee, address receiver) public onlyRole(DEFAULT_ADMIN_ROLE) { _setDefaultRoyalty(receiver, fee); } function changeFinishTime(uint256 resevation, uint256 usual) public onlyRole(DEFAULT_ADMIN_ROLE) { reservationMintFinishTime = resevation; usualMintFinishTime = usual; } function premiumPassMint() public payable { require(premiumPassCounter < premiumPassMaxAmount); require(block.timestamp < reservationMintFinishTime); require(msg.value >= premiumSalePrice); require(ticketaddresslist(listAddress).premiumPassAcceptCheck(msg.sender) == true); _safeMint(msg.sender, premiumPassCounter++); ticketaddresslist(listAddress).usePremiumPass(msg.sender); } function regularPassMint() public payable { require(regularPassCounter < totalPassMaxAmount); require(block.timestamp < reservationMintFinishTime); require(msg.value >= regularSalePrice); require(ticketaddresslist(listAddress).regularPassAceeptCheck(msg.sender) >= 1); _safeMint(msg.sender, regularPassCounter++); ticketaddresslist(listAddress).useRegularPass(msg.sender); } function usualMint() public payable { require(regularPassCounter < totalPassMaxAmount); require(block.timestamp > reservationMintFinishTime); require(block.timestamp < usualMintFinishTime); require(msg.value >= regularSalePrice); _safeMint(msg.sender, regularPassCounter++); } function premiumPassOwnerMint() public onlyRole(DEFAULT_ADMIN_ROLE) { require(premiumPassCounter < premiumPassMaxAmount); require(block.timestamp > usualMintFinishTime); for(uint256 i = premiumPassCounter; i < premiumPassMaxAmount; i++) { _safeMint(msg.sender, premiumPassCounter++); } } function regularPassOwnerMint() public onlyRole(DEFAULT_ADMIN_ROLE) { require(regularPassCounter < totalPassMaxAmount); require(block.timestamp > usualMintFinishTime); for(uint256 i = regularPassCounter; i < totalPassMaxAmount; i++) { _safeMint(msg.sender, regularPassCounter++); } } function withdraw() external onlyRole(DEFAULT_ADMIN_ROLE) { payable(msg.sender).transfer(address(this).balance); } function checkReservationMintTime() public view returns(bool) { if(block.timestamp < reservationMintFinishTime) { return true; } else { return false; } } function checkUsualMintTime() public view returns(bool) { if(block.timestamp >= reservationMintFinishTime && block.timestamp < usualMintFinishTime) { return true; } else { return false; } } function tokenURI(uint256 tokenId) public view override returns(string memory) { return getURI(tokenId); } function getURI(uint256 tokenId) public view returns(string memory) { return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Royalty, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint96","name":"fee","type":"uint96"},{"internalType":"address","name":"receiver","type":"address"}],"name":"changeFeeRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"resevation","type":"uint256"},{"internalType":"uint256","name":"usual","type":"uint256"}],"name":"changeFinishTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkReservationMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkUsualMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"premiumPassOwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"regularPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"regularPassOwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractaddress","type":"address"}],"name":"setListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"usualMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527f5ef52737852c52d2211e81450fc3850cd8f44f8344ad3b406fdca6ea6d0bac7e6009556040518060600160405280602a815260200162005ad7602a9139600a90805190602001906200005992919062000daa565b50600a600b60026101000a81548161ffff021916908361ffff160217905550600a600b60046101000a81548161ffff021916908361ffff16021790555060c8600b60066101000a81548161ffff021916908361ffff1602179055506363d8f4b0600c556363dce930600d5566b1a2bc2ec50000600e556658d15e17628000600f5573b8ac436f196b4f8ae9b37a66aad3f055e8e9830b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013c57600080fd5b506040518060400160405280600d81526020017f5a6f6f2d6d616e5469636b6574000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a4d5400000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001c192919062000daa565b508060039080519060200190620001da92919062000daa565b505050620001f26000801b336200038d60201b60201c565b620002096009546000801b620003a360201b60201c565b6200023173ebc1e578efe8adedc3d397fbb7dc25dd902b17486103e86200040760201b60201c565b62000296736279a308d1919b62646dd65c14754e706e8d59af600b600281819054906101000a900461ffff16809291906200026c906200127d565b91906101000a81548161ffff021916908361ffff16021790555061ffff16620005aa60201b60201c565b620002fb73c061e8516e3a49c88ffd783dbf73f6327583aedc600b600281819054906101000a900461ffff1680929190620002d1906200127d565b91906101000a81548161ffff021916908361ffff16021790555061ffff16620005aa60201b60201c565b60005b60058160ff16101562000386576200037073ebc1e578efe8adedc3d397fbb7dc25dd902b1748600b600281819054906101000a900461ffff168092919062000346906200127d565b91906101000a81548161ffff021916908361ffff16021790555061ffff16620005aa60201b60201c565b80806200037d90620012ad565b915050620002fe565b5062001483565b6200039f8282620005d060201b60201c565b5050565b6000620003b683620006c260201b60201c565b90508160086000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b62000417620006e260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000478576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046f9062001083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e290620010a5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b620005cc828260405180602001604052806000815250620006ec60201b60201c565b5050565b620005e282826200075a60201b60201c565b620006be5760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000663620007c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600060086000838152602001908152602001600020600101549050919050565b6000612710905090565b620006fe8383620007cd60201b60201c565b62000713600084848462000a1460201b60201c565b62000755576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074c906200101d565b60405180910390fd5b505050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000840576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008379062001061565b60405180910390fd5b620008518162000bce60201b60201c565b1562000894576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088b906200103f565b60405180910390fd5b620008aa60008383600162000c1760201b60201c565b620008bb8162000bce60201b60201c565b15620008fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f5906200103f565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000a1060008383600162000d4460201b60201c565b5050565b600062000a428473ffffffffffffffffffffffffffffffffffffffff1662000d4a60201b620017e71760201c565b1562000bc1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a74620007c560201b60201c565b8786866040518563ffffffff1660e01b815260040162000a98949392919062000fc9565b602060405180830381600087803b15801562000ab357600080fd5b505af192505050801562000ae757506040513d601f19601f8201168201806040525081019062000ae4919062000e71565b60015b62000b70573d806000811462000b1a576040519150601f19603f3d011682016040523d82523d6000602084013e62000b1f565b606091505b5060008151141562000b68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b5f906200101d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000bc6565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff1662000bf88362000d6d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600181111562000d3e57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000caf5780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ca7919062001151565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000d3d5780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000d359190620010f4565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b82805462000db89062001247565b90600052602060002090601f01602090048101928262000ddc576000855562000e28565b82601f1062000df757805160ff191683800117855562000e28565b8280016001018555821562000e28579182015b8281111562000e2757825182559160200191906001019062000e0a565b5b50905062000e37919062000e3b565b5090565b5b8082111562000e5657600081600090555060010162000e3c565b5090565b60008151905062000e6b8162001469565b92915050565b60006020828403121562000e8a5762000e896200133a565b5b600062000e9a8482850162000e5a565b91505092915050565b62000eae816200118c565b82525050565b600062000ec182620010c7565b62000ecd8185620010d2565b935062000edf81856020860162001211565b62000eea816200133f565b840191505092915050565b600062000f04603283620010e3565b915062000f118262001350565b604082019050919050565b600062000f2b601c83620010e3565b915062000f38826200139f565b602082019050919050565b600062000f52602083620010e3565b915062000f5f82620013c8565b602082019050919050565b600062000f79602a83620010e3565b915062000f8682620013f1565b604082019050919050565b600062000fa0601983620010e3565b915062000fad8262001440565b602082019050919050565b62000fc381620011fa565b82525050565b600060808201905062000fe0600083018762000ea3565b62000fef602083018662000ea3565b62000ffe604083018562000fb8565b818103606083015262001012818462000eb4565b905095945050505050565b60006020820190508181036000830152620010388162000ef5565b9050919050565b600060208201905081810360008301526200105a8162000f1c565b9050919050565b600060208201905081810360008301526200107c8162000f43565b9050919050565b600060208201905081810360008301526200109e8162000f6a565b9050919050565b60006020820190508181036000830152620010c08162000f91565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200110182620011fa565b91506200110e83620011fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011465762001145620012dc565b5b828201905092915050565b60006200115e82620011fa565b91506200116b83620011fa565b925082821015620011815762001180620012dc565b5b828203905092915050565b60006200119982620011da565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156200123157808201518184015260208101905062001214565b8381111562001241576000848401525b50505050565b600060028204905060018216806200126057607f821691505b602082108114156200127757620012766200130b565b5b50919050565b60006200128a82620011cc565b915061ffff821415620012a257620012a1620012dc565b5b600182019050919050565b6000620012ba8262001204565b915060ff821415620012d157620012d0620012dc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6200147481620011a0565b81146200148057600080fd5b50565b61464480620014936000396000f3fe6080604052600436106101ee5760003560e01c8063454bc50c1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106a6578063ccd03fe0146106e3578063d547741f146106ed578063e932c9c114610716578063e985e9c51461073f576101ee565b8063a22cb46514610621578063a326f6dc1461064a578063b88d4fde14610673578063baf19e131461069c576101ee565b806391d14854116100dc57806391d148541461057757806395d89b41146105b45780639cdbc47d146105df578063a217fddf146105f6576101ee565b8063454bc50c146104bd5780636352211e146104e657806370a0823114610523578063799baffe14610560576101ee565b8063248a9ca31161018557806332cb418c1161015457806332cb418c1461042957806336568abe146104545780633ccfd60b1461047d57806342842e0e14610494576101ee565b8063248a9ca31461035a5780632a55205a146103975780632bd717af146103d55780632f2ff15d14610400576101ee565b8063095ea7b3116101c1578063095ea7b3146102c15780630a57739f146102ea5780631aa347dc146102f457806323b872dd14610331576101ee565b806301ffc9a7146101f357806302fe53051461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133c4565b61077c565b6040516102279190613a0e565b60405180910390f35b34801561023c57600080fd5b506102576004803603810190610252919061341e565b61078e565b005b34801561026557600080fd5b5061026e6107b6565b60405161027b9190613a44565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613467565b610848565b6040516102b8919061397e565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906132ea565b61088e565b005b6102f26109a6565b005b34801561030057600080fd5b5061031b60048036038101906103169190613467565b610b85565b6040516103289190613a44565b60405180910390f35b34801561033d57600080fd5b50610358600480360381019061035391906131d4565b610bb9565b005b34801561036657600080fd5b50610381600480360381019061037c9190613357565b610c19565b60405161038e9190613a29565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906134c1565b610c39565b6040516103cc9291906139e5565b60405180910390f35b3480156103e157600080fd5b506103ea610e24565b6040516103f79190613a0e565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613384565b610e41565b005b34801561043557600080fd5b5061043e610e62565b60405161044b9190613a0e565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190613384565b610e8d565b005b34801561048957600080fd5b50610492610f10565b005b3480156104a057600080fd5b506104bb60048036038101906104b691906131d4565b610f67565b005b3480156104c957600080fd5b506104e460048036038101906104df91906134c1565b610f87565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613467565b610fa7565b60405161051a919061397e565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613167565b61102e565b6040516105579190613c46565b60405180910390f35b34801561056c57600080fd5b506105756110e6565b005b34801561058357600080fd5b5061059e60048036038101906105999190613384565b6111c9565b6040516105ab9190613a0e565b60405180910390f35b3480156105c057600080fd5b506105c9611234565b6040516105d69190613a44565b60405180910390f35b3480156105eb57600080fd5b506105f46112c6565b005b34801561060257600080fd5b5061060b6113a9565b6040516106189190613a29565b60405180910390f35b34801561062d57600080fd5b50610648600480360381019061064391906132aa565b6113b0565b005b34801561065657600080fd5b50610671600480360381019061066c9190613167565b6113c6565b005b34801561067f57600080fd5b5061069a60048036038101906106959190613227565b611418565b005b6106a461147a565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613467565b61165c565b6040516106da9190613a44565b60405180910390f35b6106eb61166e565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613384565b611716565b005b34801561072257600080fd5b5061073d60048036038101906107389190613501565b611737565b005b34801561074b57600080fd5b5061076660048036038101906107619190613194565b611753565b6040516107739190613a0e565b60405180910390f35b60006107878261180a565b9050919050565b6000801b61079b81611884565b81600a90805190602001906107b1929190612f27565b505050565b6060600280546107c590613f65565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190613f65565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085382611898565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089982610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613ba6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109296118e3565b73ffffffffffffffffffffffffffffffffffffffff1614806109585750610957816109526118e3565b611753565b5b610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90613bc6565b60405180910390fd5b6109a183836118eb565b505050565b600b60069054906101000a900461ffff1661ffff16600b60029054906101000a900461ffff1661ffff16106109da57600080fd5b600c5442106109e857600080fd5b600f543410156109f757600080fd5b6001601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166389f0553b336040518263ffffffff1660e01b8152600401610a54919061397e565b60206040518083038186803b158015610a6c57600080fd5b505afa158015610a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa49190613494565b1015610aaf57600080fd5b610af633600b600281819054906101000a900461ffff1680929190610ad390613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636657c65c336040518263ffffffff1660e01b8152600401610b51919061397e565b600060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b50505050565b6060600a610b92836119c2565b604051602001610ba3929190613915565b6040516020818303038152906040529050919050565b610bca610bc46118e3565b82611a9a565b610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613a86565b60405180910390fd5b610c14838383611b2f565b505050565b600060086000838152602001908152602001600020600101549050919050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610dcf5760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610dd9611e29565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e059190613dc7565b610e0f9190613d96565b90508160000151819350935050509250929050565b6000600c54421015610e395760019050610e3e565b600090505b90565b610e4a82610c19565b610e5381611884565b610e5d8383611e33565b505050565b6000600c544210158015610e775750600d5442105b15610e855760019050610e8a565b600090505b90565b610e956118e3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990613c26565b60405180910390fd5b610f0c8282611f14565b5050565b6000801b610f1d81611884565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f63573d6000803e3d6000fd5b5050565b610f8283838360405180602001604052806000815250611418565b505050565b6000801b610f9481611884565b82600c8190555081600d81905550505050565b600080610fb383611ff6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613b86565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690613b46565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b6110f381611884565b600b60069054906101000a900461ffff1661ffff16600b60029054906101000a900461ffff1661ffff161061112757600080fd5b600d54421161113557600080fd5b6000600b60029054906101000a900461ffff1661ffff1690505b600b60069054906101000a900461ffff1661ffff168110156111c5576111b233600b600281819054906101000a900461ffff168092919061118f90613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b80806111bd90613ff3565b91505061114f565b5050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606003805461124390613f65565b80601f016020809104026020016040519081016040528092919081815260200182805461126f90613f65565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b6000801b6112d381611884565b600b60049054906101000a900461ffff1661ffff16600b60009054906101000a900461ffff1661ffff161061130757600080fd5b600d54421161131557600080fd5b6000600b60009054906101000a900461ffff1661ffff1690505b600b60049054906101000a900461ffff1661ffff168110156113a55761139233600b600081819054906101000a900461ffff168092919061136f90613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b808061139d90613ff3565b91505061132f565b5050565b6000801b81565b6113c26113bb6118e3565b8383612033565b5050565b6000801b6113d381611884565b81601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6114296114236118e3565b83611a9a565b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90613a86565b60405180910390fd5b611474848484846121a0565b50505050565b600b60049054906101000a900461ffff1661ffff16600b60009054906101000a900461ffff1661ffff16106114ae57600080fd5b600c5442106114bc57600080fd5b600e543410156114cb57600080fd5b60011515601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8f14aec336040518263ffffffff1660e01b815260040161152a919061397e565b60206040518083038186803b15801561154257600080fd5b505afa158015611556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157a919061332a565b15151461158657600080fd5b6115cd33600b600081819054906101000a900461ffff16809291906115aa90613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f4e9b783336040518263ffffffff1660e01b8152600401611628919061397e565b600060405180830381600087803b15801561164257600080fd5b505af1158015611656573d6000803e3d6000fd5b50505050565b606061166782610b85565b9050919050565b600b60069054906101000a900461ffff1661ffff16600b60029054906101000a900461ffff1661ffff16106116a257600080fd5b600c5442116116b057600080fd5b600d5442106116be57600080fd5b600f543410156116cd57600080fd5b61171433600b600281819054906101000a900461ffff16809291906116f190613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b565b61171f82610c19565b61172881611884565b6117328383611f14565b505050565b6000801b61174481611884565b61174e82846121fc565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061187d575061187c82612391565b5b9050919050565b611895816118906118e3565b6123a3565b50565b6118a181612428565b6118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613b86565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661195e83610fa7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119be828260405180602001604052806000815250612469565b5050565b6060600060016119d1846124c4565b01905060008167ffffffffffffffff8111156119f0576119ef6140f8565b5b6040519080825280601f01601f191660200182016040528015611a225781602001600182028036833780820191505090505b509050600082602001820190505b600115611a8f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611a7957611a7861406b565b5b0494506000851415611a8a57611a8f565b611a30565b819350505050919050565b600080611aa683610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ae85750611ae78185611753565b5b80611b2657508373ffffffffffffffffffffffffffffffffffffffff16611b0e84610848565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4f82610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90613ac6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90613b06565b60405180910390fd5b611c228383836001612617565b8273ffffffffffffffffffffffffffffffffffffffff16611c4282610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613ac6565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e24838383600161273d565b505050565b6000612710905090565b611e3d82826111c9565b611f105760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611eb56118e3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611f1e82826111c9565b15611ff25760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f976118e3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990613b26565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121939190613a0e565b60405180910390a3505050565b6121ab848484611b2f565b6121b784848484612743565b6121f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ed90613aa6565b60405180910390fd5b50505050565b612204611e29565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990613be6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613c06565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600061239c826128da565b9050919050565b6123ad82826111c9565b612424576123ba816129bc565b6123c88360001c60206129e9565b6040516020016123d9929190613944565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b9190613a44565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff1661244a83611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6124738383612c25565b6124806000848484612743565b6124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b690613aa6565b60405180910390fd5b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612522577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816125185761251761406b565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061255f576d04ee2d6d415b85acef810000000083816125555761255461406b565b5b0492506020810190505b662386f26fc10000831061258e57662386f26fc1000083816125845761258361406b565b5b0492506010810190505b6305f5e10083106125b7576305f5e10083816125ad576125ac61406b565b5b0492506008810190505b61271083106125dc5761271083816125d2576125d161406b565b5b0492506004810190505b606483106125ff57606483816125f5576125f461406b565b5b0492506002810190505b600a831061260e576001810190505b80915050919050565b600181111561273757600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126ab5780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a39190613e21565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127365780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272e9190613d40565b925050819055505b5b50505050565b50505050565b60006127648473ffffffffffffffffffffffffffffffffffffffff166117e7565b156128cd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261278d6118e3565b8786866040518563ffffffff1660e01b81526004016127af9493929190613999565b602060405180830381600087803b1580156127c957600080fd5b505af19250505080156127fa57506040513d601f19601f820116820180604052508101906127f791906133f1565b60015b61287d573d806000811461282a576040519150601f19603f3d011682016040523d82523d6000602084013e61282f565b606091505b50600081511415612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90613aa6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128d2565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129a557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129b557506129b482612e43565b5b9050919050565b60606129e28273ffffffffffffffffffffffffffffffffffffffff16601460ff166129e9565b9050919050565b6060600060028360026129fc9190613dc7565b612a069190613d40565b67ffffffffffffffff811115612a1f57612a1e6140f8565b5b6040519080825280601f01601f191660200182016040528015612a515781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612a8957612a886140c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612aed57612aec6140c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612b2d9190613dc7565b612b379190613d40565b90505b6001811115612bd7577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612b7957612b786140c9565b5b1a60f81b828281518110612b9057612b8f6140c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612bd090613f3b565b9050612b3a565b5060008414612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290613a66565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90613b66565b60405180910390fd5b612c9e81612428565b15612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590613ae6565b60405180910390fd5b612cec600083836001612617565b612cf581612428565b15612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90613ae6565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3f60008383600161273d565b5050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612eb65750612eb582612ebd565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612f3390613f65565b90600052602060002090601f016020900481019282612f555760008555612f9c565b82601f10612f6e57805160ff1916838001178555612f9c565b82800160010185558215612f9c579182015b82811115612f9b578251825591602001919060010190612f80565b5b509050612fa99190612fad565b5090565b5b80821115612fc6576000816000905550600101612fae565b5090565b6000612fdd612fd884613c86565b613c61565b905082815260208101848484011115612ff957612ff861412c565b5b613004848285613ef9565b509392505050565b600061301f61301a84613cb7565b613c61565b90508281526020810184848401111561303b5761303a61412c565b5b613046848285613ef9565b509392505050565b60008135905061305d81614584565b92915050565b6000813590506130728161459b565b92915050565b6000815190506130878161459b565b92915050565b60008135905061309c816145b2565b92915050565b6000813590506130b1816145c9565b92915050565b6000815190506130c6816145c9565b92915050565b600082601f8301126130e1576130e0614127565b5b81356130f1848260208601612fca565b91505092915050565b600082601f83011261310f5761310e614127565b5b813561311f84826020860161300c565b91505092915050565b600081359050613137816145e0565b92915050565b60008151905061314c816145e0565b92915050565b600081359050613161816145f7565b92915050565b60006020828403121561317d5761317c614136565b5b600061318b8482850161304e565b91505092915050565b600080604083850312156131ab576131aa614136565b5b60006131b98582860161304e565b92505060206131ca8582860161304e565b9150509250929050565b6000806000606084860312156131ed576131ec614136565b5b60006131fb8682870161304e565b935050602061320c8682870161304e565b925050604061321d86828701613128565b9150509250925092565b6000806000806080858703121561324157613240614136565b5b600061324f8782880161304e565b94505060206132608782880161304e565b935050604061327187828801613128565b925050606085013567ffffffffffffffff81111561329257613291614131565b5b61329e878288016130cc565b91505092959194509250565b600080604083850312156132c1576132c0614136565b5b60006132cf8582860161304e565b92505060206132e085828601613063565b9150509250929050565b6000806040838503121561330157613300614136565b5b600061330f8582860161304e565b925050602061332085828601613128565b9150509250929050565b6000602082840312156133405761333f614136565b5b600061334e84828501613078565b91505092915050565b60006020828403121561336d5761336c614136565b5b600061337b8482850161308d565b91505092915050565b6000806040838503121561339b5761339a614136565b5b60006133a98582860161308d565b92505060206133ba8582860161304e565b9150509250929050565b6000602082840312156133da576133d9614136565b5b60006133e8848285016130a2565b91505092915050565b60006020828403121561340757613406614136565b5b6000613415848285016130b7565b91505092915050565b60006020828403121561343457613433614136565b5b600082013567ffffffffffffffff81111561345257613451614131565b5b61345e848285016130fa565b91505092915050565b60006020828403121561347d5761347c614136565b5b600061348b84828501613128565b91505092915050565b6000602082840312156134aa576134a9614136565b5b60006134b88482850161313d565b91505092915050565b600080604083850312156134d8576134d7614136565b5b60006134e685828601613128565b92505060206134f785828601613128565b9150509250929050565b6000806040838503121561351857613517614136565b5b600061352685828601613152565b92505060206135378582860161304e565b9150509250929050565b61354a81613e55565b82525050565b61355981613e67565b82525050565b61356881613e73565b82525050565b600061357982613cfd565b6135838185613d13565b9350613593818560208601613f08565b61359c8161413b565b840191505092915050565b60006135b282613d08565b6135bc8185613d24565b93506135cc818560208601613f08565b6135d58161413b565b840191505092915050565b60006135eb82613d08565b6135f58185613d35565b9350613605818560208601613f08565b80840191505092915050565b6000815461361e81613f65565b6136288186613d35565b94506001821660008114613643576001811461365457613687565b60ff19831686528186019350613687565b61365d85613ce8565b60005b8381101561367f57815481890152600182019150602081019050613660565b838801955050505b50505092915050565b600061369d602083613d24565b91506136a88261414c565b602082019050919050565b60006136c0602d83613d24565b91506136cb82614175565b604082019050919050565b60006136e3603283613d24565b91506136ee826141c4565b604082019050919050565b6000613706602583613d24565b915061371182614213565b604082019050919050565b6000613729601c83613d24565b915061373482614262565b602082019050919050565b600061374c602483613d24565b91506137578261428b565b604082019050919050565b600061376f601983613d24565b915061377a826142da565b602082019050919050565b6000613792602983613d24565b915061379d82614303565b604082019050919050565b60006137b5602083613d24565b91506137c082614352565b602082019050919050565b60006137d8600583613d35565b91506137e38261437b565b600582019050919050565b60006137fb601883613d24565b9150613806826143a4565b602082019050919050565b600061381e602183613d24565b9150613829826143cd565b604082019050919050565b6000613841603d83613d24565b915061384c8261441c565b604082019050919050565b6000613864601783613d35565b915061386f8261446b565b601782019050919050565b6000613887602a83613d24565b915061389282614494565b604082019050919050565b60006138aa601983613d24565b91506138b5826144e3565b602082019050919050565b60006138cd601183613d35565b91506138d88261450c565b601182019050919050565b60006138f0602f83613d24565b91506138fb82614535565b604082019050919050565b61390f81613ed7565b82525050565b60006139218285613611565b915061392d82846135e0565b9150613938826137cb565b91508190509392505050565b600061394f82613857565b915061395b82856135e0565b9150613966826138c0565b915061397282846135e0565b91508190509392505050565b60006020820190506139936000830184613541565b92915050565b60006080820190506139ae6000830187613541565b6139bb6020830186613541565b6139c86040830185613906565b81810360608301526139da818461356e565b905095945050505050565b60006040820190506139fa6000830185613541565b613a076020830184613906565b9392505050565b6000602082019050613a236000830184613550565b92915050565b6000602082019050613a3e600083018461355f565b92915050565b60006020820190508181036000830152613a5e81846135a7565b905092915050565b60006020820190508181036000830152613a7f81613690565b9050919050565b60006020820190508181036000830152613a9f816136b3565b9050919050565b60006020820190508181036000830152613abf816136d6565b9050919050565b60006020820190508181036000830152613adf816136f9565b9050919050565b60006020820190508181036000830152613aff8161371c565b9050919050565b60006020820190508181036000830152613b1f8161373f565b9050919050565b60006020820190508181036000830152613b3f81613762565b9050919050565b60006020820190508181036000830152613b5f81613785565b9050919050565b60006020820190508181036000830152613b7f816137a8565b9050919050565b60006020820190508181036000830152613b9f816137ee565b9050919050565b60006020820190508181036000830152613bbf81613811565b9050919050565b60006020820190508181036000830152613bdf81613834565b9050919050565b60006020820190508181036000830152613bff8161387a565b9050919050565b60006020820190508181036000830152613c1f8161389d565b9050919050565b60006020820190508181036000830152613c3f816138e3565b9050919050565b6000602082019050613c5b6000830184613906565b92915050565b6000613c6b613c7c565b9050613c778282613f97565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca157613ca06140f8565b5b613caa8261413b565b9050602081019050919050565b600067ffffffffffffffff821115613cd257613cd16140f8565b5b613cdb8261413b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4b82613ed7565b9150613d5683613ed7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8b57613d8a61403c565b5b828201905092915050565b6000613da182613ed7565b9150613dac83613ed7565b925082613dbc57613dbb61406b565b5b828204905092915050565b6000613dd282613ed7565b9150613ddd83613ed7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1657613e1561403c565b5b828202905092915050565b6000613e2c82613ed7565b9150613e3783613ed7565b925082821015613e4a57613e4961403c565b5b828203905092915050565b6000613e6082613eb7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613f26578082015181840152602081019050613f0b565b83811115613f35576000848401525b50505050565b6000613f4682613ed7565b91506000821415613f5a57613f5961403c565b5b600182039050919050565b60006002820490506001821680613f7d57607f821691505b60208210811415613f9157613f9061409a565b5b50919050565b613fa08261413b565b810181811067ffffffffffffffff82111715613fbf57613fbe6140f8565b5b80604052505050565b6000613fd382613ea9565b915061ffff821415613fe857613fe761403c565b5b600182019050919050565b6000613ffe82613ed7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140315761403061403c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61458d81613e55565b811461459857600080fd5b50565b6145a481613e67565b81146145af57600080fd5b50565b6145bb81613e73565b81146145c657600080fd5b50565b6145d281613e7d565b81146145dd57600080fd5b50565b6145e981613ed7565b81146145f457600080fd5b50565b61460081613ee1565b811461460b57600080fd5b5056fea2646970667358221220967a1a13666c9795b7893f9848a7d9aa12fda828b55d93627c62b7ce4c14fca264736f6c6343000807003368747470733a2f2f7a6f6f2d6d616e2e636f6d2f6e66746d657461646174612f706173732f6a736f6e2f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063454bc50c1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106a6578063ccd03fe0146106e3578063d547741f146106ed578063e932c9c114610716578063e985e9c51461073f576101ee565b8063a22cb46514610621578063a326f6dc1461064a578063b88d4fde14610673578063baf19e131461069c576101ee565b806391d14854116100dc57806391d148541461057757806395d89b41146105b45780639cdbc47d146105df578063a217fddf146105f6576101ee565b8063454bc50c146104bd5780636352211e146104e657806370a0823114610523578063799baffe14610560576101ee565b8063248a9ca31161018557806332cb418c1161015457806332cb418c1461042957806336568abe146104545780633ccfd60b1461047d57806342842e0e14610494576101ee565b8063248a9ca31461035a5780632a55205a146103975780632bd717af146103d55780632f2ff15d14610400576101ee565b8063095ea7b3116101c1578063095ea7b3146102c15780630a57739f146102ea5780631aa347dc146102f457806323b872dd14610331576101ee565b806301ffc9a7146101f357806302fe53051461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906133c4565b61077c565b6040516102279190613a0e565b60405180910390f35b34801561023c57600080fd5b506102576004803603810190610252919061341e565b61078e565b005b34801561026557600080fd5b5061026e6107b6565b60405161027b9190613a44565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613467565b610848565b6040516102b8919061397e565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906132ea565b61088e565b005b6102f26109a6565b005b34801561030057600080fd5b5061031b60048036038101906103169190613467565b610b85565b6040516103289190613a44565b60405180910390f35b34801561033d57600080fd5b50610358600480360381019061035391906131d4565b610bb9565b005b34801561036657600080fd5b50610381600480360381019061037c9190613357565b610c19565b60405161038e9190613a29565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906134c1565b610c39565b6040516103cc9291906139e5565b60405180910390f35b3480156103e157600080fd5b506103ea610e24565b6040516103f79190613a0e565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613384565b610e41565b005b34801561043557600080fd5b5061043e610e62565b60405161044b9190613a0e565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190613384565b610e8d565b005b34801561048957600080fd5b50610492610f10565b005b3480156104a057600080fd5b506104bb60048036038101906104b691906131d4565b610f67565b005b3480156104c957600080fd5b506104e460048036038101906104df91906134c1565b610f87565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613467565b610fa7565b60405161051a919061397e565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613167565b61102e565b6040516105579190613c46565b60405180910390f35b34801561056c57600080fd5b506105756110e6565b005b34801561058357600080fd5b5061059e60048036038101906105999190613384565b6111c9565b6040516105ab9190613a0e565b60405180910390f35b3480156105c057600080fd5b506105c9611234565b6040516105d69190613a44565b60405180910390f35b3480156105eb57600080fd5b506105f46112c6565b005b34801561060257600080fd5b5061060b6113a9565b6040516106189190613a29565b60405180910390f35b34801561062d57600080fd5b50610648600480360381019061064391906132aa565b6113b0565b005b34801561065657600080fd5b50610671600480360381019061066c9190613167565b6113c6565b005b34801561067f57600080fd5b5061069a60048036038101906106959190613227565b611418565b005b6106a461147a565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613467565b61165c565b6040516106da9190613a44565b60405180910390f35b6106eb61166e565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613384565b611716565b005b34801561072257600080fd5b5061073d60048036038101906107389190613501565b611737565b005b34801561074b57600080fd5b5061076660048036038101906107619190613194565b611753565b6040516107739190613a0e565b60405180910390f35b60006107878261180a565b9050919050565b6000801b61079b81611884565b81600a90805190602001906107b1929190612f27565b505050565b6060600280546107c590613f65565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190613f65565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085382611898565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089982610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613ba6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109296118e3565b73ffffffffffffffffffffffffffffffffffffffff1614806109585750610957816109526118e3565b611753565b5b610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90613bc6565b60405180910390fd5b6109a183836118eb565b505050565b600b60069054906101000a900461ffff1661ffff16600b60029054906101000a900461ffff1661ffff16106109da57600080fd5b600c5442106109e857600080fd5b600f543410156109f757600080fd5b6001601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166389f0553b336040518263ffffffff1660e01b8152600401610a54919061397e565b60206040518083038186803b158015610a6c57600080fd5b505afa158015610a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa49190613494565b1015610aaf57600080fd5b610af633600b600281819054906101000a900461ffff1680929190610ad390613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636657c65c336040518263ffffffff1660e01b8152600401610b51919061397e565b600060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b50505050565b6060600a610b92836119c2565b604051602001610ba3929190613915565b6040516020818303038152906040529050919050565b610bca610bc46118e3565b82611a9a565b610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613a86565b60405180910390fd5b610c14838383611b2f565b505050565b600060086000838152602001908152602001600020600101549050919050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610dcf5760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610dd9611e29565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e059190613dc7565b610e0f9190613d96565b90508160000151819350935050509250929050565b6000600c54421015610e395760019050610e3e565b600090505b90565b610e4a82610c19565b610e5381611884565b610e5d8383611e33565b505050565b6000600c544210158015610e775750600d5442105b15610e855760019050610e8a565b600090505b90565b610e956118e3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990613c26565b60405180910390fd5b610f0c8282611f14565b5050565b6000801b610f1d81611884565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f63573d6000803e3d6000fd5b5050565b610f8283838360405180602001604052806000815250611418565b505050565b6000801b610f9481611884565b82600c8190555081600d81905550505050565b600080610fb383611ff6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613b86565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690613b46565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b6110f381611884565b600b60069054906101000a900461ffff1661ffff16600b60029054906101000a900461ffff1661ffff161061112757600080fd5b600d54421161113557600080fd5b6000600b60029054906101000a900461ffff1661ffff1690505b600b60069054906101000a900461ffff1661ffff168110156111c5576111b233600b600281819054906101000a900461ffff168092919061118f90613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b80806111bd90613ff3565b91505061114f565b5050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606003805461124390613f65565b80601f016020809104026020016040519081016040528092919081815260200182805461126f90613f65565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b6000801b6112d381611884565b600b60049054906101000a900461ffff1661ffff16600b60009054906101000a900461ffff1661ffff161061130757600080fd5b600d54421161131557600080fd5b6000600b60009054906101000a900461ffff1661ffff1690505b600b60049054906101000a900461ffff1661ffff168110156113a55761139233600b600081819054906101000a900461ffff168092919061136f90613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b808061139d90613ff3565b91505061132f565b5050565b6000801b81565b6113c26113bb6118e3565b8383612033565b5050565b6000801b6113d381611884565b81601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6114296114236118e3565b83611a9a565b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90613a86565b60405180910390fd5b611474848484846121a0565b50505050565b600b60049054906101000a900461ffff1661ffff16600b60009054906101000a900461ffff1661ffff16106114ae57600080fd5b600c5442106114bc57600080fd5b600e543410156114cb57600080fd5b60011515601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8f14aec336040518263ffffffff1660e01b815260040161152a919061397e565b60206040518083038186803b15801561154257600080fd5b505afa158015611556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157a919061332a565b15151461158657600080fd5b6115cd33600b600081819054906101000a900461ffff16809291906115aa90613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f4e9b783336040518263ffffffff1660e01b8152600401611628919061397e565b600060405180830381600087803b15801561164257600080fd5b505af1158015611656573d6000803e3d6000fd5b50505050565b606061166782610b85565b9050919050565b600b60069054906101000a900461ffff1661ffff16600b60029054906101000a900461ffff1661ffff16106116a257600080fd5b600c5442116116b057600080fd5b600d5442106116be57600080fd5b600f543410156116cd57600080fd5b61171433600b600281819054906101000a900461ffff16809291906116f190613fc8565b91906101000a81548161ffff021916908361ffff16021790555061ffff166119a4565b565b61171f82610c19565b61172881611884565b6117328383611f14565b505050565b6000801b61174481611884565b61174e82846121fc565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061187d575061187c82612391565b5b9050919050565b611895816118906118e3565b6123a3565b50565b6118a181612428565b6118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613b86565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661195e83610fa7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119be828260405180602001604052806000815250612469565b5050565b6060600060016119d1846124c4565b01905060008167ffffffffffffffff8111156119f0576119ef6140f8565b5b6040519080825280601f01601f191660200182016040528015611a225781602001600182028036833780820191505090505b509050600082602001820190505b600115611a8f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611a7957611a7861406b565b5b0494506000851415611a8a57611a8f565b611a30565b819350505050919050565b600080611aa683610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ae85750611ae78185611753565b5b80611b2657508373ffffffffffffffffffffffffffffffffffffffff16611b0e84610848565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4f82610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c90613ac6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90613b06565b60405180910390fd5b611c228383836001612617565b8273ffffffffffffffffffffffffffffffffffffffff16611c4282610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613ac6565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e24838383600161273d565b505050565b6000612710905090565b611e3d82826111c9565b611f105760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611eb56118e3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611f1e82826111c9565b15611ff25760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f976118e3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990613b26565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121939190613a0e565b60405180910390a3505050565b6121ab848484611b2f565b6121b784848484612743565b6121f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ed90613aa6565b60405180910390fd5b50505050565b612204611e29565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990613be6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613c06565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600061239c826128da565b9050919050565b6123ad82826111c9565b612424576123ba816129bc565b6123c88360001c60206129e9565b6040516020016123d9929190613944565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b9190613a44565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff1661244a83611ff6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6124738383612c25565b6124806000848484612743565b6124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b690613aa6565b60405180910390fd5b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612522577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816125185761251761406b565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061255f576d04ee2d6d415b85acef810000000083816125555761255461406b565b5b0492506020810190505b662386f26fc10000831061258e57662386f26fc1000083816125845761258361406b565b5b0492506010810190505b6305f5e10083106125b7576305f5e10083816125ad576125ac61406b565b5b0492506008810190505b61271083106125dc5761271083816125d2576125d161406b565b5b0492506004810190505b606483106125ff57606483816125f5576125f461406b565b5b0492506002810190505b600a831061260e576001810190505b80915050919050565b600181111561273757600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126ab5780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a39190613e21565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127365780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272e9190613d40565b925050819055505b5b50505050565b50505050565b60006127648473ffffffffffffffffffffffffffffffffffffffff166117e7565b156128cd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261278d6118e3565b8786866040518563ffffffff1660e01b81526004016127af9493929190613999565b602060405180830381600087803b1580156127c957600080fd5b505af19250505080156127fa57506040513d601f19601f820116820180604052508101906127f791906133f1565b60015b61287d573d806000811461282a576040519150601f19603f3d011682016040523d82523d6000602084013e61282f565b606091505b50600081511415612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90613aa6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128d2565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129a557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129b557506129b482612e43565b5b9050919050565b60606129e28273ffffffffffffffffffffffffffffffffffffffff16601460ff166129e9565b9050919050565b6060600060028360026129fc9190613dc7565b612a069190613d40565b67ffffffffffffffff811115612a1f57612a1e6140f8565b5b6040519080825280601f01601f191660200182016040528015612a515781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612a8957612a886140c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612aed57612aec6140c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612b2d9190613dc7565b612b379190613d40565b90505b6001811115612bd7577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612b7957612b786140c9565b5b1a60f81b828281518110612b9057612b8f6140c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612bd090613f3b565b9050612b3a565b5060008414612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290613a66565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90613b66565b60405180910390fd5b612c9e81612428565b15612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590613ae6565b60405180910390fd5b612cec600083836001612617565b612cf581612428565b15612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90613ae6565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3f60008383600161273d565b5050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612eb65750612eb582612ebd565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612f3390613f65565b90600052602060002090601f016020900481019282612f555760008555612f9c565b82601f10612f6e57805160ff1916838001178555612f9c565b82800160010185558215612f9c579182015b82811115612f9b578251825591602001919060010190612f80565b5b509050612fa99190612fad565b5090565b5b80821115612fc6576000816000905550600101612fae565b5090565b6000612fdd612fd884613c86565b613c61565b905082815260208101848484011115612ff957612ff861412c565b5b613004848285613ef9565b509392505050565b600061301f61301a84613cb7565b613c61565b90508281526020810184848401111561303b5761303a61412c565b5b613046848285613ef9565b509392505050565b60008135905061305d81614584565b92915050565b6000813590506130728161459b565b92915050565b6000815190506130878161459b565b92915050565b60008135905061309c816145b2565b92915050565b6000813590506130b1816145c9565b92915050565b6000815190506130c6816145c9565b92915050565b600082601f8301126130e1576130e0614127565b5b81356130f1848260208601612fca565b91505092915050565b600082601f83011261310f5761310e614127565b5b813561311f84826020860161300c565b91505092915050565b600081359050613137816145e0565b92915050565b60008151905061314c816145e0565b92915050565b600081359050613161816145f7565b92915050565b60006020828403121561317d5761317c614136565b5b600061318b8482850161304e565b91505092915050565b600080604083850312156131ab576131aa614136565b5b60006131b98582860161304e565b92505060206131ca8582860161304e565b9150509250929050565b6000806000606084860312156131ed576131ec614136565b5b60006131fb8682870161304e565b935050602061320c8682870161304e565b925050604061321d86828701613128565b9150509250925092565b6000806000806080858703121561324157613240614136565b5b600061324f8782880161304e565b94505060206132608782880161304e565b935050604061327187828801613128565b925050606085013567ffffffffffffffff81111561329257613291614131565b5b61329e878288016130cc565b91505092959194509250565b600080604083850312156132c1576132c0614136565b5b60006132cf8582860161304e565b92505060206132e085828601613063565b9150509250929050565b6000806040838503121561330157613300614136565b5b600061330f8582860161304e565b925050602061332085828601613128565b9150509250929050565b6000602082840312156133405761333f614136565b5b600061334e84828501613078565b91505092915050565b60006020828403121561336d5761336c614136565b5b600061337b8482850161308d565b91505092915050565b6000806040838503121561339b5761339a614136565b5b60006133a98582860161308d565b92505060206133ba8582860161304e565b9150509250929050565b6000602082840312156133da576133d9614136565b5b60006133e8848285016130a2565b91505092915050565b60006020828403121561340757613406614136565b5b6000613415848285016130b7565b91505092915050565b60006020828403121561343457613433614136565b5b600082013567ffffffffffffffff81111561345257613451614131565b5b61345e848285016130fa565b91505092915050565b60006020828403121561347d5761347c614136565b5b600061348b84828501613128565b91505092915050565b6000602082840312156134aa576134a9614136565b5b60006134b88482850161313d565b91505092915050565b600080604083850312156134d8576134d7614136565b5b60006134e685828601613128565b92505060206134f785828601613128565b9150509250929050565b6000806040838503121561351857613517614136565b5b600061352685828601613152565b92505060206135378582860161304e565b9150509250929050565b61354a81613e55565b82525050565b61355981613e67565b82525050565b61356881613e73565b82525050565b600061357982613cfd565b6135838185613d13565b9350613593818560208601613f08565b61359c8161413b565b840191505092915050565b60006135b282613d08565b6135bc8185613d24565b93506135cc818560208601613f08565b6135d58161413b565b840191505092915050565b60006135eb82613d08565b6135f58185613d35565b9350613605818560208601613f08565b80840191505092915050565b6000815461361e81613f65565b6136288186613d35565b94506001821660008114613643576001811461365457613687565b60ff19831686528186019350613687565b61365d85613ce8565b60005b8381101561367f57815481890152600182019150602081019050613660565b838801955050505b50505092915050565b600061369d602083613d24565b91506136a88261414c565b602082019050919050565b60006136c0602d83613d24565b91506136cb82614175565b604082019050919050565b60006136e3603283613d24565b91506136ee826141c4565b604082019050919050565b6000613706602583613d24565b915061371182614213565b604082019050919050565b6000613729601c83613d24565b915061373482614262565b602082019050919050565b600061374c602483613d24565b91506137578261428b565b604082019050919050565b600061376f601983613d24565b915061377a826142da565b602082019050919050565b6000613792602983613d24565b915061379d82614303565b604082019050919050565b60006137b5602083613d24565b91506137c082614352565b602082019050919050565b60006137d8600583613d35565b91506137e38261437b565b600582019050919050565b60006137fb601883613d24565b9150613806826143a4565b602082019050919050565b600061381e602183613d24565b9150613829826143cd565b604082019050919050565b6000613841603d83613d24565b915061384c8261441c565b604082019050919050565b6000613864601783613d35565b915061386f8261446b565b601782019050919050565b6000613887602a83613d24565b915061389282614494565b604082019050919050565b60006138aa601983613d24565b91506138b5826144e3565b602082019050919050565b60006138cd601183613d35565b91506138d88261450c565b601182019050919050565b60006138f0602f83613d24565b91506138fb82614535565b604082019050919050565b61390f81613ed7565b82525050565b60006139218285613611565b915061392d82846135e0565b9150613938826137cb565b91508190509392505050565b600061394f82613857565b915061395b82856135e0565b9150613966826138c0565b915061397282846135e0565b91508190509392505050565b60006020820190506139936000830184613541565b92915050565b60006080820190506139ae6000830187613541565b6139bb6020830186613541565b6139c86040830185613906565b81810360608301526139da818461356e565b905095945050505050565b60006040820190506139fa6000830185613541565b613a076020830184613906565b9392505050565b6000602082019050613a236000830184613550565b92915050565b6000602082019050613a3e600083018461355f565b92915050565b60006020820190508181036000830152613a5e81846135a7565b905092915050565b60006020820190508181036000830152613a7f81613690565b9050919050565b60006020820190508181036000830152613a9f816136b3565b9050919050565b60006020820190508181036000830152613abf816136d6565b9050919050565b60006020820190508181036000830152613adf816136f9565b9050919050565b60006020820190508181036000830152613aff8161371c565b9050919050565b60006020820190508181036000830152613b1f8161373f565b9050919050565b60006020820190508181036000830152613b3f81613762565b9050919050565b60006020820190508181036000830152613b5f81613785565b9050919050565b60006020820190508181036000830152613b7f816137a8565b9050919050565b60006020820190508181036000830152613b9f816137ee565b9050919050565b60006020820190508181036000830152613bbf81613811565b9050919050565b60006020820190508181036000830152613bdf81613834565b9050919050565b60006020820190508181036000830152613bff8161387a565b9050919050565b60006020820190508181036000830152613c1f8161389d565b9050919050565b60006020820190508181036000830152613c3f816138e3565b9050919050565b6000602082019050613c5b6000830184613906565b92915050565b6000613c6b613c7c565b9050613c778282613f97565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca157613ca06140f8565b5b613caa8261413b565b9050602081019050919050565b600067ffffffffffffffff821115613cd257613cd16140f8565b5b613cdb8261413b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4b82613ed7565b9150613d5683613ed7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8b57613d8a61403c565b5b828201905092915050565b6000613da182613ed7565b9150613dac83613ed7565b925082613dbc57613dbb61406b565b5b828204905092915050565b6000613dd282613ed7565b9150613ddd83613ed7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1657613e1561403c565b5b828202905092915050565b6000613e2c82613ed7565b9150613e3783613ed7565b925082821015613e4a57613e4961403c565b5b828203905092915050565b6000613e6082613eb7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613f26578082015181840152602081019050613f0b565b83811115613f35576000848401525b50505050565b6000613f4682613ed7565b91506000821415613f5a57613f5961403c565b5b600182039050919050565b60006002820490506001821680613f7d57607f821691505b60208210811415613f9157613f9061409a565b5b50919050565b613fa08261413b565b810181811067ffffffffffffffff82111715613fbf57613fbe6140f8565b5b80604052505050565b6000613fd382613ea9565b915061ffff821415613fe857613fe761403c565b5b600182019050919050565b6000613ffe82613ed7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140315761403061403c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61458d81613e55565b811461459857600080fd5b50565b6145a481613e67565b81146145af57600080fd5b50565b6145bb81613e73565b81146145c657600080fd5b50565b6145d281613e7d565b81146145dd57600080fd5b50565b6145e981613ed7565b81146145f457600080fd5b50565b61460081613ee1565b811461460b57600080fd5b5056fea2646970667358221220967a1a13666c9795b7893f9848a7d9aa12fda828b55d93627c62b7ce4c14fca264736f6c63430008070033
Deployed Bytecode Sourcemap
72874:5001:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77656:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74162:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53302:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54814:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54332:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75212:433;;;:::i;:::-;;77460:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55514:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25625:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32037:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;76817:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26066:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77036:247;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27210:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76681:128;;;;;;;;;;;;;:::i;:::-;;55920:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74566:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53012:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52743:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76336:337;;;;;;;;;;;;;:::i;:::-;;24098:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53471:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75987:341;;;;;;;;;;;;;:::i;:::-;;23203:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55057:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74273:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56176:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74766:438;;;:::i;:::-;;77291:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75653:326;;;:::i;:::-;;26506:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74414:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55283:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77656:216;77799:4;77828:36;77852:11;77828:23;:36::i;:::-;77821:43;;77656:216;;;:::o;74162:103::-;23248:4;74213:18;;23694:16;23705:4;23694:10;:16::i;:::-;74254:3:::1;74244:7;:13;;;;;;;;;;;;:::i;:::-;;74162:103:::0;;:::o;53302:100::-;53356:13;53389:5;53382:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53302:100;:::o;54814:171::-;54890:7;54910:23;54925:7;54910:14;:23::i;:::-;54953:15;:24;54969:7;54953:24;;;;;;;;;;;;;;;;;;;;;54946:31;;54814:171;;;:::o;54332:416::-;54413:13;54429:23;54444:7;54429:14;:23::i;:::-;54413:39;;54477:5;54471:11;;:2;:11;;;;54463:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54571:5;54555:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;54580:37;54597:5;54604:12;:10;:12::i;:::-;54580:16;:37::i;:::-;54555:62;54533:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;54719:21;54728:2;54732:7;54719:8;:21::i;:::-;54402:346;54332:416;;:::o;75212:433::-;75294:18;;;;;;;;;;;75273:39;;:18;;;;;;;;;;;:39;;;75265:48;;;;;;75350:25;;75332:15;:43;75324:52;;;;;;75408:16;;75395:9;:29;;75387:38;;;;;;75513:1;75462:11;;;;;;;;;;;75444:53;;;75498:10;75444:65;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:70;;75436:79;;;;;;75526:43;75536:10;75548:18;;:20;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75526:43;;:9;:43::i;:::-;75598:11;;;;;;;;;;;75580:45;;;75626:10;75580:57;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75212:433::o;77460:188::-;77540:13;77602:7;77611:18;:7;:16;:18::i;:::-;77585:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77571:69;;77460:188;;;:::o;55514:335::-;55709:41;55728:12;:10;:12::i;:::-;55742:7;55709:18;:41::i;:::-;55701:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;55813:28;55823:4;55829:2;55833:7;55813:9;:28::i;:::-;55514:335;;;:::o;25625:131::-;25699:7;25726:6;:12;25733:4;25726:12;;;;;;;;;;;:22;;;25719:29;;25625:131;;;:::o;32037:442::-;32134:7;32143;32163:26;32192:17;:27;32210:8;32192:27;;;;;;;;;;;32163:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32264:1;32236:30;;:7;:16;;;:30;;;32232:92;;;32293:19;32283:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32232:92;32336:21;32401:17;:15;:17::i;:::-;32360:58;;32374:7;:23;;;32361:36;;:10;:36;;;;:::i;:::-;32360:58;;;;:::i;:::-;32336:82;;32439:7;:16;;;32457:13;32431:40;;;;;;32037:442;;;;;:::o;76817:211::-;76873:4;76911:25;;76893:15;:43;76890:131;;;76960:4;76953:11;;;;76890:131;77004:5;76997:12;;76817:211;;:::o;26066:147::-;26149:18;26162:4;26149:12;:18::i;:::-;23694:16;23705:4;23694:10;:16::i;:::-;26180:25:::1;26191:4;26197:7;26180:10;:25::i;:::-;26066:147:::0;;;:::o;77036:247::-;77086:4;77125:25;;77106:15;:44;;:85;;;;;77172:19;;77154:15;:37;77106:85;77103:173;;;77215:4;77208:11;;;;77103:173;77259:5;77252:12;;77036:247;;:::o;27210:218::-;27317:12;:10;:12::i;:::-;27306:23;;:7;:23;;;27298:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;27394:26;27406:4;27412:7;27394:11;:26::i;:::-;27210:218;;:::o;76681:128::-;23248:4;76719:18;;23694:16;23705:4;23694:10;:16::i;:::-;76758:10:::1;76750:28;;:51;76779:21;76750:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;76681:128:::0;:::o;55920:185::-;56058:39;56075:4;56081:2;56085:7;56058:39;;;;;;;;;;;;:16;:39::i;:::-;55920:185;;;:::o;74566:192::-;23248:4;74643:18;;23694:16;23705:4;23694:10;:16::i;:::-;74702:10:::1;74674:25;:38;;;;74745:5;74723:19;:27;;;;74566:192:::0;;;:::o;53012:223::-;53084:7;53104:13;53120:17;53129:7;53120:8;:17::i;:::-;53104:33;;53173:1;53156:19;;:5;:19;;;;53148:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53222:5;53215:12;;;53012:223;;;:::o;52743:207::-;52815:7;52860:1;52843:19;;:5;:19;;;;52835:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52926:9;:16;52936:5;52926:16;;;;;;;;;;;;;;;;52919:23;;52743:207;;;:::o;76336:337::-;23248:4;76384:18;;23694:16;23705:4;23694:10;:16::i;:::-;76444:18:::1;;;;;;;;;;;76423:39;;:18;;;;;;;;;;;:39;;;76415:48;;;::::0;::::1;;76500:19;;76482:15;:37;76474:46;;;::::0;::::1;;76535:9;76547:18;;;;;;;;;;;76535:30;;;;76531:135;76571:18;;;;;;;;;;;76567:22;;:1;:22;76531:135;;;76611:43;76621:10;76633:18;;:20;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;76611:43;;:9;:43::i;:::-;76591:3;;;;;:::i;:::-;;;;76531:135;;;;76336:337:::0;:::o;24098:147::-;24184:4;24208:6;:12;24215:4;24208:12;;;;;;;;;;;:20;;:29;24229:7;24208:29;;;;;;;;;;;;;;;;;;;;;;;;;24201:36;;24098:147;;;;:::o;53471:104::-;53527:13;53560:7;53553:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53471:104;:::o;75987:341::-;23248:4;76035:18;;23694:16;23705:4;23694:10;:16::i;:::-;76095:20:::1;;;;;;;;;;;76074:41;;:18;;;;;;;;;;;:41;;;76066:50;;;::::0;::::1;;76153:19;;76135:15;:37;76127:46;;;::::0;::::1;;76188:9;76200:18;;;;;;;;;;;76188:30;;;;76184:137;76224:20;;;;;;;;;;;76220:24;;:1;:24;76184:137;;;76266:43;76276:10;76288:18;;:20;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;76266:43;;:9;:43::i;:::-;76246:3;;;;;:::i;:::-;;;;76184:137;;;;75987:341:::0;:::o;23203:49::-;23248:4;23203:49;;;:::o;55057:155::-;55152:52;55171:12;:10;:12::i;:::-;55185:8;55195;55152:18;:52::i;:::-;55057:155;;:::o;74273:133::-;23248:4;74338:18;;23694:16;23705:4;23694:10;:16::i;:::-;74383:15:::1;74369:11;;:29;;;;;;;;;;;;;;;;;;74273:133:::0;;:::o;56176:322::-;56350:41;56369:12;:10;:12::i;:::-;56383:7;56350:18;:41::i;:::-;56342:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;56452:38;56466:4;56472:2;56476:7;56485:4;56452:13;:38::i;:::-;56176:322;;;;:::o;74766:438::-;74848:20;;;;;;;;;;;74827:41;;:18;;;;;;;;;;;:41;;;74819:50;;;;;;74906:25;;74888:15;:43;74880:52;;;;;;74964:16;;74951:9;:29;;74943:38;;;;;;75069:4;75000:73;;75018:11;;;;;;;;;;;75000:53;;;75054:10;75000:65;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:73;;;74992:82;;;;;;75085:43;75095:10;75107:18;;:20;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75085:43;;:9;:43::i;:::-;75157:11;;;;;;;;;;;75139:45;;;75185:10;75139:57;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74766:438::o;77291:161::-;77391:13;77429:15;77436:7;77429:6;:15::i;:::-;77422:22;;77291:161;;;:::o;75653:326::-;75729:18;;;;;;;;;;;75708:39;;:18;;;;;;;;;;;:39;;;75700:48;;;;;;75785:25;;75767:15;:43;75759:52;;;;;;75848:19;;75830:15;:37;75822:46;;;;;;75900:16;;75887:9;:29;;75879:38;;;;;;75928:43;75938:10;75950:18;;:20;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75928:43;;:9;:43::i;:::-;75653:326::o;26506:149::-;26590:18;26603:4;26590:12;:18::i;:::-;23694:16;23705:4;23694:10;:16::i;:::-;26621:26:::1;26633:4;26639:7;26621:11;:26::i;:::-;26506:149:::0;;;:::o;74414:144::-;23248:4;74486:18;;23694:16;23705:4;23694:10;:16::i;:::-;74517:33:::1;74536:8;74546:3;74517:18;:33::i;:::-;74414:144:::0;;;:::o;55283:164::-;55380:4;55404:18;:25;55423:5;55404:25;;;;;;;;;;;;;;;:35;55430:8;55404:35;;;;;;;;;;;;;;;;;;;;;;;;;55397:42;;55283:164;;;;:::o;42766:326::-;42826:4;43083:1;43061:7;:19;;;:23;43054:30;;42766:326;;;:::o;23802:204::-;23887:4;23926:32;23911:47;;;:11;:47;;;;:87;;;;23962:36;23986:11;23962:23;:36::i;:::-;23911:87;23904:94;;23802:204;;;:::o;24549:105::-;24616:30;24627:4;24633:12;:10;:12::i;:::-;24616:10;:30::i;:::-;24549:105;:::o;64633:135::-;64715:16;64723:7;64715;:16::i;:::-;64707:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;64633:135;:::o;3832:98::-;3885:7;3912:10;3905:17;;3832:98;:::o;63912:174::-;64014:2;63987:15;:24;64003:7;63987:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64070:7;64066:2;64032:46;;64041:23;64056:7;64041:14;:23::i;:::-;64032:46;;;;;;;;;;;;63912:174;;:::o;59137:110::-;59213:26;59223:2;59227:7;59213:26;;;;;;;;;;;;:9;:26::i;:::-;59137:110;;:::o;19325:716::-;19381:13;19432:14;19469:1;19449:17;19460:5;19449:10;:17::i;:::-;:21;19432:38;;19485:20;19519:6;19508:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19485:41;;19541:11;19670:6;19666:2;19662:15;19654:6;19650:28;19643:35;;19707:288;19714:4;19707:288;;;19739:5;;;;;;;;19881:8;19876:2;19869:5;19865:14;19860:30;19855:3;19847:44;19937:2;19928:11;;;;;;:::i;:::-;;;;;19971:1;19962:5;:10;19958:21;;;19974:5;;19958:21;19707:288;;;20016:6;20009:13;;;;;19325:716;;;:::o;58531:264::-;58624:4;58641:13;58657:23;58672:7;58657:14;:23::i;:::-;58641:39;;58710:5;58699:16;;:7;:16;;;:52;;;;58719:32;58736:5;58743:7;58719:16;:32::i;:::-;58699:52;:87;;;;58779:7;58755:31;;:20;58767:7;58755:11;:20::i;:::-;:31;;;58699:87;58691:96;;;58531:264;;;;:::o;62530:1263::-;62689:4;62662:31;;:23;62677:7;62662:14;:23::i;:::-;:31;;;62654:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62768:1;62754:16;;:2;:16;;;;62746:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;62824:42;62845:4;62851:2;62855:7;62864:1;62824:20;:42::i;:::-;62996:4;62969:31;;:23;62984:7;62969:14;:23::i;:::-;:31;;;62961:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;63114:15;:24;63130:7;63114:24;;;;;;;;;;;;63107:31;;;;;;;;;;;63609:1;63590:9;:15;63600:4;63590:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;63642:1;63625:9;:13;63635:2;63625:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;63684:2;63665:7;:16;63673:7;63665:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;63723:7;63719:2;63704:27;;63713:4;63704:27;;;;;;;;;;;;63744:41;63764:4;63770:2;63774:7;63783:1;63744:19;:41::i;:::-;62530:1263;;;:::o;32761:97::-;32819:6;32845:5;32838:12;;32761:97;:::o;28807:238::-;28891:22;28899:4;28905:7;28891;:22::i;:::-;28886:152;;28962:4;28930:6;:12;28937:4;28930:12;;;;;;;;;;;:20;;:29;28951:7;28930:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;29013:12;:10;:12::i;:::-;28986:40;;29004:7;28986:40;;28998:4;28986:40;;;;;;;;;;28886:152;28807:238;;:::o;29225:239::-;29309:22;29317:4;29323:7;29309;:22::i;:::-;29305:152;;;29380:5;29348:6;:12;29355:4;29348:12;;;;;;;;;;;:20;;:29;29369:7;29348:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29432:12;:10;:12::i;:::-;29405:40;;29423:7;29405:40;;29417:4;29405:40;;;;;;;;;;29305:152;29225:239;;:::o;57806:117::-;57872:7;57899;:16;57907:7;57899:16;;;;;;;;;;;;;;;;;;;;;57892:23;;57806:117;;;:::o;64229:315::-;64384:8;64375:17;;:5;:17;;;;64367:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;64471:8;64433:18;:25;64452:5;64433:25;;;;;;;;;;;;;;;:35;64459:8;64433:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;64517:8;64495:41;;64510:5;64495:41;;;64527:8;64495:41;;;;;;:::i;:::-;;;;;;;;64229:315;;;:::o;57379:313::-;57535:28;57545:4;57551:2;57555:7;57535:9;:28::i;:::-;57582:47;57605:4;57611:2;57615:7;57624:4;57582:22;:47::i;:::-;57574:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;57379:313;;;;:::o;33129:332::-;33248:17;:15;:17::i;:::-;33232:33;;:12;:33;;;;33224:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;33351:1;33331:22;;:8;:22;;;;33323:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33418:35;;;;;;;;33430:8;33418:35;;;;;;33440:12;33418:35;;;;;33396:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33129:332;;:::o;69300:170::-;69402:4;69426:36;69450:11;69426:23;:36::i;:::-;69419:43;;69300:170;;;:::o;24944:492::-;25033:22;25041:4;25047:7;25033;:22::i;:::-;25028:401;;25221:28;25241:7;25221:19;:28::i;:::-;25322:38;25350:4;25342:13;;25357:2;25322:19;:38::i;:::-;25126:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25072:345;;;;;;;;;;;:::i;:::-;;;;;;;;25028:401;24944:492;;:::o;58236:128::-;58301:4;58354:1;58325:31;;:17;58334:7;58325:8;:17::i;:::-;:31;;;;58318:38;;58236:128;;;:::o;59474:319::-;59603:18;59609:2;59613:7;59603:5;:18::i;:::-;59654:53;59685:1;59689:2;59693:7;59702:4;59654:22;:53::i;:::-;59632:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;59474:319;;;:::o;16185:922::-;16238:7;16258:14;16275:1;16258:18;;16325:6;16316:5;:15;16312:102;;16361:6;16352:15;;;;;;:::i;:::-;;;;;16396:2;16386:12;;;;16312:102;16441:6;16432:5;:15;16428:102;;16477:6;16468:15;;;;;;:::i;:::-;;;;;16512:2;16502:12;;;;16428:102;16557:6;16548:5;:15;16544:102;;16593:6;16584:15;;;;;;:::i;:::-;;;;;16628:2;16618:12;;;;16544:102;16673:5;16664;:14;16660:99;;16708:5;16699:14;;;;;;:::i;:::-;;;;;16742:1;16732:11;;;;16660:99;16786:5;16777;:14;16773:99;;16821:5;16812:14;;;;;;:::i;:::-;;;;;16855:1;16845:11;;;;16773:99;16899:5;16890;:14;16886:99;;16934:5;16925:14;;;;;;:::i;:::-;;;;;16968:1;16958:11;;;;16886:99;17012:5;17003;:14;16999:66;;17048:1;17038:11;;;;16999:66;17093:6;17086:13;;;16185:922;;;:::o;66917:410::-;67107:1;67095:9;:13;67091:229;;;67145:1;67129:18;;:4;:18;;;67125:87;;67187:9;67168;:15;67178:4;67168:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;67125:87;67244:1;67230:16;;:2;:16;;;67226:83;;67284:9;67267;:13;67277:2;67267:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;67226:83;67091:229;66917:410;;;;:::o;68049:158::-;;;;;:::o;65332:853::-;65486:4;65507:15;:2;:13;;;:15::i;:::-;65503:675;;;65559:2;65543:36;;;65580:12;:10;:12::i;:::-;65594:4;65600:7;65609:4;65543:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;65539:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65801:1;65784:6;:13;:18;65780:328;;;65827:60;;;;;;;;;;:::i;:::-;;;;;;;;65780:328;66058:6;66052:13;66043:6;66039:2;66035:15;66028:38;65539:584;65675:41;;;65665:51;;;:6;:51;;;;65658:58;;;;;65503:675;66162:4;66155:11;;65332:853;;;;;;;:::o;52374:305::-;52476:4;52528:25;52513:40;;;:11;:40;;;;:105;;;;52585:33;52570:48;;;:11;:48;;;;52513:105;:158;;;;52635:36;52659:11;52635:23;:36::i;:::-;52513:158;52493:178;;52374:305;;;:::o;21061:151::-;21119:13;21152:52;21180:4;21164:22;;19216:2;21152:52;;:11;:52::i;:::-;21145:59;;21061:151;;;:::o;20457:447::-;20532:13;20558:19;20603:1;20594:6;20590:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20580:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20558:47;;20616:15;:6;20623:1;20616:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20642;:6;20649:1;20642:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20673:9;20698:1;20689:6;20685:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20673:26;;20668:131;20705:1;20701;:5;20668:131;;;20740:8;20757:3;20749:5;:11;20740:21;;;;;;;:::i;:::-;;;;;20728:6;20735:1;20728:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;20786:1;20776:11;;;;;20708:3;;;;:::i;:::-;;;20668:131;;;;20826:1;20817:5;:10;20809:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20889:6;20875:21;;;20457:447;;;;:::o;60129:942::-;60223:1;60209:16;;:2;:16;;;;60201:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;60282:16;60290:7;60282;:16::i;:::-;60281:17;60273:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60344:48;60373:1;60377:2;60381:7;60390:1;60344:20;:48::i;:::-;60491:16;60499:7;60491;:16::i;:::-;60490:17;60482:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60906:1;60889:9;:13;60899:2;60889:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;60950:2;60931:7;:16;60939:7;60931:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;60995:7;60991:2;60970:33;;60987:1;60970:33;;;;;;;;;;;;61016:47;61044:1;61048:2;61052:7;61061:1;61016:19;:47::i;:::-;60129:942;;:::o;31767:215::-;31869:4;31908:26;31893:41;;;:11;:41;;;;:81;;;;31938:36;31962:11;31938:23;:36::i;:::-;31893:81;31886:88;;31767:215;;;:::o;5842:157::-;5927:4;5966:25;5951:40;;;:11;:40;;;;5944:47;;5842:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:139::-;1314:5;1352:6;1339:20;1330:29;;1368:33;1395:5;1368:33;:::i;:::-;1268:139;;;;:::o;1413:137::-;1458:5;1496:6;1483:20;1474:29;;1512:32;1538:5;1512:32;:::i;:::-;1413:137;;;;:::o;1556:141::-;1612:5;1643:6;1637:13;1628:22;;1659:32;1685:5;1659:32;:::i;:::-;1556:141;;;;:::o;1716:338::-;1771:5;1820:3;1813:4;1805:6;1801:17;1797:27;1787:122;;1828:79;;:::i;:::-;1787:122;1945:6;1932:20;1970:78;2044:3;2036:6;2029:4;2021:6;2017:17;1970:78;:::i;:::-;1961:87;;1777:277;1716:338;;;;:::o;2074:340::-;2130:5;2179:3;2172:4;2164:6;2160:17;2156:27;2146:122;;2187:79;;:::i;:::-;2146:122;2304:6;2291:20;2329:79;2404:3;2396:6;2389:4;2381:6;2377:17;2329:79;:::i;:::-;2320:88;;2136:278;2074:340;;;;:::o;2420:139::-;2466:5;2504:6;2491:20;2482:29;;2520:33;2547:5;2520:33;:::i;:::-;2420:139;;;;:::o;2565:143::-;2622:5;2653:6;2647:13;2638:22;;2669:33;2696:5;2669:33;:::i;:::-;2565:143;;;;:::o;2714:137::-;2759:5;2797:6;2784:20;2775:29;;2813:32;2839:5;2813:32;:::i;:::-;2714:137;;;;:::o;2857:329::-;2916:6;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;2857:329;;;;:::o;3192:474::-;3260:6;3268;3317:2;3305:9;3296:7;3292:23;3288:32;3285:119;;;3323:79;;:::i;:::-;3285:119;3443:1;3468:53;3513:7;3504:6;3493:9;3489:22;3468:53;:::i;:::-;3458:63;;3414:117;3570:2;3596:53;3641:7;3632:6;3621:9;3617:22;3596:53;:::i;:::-;3586:63;;3541:118;3192:474;;;;;:::o;3672:619::-;3749:6;3757;3765;3814:2;3802:9;3793:7;3789:23;3785:32;3782:119;;;3820:79;;:::i;:::-;3782:119;3940:1;3965:53;4010:7;4001:6;3990:9;3986:22;3965:53;:::i;:::-;3955:63;;3911:117;4067:2;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4038:118;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;3672:619;;;;;:::o;4297:943::-;4392:6;4400;4408;4416;4465:3;4453:9;4444:7;4440:23;4436:33;4433:120;;;4472:79;;:::i;:::-;4433:120;4592:1;4617:53;4662:7;4653:6;4642:9;4638:22;4617:53;:::i;:::-;4607:63;;4563:117;4719:2;4745:53;4790:7;4781:6;4770:9;4766:22;4745:53;:::i;:::-;4735:63;;4690:118;4847:2;4873:53;4918:7;4909:6;4898:9;4894:22;4873:53;:::i;:::-;4863:63;;4818:118;5003:2;4992:9;4988:18;4975:32;5034:18;5026:6;5023:30;5020:117;;;5056:79;;:::i;:::-;5020:117;5161:62;5215:7;5206:6;5195:9;5191:22;5161:62;:::i;:::-;5151:72;;4946:287;4297:943;;;;;;;:::o;5246:468::-;5311:6;5319;5368:2;5356:9;5347:7;5343:23;5339:32;5336:119;;;5374:79;;:::i;:::-;5336:119;5494:1;5519:53;5564:7;5555:6;5544:9;5540:22;5519:53;:::i;:::-;5509:63;;5465:117;5621:2;5647:50;5689:7;5680:6;5669:9;5665:22;5647:50;:::i;:::-;5637:60;;5592:115;5246:468;;;;;:::o;5720:474::-;5788:6;5796;5845:2;5833:9;5824:7;5820:23;5816:32;5813:119;;;5851:79;;:::i;:::-;5813:119;5971:1;5996:53;6041:7;6032:6;6021:9;6017:22;5996:53;:::i;:::-;5986:63;;5942:117;6098:2;6124:53;6169:7;6160:6;6149:9;6145:22;6124:53;:::i;:::-;6114:63;;6069:118;5720:474;;;;;:::o;6200:345::-;6267:6;6316:2;6304:9;6295:7;6291:23;6287:32;6284:119;;;6322:79;;:::i;:::-;6284:119;6442:1;6467:61;6520:7;6511:6;6500:9;6496:22;6467:61;:::i;:::-;6457:71;;6413:125;6200:345;;;;:::o;6551:329::-;6610:6;6659:2;6647:9;6638:7;6634:23;6630:32;6627:119;;;6665:79;;:::i;:::-;6627:119;6785:1;6810:53;6855:7;6846:6;6835:9;6831:22;6810:53;:::i;:::-;6800:63;;6756:117;6551:329;;;;:::o;6886:474::-;6954:6;6962;7011:2;6999:9;6990:7;6986:23;6982:32;6979:119;;;7017:79;;:::i;:::-;6979:119;7137:1;7162:53;7207:7;7198:6;7187:9;7183:22;7162:53;:::i;:::-;7152:63;;7108:117;7264:2;7290:53;7335:7;7326:6;7315:9;7311:22;7290:53;:::i;:::-;7280:63;;7235:118;6886:474;;;;;:::o;7366:327::-;7424:6;7473:2;7461:9;7452:7;7448:23;7444:32;7441:119;;;7479:79;;:::i;:::-;7441:119;7599:1;7624:52;7668:7;7659:6;7648:9;7644:22;7624:52;:::i;:::-;7614:62;;7570:116;7366:327;;;;:::o;7699:349::-;7768:6;7817:2;7805:9;7796:7;7792:23;7788:32;7785:119;;;7823:79;;:::i;:::-;7785:119;7943:1;7968:63;8023:7;8014:6;8003:9;7999:22;7968:63;:::i;:::-;7958:73;;7914:127;7699:349;;;;:::o;8054:509::-;8123:6;8172:2;8160:9;8151:7;8147:23;8143:32;8140:119;;;8178:79;;:::i;:::-;8140:119;8326:1;8315:9;8311:17;8298:31;8356:18;8348:6;8345:30;8342:117;;;8378:79;;:::i;:::-;8342:117;8483:63;8538:7;8529:6;8518:9;8514:22;8483:63;:::i;:::-;8473:73;;8269:287;8054:509;;;;:::o;8569:329::-;8628:6;8677:2;8665:9;8656:7;8652:23;8648:32;8645:119;;;8683:79;;:::i;:::-;8645:119;8803:1;8828:53;8873:7;8864:6;8853:9;8849:22;8828:53;:::i;:::-;8818:63;;8774:117;8569:329;;;;:::o;8904:351::-;8974:6;9023:2;9011:9;9002:7;8998:23;8994:32;8991:119;;;9029:79;;:::i;:::-;8991:119;9149:1;9174:64;9230:7;9221:6;9210:9;9206:22;9174:64;:::i;:::-;9164:74;;9120:128;8904:351;;;;:::o;9261:474::-;9329:6;9337;9386:2;9374:9;9365:7;9361:23;9357:32;9354:119;;;9392:79;;:::i;:::-;9354:119;9512:1;9537:53;9582:7;9573:6;9562:9;9558:22;9537:53;:::i;:::-;9527:63;;9483:117;9639:2;9665:53;9710:7;9701:6;9690:9;9686:22;9665:53;:::i;:::-;9655:63;;9610:118;9261:474;;;;;:::o;9741:472::-;9808:6;9816;9865:2;9853:9;9844:7;9840:23;9836:32;9833:119;;;9871:79;;:::i;:::-;9833:119;9991:1;10016:52;10060:7;10051:6;10040:9;10036:22;10016:52;:::i;:::-;10006:62;;9962:116;10117:2;10143:53;10188:7;10179:6;10168:9;10164:22;10143:53;:::i;:::-;10133:63;;10088:118;9741:472;;;;;:::o;10219:118::-;10306:24;10324:5;10306:24;:::i;:::-;10301:3;10294:37;10219:118;;:::o;10343:109::-;10424:21;10439:5;10424:21;:::i;:::-;10419:3;10412:34;10343:109;;:::o;10458:118::-;10545:24;10563:5;10545:24;:::i;:::-;10540:3;10533:37;10458:118;;:::o;10582:360::-;10668:3;10696:38;10728:5;10696:38;:::i;:::-;10750:70;10813:6;10808:3;10750:70;:::i;:::-;10743:77;;10829:52;10874:6;10869:3;10862:4;10855:5;10851:16;10829:52;:::i;:::-;10906:29;10928:6;10906:29;:::i;:::-;10901:3;10897:39;10890:46;;10672:270;10582:360;;;;:::o;10948:364::-;11036:3;11064:39;11097:5;11064:39;:::i;:::-;11119:71;11183:6;11178:3;11119:71;:::i;:::-;11112:78;;11199:52;11244:6;11239:3;11232:4;11225:5;11221:16;11199:52;:::i;:::-;11276:29;11298:6;11276:29;:::i;:::-;11271:3;11267:39;11260:46;;11040:272;10948:364;;;;:::o;11318:377::-;11424:3;11452:39;11485:5;11452:39;:::i;:::-;11507:89;11589:6;11584:3;11507:89;:::i;:::-;11500:96;;11605:52;11650:6;11645:3;11638:4;11631:5;11627:16;11605:52;:::i;:::-;11682:6;11677:3;11673:16;11666:23;;11428:267;11318:377;;;;:::o;11725:845::-;11828:3;11865:5;11859:12;11894:36;11920:9;11894:36;:::i;:::-;11946:89;12028:6;12023:3;11946:89;:::i;:::-;11939:96;;12066:1;12055:9;12051:17;12082:1;12077:137;;;;12228:1;12223:341;;;;12044:520;;12077:137;12161:4;12157:9;12146;12142:25;12137:3;12130:38;12197:6;12192:3;12188:16;12181:23;;12077:137;;12223:341;12290:38;12322:5;12290:38;:::i;:::-;12350:1;12364:154;12378:6;12375:1;12372:13;12364:154;;;12452:7;12446:14;12442:1;12437:3;12433:11;12426:35;12502:1;12493:7;12489:15;12478:26;;12400:4;12397:1;12393:12;12388:17;;12364:154;;;12547:6;12542:3;12538:16;12531:23;;12230:334;;12044:520;;11832:738;;11725:845;;;;:::o;12576:366::-;12718:3;12739:67;12803:2;12798:3;12739:67;:::i;:::-;12732:74;;12815:93;12904:3;12815:93;:::i;:::-;12933:2;12928:3;12924:12;12917:19;;12576:366;;;:::o;12948:::-;13090:3;13111:67;13175:2;13170:3;13111:67;:::i;:::-;13104:74;;13187:93;13276:3;13187:93;:::i;:::-;13305:2;13300:3;13296:12;13289:19;;12948:366;;;:::o;13320:::-;13462:3;13483:67;13547:2;13542:3;13483:67;:::i;:::-;13476:74;;13559:93;13648:3;13559:93;:::i;:::-;13677:2;13672:3;13668:12;13661:19;;13320:366;;;:::o;13692:::-;13834:3;13855:67;13919:2;13914:3;13855:67;:::i;:::-;13848:74;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13692:366;;;:::o;14064:::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:::-;14578:3;14599:67;14663:2;14658:3;14599:67;:::i;:::-;14592:74;;14675:93;14764:3;14675:93;:::i;:::-;14793:2;14788:3;14784:12;14777:19;;14436:366;;;:::o;14808:::-;14950:3;14971:67;15035:2;15030:3;14971:67;:::i;:::-;14964:74;;15047:93;15136:3;15047:93;:::i;:::-;15165:2;15160:3;15156:12;15149:19;;14808:366;;;:::o;15180:::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:::-;15694:3;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15791:93;15880:3;15791:93;:::i;:::-;15909:2;15904:3;15900:12;15893:19;;15552:366;;;:::o;15924:400::-;16084:3;16105:84;16187:1;16182:3;16105:84;:::i;:::-;16098:91;;16198:93;16287:3;16198:93;:::i;:::-;16316:1;16311:3;16307:11;16300:18;;15924:400;;;:::o;16330:366::-;16472:3;16493:67;16557:2;16552:3;16493:67;:::i;:::-;16486:74;;16569:93;16658:3;16569:93;:::i;:::-;16687:2;16682:3;16678:12;16671:19;;16330:366;;;:::o;16702:::-;16844:3;16865:67;16929:2;16924:3;16865:67;:::i;:::-;16858:74;;16941:93;17030:3;16941:93;:::i;:::-;17059:2;17054:3;17050:12;17043:19;;16702:366;;;:::o;17074:::-;17216:3;17237:67;17301:2;17296:3;17237:67;:::i;:::-;17230:74;;17313:93;17402:3;17313:93;:::i;:::-;17431:2;17426:3;17422:12;17415:19;;17074:366;;;:::o;17446:402::-;17606:3;17627:85;17709:2;17704:3;17627:85;:::i;:::-;17620:92;;17721:93;17810:3;17721:93;:::i;:::-;17839:2;17834:3;17830:12;17823:19;;17446:402;;;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:::-;18368:3;18389:67;18453:2;18448:3;18389:67;:::i;:::-;18382:74;;18465:93;18554:3;18465:93;:::i;:::-;18583:2;18578:3;18574:12;18567:19;;18226:366;;;:::o;18598:402::-;18758:3;18779:85;18861:2;18856:3;18779:85;:::i;:::-;18772:92;;18873:93;18962:3;18873:93;:::i;:::-;18991:2;18986:3;18982:12;18975:19;;18598:402;;;:::o;19006:366::-;19148:3;19169:67;19233:2;19228:3;19169:67;:::i;:::-;19162:74;;19245:93;19334:3;19245:93;:::i;:::-;19363:2;19358:3;19354:12;19347:19;;19006:366;;;:::o;19378:118::-;19465:24;19483:5;19465:24;:::i;:::-;19460:3;19453:37;19378:118;;:::o;19502:695::-;19780:3;19802:92;19890:3;19881:6;19802:92;:::i;:::-;19795:99;;19911:95;20002:3;19993:6;19911:95;:::i;:::-;19904:102;;20023:148;20167:3;20023:148;:::i;:::-;20016:155;;20188:3;20181:10;;19502:695;;;;;:::o;20203:967::-;20585:3;20607:148;20751:3;20607:148;:::i;:::-;20600:155;;20772:95;20863:3;20854:6;20772:95;:::i;:::-;20765:102;;20884:148;21028:3;20884:148;:::i;:::-;20877:155;;21049:95;21140:3;21131:6;21049:95;:::i;:::-;21042:102;;21161:3;21154:10;;20203:967;;;;;:::o;21176:222::-;21269:4;21307:2;21296:9;21292:18;21284:26;;21320:71;21388:1;21377:9;21373:17;21364:6;21320:71;:::i;:::-;21176:222;;;;:::o;21404:640::-;21599:4;21637:3;21626:9;21622:19;21614:27;;21651:71;21719:1;21708:9;21704:17;21695:6;21651:71;:::i;:::-;21732:72;21800:2;21789:9;21785:18;21776:6;21732:72;:::i;:::-;21814;21882:2;21871:9;21867:18;21858:6;21814:72;:::i;:::-;21933:9;21927:4;21923:20;21918:2;21907:9;21903:18;21896:48;21961:76;22032:4;22023:6;21961:76;:::i;:::-;21953:84;;21404:640;;;;;;;:::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:210::-;22475:4;22513:2;22502:9;22498:18;22490:26;;22526:65;22588:1;22577:9;22573:17;22564:6;22526:65;:::i;:::-;22388:210;;;;:::o;22604:222::-;22697:4;22735:2;22724:9;22720:18;22712:26;;22748:71;22816:1;22805:9;22801:17;22792:6;22748:71;:::i;:::-;22604:222;;;;:::o;22832:313::-;22945:4;22983:2;22972:9;22968:18;22960:26;;23032:9;23026:4;23022:20;23018:1;23007:9;23003:17;22996:47;23060:78;23133:4;23124:6;23060:78;:::i;:::-;23052:86;;22832:313;;;;:::o;23151:419::-;23317:4;23355:2;23344:9;23340:18;23332:26;;23404:9;23398:4;23394:20;23390:1;23379:9;23375:17;23368:47;23432:131;23558:4;23432:131;:::i;:::-;23424:139;;23151:419;;;:::o;23576:::-;23742:4;23780:2;23769:9;23765:18;23757:26;;23829:9;23823:4;23819:20;23815:1;23804:9;23800:17;23793:47;23857:131;23983:4;23857:131;:::i;:::-;23849:139;;23576:419;;;:::o;24001:::-;24167:4;24205:2;24194:9;24190:18;24182:26;;24254:9;24248:4;24244:20;24240:1;24229:9;24225:17;24218:47;24282:131;24408:4;24282:131;:::i;:::-;24274:139;;24001:419;;;:::o;24426:::-;24592:4;24630:2;24619:9;24615:18;24607:26;;24679:9;24673:4;24669:20;24665:1;24654:9;24650:17;24643:47;24707:131;24833:4;24707:131;:::i;:::-;24699:139;;24426:419;;;:::o;24851:::-;25017:4;25055:2;25044:9;25040:18;25032:26;;25104:9;25098:4;25094:20;25090:1;25079:9;25075:17;25068:47;25132:131;25258:4;25132:131;:::i;:::-;25124:139;;24851:419;;;:::o;25276:::-;25442:4;25480:2;25469:9;25465:18;25457:26;;25529:9;25523:4;25519:20;25515:1;25504:9;25500:17;25493:47;25557:131;25683:4;25557:131;:::i;:::-;25549:139;;25276:419;;;:::o;25701:::-;25867:4;25905:2;25894:9;25890:18;25882:26;;25954:9;25948:4;25944:20;25940:1;25929:9;25925:17;25918:47;25982:131;26108:4;25982:131;:::i;:::-;25974:139;;25701:419;;;:::o;26126:::-;26292:4;26330:2;26319:9;26315:18;26307:26;;26379:9;26373:4;26369:20;26365:1;26354:9;26350:17;26343:47;26407:131;26533:4;26407:131;:::i;:::-;26399:139;;26126:419;;;:::o;26551:::-;26717:4;26755:2;26744:9;26740:18;26732:26;;26804:9;26798:4;26794:20;26790:1;26779:9;26775:17;26768:47;26832:131;26958:4;26832:131;:::i;:::-;26824:139;;26551:419;;;:::o;26976:::-;27142:4;27180:2;27169:9;27165:18;27157:26;;27229:9;27223:4;27219:20;27215:1;27204:9;27200:17;27193:47;27257:131;27383:4;27257:131;:::i;:::-;27249:139;;26976:419;;;:::o;27401:::-;27567:4;27605:2;27594:9;27590:18;27582:26;;27654:9;27648:4;27644:20;27640:1;27629:9;27625:17;27618:47;27682:131;27808:4;27682:131;:::i;:::-;27674:139;;27401:419;;;:::o;27826:::-;27992:4;28030:2;28019:9;28015:18;28007:26;;28079:9;28073:4;28069:20;28065:1;28054:9;28050:17;28043:47;28107:131;28233:4;28107:131;:::i;:::-;28099:139;;27826:419;;;:::o;28251:::-;28417:4;28455:2;28444:9;28440:18;28432:26;;28504:9;28498:4;28494:20;28490:1;28479:9;28475:17;28468:47;28532:131;28658:4;28532:131;:::i;:::-;28524:139;;28251:419;;;:::o;28676:::-;28842:4;28880:2;28869:9;28865:18;28857:26;;28929:9;28923:4;28919:20;28915:1;28904:9;28900:17;28893:47;28957:131;29083:4;28957:131;:::i;:::-;28949:139;;28676:419;;;:::o;29101:::-;29267:4;29305:2;29294:9;29290:18;29282:26;;29354:9;29348:4;29344:20;29340:1;29329:9;29325:17;29318:47;29382:131;29508:4;29382:131;:::i;:::-;29374:139;;29101:419;;;:::o;29526:222::-;29619:4;29657:2;29646:9;29642:18;29634:26;;29670:71;29738:1;29727:9;29723:17;29714:6;29670:71;:::i;:::-;29526:222;;;;:::o;29754:129::-;29788:6;29815:20;;:::i;:::-;29805:30;;29844:33;29872:4;29864:6;29844:33;:::i;:::-;29754:129;;;:::o;29889:75::-;29922:6;29955:2;29949:9;29939:19;;29889:75;:::o;29970:307::-;30031:4;30121:18;30113:6;30110:30;30107:56;;;30143:18;;:::i;:::-;30107:56;30181:29;30203:6;30181:29;:::i;:::-;30173:37;;30265:4;30259;30255:15;30247:23;;29970:307;;;:::o;30283:308::-;30345:4;30435:18;30427:6;30424:30;30421:56;;;30457:18;;:::i;:::-;30421:56;30495:29;30517:6;30495:29;:::i;:::-;30487:37;;30579:4;30573;30569:15;30561:23;;30283:308;;;:::o;30597:141::-;30646:4;30669:3;30661:11;;30692:3;30689:1;30682:14;30726:4;30723:1;30713:18;30705:26;;30597:141;;;:::o;30744:98::-;30795:6;30829:5;30823:12;30813:22;;30744:98;;;:::o;30848:99::-;30900:6;30934:5;30928:12;30918:22;;30848:99;;;:::o;30953:168::-;31036:11;31070:6;31065:3;31058:19;31110:4;31105:3;31101:14;31086:29;;30953:168;;;;:::o;31127:169::-;31211:11;31245:6;31240:3;31233:19;31285:4;31280:3;31276:14;31261:29;;31127:169;;;;:::o;31302:148::-;31404:11;31441:3;31426:18;;31302:148;;;;:::o;31456:305::-;31496:3;31515:20;31533:1;31515:20;:::i;:::-;31510:25;;31549:20;31567:1;31549:20;:::i;:::-;31544:25;;31703:1;31635:66;31631:74;31628:1;31625:81;31622:107;;;31709:18;;:::i;:::-;31622:107;31753:1;31750;31746:9;31739:16;;31456:305;;;;:::o;31767:185::-;31807:1;31824:20;31842:1;31824:20;:::i;:::-;31819:25;;31858:20;31876:1;31858:20;:::i;:::-;31853:25;;31897:1;31887:35;;31902:18;;:::i;:::-;31887:35;31944:1;31941;31937:9;31932:14;;31767:185;;;;:::o;31958:348::-;31998:7;32021:20;32039:1;32021:20;:::i;:::-;32016:25;;32055:20;32073:1;32055:20;:::i;:::-;32050:25;;32243:1;32175:66;32171:74;32168:1;32165:81;32160:1;32153:9;32146:17;32142:105;32139:131;;;32250:18;;:::i;:::-;32139:131;32298:1;32295;32291:9;32280:20;;31958:348;;;;:::o;32312:191::-;32352:4;32372:20;32390:1;32372:20;:::i;:::-;32367:25;;32406:20;32424:1;32406:20;:::i;:::-;32401:25;;32445:1;32442;32439:8;32436:34;;;32450:18;;:::i;:::-;32436:34;32495:1;32492;32488:9;32480:17;;32312:191;;;;:::o;32509:96::-;32546:7;32575:24;32593:5;32575:24;:::i;:::-;32564:35;;32509:96;;;:::o;32611:90::-;32645:7;32688:5;32681:13;32674:21;32663:32;;32611:90;;;:::o;32707:77::-;32744:7;32773:5;32762:16;;32707:77;;;:::o;32790:149::-;32826:7;32866:66;32859:5;32855:78;32844:89;;32790:149;;;:::o;32945:89::-;32981:7;33021:6;33014:5;33010:18;32999:29;;32945:89;;;:::o;33040:126::-;33077:7;33117:42;33110:5;33106:54;33095:65;;33040:126;;;:::o;33172:77::-;33209:7;33238:5;33227:16;;33172:77;;;:::o;33255:109::-;33291:7;33331:26;33324:5;33320:38;33309:49;;33255:109;;;:::o;33370:154::-;33454:6;33449:3;33444;33431:30;33516:1;33507:6;33502:3;33498:16;33491:27;33370:154;;;:::o;33530:307::-;33598:1;33608:113;33622:6;33619:1;33616:13;33608:113;;;33707:1;33702:3;33698:11;33692:18;33688:1;33683:3;33679:11;33672:39;33644:2;33641:1;33637:10;33632:15;;33608:113;;;33739:6;33736:1;33733:13;33730:101;;;33819:1;33810:6;33805:3;33801:16;33794:27;33730:101;33579:258;33530:307;;;:::o;33843:171::-;33882:3;33905:24;33923:5;33905:24;:::i;:::-;33896:33;;33951:4;33944:5;33941:15;33938:41;;;33959:18;;:::i;:::-;33938:41;34006:1;33999:5;33995:13;33988:20;;33843:171;;;:::o;34020:320::-;34064:6;34101:1;34095:4;34091:12;34081:22;;34148:1;34142:4;34138:12;34169:18;34159:81;;34225:4;34217:6;34213:17;34203:27;;34159:81;34287:2;34279:6;34276:14;34256:18;34253:38;34250:84;;;34306:18;;:::i;:::-;34250:84;34071:269;34020:320;;;:::o;34346:281::-;34429:27;34451:4;34429:27;:::i;:::-;34421:6;34417:40;34559:6;34547:10;34544:22;34523:18;34511:10;34508:34;34505:62;34502:88;;;34570:18;;:::i;:::-;34502:88;34610:10;34606:2;34599:22;34389:238;34346:281;;:::o;34633:171::-;34671:3;34694:23;34711:5;34694:23;:::i;:::-;34685:32;;34739:6;34732:5;34729:17;34726:43;;;34749:18;;:::i;:::-;34726:43;34796:1;34789:5;34785:13;34778:20;;34633:171;;;:::o;34810:233::-;34849:3;34872:24;34890:5;34872:24;:::i;:::-;34863:33;;34918:66;34911:5;34908:77;34905:103;;;34988:18;;:::i;:::-;34905:103;35035:1;35028:5;35024:13;35017:20;;34810:233;;;:::o;35049:180::-;35097:77;35094:1;35087:88;35194:4;35191:1;35184:15;35218:4;35215:1;35208:15;35235:180;35283:77;35280:1;35273:88;35380:4;35377:1;35370:15;35404:4;35401:1;35394:15;35421:180;35469:77;35466:1;35459:88;35566:4;35563:1;35556:15;35590:4;35587:1;35580:15;35607:180;35655:77;35652:1;35645:88;35752:4;35749:1;35742:15;35776:4;35773:1;35766:15;35793:180;35841:77;35838:1;35831:88;35938:4;35935:1;35928:15;35962:4;35959:1;35952:15;35979:117;36088:1;36085;36078:12;36102:117;36211:1;36208;36201:12;36225:117;36334:1;36331;36324:12;36348:117;36457:1;36454;36447:12;36471:102;36512:6;36563:2;36559:7;36554:2;36547:5;36543:14;36539:28;36529:38;;36471:102;;;:::o;36579:182::-;36719:34;36715:1;36707:6;36703:14;36696:58;36579:182;:::o;36767:232::-;36907:34;36903:1;36895:6;36891:14;36884:58;36976:15;36971:2;36963:6;36959:15;36952:40;36767:232;:::o;37005:237::-;37145:34;37141:1;37133:6;37129:14;37122:58;37214:20;37209:2;37201:6;37197:15;37190:45;37005:237;:::o;37248:224::-;37388:34;37384:1;37376:6;37372:14;37365:58;37457:7;37452:2;37444:6;37440:15;37433:32;37248:224;:::o;37478:178::-;37618:30;37614:1;37606:6;37602:14;37595:54;37478:178;:::o;37662:223::-;37802:34;37798:1;37790:6;37786:14;37779:58;37871:6;37866:2;37858:6;37854:15;37847:31;37662:223;:::o;37891:175::-;38031:27;38027:1;38019:6;38015:14;38008:51;37891:175;:::o;38072:228::-;38212:34;38208:1;38200:6;38196:14;38189:58;38281:11;38276:2;38268:6;38264:15;38257:36;38072:228;:::o;38306:182::-;38446:34;38442:1;38434:6;38430:14;38423:58;38306:182;:::o;38494:155::-;38634:7;38630:1;38622:6;38618:14;38611:31;38494:155;:::o;38655:174::-;38795:26;38791:1;38783:6;38779:14;38772:50;38655:174;:::o;38835:220::-;38975:34;38971:1;38963:6;38959:14;38952:58;39044:3;39039:2;39031:6;39027:15;39020:28;38835:220;:::o;39061:248::-;39201:34;39197:1;39189:6;39185:14;39178:58;39270:31;39265:2;39257:6;39253:15;39246:56;39061:248;:::o;39315:173::-;39455:25;39451:1;39443:6;39439:14;39432:49;39315:173;:::o;39494:229::-;39634:34;39630:1;39622:6;39618:14;39611:58;39703:12;39698:2;39690:6;39686:15;39679:37;39494:229;:::o;39729:175::-;39869:27;39865:1;39857:6;39853:14;39846:51;39729:175;:::o;39910:167::-;40050:19;40046:1;40038:6;40034:14;40027:43;39910:167;:::o;40083:234::-;40223:34;40219:1;40211:6;40207:14;40200:58;40292:17;40287:2;40279:6;40275:15;40268:42;40083:234;:::o;40323:122::-;40396:24;40414:5;40396:24;:::i;:::-;40389:5;40386:35;40376:63;;40435:1;40432;40425:12;40376:63;40323:122;:::o;40451:116::-;40521:21;40536:5;40521:21;:::i;:::-;40514:5;40511:32;40501:60;;40557:1;40554;40547:12;40501:60;40451:116;:::o;40573:122::-;40646:24;40664:5;40646:24;:::i;:::-;40639:5;40636:35;40626:63;;40685:1;40682;40675:12;40626:63;40573:122;:::o;40701:120::-;40773:23;40790:5;40773:23;:::i;:::-;40766:5;40763:34;40753:62;;40811:1;40808;40801:12;40753:62;40701:120;:::o;40827:122::-;40900:24;40918:5;40900:24;:::i;:::-;40893:5;40890:35;40880:63;;40939:1;40936;40929:12;40880:63;40827:122;:::o;40955:120::-;41027:23;41044:5;41027:23;:::i;:::-;41020:5;41017:34;41007:62;;41065:1;41062;41055:12;41007:62;40955:120;:::o
Swarm Source
ipfs://967a1a13666c9795b7893f9848a7d9aa12fda828b55d93627c62b7ce4c14fca2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.