More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,005 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 65211080 | 136 days ago | IN | 0 POL | 0.03205324 | ||||
Set Approval For... | 65157694 | 137 days ago | IN | 0 POL | 0.00382242 | ||||
Set Approval For... | 64872084 | 144 days ago | IN | 0 POL | 0.00205588 | ||||
Set Approval For... | 64640195 | 150 days ago | IN | 0 POL | 0.01884019 | ||||
Set Approval For... | 59748764 | 272 days ago | IN | 0 POL | 0.00140109 | ||||
Set Approval For... | 57556772 | 327 days ago | IN | 0 POL | 0.00140389 | ||||
Set Approval For... | 57530798 | 328 days ago | IN | 0 POL | 0.00351009 | ||||
Safe Transfer Fr... | 57149577 | 338 days ago | IN | 0 POL | 0.00177679 | ||||
Set Approval For... | 57149523 | 338 days ago | IN | 0 POL | 0.00140422 | ||||
Safe Transfer Fr... | 57149413 | 338 days ago | IN | 0 POL | 0.00265018 | ||||
Set Approval For... | 57122465 | 339 days ago | IN | 0 POL | 0.00142701 | ||||
Set Approval For... | 56921868 | 344 days ago | IN | 0 POL | 0.0014039 | ||||
Set Approval For... | 56902565 | 345 days ago | IN | 0 POL | 0.00139893 | ||||
Set Approval For... | 56873809 | 345 days ago | IN | 0 POL | 0.00080353 | ||||
Set Approval For... | 56873803 | 345 days ago | IN | 0 POL | 0.00140172 | ||||
Set Approval For... | 56634353 | 351 days ago | IN | 0 POL | 0.00154119 | ||||
Set Approval For... | 56621850 | 352 days ago | IN | 0 POL | 0.00139893 | ||||
Set Approval For... | 56617359 | 352 days ago | IN | 0 POL | 0.00139893 | ||||
Set Approval For... | 56317063 | 360 days ago | IN | 0 POL | 0.00498035 | ||||
Set Approval For... | 56312076 | 360 days ago | IN | 0 POL | 0.0040648 | ||||
Set Approval For... | 56179690 | 364 days ago | IN | 0 POL | 0.00185824 | ||||
Set Approval For... | 56083898 | 366 days ago | IN | 0 POL | 0.00152501 | ||||
Set Approval For... | 55982109 | 369 days ago | IN | 0 POL | 0.00348021 | ||||
Set Approval For... | 55931329 | 370 days ago | IN | 0 POL | 0.0130563 | ||||
Set Approval For... | 55604573 | 379 days ago | IN | 0 POL | 0.00359836 |
Loading...
Loading
Contract Name:
Guardians_Of_Agora
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-03-23 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // 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/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/common/ERC2981.sol // 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/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.2) (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 {} /** * @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 {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/mint.sol pragma solidity ^0.8.9; contract Guardians_Of_Agora is ERC721, ERC2981, Ownable { using Strings for uint256; string private _baseTokenURI = "https://gateway.pinata.cloud/ipfs/QmWXwAMKkeq6anhEQYXKMBxsS7na27z2sSendwtbvcNS91/"; string private extension = ".json"; uint256 public constant MAX_ENTRIES = 3333; uint256 public totalMinted; uint256 public totalAirdropped; address public royaltyAddress; uint96 public royaltyBips; mapping(uint256 => string) private _tokenURIs; constructor(address _royaltyAddress, uint96 _royaltyBips) ERC721("Guardians Of Agora", "GOA") { royaltyAddress = _royaltyAddress; royaltyBips = _royaltyBips; _setDefaultRoyalty(royaltyAddress, royaltyBips); } function mintOwn(uint256 amount) external onlyOwner { uint256 i; require(totalMinted + amount <= MAX_ENTRIES, "Exceeds max nfts"); for (i = 0 ; i < amount ; ++i) { _tokenURIs[totalMinted] = string(abi.encodePacked(_baseURI(), totalMinted.toString(), ".json")); _safeMint(msg.sender, ++totalMinted); } } function airdrop(address[] memory wallets, uint256[] memory amounts) external onlyOwner { require(wallets.length == amounts.length, "Incorrect input"); uint256 totalAmount = 0; uint256 i; for (i = 0 ; i < wallets.length ; ++i) { totalAmount += amounts[i]; } require(totalAmount <= balanceOf(msg.sender), "Exceeds owning nfts"); for (i = 0 ; i < wallets.length ; ++i) { for (uint256 j = 0 ; j < amounts[i] ; ++j) { _safeTransfer(msg.sender, wallets[i], ++totalAirdropped, ""); } } } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setExtension(string memory newExtension) external { extension = newExtension; } function tokenURI(uint256 tokenId) override public view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; return bytes(_tokenURI).length > 0 ? _tokenURI : string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")); } function setTokenURI(uint256 tokenId, string memory tokenURI) public onlyOwner { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = tokenURI; } function setRoyalty(address _royaltyAddress, uint96 _royaltyBips) public onlyOwner{ royaltyAddress = _royaltyAddress; royaltyBips = _royaltyBips; _setDefaultRoyalty(royaltyAddress, royaltyBips); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"},{"internalType":"uint96","name":"_royaltyBips","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyBips","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newExtension","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"},{"internalType":"uint96","name":"_royaltyBips","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setTokenURI","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":[],"name":"totalAirdropped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060518152602001620049d060519139600990816200002e919062000718565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908162000075919062000718565b503480156200008357600080fd5b5060405162004a2138038062004a218339818101604052810190620000a99190620008b2565b6040518060400160405280601281526020017f477561726469616e73204f662041676f726100000000000000000000000000008152506040518060400160405280600381526020017f474f410000000000000000000000000000000000000000000000000000000000815250816000908162000126919062000718565b50806001908162000138919062000718565b5050506200015b6200014f6200022360201b60201c565b6200022b60201b60201c565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506200021b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60149054906101000a90046bffffffffffffffffffffffff16620002f160201b60201c565b505062000a14565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003016200049460201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003599062000980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cb90620009f2565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052057607f821691505b602082108103620005365762000535620004d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000561565b620005ac868362000561565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f9620005f3620005ed84620005c4565b620005ce565b620005c4565b9050919050565b6000819050919050565b6200061583620005d8565b6200062d620006248262000600565b8484546200056e565b825550505050565b600090565b6200064462000635565b620006518184846200060a565b505050565b5b8181101562000679576200066d6000826200063a565b60018101905062000657565b5050565b601f821115620006c85762000692816200053c565b6200069d8462000551565b81016020851015620006ad578190505b620006c5620006bc8562000551565b83018262000656565b50505b505050565b600082821c905092915050565b6000620006ed60001984600802620006cd565b1980831691505092915050565b6000620007088383620006da565b9150826002028217905092915050565b62000723826200049e565b67ffffffffffffffff8111156200073f576200073e620004a9565b5b6200074b825462000507565b620007588282856200067d565b600060209050601f8311600181146200079057600084156200077b578287015190505b620007878582620006fa565b865550620007f7565b601f198416620007a0866200053c565b60005b82811015620007ca57848901518255600182019150602085019450602081019050620007a3565b86831015620007ea5784890151620007e6601f891682620006da565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008318262000804565b9050919050565b620008438162000824565b81146200084f57600080fd5b50565b600081519050620008638162000838565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6200088c8162000869565b81146200089857600080fd5b50565b600081519050620008ac8162000881565b92915050565b60008060408385031215620008cc57620008cb620007ff565b5b6000620008dc8582860162000852565b9250506020620008ef858286016200089b565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000968602a83620008f9565b915062000975826200090a565b604082019050919050565b600060208201905081810360008301526200099b8162000959565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620009da601983620008f9565b9150620009e782620009a2565b602082019050919050565b6000602082019050818103600083015262000a0d81620009cb565b9050919050565b613fac8062000a246000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80637e2285aa116100f9578063ad2f852a11610097578063ce67858011610071578063ce678580146104dc578063d186660b146104fa578063e985e9c514610518578063f2fde38b14610548576101c4565b8063ad2f852a14610472578063b88d4fde14610490578063c87b56dd146104ac576101c4565b806395d89b41116100d357806395d89b41146103fe578063994812091461041c578063a22cb46514610438578063a2309ff814610454576101c4565b80637e2285aa146103a85780638da5cb5b146103c45780638f2fc60b146103e2576101c4565b806342842e0e116101665780636724348211610140578063672434821461033457806370a0823114610350578063715018a6146103805780637d4cb9641461038a576101c4565b806342842e0e146102cc57806355f804b3146102e85780636352211e14610304576101c4565b8063095ea7b3116101a2578063095ea7b314610247578063162094c41461026357806323b872dd1461027f5780632a55205a1461029b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de91906125c2565b610564565b6040516101f0919061260a565b60405180910390f35b610201610576565b60405161020e91906126b5565b60405180910390f35b610231600480360381019061022c919061270d565b610608565b60405161023e919061277b565b60405180910390f35b610261600480360381019061025c91906127c2565b61064e565b005b61027d60048036038101906102789190612937565b610765565b005b61029960048036038101906102949190612993565b6107da565b005b6102b560048036038101906102b091906129e6565b61083a565b6040516102c3929190612a35565b60405180910390f35b6102e660048036038101906102e19190612993565b610a24565b005b61030260048036038101906102fd9190612a5e565b610a44565b005b61031e6004803603810190610319919061270d565b610a5f565b60405161032b919061277b565b60405180910390f35b61034e60048036038101906103499190612c32565b610ae5565b005b61036a60048036038101906103659190612caa565b610c67565b6040516103779190612cd7565b60405180910390f35b610388610d1e565b005b610392610d32565b60405161039f9190612cd7565b60405180910390f35b6103c260048036038101906103bd9190612a5e565b610d38565b005b6103cc610d4b565b6040516103d9919061277b565b60405180910390f35b6103fc60048036038101906103f79190612d36565b610d75565b005b610406610e39565b60405161041391906126b5565b60405180910390f35b6104366004803603810190610431919061270d565b610ecb565b005b610452600480360381019061044d9190612da2565b610fbc565b005b61045c610fd2565b6040516104699190612cd7565b60405180910390f35b61047a610fd8565b604051610487919061277b565b60405180910390f35b6104aa60048036038101906104a59190612e83565b610ffe565b005b6104c660048036038101906104c1919061270d565b611060565b6040516104d391906126b5565b60405180910390f35b6104e4611193565b6040516104f19190612cd7565b60405180910390f35b610502611199565b60405161050f9190612f15565b60405180910390f35b610532600480360381019061052d9190612f30565b6111b7565b60405161053f919061260a565b60405180910390f35b610562600480360381019061055d9190612caa565b61124b565b005b600061056f826112ce565b9050919050565b60606000805461058590612f9f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b190612f9f565b80156105fe5780601f106105d3576101008083540402835291602001916105fe565b820191906000526020600020905b8154815290600101906020018083116105e157829003601f168201915b5050505050905090565b600061061382611348565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065982610a5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c090613042565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106e8611393565b73ffffffffffffffffffffffffffffffffffffffff161480610717575061071681610711611393565b6111b7565b5b610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906130d4565b60405180910390fd5b610760838361139b565b505050565b61076d611454565b610776826114d2565b6107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90613166565b60405180910390fd5b80600e600084815260200190815260200160002090816107d59190613332565b505050565b6107eb6107e5611393565b82611513565b61082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190613476565b60405180910390fd5b6108358383836115a8565b505050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036109cf5760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109d96118a1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610a0591906134c5565b610a0f9190613536565b90508160000151819350935050509250929050565b610a3f83838360405180602001604052806000815250610ffe565b505050565b610a4c611454565b8060099081610a5b9190613332565b5050565b600080610a6b836118ab565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906135b3565b60405180910390fd5b80915050919050565b610aed611454565b8051825114610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061361f565b60405180910390fd5b6000805b8351811015610b7757828181518110610b5157610b5061363f565b5b602002602001015182610b64919061366e565b915080610b70906136a2565b9050610b35565b610b8033610c67565b821115610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613736565b60405180910390fd5b600090505b8351811015610c615760005b838281518110610be657610be561363f565b5b6020026020010151811015610c4f57610c3e33868481518110610c0c57610c0b61363f565b5b6020026020010151600c60008154610c23906136a2565b919050819055604051806020016040528060008152506118e8565b80610c48906136a2565b9050610bd3565b5080610c5a906136a2565b9050610bc7565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce906137c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d26611454565b610d306000611944565b565b610d0581565b80600a9081610d479190613332565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d7d611454565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610e35600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60149054906101000a90046bffffffffffffffffffffffff16611a0a565b5050565b606060018054610e4890612f9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7490612f9f565b8015610ec15780601f10610e9657610100808354040283529160200191610ec1565b820191906000526020600020905b815481529060010190602001808311610ea457829003601f168201915b5050505050905090565b610ed3611454565b6000610d0582600b54610ee6919061366e565b1115610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613834565b60405180910390fd5b600090505b81811015610fb857610f3c611b9f565b610f47600b54611c31565b604051602001610f589291906138dc565b604051602081830303815290604052600e6000600b5481526020019081526020016000209081610f889190613332565b50610fa733600b60008154610f9c906136a2565b919050819055611cff565b80610fb1906136a2565b9050610f2c565b5050565b610fce610fc7611393565b8383611d1d565b5050565b600b5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61100f611009611393565b83611513565b61104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613476565b60405180910390fd5b61105a848484846118e8565b50505050565b606061106b826114d2565b6110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a19061397d565b60405180910390fd5b6000600e600084815260200190815260200160002080546110ca90612f9f565b80601f01602080910402602001604051908101604052809291908181526020018280546110f690612f9f565b80156111435780601f1061111857610100808354040283529160200191611143565b820191906000526020600020905b81548152906001019060200180831161112657829003601f168201915b5050505050905060008151116111895761115b611b9f565b61116484611c31565b6040516020016111759291906138dc565b60405160208183030381529060405261118b565b805b915050919050565b600c5481565b600d60149054906101000a90046bffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611253611454565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990613a0f565b60405180910390fd5b6112cb81611944565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611341575061134082611e89565b5b9050919050565b611351816114d2565b611390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611387906135b3565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140e83610a5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61145c611393565b73ffffffffffffffffffffffffffffffffffffffff1661147a610d4b565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613a7b565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166114f4836118ab565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008061151f83610a5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611561575061156081856111b7565b5b8061159f57508373ffffffffffffffffffffffffffffffffffffffff1661158784610608565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115c882610a5f565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613b9f565b60405180910390fd5b61169a8383836001611f6b565b8273ffffffffffffffffffffffffffffffffffffffff166116ba82610a5f565b73ffffffffffffffffffffffffffffffffffffffff1614611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790613b0d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461189c8383836001611f71565b505050565b6000612710905090565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6118f38484846115a8565b6118ff84848484611f77565b61193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613c31565b60405180910390fd5b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a126118a1565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6790613cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613d2f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b606060098054611bae90612f9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bda90612f9f565b8015611c275780601f10611bfc57610100808354040283529160200191611c27565b820191906000526020600020905b815481529060010190602001808311611c0a57829003601f168201915b5050505050905090565b606060006001611c40846120fe565b01905060008167ffffffffffffffff811115611c5f57611c5e61280c565b5b6040519080825280601f01601f191660200182016040528015611c915781602001600182028036833780820191505090505b509050600082602001820190505b600115611cf4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ce857611ce7613507565b5b04945060008503611c9f575b819350505050919050565b611d19828260405180602001604052806000815250612251565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613d9b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e7c919061260a565b60405180910390a3505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f5457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f645750611f63826122ac565b5b9050919050565b50505050565b50505050565b6000611f988473ffffffffffffffffffffffffffffffffffffffff16612316565b156120f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc1611393565b8786866040518563ffffffff1660e01b8152600401611fe39493929190613e10565b6020604051808303816000875af192505050801561201f57506040513d601f19601f8201168201806040525081019061201c9190613e71565b60015b6120a1573d806000811461204f576040519150601f19603f3d011682016040523d82523d6000602084013e612054565b606091505b506000815103612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090613c31565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120f6565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061215c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161215257612151613507565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612199576d04ee2d6d415b85acef8100000000838161218f5761218e613507565b5b0492506020810190505b662386f26fc1000083106121c857662386f26fc1000083816121be576121bd613507565b5b0492506010810190505b6305f5e10083106121f1576305f5e10083816121e7576121e6613507565b5b0492506008810190505b612710831061221657612710838161220c5761220b613507565b5b0492506004810190505b60648310612239576064838161222f5761222e613507565b5b0492506002810190505b600a8310612248576001810190505b80915050919050565b61225b8383612339565b6122686000848484611f77565b6122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90613c31565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613eea565b60405180910390fd5b6123b1816114d2565b156123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613f56565b60405180910390fd5b6123ff600083836001611f6b565b612408816114d2565b15612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f90613f56565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612552600083836001611f71565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61259f8161256a565b81146125aa57600080fd5b50565b6000813590506125bc81612596565b92915050565b6000602082840312156125d8576125d7612560565b5b60006125e6848285016125ad565b91505092915050565b60008115159050919050565b612604816125ef565b82525050565b600060208201905061261f60008301846125fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561265f578082015181840152602081019050612644565b60008484015250505050565b6000601f19601f8301169050919050565b600061268782612625565b6126918185612630565b93506126a1818560208601612641565b6126aa8161266b565b840191505092915050565b600060208201905081810360008301526126cf818461267c565b905092915050565b6000819050919050565b6126ea816126d7565b81146126f557600080fd5b50565b600081359050612707816126e1565b92915050565b60006020828403121561272357612722612560565b5b6000612731848285016126f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127658261273a565b9050919050565b6127758161275a565b82525050565b6000602082019050612790600083018461276c565b92915050565b61279f8161275a565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b600080604083850312156127d9576127d8612560565b5b60006127e7858286016127ad565b92505060206127f8858286016126f8565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128448261266b565b810181811067ffffffffffffffff821117156128635761286261280c565b5b80604052505050565b6000612876612556565b9050612882828261283b565b919050565b600067ffffffffffffffff8211156128a2576128a161280c565b5b6128ab8261266b565b9050602081019050919050565b82818337600083830152505050565b60006128da6128d584612887565b61286c565b9050828152602081018484840111156128f6576128f5612807565b5b6129018482856128b8565b509392505050565b600082601f83011261291e5761291d612802565b5b813561292e8482602086016128c7565b91505092915050565b6000806040838503121561294e5761294d612560565b5b600061295c858286016126f8565b925050602083013567ffffffffffffffff81111561297d5761297c612565565b5b61298985828601612909565b9150509250929050565b6000806000606084860312156129ac576129ab612560565b5b60006129ba868287016127ad565b93505060206129cb868287016127ad565b92505060406129dc868287016126f8565b9150509250925092565b600080604083850312156129fd576129fc612560565b5b6000612a0b858286016126f8565b9250506020612a1c858286016126f8565b9150509250929050565b612a2f816126d7565b82525050565b6000604082019050612a4a600083018561276c565b612a576020830184612a26565b9392505050565b600060208284031215612a7457612a73612560565b5b600082013567ffffffffffffffff811115612a9257612a91612565565b5b612a9e84828501612909565b91505092915050565b600067ffffffffffffffff821115612ac257612ac161280c565b5b602082029050602081019050919050565b600080fd5b6000612aeb612ae684612aa7565b61286c565b90508083825260208201905060208402830185811115612b0e57612b0d612ad3565b5b835b81811015612b375780612b2388826127ad565b845260208401935050602081019050612b10565b5050509392505050565b600082601f830112612b5657612b55612802565b5b8135612b66848260208601612ad8565b91505092915050565b600067ffffffffffffffff821115612b8a57612b8961280c565b5b602082029050602081019050919050565b6000612bae612ba984612b6f565b61286c565b90508083825260208201905060208402830185811115612bd157612bd0612ad3565b5b835b81811015612bfa5780612be688826126f8565b845260208401935050602081019050612bd3565b5050509392505050565b600082601f830112612c1957612c18612802565b5b8135612c29848260208601612b9b565b91505092915050565b60008060408385031215612c4957612c48612560565b5b600083013567ffffffffffffffff811115612c6757612c66612565565b5b612c7385828601612b41565b925050602083013567ffffffffffffffff811115612c9457612c93612565565b5b612ca085828601612c04565b9150509250929050565b600060208284031215612cc057612cbf612560565b5b6000612cce848285016127ad565b91505092915050565b6000602082019050612cec6000830184612a26565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612d1381612cf2565b8114612d1e57600080fd5b50565b600081359050612d3081612d0a565b92915050565b60008060408385031215612d4d57612d4c612560565b5b6000612d5b858286016127ad565b9250506020612d6c85828601612d21565b9150509250929050565b612d7f816125ef565b8114612d8a57600080fd5b50565b600081359050612d9c81612d76565b92915050565b60008060408385031215612db957612db8612560565b5b6000612dc7858286016127ad565b9250506020612dd885828601612d8d565b9150509250929050565b600067ffffffffffffffff821115612dfd57612dfc61280c565b5b612e068261266b565b9050602081019050919050565b6000612e26612e2184612de2565b61286c565b905082815260208101848484011115612e4257612e41612807565b5b612e4d8482856128b8565b509392505050565b600082601f830112612e6a57612e69612802565b5b8135612e7a848260208601612e13565b91505092915050565b60008060008060808587031215612e9d57612e9c612560565b5b6000612eab878288016127ad565b9450506020612ebc878288016127ad565b9350506040612ecd878288016126f8565b925050606085013567ffffffffffffffff811115612eee57612eed612565565b5b612efa87828801612e55565b91505092959194509250565b612f0f81612cf2565b82525050565b6000602082019050612f2a6000830184612f06565b92915050565b60008060408385031215612f4757612f46612560565b5b6000612f55858286016127ad565b9250506020612f66858286016127ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb757607f821691505b602082108103612fca57612fc9612f70565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061302c602183612630565b915061303782612fd0565b604082019050919050565b6000602082019050818103600083015261305b8161301f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006130be603d83612630565b91506130c982613062565b604082019050919050565b600060208201905081810360008301526130ed816130b1565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613150602c83612630565b915061315b826130f4565b604082019050919050565b6000602082019050818103600083015261317f81613143565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131ab565b6131f286836131ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061322f61322a613225846126d7565b61320a565b6126d7565b9050919050565b6000819050919050565b61324983613214565b61325d61325582613236565b8484546131b8565b825550505050565b600090565b613272613265565b61327d818484613240565b505050565b5b818110156132a15761329660008261326a565b600181019050613283565b5050565b601f8211156132e6576132b781613186565b6132c08461319b565b810160208510156132cf578190505b6132e36132db8561319b565b830182613282565b50505b505050565b600082821c905092915050565b6000613309600019846008026132eb565b1980831691505092915050565b600061332283836132f8565b9150826002028217905092915050565b61333b82612625565b67ffffffffffffffff8111156133545761335361280c565b5b61335e8254612f9f565b6133698282856132a5565b600060209050601f83116001811461339c576000841561338a578287015190505b6133948582613316565b8655506133fc565b601f1984166133aa86613186565b60005b828110156133d2578489015182556001820191506020850194506020810190506133ad565b868310156133ef57848901516133eb601f8916826132f8565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613460602d83612630565b915061346b82613404565b604082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134d0826126d7565b91506134db836126d7565b92508282026134e9816126d7565b91508282048414831517613500576134ff613496565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613541826126d7565b915061354c836126d7565b92508261355c5761355b613507565b5b828204905092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061359d601883612630565b91506135a882613567565b602082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f496e636f727265637420696e7075740000000000000000000000000000000000600082015250565b6000613609600f83612630565b9150613614826135d3565b602082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613679826126d7565b9150613684836126d7565b925082820190508082111561369c5761369b613496565b5b92915050565b60006136ad826126d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136df576136de613496565b5b600182019050919050565b7f45786365656473206f776e696e67206e66747300000000000000000000000000600082015250565b6000613720601383612630565b915061372b826136ea565b602082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137b2602983612630565b91506137bd82613756565b604082019050919050565b600060208201905081810360008301526137e1816137a5565b9050919050565b7f45786365656473206d6178206e66747300000000000000000000000000000000600082015250565b600061381e601083612630565b9150613829826137e8565b602082019050919050565b6000602082019050818103600083015261384d81613811565b9050919050565b600081905092915050565b600061386a82612625565b6138748185613854565b9350613884818560208601612641565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138c6600583613854565b91506138d182613890565b600582019050919050565b60006138e8828561385f565b91506138f4828461385f565b91506138ff826138b9565b91508190509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613967602f83612630565b91506139728261390b565b604082019050919050565b600060208201905081810360008301526139968161395a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139f9602683612630565b9150613a048261399d565b604082019050919050565b60006020820190508181036000830152613a28816139ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a65602083612630565b9150613a7082613a2f565b602082019050919050565b60006020820190508181036000830152613a9481613a58565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613af7602583612630565b9150613b0282613a9b565b604082019050919050565b60006020820190508181036000830152613b2681613aea565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b89602483612630565b9150613b9482613b2d565b604082019050919050565b60006020820190508181036000830152613bb881613b7c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c1b603283612630565b9150613c2682613bbf565b604082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000613cad602a83612630565b9150613cb882613c51565b604082019050919050565b60006020820190508181036000830152613cdc81613ca0565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613d19601983612630565b9150613d2482613ce3565b602082019050919050565b60006020820190508181036000830152613d4881613d0c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d85601983612630565b9150613d9082613d4f565b602082019050919050565b60006020820190508181036000830152613db481613d78565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613de282613dbb565b613dec8185613dc6565b9350613dfc818560208601612641565b613e058161266b565b840191505092915050565b6000608082019050613e25600083018761276c565b613e32602083018661276c565b613e3f6040830185612a26565b8181036060830152613e518184613dd7565b905095945050505050565b600081519050613e6b81612596565b92915050565b600060208284031215613e8757613e86612560565b5b6000613e9584828501613e5c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ed4602083612630565b9150613edf82613e9e565b602082019050919050565b60006020820190508181036000830152613f0381613ec7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f40601c83612630565b9150613f4b82613f0a565b602082019050919050565b60006020820190508181036000830152613f6f81613f33565b905091905056fea264697066735822122012978dca7c89062681a381714404fb37e98b209b378359ff4dd1c51e9292f34f64736f6c6343000813003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d575877414d4b6b657136616e68455159584b4d42787353376e6132377a327353656e6477746276634e5339312f000000000000000000000000c1dd658dd0fbec6fb6b65f3bd8e400586192646a00000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80637e2285aa116100f9578063ad2f852a11610097578063ce67858011610071578063ce678580146104dc578063d186660b146104fa578063e985e9c514610518578063f2fde38b14610548576101c4565b8063ad2f852a14610472578063b88d4fde14610490578063c87b56dd146104ac576101c4565b806395d89b41116100d357806395d89b41146103fe578063994812091461041c578063a22cb46514610438578063a2309ff814610454576101c4565b80637e2285aa146103a85780638da5cb5b146103c45780638f2fc60b146103e2576101c4565b806342842e0e116101665780636724348211610140578063672434821461033457806370a0823114610350578063715018a6146103805780637d4cb9641461038a576101c4565b806342842e0e146102cc57806355f804b3146102e85780636352211e14610304576101c4565b8063095ea7b3116101a2578063095ea7b314610247578063162094c41461026357806323b872dd1461027f5780632a55205a1461029b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de91906125c2565b610564565b6040516101f0919061260a565b60405180910390f35b610201610576565b60405161020e91906126b5565b60405180910390f35b610231600480360381019061022c919061270d565b610608565b60405161023e919061277b565b60405180910390f35b610261600480360381019061025c91906127c2565b61064e565b005b61027d60048036038101906102789190612937565b610765565b005b61029960048036038101906102949190612993565b6107da565b005b6102b560048036038101906102b091906129e6565b61083a565b6040516102c3929190612a35565b60405180910390f35b6102e660048036038101906102e19190612993565b610a24565b005b61030260048036038101906102fd9190612a5e565b610a44565b005b61031e6004803603810190610319919061270d565b610a5f565b60405161032b919061277b565b60405180910390f35b61034e60048036038101906103499190612c32565b610ae5565b005b61036a60048036038101906103659190612caa565b610c67565b6040516103779190612cd7565b60405180910390f35b610388610d1e565b005b610392610d32565b60405161039f9190612cd7565b60405180910390f35b6103c260048036038101906103bd9190612a5e565b610d38565b005b6103cc610d4b565b6040516103d9919061277b565b60405180910390f35b6103fc60048036038101906103f79190612d36565b610d75565b005b610406610e39565b60405161041391906126b5565b60405180910390f35b6104366004803603810190610431919061270d565b610ecb565b005b610452600480360381019061044d9190612da2565b610fbc565b005b61045c610fd2565b6040516104699190612cd7565b60405180910390f35b61047a610fd8565b604051610487919061277b565b60405180910390f35b6104aa60048036038101906104a59190612e83565b610ffe565b005b6104c660048036038101906104c1919061270d565b611060565b6040516104d391906126b5565b60405180910390f35b6104e4611193565b6040516104f19190612cd7565b60405180910390f35b610502611199565b60405161050f9190612f15565b60405180910390f35b610532600480360381019061052d9190612f30565b6111b7565b60405161053f919061260a565b60405180910390f35b610562600480360381019061055d9190612caa565b61124b565b005b600061056f826112ce565b9050919050565b60606000805461058590612f9f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b190612f9f565b80156105fe5780601f106105d3576101008083540402835291602001916105fe565b820191906000526020600020905b8154815290600101906020018083116105e157829003601f168201915b5050505050905090565b600061061382611348565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065982610a5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c090613042565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106e8611393565b73ffffffffffffffffffffffffffffffffffffffff161480610717575061071681610711611393565b6111b7565b5b610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906130d4565b60405180910390fd5b610760838361139b565b505050565b61076d611454565b610776826114d2565b6107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90613166565b60405180910390fd5b80600e600084815260200190815260200160002090816107d59190613332565b505050565b6107eb6107e5611393565b82611513565b61082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190613476565b60405180910390fd5b6108358383836115a8565b505050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036109cf5760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109d96118a1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610a0591906134c5565b610a0f9190613536565b90508160000151819350935050509250929050565b610a3f83838360405180602001604052806000815250610ffe565b505050565b610a4c611454565b8060099081610a5b9190613332565b5050565b600080610a6b836118ab565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906135b3565b60405180910390fd5b80915050919050565b610aed611454565b8051825114610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061361f565b60405180910390fd5b6000805b8351811015610b7757828181518110610b5157610b5061363f565b5b602002602001015182610b64919061366e565b915080610b70906136a2565b9050610b35565b610b8033610c67565b821115610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613736565b60405180910390fd5b600090505b8351811015610c615760005b838281518110610be657610be561363f565b5b6020026020010151811015610c4f57610c3e33868481518110610c0c57610c0b61363f565b5b6020026020010151600c60008154610c23906136a2565b919050819055604051806020016040528060008152506118e8565b80610c48906136a2565b9050610bd3565b5080610c5a906136a2565b9050610bc7565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce906137c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d26611454565b610d306000611944565b565b610d0581565b80600a9081610d479190613332565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d7d611454565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550610e35600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60149054906101000a90046bffffffffffffffffffffffff16611a0a565b5050565b606060018054610e4890612f9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7490612f9f565b8015610ec15780601f10610e9657610100808354040283529160200191610ec1565b820191906000526020600020905b815481529060010190602001808311610ea457829003601f168201915b5050505050905090565b610ed3611454565b6000610d0582600b54610ee6919061366e565b1115610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613834565b60405180910390fd5b600090505b81811015610fb857610f3c611b9f565b610f47600b54611c31565b604051602001610f589291906138dc565b604051602081830303815290604052600e6000600b5481526020019081526020016000209081610f889190613332565b50610fa733600b60008154610f9c906136a2565b919050819055611cff565b80610fb1906136a2565b9050610f2c565b5050565b610fce610fc7611393565b8383611d1d565b5050565b600b5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61100f611009611393565b83611513565b61104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613476565b60405180910390fd5b61105a848484846118e8565b50505050565b606061106b826114d2565b6110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a19061397d565b60405180910390fd5b6000600e600084815260200190815260200160002080546110ca90612f9f565b80601f01602080910402602001604051908101604052809291908181526020018280546110f690612f9f565b80156111435780601f1061111857610100808354040283529160200191611143565b820191906000526020600020905b81548152906001019060200180831161112657829003601f168201915b5050505050905060008151116111895761115b611b9f565b61116484611c31565b6040516020016111759291906138dc565b60405160208183030381529060405261118b565b805b915050919050565b600c5481565b600d60149054906101000a90046bffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611253611454565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990613a0f565b60405180910390fd5b6112cb81611944565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611341575061134082611e89565b5b9050919050565b611351816114d2565b611390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611387906135b3565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140e83610a5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61145c611393565b73ffffffffffffffffffffffffffffffffffffffff1661147a610d4b565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613a7b565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff166114f4836118ab565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008061151f83610a5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611561575061156081856111b7565b5b8061159f57508373ffffffffffffffffffffffffffffffffffffffff1661158784610608565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115c882610a5f565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613b0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613b9f565b60405180910390fd5b61169a8383836001611f6b565b8273ffffffffffffffffffffffffffffffffffffffff166116ba82610a5f565b73ffffffffffffffffffffffffffffffffffffffff1614611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790613b0d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461189c8383836001611f71565b505050565b6000612710905090565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6118f38484846115a8565b6118ff84848484611f77565b61193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613c31565b60405180910390fd5b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a126118a1565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6790613cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613d2f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b606060098054611bae90612f9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bda90612f9f565b8015611c275780601f10611bfc57610100808354040283529160200191611c27565b820191906000526020600020905b815481529060010190602001808311611c0a57829003601f168201915b5050505050905090565b606060006001611c40846120fe565b01905060008167ffffffffffffffff811115611c5f57611c5e61280c565b5b6040519080825280601f01601f191660200182016040528015611c915781602001600182028036833780820191505090505b509050600082602001820190505b600115611cf4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ce857611ce7613507565b5b04945060008503611c9f575b819350505050919050565b611d19828260405180602001604052806000815250612251565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613d9b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e7c919061260a565b60405180910390a3505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f5457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f645750611f63826122ac565b5b9050919050565b50505050565b50505050565b6000611f988473ffffffffffffffffffffffffffffffffffffffff16612316565b156120f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc1611393565b8786866040518563ffffffff1660e01b8152600401611fe39493929190613e10565b6020604051808303816000875af192505050801561201f57506040513d601f19601f8201168201806040525081019061201c9190613e71565b60015b6120a1573d806000811461204f576040519150601f19603f3d011682016040523d82523d6000602084013e612054565b606091505b506000815103612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090613c31565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120f6565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061215c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161215257612151613507565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612199576d04ee2d6d415b85acef8100000000838161218f5761218e613507565b5b0492506020810190505b662386f26fc1000083106121c857662386f26fc1000083816121be576121bd613507565b5b0492506010810190505b6305f5e10083106121f1576305f5e10083816121e7576121e6613507565b5b0492506008810190505b612710831061221657612710838161220c5761220b613507565b5b0492506004810190505b60648310612239576064838161222f5761222e613507565b5b0492506002810190505b600a8310612248576001810190505b80915050919050565b61225b8383612339565b6122686000848484611f77565b6122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90613c31565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613eea565b60405180910390fd5b6123b1816114d2565b156123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613f56565b60405180910390fd5b6123ff600083836001611f6b565b612408816114d2565b15612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f90613f56565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612552600083836001611f71565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61259f8161256a565b81146125aa57600080fd5b50565b6000813590506125bc81612596565b92915050565b6000602082840312156125d8576125d7612560565b5b60006125e6848285016125ad565b91505092915050565b60008115159050919050565b612604816125ef565b82525050565b600060208201905061261f60008301846125fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561265f578082015181840152602081019050612644565b60008484015250505050565b6000601f19601f8301169050919050565b600061268782612625565b6126918185612630565b93506126a1818560208601612641565b6126aa8161266b565b840191505092915050565b600060208201905081810360008301526126cf818461267c565b905092915050565b6000819050919050565b6126ea816126d7565b81146126f557600080fd5b50565b600081359050612707816126e1565b92915050565b60006020828403121561272357612722612560565b5b6000612731848285016126f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127658261273a565b9050919050565b6127758161275a565b82525050565b6000602082019050612790600083018461276c565b92915050565b61279f8161275a565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b600080604083850312156127d9576127d8612560565b5b60006127e7858286016127ad565b92505060206127f8858286016126f8565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128448261266b565b810181811067ffffffffffffffff821117156128635761286261280c565b5b80604052505050565b6000612876612556565b9050612882828261283b565b919050565b600067ffffffffffffffff8211156128a2576128a161280c565b5b6128ab8261266b565b9050602081019050919050565b82818337600083830152505050565b60006128da6128d584612887565b61286c565b9050828152602081018484840111156128f6576128f5612807565b5b6129018482856128b8565b509392505050565b600082601f83011261291e5761291d612802565b5b813561292e8482602086016128c7565b91505092915050565b6000806040838503121561294e5761294d612560565b5b600061295c858286016126f8565b925050602083013567ffffffffffffffff81111561297d5761297c612565565b5b61298985828601612909565b9150509250929050565b6000806000606084860312156129ac576129ab612560565b5b60006129ba868287016127ad565b93505060206129cb868287016127ad565b92505060406129dc868287016126f8565b9150509250925092565b600080604083850312156129fd576129fc612560565b5b6000612a0b858286016126f8565b9250506020612a1c858286016126f8565b9150509250929050565b612a2f816126d7565b82525050565b6000604082019050612a4a600083018561276c565b612a576020830184612a26565b9392505050565b600060208284031215612a7457612a73612560565b5b600082013567ffffffffffffffff811115612a9257612a91612565565b5b612a9e84828501612909565b91505092915050565b600067ffffffffffffffff821115612ac257612ac161280c565b5b602082029050602081019050919050565b600080fd5b6000612aeb612ae684612aa7565b61286c565b90508083825260208201905060208402830185811115612b0e57612b0d612ad3565b5b835b81811015612b375780612b2388826127ad565b845260208401935050602081019050612b10565b5050509392505050565b600082601f830112612b5657612b55612802565b5b8135612b66848260208601612ad8565b91505092915050565b600067ffffffffffffffff821115612b8a57612b8961280c565b5b602082029050602081019050919050565b6000612bae612ba984612b6f565b61286c565b90508083825260208201905060208402830185811115612bd157612bd0612ad3565b5b835b81811015612bfa5780612be688826126f8565b845260208401935050602081019050612bd3565b5050509392505050565b600082601f830112612c1957612c18612802565b5b8135612c29848260208601612b9b565b91505092915050565b60008060408385031215612c4957612c48612560565b5b600083013567ffffffffffffffff811115612c6757612c66612565565b5b612c7385828601612b41565b925050602083013567ffffffffffffffff811115612c9457612c93612565565b5b612ca085828601612c04565b9150509250929050565b600060208284031215612cc057612cbf612560565b5b6000612cce848285016127ad565b91505092915050565b6000602082019050612cec6000830184612a26565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612d1381612cf2565b8114612d1e57600080fd5b50565b600081359050612d3081612d0a565b92915050565b60008060408385031215612d4d57612d4c612560565b5b6000612d5b858286016127ad565b9250506020612d6c85828601612d21565b9150509250929050565b612d7f816125ef565b8114612d8a57600080fd5b50565b600081359050612d9c81612d76565b92915050565b60008060408385031215612db957612db8612560565b5b6000612dc7858286016127ad565b9250506020612dd885828601612d8d565b9150509250929050565b600067ffffffffffffffff821115612dfd57612dfc61280c565b5b612e068261266b565b9050602081019050919050565b6000612e26612e2184612de2565b61286c565b905082815260208101848484011115612e4257612e41612807565b5b612e4d8482856128b8565b509392505050565b600082601f830112612e6a57612e69612802565b5b8135612e7a848260208601612e13565b91505092915050565b60008060008060808587031215612e9d57612e9c612560565b5b6000612eab878288016127ad565b9450506020612ebc878288016127ad565b9350506040612ecd878288016126f8565b925050606085013567ffffffffffffffff811115612eee57612eed612565565b5b612efa87828801612e55565b91505092959194509250565b612f0f81612cf2565b82525050565b6000602082019050612f2a6000830184612f06565b92915050565b60008060408385031215612f4757612f46612560565b5b6000612f55858286016127ad565b9250506020612f66858286016127ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fb757607f821691505b602082108103612fca57612fc9612f70565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061302c602183612630565b915061303782612fd0565b604082019050919050565b6000602082019050818103600083015261305b8161301f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006130be603d83612630565b91506130c982613062565b604082019050919050565b600060208201905081810360008301526130ed816130b1565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613150602c83612630565b915061315b826130f4565b604082019050919050565b6000602082019050818103600083015261317f81613143565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131ab565b6131f286836131ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061322f61322a613225846126d7565b61320a565b6126d7565b9050919050565b6000819050919050565b61324983613214565b61325d61325582613236565b8484546131b8565b825550505050565b600090565b613272613265565b61327d818484613240565b505050565b5b818110156132a15761329660008261326a565b600181019050613283565b5050565b601f8211156132e6576132b781613186565b6132c08461319b565b810160208510156132cf578190505b6132e36132db8561319b565b830182613282565b50505b505050565b600082821c905092915050565b6000613309600019846008026132eb565b1980831691505092915050565b600061332283836132f8565b9150826002028217905092915050565b61333b82612625565b67ffffffffffffffff8111156133545761335361280c565b5b61335e8254612f9f565b6133698282856132a5565b600060209050601f83116001811461339c576000841561338a578287015190505b6133948582613316565b8655506133fc565b601f1984166133aa86613186565b60005b828110156133d2578489015182556001820191506020850194506020810190506133ad565b868310156133ef57848901516133eb601f8916826132f8565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613460602d83612630565b915061346b82613404565b604082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134d0826126d7565b91506134db836126d7565b92508282026134e9816126d7565b91508282048414831517613500576134ff613496565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613541826126d7565b915061354c836126d7565b92508261355c5761355b613507565b5b828204905092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061359d601883612630565b91506135a882613567565b602082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f496e636f727265637420696e7075740000000000000000000000000000000000600082015250565b6000613609600f83612630565b9150613614826135d3565b602082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613679826126d7565b9150613684836126d7565b925082820190508082111561369c5761369b613496565b5b92915050565b60006136ad826126d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136df576136de613496565b5b600182019050919050565b7f45786365656473206f776e696e67206e66747300000000000000000000000000600082015250565b6000613720601383612630565b915061372b826136ea565b602082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137b2602983612630565b91506137bd82613756565b604082019050919050565b600060208201905081810360008301526137e1816137a5565b9050919050565b7f45786365656473206d6178206e66747300000000000000000000000000000000600082015250565b600061381e601083612630565b9150613829826137e8565b602082019050919050565b6000602082019050818103600083015261384d81613811565b9050919050565b600081905092915050565b600061386a82612625565b6138748185613854565b9350613884818560208601612641565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138c6600583613854565b91506138d182613890565b600582019050919050565b60006138e8828561385f565b91506138f4828461385f565b91506138ff826138b9565b91508190509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613967602f83612630565b91506139728261390b565b604082019050919050565b600060208201905081810360008301526139968161395a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139f9602683612630565b9150613a048261399d565b604082019050919050565b60006020820190508181036000830152613a28816139ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a65602083612630565b9150613a7082613a2f565b602082019050919050565b60006020820190508181036000830152613a9481613a58565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613af7602583612630565b9150613b0282613a9b565b604082019050919050565b60006020820190508181036000830152613b2681613aea565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b89602483612630565b9150613b9482613b2d565b604082019050919050565b60006020820190508181036000830152613bb881613b7c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c1b603283612630565b9150613c2682613bbf565b604082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000613cad602a83612630565b9150613cb882613c51565b604082019050919050565b60006020820190508181036000830152613cdc81613ca0565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613d19601983612630565b9150613d2482613ce3565b602082019050919050565b60006020820190508181036000830152613d4881613d0c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d85601983612630565b9150613d9082613d4f565b602082019050919050565b60006020820190508181036000830152613db481613d78565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613de282613dbb565b613dec8185613dc6565b9350613dfc818560208601612641565b613e058161266b565b840191505092915050565b6000608082019050613e25600083018761276c565b613e32602083018661276c565b613e3f6040830185612a26565b8181036060830152613e518184613dd7565b905095945050505050565b600081519050613e6b81612596565b92915050565b600060208284031215613e8757613e86612560565b5b6000613e9584828501613e5c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ed4602083612630565b9150613edf82613e9e565b602082019050919050565b60006020820190508181036000830152613f0381613ec7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f40601c83612630565b9150613f4b82613f0a565b602082019050919050565b60006020820190508181036000830152613f6f81613f33565b905091905056fea264697066735822122012978dca7c89062681a381714404fb37e98b209b378359ff4dd1c51e9292f34f64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c1dd658dd0fbec6fb6b65f3bd8e400586192646a00000000000000000000000000000000000000000000000000000000000001f4
-----Decoded View---------------
Arg [0] : _royaltyAddress (address): 0xC1dD658DD0fbEc6fB6B65F3Bd8E400586192646A
Arg [1] : _royaltyBips (uint96): 500
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c1dd658dd0fbec6fb6b65f3bd8e400586192646a
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode Sourcemap
67897:2884:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70612:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45603:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47115:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46633:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70180:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47815:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33774:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;48221:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69628:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45313:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68962:554;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45044:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;:::i;:::-;;68148:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69730:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70392:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45772:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68617:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47358:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68195:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68263:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48477:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69832:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68226:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68297:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47584:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70612:164;70714:4;70734:36;70758:11;70734:23;:36::i;:::-;70727:43;;70612:164;;;:::o;45603:100::-;45657:13;45690:5;45683:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45603:100;:::o;47115:171::-;47191:7;47211:23;47226:7;47211:14;:23::i;:::-;47254:15;:24;47270:7;47254:24;;;;;;;;;;;;;;;;;;;;;47247:31;;47115:171;;;:::o;46633:416::-;46714:13;46730:23;46745:7;46730:14;:23::i;:::-;46714:39;;46778:5;46772:11;;:2;:11;;;46764:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46872:5;46856:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46881:37;46898:5;46905:12;:10;:12::i;:::-;46881:16;:37::i;:::-;46856:62;46834:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;47020:21;47029:2;47033:7;47020:8;:21::i;:::-;46703:346;46633:416;;:::o;70180:206::-;17213:13;:11;:13::i;:::-;70276:16:::1;70284:7;70276;:16::i;:::-;70268:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;70372:8;70350:10;:19;70361:7;70350:19;;;;;;;;;;;:30;;;;;;:::i;:::-;;70180:206:::0;;:::o;47815:335::-;48010:41;48029:12;:10;:12::i;:::-;48043:7;48010:18;:41::i;:::-;48002:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48114:28;48124:4;48130:2;48134:7;48114:9;:28::i;:::-;47815:335;;;:::o;33774:442::-;33871:7;33880;33900:26;33929:17;:27;33947:8;33929:27;;;;;;;;;;;33900:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34001:1;33973:30;;:7;:16;;;:30;;;33969:92;;34030:19;34020:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33969:92;34073:21;34138:17;:15;:17::i;:::-;34097:58;;34111:7;:23;;;34098:36;;:10;:36;;;;:::i;:::-;34097:58;;;;:::i;:::-;34073:82;;34176:7;:16;;;34194:13;34168:40;;;;;;33774:442;;;;;:::o;48221:185::-;48359:39;48376:4;48382:2;48386:7;48359:39;;;;;;;;;;;;:16;:39::i;:::-;48221:185;;;:::o;69628:96::-;17213:13;:11;:13::i;:::-;69711:7:::1;69695:13;:23;;;;;;:::i;:::-;;69628:96:::0;:::o;45313:223::-;45385:7;45405:13;45421:17;45430:7;45421:8;:17::i;:::-;45405:33;;45474:1;45457:19;;:5;:19;;;45449:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;45523:5;45516:12;;;45313:223;;;:::o;68962:554::-;17213:13;:11;:13::i;:::-;69083:7:::1;:14;69065:7;:14;:32;69057:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;69124:19;69154:9:::0;69170:81:::1;69187:7;:14;69183:1;:18;69170:81;;;69233:7;69241:1;69233:10;;;;;;;;:::i;:::-;;;;;;;;69218:25;;;;;:::i;:::-;;;69204:3;;;;:::i;:::-;;;69170:81;;;69280:21;69290:10;69280:9;:21::i;:::-;69265:11;:36;;69257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69341:1;69337:5;;69332:179;69349:7;:14;69345:1;:18;69332:179;;;69385:9;69380:124;69405:7;69413:1;69405:10;;;;;;;;:::i;:::-;;;;;;;;69401:1;:14;69380:124;;;69434:60;69448:10;69460:7;69468:1;69460:10;;;;;;;;:::i;:::-;;;;;;;;69474:15;;69472:17;;;;;:::i;:::-;;;;;;;69434:60;;;;;;;;;;;::::0;:13:::1;:60::i;:::-;69418:3;;;;:::i;:::-;;;69380:124;;;;69366:3;;;;:::i;:::-;;;69332:179;;;69050:466;;68962:554:::0;;:::o;45044:207::-;45116:7;45161:1;45144:19;;:5;:19;;;45136:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45227:9;:16;45237:5;45227:16;;;;;;;;;;;;;;;;45220:23;;45044:207;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;68148:42::-;68186:4;68148:42;:::o;69730:96::-;69808:12;69796:9;:24;;;;;;:::i;:::-;;69730:96;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;70392:214::-;17213:13;:11;:13::i;:::-;70498:15:::1;70481:14;;:32;;;;;;;;;;;;;;;;;;70534:12;70520:11;;:26;;;;;;;;;;;;;;;;;;70553:47;70572:14;;;;;;;;;;;70588:11;;;;;;;;;;;70553:18;:47::i;:::-;70392:214:::0;;:::o;45772:104::-;45828:13;45861:7;45854:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45772:104;:::o;68617:339::-;17213:13;:11;:13::i;:::-;68676:9:::1;68186:4;68714:6;68700:11;;:20;;;;:::i;:::-;:35;;68692:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68772:1;68768:5;;68763:188;68780:6;68776:1;:10;68763:188;;;68853:10;:8;:10::i;:::-;68865:22;:11;;:20;:22::i;:::-;68836:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68803:10;:23;68814:11;;68803:23;;;;;;;;;;;:95;;;;;;:::i;:::-;;68907:36;68917:10;68931:11;;68929:13;;;;;:::i;:::-;;;;;;;68907:9;:36::i;:::-;68789:3;;;;:::i;:::-;;;68763:188;;;68669:287;68617:339:::0;:::o;47358:155::-;47453:52;47472:12;:10;:12::i;:::-;47486:8;47496;47453:18;:52::i;:::-;47358:155;;:::o;68195:26::-;;;;:::o;68263:29::-;;;;;;;;;;;;;:::o;48477:322::-;48651:41;48670:12;:10;:12::i;:::-;48684:7;48651:18;:41::i;:::-;48643:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48753:38;48767:4;48773:2;48777:7;48786:4;48753:13;:38::i;:::-;48477:322;;;;:::o;69832:342::-;69897:13;69927:16;69935:7;69927;:16::i;:::-;69919:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;70002:23;70028:10;:19;70039:7;70028:19;;;;;;;;;;;70002:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70087:1;70067:9;70061:23;:27;:107;;70127:10;:8;:10::i;:::-;70139:18;:7;:16;:18::i;:::-;70110:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70061:107;;;70091:9;70061:107;70054:114;;;69832:342;;;:::o;68226:30::-;;;;:::o;68297:25::-;;;;;;;;;;;;;:::o;47584:164::-;47681:4;47705:18;:25;47724:5;47705:25;;;;;;;;;;;;;;;:35;47731:8;47705:35;;;;;;;;;;;;;;;;;;;;;;;;;47698:42;;47584:164;;;;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;::::0;18314:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;33504:215::-;33606:4;33645:26;33630:41;;;:11;:41;;;;:81;;;;33675:36;33699:11;33675:23;:36::i;:::-;33630:81;33623:88;;33504:215;;;:::o;56934:135::-;57016:16;57024:7;57016;:16::i;:::-;57008:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56934:135;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;56213:174::-;56315:2;56288:15;:24;56304:7;56288:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56371:7;56367:2;56333:46;;56342:23;56357:7;56342:14;:23::i;:::-;56333:46;;;;;;;;;;;;56213:174;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;50537:128::-;50602:4;50655:1;50626:31;;:17;50635:7;50626:8;:17::i;:::-;:31;;;;50619:38;;50537:128;;;:::o;50832:264::-;50925:4;50942:13;50958:23;50973:7;50958:14;:23::i;:::-;50942:39;;51011:5;51000:16;;:7;:16;;;:52;;;;51020:32;51037:5;51044:7;51020:16;:32::i;:::-;51000:52;:87;;;;51080:7;51056:31;;:20;51068:7;51056:11;:20::i;:::-;:31;;;51000:87;50992:96;;;50832:264;;;;:::o;54831:1263::-;54990:4;54963:31;;:23;54978:7;54963:14;:23::i;:::-;:31;;;54955:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55069:1;55055:16;;:2;:16;;;55047:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55125:42;55146:4;55152:2;55156:7;55165:1;55125:20;:42::i;:::-;55297:4;55270:31;;:23;55285:7;55270:14;:23::i;:::-;:31;;;55262:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55415:15;:24;55431:7;55415:24;;;;;;;;;;;;55408:31;;;;;;;;;;;55910:1;55891:9;:15;55901:4;55891:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;55943:1;55926:9;:13;55936:2;55926:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;55985:2;55966:7;:16;55974:7;55966:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56024:7;56020:2;56005:27;;56014:4;56005:27;;;;;;;;;;;;56045:41;56065:4;56071:2;56075:7;56084:1;56045:19;:41::i;:::-;54831:1263;;;:::o;34498:97::-;34556:6;34582:5;34575:12;;34498:97;:::o;50107:117::-;50173:7;50200;:16;50208:7;50200:16;;;;;;;;;;;;;;;;;;;;;50193:23;;50107:117;;;:::o;49680:313::-;49836:28;49846:4;49852:2;49856:7;49836:9;:28::i;:::-;49883:47;49906:4;49912:2;49916:7;49925:4;49883:22;:47::i;:::-;49875:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;49680:313;;;;:::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18657:128;18594:191;:::o;34866:332::-;34985:17;:15;:17::i;:::-;34969:33;;:12;:33;;;;34961:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;35088:1;35068:22;;:8;:22;;;35060:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35155:35;;;;;;;;35167:8;35155:35;;;;;;35177:12;35155:35;;;;;35133:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34866:332;;:::o;69522:100::-;69574:13;69603;69596:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69522:100;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;51438:110::-;51514:26;51524:2;51528:7;51514:26;;;;;;;;;;;;:9;:26::i;:::-;51438:110;;:::o;56530:315::-;56685:8;56676:17;;:5;:17;;;56668:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56772:8;56734:18;:25;56753:5;56734:25;;;;;;;;;;;;;;;:35;56760:8;56734:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;56818:8;56796:41;;56811:5;56796:41;;;56828:8;56796:41;;;;;;:::i;:::-;;;;;;;;56530:315;;;:::o;44675:305::-;44777:4;44829:25;44814:40;;;:11;:40;;;;:105;;;;44886:33;44871:48;;;:11;:48;;;;44814:105;:158;;;;44936:36;44960:11;44936:23;:36::i;:::-;44814:158;44794:178;;44675:305;;;:::o;59218:159::-;;;;;:::o;60099:158::-;;;;;:::o;57633:853::-;57787:4;57808:15;:2;:13;;;:15::i;:::-;57804:675;;;57860:2;57844:36;;;57881:12;:10;:12::i;:::-;57895:4;57901:7;57910:4;57844:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57840:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58102:1;58085:6;:13;:18;58081:328;;58128:60;;;;;;;;;;:::i;:::-;;;;;;;;58081:328;58359:6;58353:13;58344:6;58340:2;58336:15;58329:38;57840:584;57976:41;;;57966:51;;;:6;:51;;;;57959:58;;;;;57804:675;58463:4;58456:11;;57633:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;51775:319::-;51904:18;51910:2;51914:7;51904:5;:18::i;:::-;51955:53;51986:1;51990:2;51994:7;52003:4;51955:22;:53::i;:::-;51933:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;51775:319;;;:::o;31954:157::-;32039:4;32078:25;32063:40;;;:11;:40;;;;32056:47;;31954:157;;;:::o;20025:326::-;20085:4;20342:1;20320:7;:19;;;:23;20313:30;;20025:326;;;:::o;52430:942::-;52524:1;52510:16;;:2;:16;;;52502:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52583:16;52591:7;52583;:16::i;:::-;52582:17;52574:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52645:48;52674:1;52678:2;52682:7;52691:1;52645:20;:48::i;:::-;52792:16;52800:7;52792;:16::i;:::-;52791:17;52783:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:1;53190:9;:13;53200:2;53190:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53251:2;53232:7;:16;53240:7;53232:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53296:7;53292:2;53271:33;;53288:1;53271:33;;;;;;;;;;;;53317:47;53345:1;53349:2;53353:7;53362:1;53317:19;:47::i;:::-;52430:942;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:654::-;7079:6;7087;7136:2;7124:9;7115:7;7111:23;7107:32;7104:119;;;7142:79;;:::i;:::-;7104:119;7262:1;7287:53;7332:7;7323:6;7312:9;7308:22;7287:53;:::i;:::-;7277:63;;7233:117;7417:2;7406:9;7402:18;7389:32;7448:18;7440:6;7437:30;7434:117;;;7470:79;;:::i;:::-;7434:117;7575:63;7630:7;7621:6;7610:9;7606:22;7575:63;:::i;:::-;7565:73;;7360:288;7001:654;;;;;:::o;7661:619::-;7738:6;7746;7754;7803:2;7791:9;7782:7;7778:23;7774:32;7771:119;;;7809:79;;:::i;:::-;7771:119;7929:1;7954:53;7999:7;7990:6;7979:9;7975:22;7954:53;:::i;:::-;7944:63;;7900:117;8056:2;8082:53;8127:7;8118:6;8107:9;8103:22;8082:53;:::i;:::-;8072:63;;8027:118;8184:2;8210:53;8255:7;8246:6;8235:9;8231:22;8210:53;:::i;:::-;8200:63;;8155:118;7661:619;;;;;:::o;8286:474::-;8354:6;8362;8411:2;8399:9;8390:7;8386:23;8382:32;8379:119;;;8417:79;;:::i;:::-;8379:119;8537:1;8562:53;8607:7;8598:6;8587:9;8583:22;8562:53;:::i;:::-;8552:63;;8508:117;8664:2;8690:53;8735:7;8726:6;8715:9;8711:22;8690:53;:::i;:::-;8680:63;;8635:118;8286:474;;;;;:::o;8766:118::-;8853:24;8871:5;8853:24;:::i;:::-;8848:3;8841:37;8766:118;;:::o;8890:332::-;9011:4;9049:2;9038:9;9034:18;9026:26;;9062:71;9130:1;9119:9;9115:17;9106:6;9062:71;:::i;:::-;9143:72;9211:2;9200:9;9196:18;9187:6;9143:72;:::i;:::-;8890:332;;;;;:::o;9228:509::-;9297:6;9346:2;9334:9;9325:7;9321:23;9317:32;9314:119;;;9352:79;;:::i;:::-;9314:119;9500:1;9489:9;9485:17;9472:31;9530:18;9522:6;9519:30;9516:117;;;9552:79;;:::i;:::-;9516:117;9657:63;9712:7;9703:6;9692:9;9688:22;9657:63;:::i;:::-;9647:73;;9443:287;9228:509;;;;:::o;9743:311::-;9820:4;9910:18;9902:6;9899:30;9896:56;;;9932:18;;:::i;:::-;9896:56;9982:4;9974:6;9970:17;9962:25;;10042:4;10036;10032:15;10024:23;;9743:311;;;:::o;10060:117::-;10169:1;10166;10159:12;10200:710;10296:5;10321:81;10337:64;10394:6;10337:64;:::i;:::-;10321:81;:::i;:::-;10312:90;;10422:5;10451:6;10444:5;10437:21;10485:4;10478:5;10474:16;10467:23;;10538:4;10530:6;10526:17;10518:6;10514:30;10567:3;10559:6;10556:15;10553:122;;;10586:79;;:::i;:::-;10553:122;10701:6;10684:220;10718:6;10713:3;10710:15;10684:220;;;10793:3;10822:37;10855:3;10843:10;10822:37;:::i;:::-;10817:3;10810:50;10889:4;10884:3;10880:14;10873:21;;10760:144;10744:4;10739:3;10735:14;10728:21;;10684:220;;;10688:21;10302:608;;10200:710;;;;;:::o;10933:370::-;11004:5;11053:3;11046:4;11038:6;11034:17;11030:27;11020:122;;11061:79;;:::i;:::-;11020:122;11178:6;11165:20;11203:94;11293:3;11285:6;11278:4;11270:6;11266:17;11203:94;:::i;:::-;11194:103;;11010:293;10933:370;;;;:::o;11309:311::-;11386:4;11476:18;11468:6;11465:30;11462:56;;;11498:18;;:::i;:::-;11462:56;11548:4;11540:6;11536:17;11528:25;;11608:4;11602;11598:15;11590:23;;11309:311;;;:::o;11643:710::-;11739:5;11764:81;11780:64;11837:6;11780:64;:::i;:::-;11764:81;:::i;:::-;11755:90;;11865:5;11894:6;11887:5;11880:21;11928:4;11921:5;11917:16;11910:23;;11981:4;11973:6;11969:17;11961:6;11957:30;12010:3;12002:6;11999:15;11996:122;;;12029:79;;:::i;:::-;11996:122;12144:6;12127:220;12161:6;12156:3;12153:15;12127:220;;;12236:3;12265:37;12298:3;12286:10;12265:37;:::i;:::-;12260:3;12253:50;12332:4;12327:3;12323:14;12316:21;;12203:144;12187:4;12182:3;12178:14;12171:21;;12127:220;;;12131:21;11745:608;;11643:710;;;;;:::o;12376:370::-;12447:5;12496:3;12489:4;12481:6;12477:17;12473:27;12463:122;;12504:79;;:::i;:::-;12463:122;12621:6;12608:20;12646:94;12736:3;12728:6;12721:4;12713:6;12709:17;12646:94;:::i;:::-;12637:103;;12453:293;12376:370;;;;:::o;12752:894::-;12870:6;12878;12927:2;12915:9;12906:7;12902:23;12898:32;12895:119;;;12933:79;;:::i;:::-;12895:119;13081:1;13070:9;13066:17;13053:31;13111:18;13103:6;13100:30;13097:117;;;13133:79;;:::i;:::-;13097:117;13238:78;13308:7;13299:6;13288:9;13284:22;13238:78;:::i;:::-;13228:88;;13024:302;13393:2;13382:9;13378:18;13365:32;13424:18;13416:6;13413:30;13410:117;;;13446:79;;:::i;:::-;13410:117;13551:78;13621:7;13612:6;13601:9;13597:22;13551:78;:::i;:::-;13541:88;;13336:303;12752:894;;;;;:::o;13652:329::-;13711:6;13760:2;13748:9;13739:7;13735:23;13731:32;13728:119;;;13766:79;;:::i;:::-;13728:119;13886:1;13911:53;13956:7;13947:6;13936:9;13932:22;13911:53;:::i;:::-;13901:63;;13857:117;13652:329;;;;:::o;13987:222::-;14080:4;14118:2;14107:9;14103:18;14095:26;;14131:71;14199:1;14188:9;14184:17;14175:6;14131:71;:::i;:::-;13987:222;;;;:::o;14215:109::-;14251:7;14291:26;14284:5;14280:38;14269:49;;14215:109;;;:::o;14330:120::-;14402:23;14419:5;14402:23;:::i;:::-;14395:5;14392:34;14382:62;;14440:1;14437;14430:12;14382:62;14330:120;:::o;14456:137::-;14501:5;14539:6;14526:20;14517:29;;14555:32;14581:5;14555:32;:::i;:::-;14456:137;;;;:::o;14599:472::-;14666:6;14674;14723:2;14711:9;14702:7;14698:23;14694:32;14691:119;;;14729:79;;:::i;:::-;14691:119;14849:1;14874:53;14919:7;14910:6;14899:9;14895:22;14874:53;:::i;:::-;14864:63;;14820:117;14976:2;15002:52;15046:7;15037:6;15026:9;15022:22;15002:52;:::i;:::-;14992:62;;14947:117;14599:472;;;;;:::o;15077:116::-;15147:21;15162:5;15147:21;:::i;:::-;15140:5;15137:32;15127:60;;15183:1;15180;15173:12;15127:60;15077:116;:::o;15199:133::-;15242:5;15280:6;15267:20;15258:29;;15296:30;15320:5;15296:30;:::i;:::-;15199:133;;;;:::o;15338:468::-;15403:6;15411;15460:2;15448:9;15439:7;15435:23;15431:32;15428:119;;;15466:79;;:::i;:::-;15428:119;15586:1;15611:53;15656:7;15647:6;15636:9;15632:22;15611:53;:::i;:::-;15601:63;;15557:117;15713:2;15739:50;15781:7;15772:6;15761:9;15757:22;15739:50;:::i;:::-;15729:60;;15684:115;15338:468;;;;;:::o;15812:307::-;15873:4;15963:18;15955:6;15952:30;15949:56;;;15985:18;;:::i;:::-;15949:56;16023:29;16045:6;16023:29;:::i;:::-;16015:37;;16107:4;16101;16097:15;16089:23;;15812:307;;;:::o;16125:423::-;16202:5;16227:65;16243:48;16284:6;16243:48;:::i;:::-;16227:65;:::i;:::-;16218:74;;16315:6;16308:5;16301:21;16353:4;16346:5;16342:16;16391:3;16382:6;16377:3;16373:16;16370:25;16367:112;;;16398:79;;:::i;:::-;16367:112;16488:54;16535:6;16530:3;16525;16488:54;:::i;:::-;16208:340;16125:423;;;;;:::o;16567:338::-;16622:5;16671:3;16664:4;16656:6;16652:17;16648:27;16638:122;;16679:79;;:::i;:::-;16638:122;16796:6;16783:20;16821:78;16895:3;16887:6;16880:4;16872:6;16868:17;16821:78;:::i;:::-;16812:87;;16628:277;16567:338;;;;:::o;16911:943::-;17006:6;17014;17022;17030;17079:3;17067:9;17058:7;17054:23;17050:33;17047:120;;;17086:79;;:::i;:::-;17047:120;17206:1;17231:53;17276:7;17267:6;17256:9;17252:22;17231:53;:::i;:::-;17221:63;;17177:117;17333:2;17359:53;17404:7;17395:6;17384:9;17380:22;17359:53;:::i;:::-;17349:63;;17304:118;17461:2;17487:53;17532:7;17523:6;17512:9;17508:22;17487:53;:::i;:::-;17477:63;;17432:118;17617:2;17606:9;17602:18;17589:32;17648:18;17640:6;17637:30;17634:117;;;17670:79;;:::i;:::-;17634:117;17775:62;17829:7;17820:6;17809:9;17805:22;17775:62;:::i;:::-;17765:72;;17560:287;16911:943;;;;;;;:::o;17860:115::-;17945:23;17962:5;17945:23;:::i;:::-;17940:3;17933:36;17860:115;;:::o;17981:218::-;18072:4;18110:2;18099:9;18095:18;18087:26;;18123:69;18189:1;18178:9;18174:17;18165:6;18123:69;:::i;:::-;17981:218;;;;:::o;18205:474::-;18273:6;18281;18330:2;18318:9;18309:7;18305:23;18301:32;18298:119;;;18336:79;;:::i;:::-;18298:119;18456:1;18481:53;18526:7;18517:6;18506:9;18502:22;18481:53;:::i;:::-;18471:63;;18427:117;18583:2;18609:53;18654:7;18645:6;18634:9;18630:22;18609:53;:::i;:::-;18599:63;;18554:118;18205:474;;;;;:::o;18685:180::-;18733:77;18730:1;18723:88;18830:4;18827:1;18820:15;18854:4;18851:1;18844:15;18871:320;18915:6;18952:1;18946:4;18942:12;18932:22;;18999:1;18993:4;18989:12;19020:18;19010:81;;19076:4;19068:6;19064:17;19054:27;;19010:81;19138:2;19130:6;19127:14;19107:18;19104:38;19101:84;;19157:18;;:::i;:::-;19101:84;18922:269;18871:320;;;:::o;19197:220::-;19337:34;19333:1;19325:6;19321:14;19314:58;19406:3;19401:2;19393:6;19389:15;19382:28;19197:220;:::o;19423:366::-;19565:3;19586:67;19650:2;19645:3;19586:67;:::i;:::-;19579:74;;19662:93;19751:3;19662:93;:::i;:::-;19780:2;19775:3;19771:12;19764:19;;19423:366;;;:::o;19795:419::-;19961:4;19999:2;19988:9;19984:18;19976:26;;20048:9;20042:4;20038:20;20034:1;20023:9;20019:17;20012:47;20076:131;20202:4;20076:131;:::i;:::-;20068:139;;19795:419;;;:::o;20220:248::-;20360:34;20356:1;20348:6;20344:14;20337:58;20429:31;20424:2;20416:6;20412:15;20405:56;20220:248;:::o;20474:366::-;20616:3;20637:67;20701:2;20696:3;20637:67;:::i;:::-;20630:74;;20713:93;20802:3;20713:93;:::i;:::-;20831:2;20826:3;20822:12;20815:19;;20474:366;;;:::o;20846:419::-;21012:4;21050:2;21039:9;21035:18;21027:26;;21099:9;21093:4;21089:20;21085:1;21074:9;21070:17;21063:47;21127:131;21253:4;21127:131;:::i;:::-;21119:139;;20846:419;;;:::o;21271:231::-;21411:34;21407:1;21399:6;21395:14;21388:58;21480:14;21475:2;21467:6;21463:15;21456:39;21271:231;:::o;21508:366::-;21650:3;21671:67;21735:2;21730:3;21671:67;:::i;:::-;21664:74;;21747:93;21836:3;21747:93;:::i;:::-;21865:2;21860:3;21856:12;21849:19;;21508:366;;;:::o;21880:419::-;22046:4;22084:2;22073:9;22069:18;22061:26;;22133:9;22127:4;22123:20;22119:1;22108:9;22104:17;22097:47;22161:131;22287:4;22161:131;:::i;:::-;22153:139;;21880:419;;;:::o;22305:141::-;22354:4;22377:3;22369:11;;22400:3;22397:1;22390:14;22434:4;22431:1;22421:18;22413:26;;22305:141;;;:::o;22452:93::-;22489:6;22536:2;22531;22524:5;22520:14;22516:23;22506:33;;22452:93;;;:::o;22551:107::-;22595:8;22645:5;22639:4;22635:16;22614:37;;22551:107;;;;:::o;22664:393::-;22733:6;22783:1;22771:10;22767:18;22806:97;22836:66;22825:9;22806:97;:::i;:::-;22924:39;22954:8;22943:9;22924:39;:::i;:::-;22912:51;;22996:4;22992:9;22985:5;22981:21;22972:30;;23045:4;23035:8;23031:19;23024:5;23021:30;23011:40;;22740:317;;22664:393;;;;;:::o;23063:60::-;23091:3;23112:5;23105:12;;23063:60;;;:::o;23129:142::-;23179:9;23212:53;23230:34;23239:24;23257:5;23239:24;:::i;:::-;23230:34;:::i;:::-;23212:53;:::i;:::-;23199:66;;23129:142;;;:::o;23277:75::-;23320:3;23341:5;23334:12;;23277:75;;;:::o;23358:269::-;23468:39;23499:7;23468:39;:::i;:::-;23529:91;23578:41;23602:16;23578:41;:::i;:::-;23570:6;23563:4;23557:11;23529:91;:::i;:::-;23523:4;23516:105;23434:193;23358:269;;;:::o;23633:73::-;23678:3;23633:73;:::o;23712:189::-;23789:32;;:::i;:::-;23830:65;23888:6;23880;23874:4;23830:65;:::i;:::-;23765:136;23712:189;;:::o;23907:186::-;23967:120;23984:3;23977:5;23974:14;23967:120;;;24038:39;24075:1;24068:5;24038:39;:::i;:::-;24011:1;24004:5;24000:13;23991:22;;23967:120;;;23907:186;;:::o;24099:543::-;24200:2;24195:3;24192:11;24189:446;;;24234:38;24266:5;24234:38;:::i;:::-;24318:29;24336:10;24318:29;:::i;:::-;24308:8;24304:44;24501:2;24489:10;24486:18;24483:49;;;24522:8;24507:23;;24483:49;24545:80;24601:22;24619:3;24601:22;:::i;:::-;24591:8;24587:37;24574:11;24545:80;:::i;:::-;24204:431;;24189:446;24099:543;;;:::o;24648:117::-;24702:8;24752:5;24746:4;24742:16;24721:37;;24648:117;;;;:::o;24771:169::-;24815:6;24848:51;24896:1;24892:6;24884:5;24881:1;24877:13;24848:51;:::i;:::-;24844:56;24929:4;24923;24919:15;24909:25;;24822:118;24771:169;;;;:::o;24945:295::-;25021:4;25167:29;25192:3;25186:4;25167:29;:::i;:::-;25159:37;;25229:3;25226:1;25222:11;25216:4;25213:21;25205:29;;24945:295;;;;:::o;25245:1395::-;25362:37;25395:3;25362:37;:::i;:::-;25464:18;25456:6;25453:30;25450:56;;;25486:18;;:::i;:::-;25450:56;25530:38;25562:4;25556:11;25530:38;:::i;:::-;25615:67;25675:6;25667;25661:4;25615:67;:::i;:::-;25709:1;25733:4;25720:17;;25765:2;25757:6;25754:14;25782:1;25777:618;;;;26439:1;26456:6;26453:77;;;26505:9;26500:3;26496:19;26490:26;26481:35;;26453:77;26556:67;26616:6;26609:5;26556:67;:::i;:::-;26550:4;26543:81;26412:222;25747:887;;25777:618;25829:4;25825:9;25817:6;25813:22;25863:37;25895:4;25863:37;:::i;:::-;25922:1;25936:208;25950:7;25947:1;25944:14;25936:208;;;26029:9;26024:3;26020:19;26014:26;26006:6;25999:42;26080:1;26072:6;26068:14;26058:24;;26127:2;26116:9;26112:18;26099:31;;25973:4;25970:1;25966:12;25961:17;;25936:208;;;26172:6;26163:7;26160:19;26157:179;;;26230:9;26225:3;26221:19;26215:26;26273:48;26315:4;26307:6;26303:17;26292:9;26273:48;:::i;:::-;26265:6;26258:64;26180:156;26157:179;26382:1;26378;26370:6;26366:14;26362:22;26356:4;26349:36;25784:611;;;25747:887;;25337:1303;;;25245:1395;;:::o;26646:232::-;26786:34;26782:1;26774:6;26770:14;26763:58;26855:15;26850:2;26842:6;26838:15;26831:40;26646:232;:::o;26884:366::-;27026:3;27047:67;27111:2;27106:3;27047:67;:::i;:::-;27040:74;;27123:93;27212:3;27123:93;:::i;:::-;27241:2;27236:3;27232:12;27225:19;;26884:366;;;:::o;27256:419::-;27422:4;27460:2;27449:9;27445:18;27437:26;;27509:9;27503:4;27499:20;27495:1;27484:9;27480:17;27473:47;27537:131;27663:4;27537:131;:::i;:::-;27529:139;;27256:419;;;:::o;27681:180::-;27729:77;27726:1;27719:88;27826:4;27823:1;27816:15;27850:4;27847:1;27840:15;27867:410;27907:7;27930:20;27948:1;27930:20;:::i;:::-;27925:25;;27964:20;27982:1;27964:20;:::i;:::-;27959:25;;28019:1;28016;28012:9;28041:30;28059:11;28041:30;:::i;:::-;28030:41;;28220:1;28211:7;28207:15;28204:1;28201:22;28181:1;28174:9;28154:83;28131:139;;28250:18;;:::i;:::-;28131:139;27915:362;27867:410;;;;:::o;28283:180::-;28331:77;28328:1;28321:88;28428:4;28425:1;28418:15;28452:4;28449:1;28442:15;28469:185;28509:1;28526:20;28544:1;28526:20;:::i;:::-;28521:25;;28560:20;28578:1;28560:20;:::i;:::-;28555:25;;28599:1;28589:35;;28604:18;;:::i;:::-;28589:35;28646:1;28643;28639:9;28634:14;;28469:185;;;;:::o;28660:174::-;28800:26;28796:1;28788:6;28784:14;28777:50;28660:174;:::o;28840:366::-;28982:3;29003:67;29067:2;29062:3;29003:67;:::i;:::-;28996:74;;29079:93;29168:3;29079:93;:::i;:::-;29197:2;29192:3;29188:12;29181:19;;28840:366;;;:::o;29212:419::-;29378:4;29416:2;29405:9;29401:18;29393:26;;29465:9;29459:4;29455:20;29451:1;29440:9;29436:17;29429:47;29493:131;29619:4;29493:131;:::i;:::-;29485:139;;29212:419;;;:::o;29637:165::-;29777:17;29773:1;29765:6;29761:14;29754:41;29637:165;:::o;29808:366::-;29950:3;29971:67;30035:2;30030:3;29971:67;:::i;:::-;29964:74;;30047:93;30136:3;30047:93;:::i;:::-;30165:2;30160:3;30156:12;30149:19;;29808:366;;;:::o;30180:419::-;30346:4;30384:2;30373:9;30369:18;30361:26;;30433:9;30427:4;30423:20;30419:1;30408:9;30404:17;30397:47;30461:131;30587:4;30461:131;:::i;:::-;30453:139;;30180:419;;;:::o;30605:180::-;30653:77;30650:1;30643:88;30750:4;30747:1;30740:15;30774:4;30771:1;30764:15;30791:191;30831:3;30850:20;30868:1;30850:20;:::i;:::-;30845:25;;30884:20;30902:1;30884:20;:::i;:::-;30879:25;;30927:1;30924;30920:9;30913:16;;30948:3;30945:1;30942:10;30939:36;;;30955:18;;:::i;:::-;30939:36;30791:191;;;;:::o;30988:233::-;31027:3;31050:24;31068:5;31050:24;:::i;:::-;31041:33;;31096:66;31089:5;31086:77;31083:103;;31166:18;;:::i;:::-;31083:103;31213:1;31206:5;31202:13;31195:20;;30988:233;;;:::o;31227:169::-;31367:21;31363:1;31355:6;31351:14;31344:45;31227:169;:::o;31402:366::-;31544:3;31565:67;31629:2;31624:3;31565:67;:::i;:::-;31558:74;;31641:93;31730:3;31641:93;:::i;:::-;31759:2;31754:3;31750:12;31743:19;;31402:366;;;:::o;31774:419::-;31940:4;31978:2;31967:9;31963:18;31955:26;;32027:9;32021:4;32017:20;32013:1;32002:9;31998:17;31991:47;32055:131;32181:4;32055:131;:::i;:::-;32047:139;;31774:419;;;:::o;32199:228::-;32339:34;32335:1;32327:6;32323:14;32316:58;32408:11;32403:2;32395:6;32391:15;32384:36;32199:228;:::o;32433:366::-;32575:3;32596:67;32660:2;32655:3;32596:67;:::i;:::-;32589:74;;32672:93;32761:3;32672:93;:::i;:::-;32790:2;32785:3;32781:12;32774:19;;32433:366;;;:::o;32805:419::-;32971:4;33009:2;32998:9;32994:18;32986:26;;33058:9;33052:4;33048:20;33044:1;33033:9;33029:17;33022:47;33086:131;33212:4;33086:131;:::i;:::-;33078:139;;32805:419;;;:::o;33230:166::-;33370:18;33366:1;33358:6;33354:14;33347:42;33230:166;:::o;33402:366::-;33544:3;33565:67;33629:2;33624:3;33565:67;:::i;:::-;33558:74;;33641:93;33730:3;33641:93;:::i;:::-;33759:2;33754:3;33750:12;33743:19;;33402:366;;;:::o;33774:419::-;33940:4;33978:2;33967:9;33963:18;33955:26;;34027:9;34021:4;34017:20;34013:1;34002:9;33998:17;33991:47;34055:131;34181:4;34055:131;:::i;:::-;34047:139;;33774:419;;;:::o;34199:148::-;34301:11;34338:3;34323:18;;34199:148;;;;:::o;34353:390::-;34459:3;34487:39;34520:5;34487:39;:::i;:::-;34542:89;34624:6;34619:3;34542:89;:::i;:::-;34535:96;;34640:65;34698:6;34693:3;34686:4;34679:5;34675:16;34640:65;:::i;:::-;34730:6;34725:3;34721:16;34714:23;;34463:280;34353:390;;;;:::o;34749:155::-;34889:7;34885:1;34877:6;34873:14;34866:31;34749:155;:::o;34910:400::-;35070:3;35091:84;35173:1;35168:3;35091:84;:::i;:::-;35084:91;;35184:93;35273:3;35184:93;:::i;:::-;35302:1;35297:3;35293:11;35286:18;;34910:400;;;:::o;35316:701::-;35597:3;35619:95;35710:3;35701:6;35619:95;:::i;:::-;35612:102;;35731:95;35822:3;35813:6;35731:95;:::i;:::-;35724:102;;35843:148;35987:3;35843:148;:::i;:::-;35836:155;;36008:3;36001:10;;35316:701;;;;;:::o;36023:234::-;36163:34;36159:1;36151:6;36147:14;36140:58;36232:17;36227:2;36219:6;36215:15;36208:42;36023:234;:::o;36263:366::-;36405:3;36426:67;36490:2;36485:3;36426:67;:::i;:::-;36419:74;;36502:93;36591:3;36502:93;:::i;:::-;36620:2;36615:3;36611:12;36604:19;;36263:366;;;:::o;36635:419::-;36801:4;36839:2;36828:9;36824:18;36816:26;;36888:9;36882:4;36878:20;36874:1;36863:9;36859:17;36852:47;36916:131;37042:4;36916:131;:::i;:::-;36908:139;;36635:419;;;:::o;37060:225::-;37200:34;37196:1;37188:6;37184:14;37177:58;37269:8;37264:2;37256:6;37252:15;37245:33;37060:225;:::o;37291:366::-;37433:3;37454:67;37518:2;37513:3;37454:67;:::i;:::-;37447:74;;37530:93;37619:3;37530:93;:::i;:::-;37648:2;37643:3;37639:12;37632:19;;37291:366;;;:::o;37663:419::-;37829:4;37867:2;37856:9;37852:18;37844:26;;37916:9;37910:4;37906:20;37902:1;37891:9;37887:17;37880:47;37944:131;38070:4;37944:131;:::i;:::-;37936:139;;37663:419;;;:::o;38088:182::-;38228:34;38224:1;38216:6;38212:14;38205:58;38088:182;:::o;38276:366::-;38418:3;38439:67;38503:2;38498:3;38439:67;:::i;:::-;38432:74;;38515:93;38604:3;38515:93;:::i;:::-;38633:2;38628:3;38624:12;38617:19;;38276:366;;;:::o;38648:419::-;38814:4;38852:2;38841:9;38837:18;38829:26;;38901:9;38895:4;38891:20;38887:1;38876:9;38872:17;38865:47;38929:131;39055:4;38929:131;:::i;:::-;38921:139;;38648:419;;;:::o;39073:224::-;39213:34;39209:1;39201:6;39197:14;39190:58;39282:7;39277:2;39269:6;39265:15;39258:32;39073:224;:::o;39303:366::-;39445:3;39466:67;39530:2;39525:3;39466:67;:::i;:::-;39459:74;;39542:93;39631:3;39542:93;:::i;:::-;39660:2;39655:3;39651:12;39644:19;;39303:366;;;:::o;39675:419::-;39841:4;39879:2;39868:9;39864:18;39856:26;;39928:9;39922:4;39918:20;39914:1;39903:9;39899:17;39892:47;39956:131;40082:4;39956:131;:::i;:::-;39948:139;;39675:419;;;:::o;40100:223::-;40240:34;40236:1;40228:6;40224:14;40217:58;40309:6;40304:2;40296:6;40292:15;40285:31;40100:223;:::o;40329:366::-;40471:3;40492:67;40556:2;40551:3;40492:67;:::i;:::-;40485:74;;40568:93;40657:3;40568:93;:::i;:::-;40686:2;40681:3;40677:12;40670:19;;40329:366;;;:::o;40701:419::-;40867:4;40905:2;40894:9;40890:18;40882:26;;40954:9;40948:4;40944:20;40940:1;40929:9;40925:17;40918:47;40982:131;41108:4;40982:131;:::i;:::-;40974:139;;40701:419;;;:::o;41126:237::-;41266:34;41262:1;41254:6;41250:14;41243:58;41335:20;41330:2;41322:6;41318:15;41311:45;41126:237;:::o;41369:366::-;41511:3;41532:67;41596:2;41591:3;41532:67;:::i;:::-;41525:74;;41608:93;41697:3;41608:93;:::i;:::-;41726:2;41721:3;41717:12;41710:19;;41369:366;;;:::o;41741:419::-;41907:4;41945:2;41934:9;41930:18;41922:26;;41994:9;41988:4;41984:20;41980:1;41969:9;41965:17;41958:47;42022:131;42148:4;42022:131;:::i;:::-;42014:139;;41741:419;;;:::o;42166:229::-;42306:34;42302:1;42294:6;42290:14;42283:58;42375:12;42370:2;42362:6;42358:15;42351:37;42166:229;:::o;42401:366::-;42543:3;42564:67;42628:2;42623:3;42564:67;:::i;:::-;42557:74;;42640:93;42729:3;42640:93;:::i;:::-;42758:2;42753:3;42749:12;42742:19;;42401:366;;;:::o;42773:419::-;42939:4;42977:2;42966:9;42962:18;42954:26;;43026:9;43020:4;43016:20;43012:1;43001:9;42997:17;42990:47;43054:131;43180:4;43054:131;:::i;:::-;43046:139;;42773:419;;;:::o;43198:175::-;43338:27;43334:1;43326:6;43322:14;43315:51;43198:175;:::o;43379:366::-;43521:3;43542:67;43606:2;43601:3;43542:67;:::i;:::-;43535:74;;43618:93;43707:3;43618:93;:::i;:::-;43736:2;43731:3;43727:12;43720:19;;43379:366;;;:::o;43751:419::-;43917:4;43955:2;43944:9;43940:18;43932:26;;44004:9;43998:4;43994:20;43990:1;43979:9;43975:17;43968:47;44032:131;44158:4;44032:131;:::i;:::-;44024:139;;43751:419;;;:::o;44176:175::-;44316:27;44312:1;44304:6;44300:14;44293:51;44176:175;:::o;44357:366::-;44499:3;44520:67;44584:2;44579:3;44520:67;:::i;:::-;44513:74;;44596:93;44685:3;44596:93;:::i;:::-;44714:2;44709:3;44705:12;44698:19;;44357:366;;;:::o;44729:419::-;44895:4;44933:2;44922:9;44918:18;44910:26;;44982:9;44976:4;44972:20;44968:1;44957:9;44953:17;44946:47;45010:131;45136:4;45010:131;:::i;:::-;45002:139;;44729:419;;;:::o;45154:98::-;45205:6;45239:5;45233:12;45223:22;;45154:98;;;:::o;45258:168::-;45341:11;45375:6;45370:3;45363:19;45415:4;45410:3;45406:14;45391:29;;45258:168;;;;:::o;45432:373::-;45518:3;45546:38;45578:5;45546:38;:::i;:::-;45600:70;45663:6;45658:3;45600:70;:::i;:::-;45593:77;;45679:65;45737:6;45732:3;45725:4;45718:5;45714:16;45679:65;:::i;:::-;45769:29;45791:6;45769:29;:::i;:::-;45764:3;45760:39;45753:46;;45522:283;45432:373;;;;:::o;45811:640::-;46006:4;46044:3;46033:9;46029:19;46021:27;;46058:71;46126:1;46115:9;46111:17;46102:6;46058:71;:::i;:::-;46139:72;46207:2;46196:9;46192:18;46183:6;46139:72;:::i;:::-;46221;46289:2;46278:9;46274:18;46265:6;46221:72;:::i;:::-;46340:9;46334:4;46330:20;46325:2;46314:9;46310:18;46303:48;46368:76;46439:4;46430:6;46368:76;:::i;:::-;46360:84;;45811:640;;;;;;;:::o;46457:141::-;46513:5;46544:6;46538:13;46529:22;;46560:32;46586:5;46560:32;:::i;:::-;46457:141;;;;:::o;46604:349::-;46673:6;46722:2;46710:9;46701:7;46697:23;46693:32;46690:119;;;46728:79;;:::i;:::-;46690:119;46848:1;46873:63;46928:7;46919:6;46908:9;46904:22;46873:63;:::i;:::-;46863:73;;46819:127;46604:349;;;;:::o;46959:182::-;47099:34;47095:1;47087:6;47083:14;47076:58;46959:182;:::o;47147:366::-;47289:3;47310:67;47374:2;47369:3;47310:67;:::i;:::-;47303:74;;47386:93;47475:3;47386:93;:::i;:::-;47504:2;47499:3;47495:12;47488:19;;47147:366;;;:::o;47519:419::-;47685:4;47723:2;47712:9;47708:18;47700:26;;47772:9;47766:4;47762:20;47758:1;47747:9;47743:17;47736:47;47800:131;47926:4;47800:131;:::i;:::-;47792:139;;47519:419;;;:::o;47944:178::-;48084:30;48080:1;48072:6;48068:14;48061:54;47944:178;:::o;48128:366::-;48270:3;48291:67;48355:2;48350:3;48291:67;:::i;:::-;48284:74;;48367:93;48456:3;48367:93;:::i;:::-;48485:2;48480:3;48476:12;48469:19;;48128:366;;;:::o;48500:419::-;48666:4;48704:2;48693:9;48689:18;48681:26;;48753:9;48747:4;48743:20;48739:1;48728:9;48724:17;48717:47;48781:131;48907:4;48781:131;:::i;:::-;48773:139;;48500:419;;;:::o
Swarm Source
ipfs://12978dca7c89062681a381714404fb37e98b209b378359ff4dd1c51e9292f34f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ 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.