Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,907 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 81271715 | 112 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 75140780 | 252 days ago | IN | 0 ETH | 0.00000046 | ||||
Set Approval For... | 74663996 | 268 days ago | IN | 0 ETH | 0.00000046 | ||||
Set Approval For... | 74622152 | 269 days ago | IN | 0 ETH | 0.00000047 | ||||
Safe Transfer Fr... | 74054155 | 287 days ago | IN | 0 ETH | 0.00000093 | ||||
Set Approval For... | 73819862 | 294 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 73819729 | 294 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 73819467 | 294 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 73819328 | 294 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 73817392 | 294 days ago | IN | 0 ETH | 0.00000049 | ||||
Set Approval For... | 73604706 | 300 days ago | IN | 0 ETH | 0.00000053 | ||||
Set Approval For... | 73457109 | 304 days ago | IN | 0 ETH | 0.00000047 | ||||
Set Approval For... | 73456641 | 304 days ago | IN | 0 ETH | 0.00000047 | ||||
Set Approval For... | 73456440 | 304 days ago | IN | 0 ETH | 0.00000047 | ||||
Set Approval For... | 73255842 | 309 days ago | IN | 0 ETH | 0.00000049 | ||||
Set Approval For... | 72727527 | 318 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 72597387 | 322 days ago | IN | 0 ETH | 0.00000054 | ||||
Set Approval For... | 72540702 | 324 days ago | IN | 0 ETH | 0.00000052 | ||||
Set Approval For... | 72453890 | 326 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 71552237 | 331 days ago | IN | 0 ETH | 0.00000048 | ||||
Set Approval For... | 71004525 | 336 days ago | IN | 0 ETH | 0.00000049 | ||||
Set Approval For... | 70893748 | 336 days ago | IN | 0 ETH | 0.00000058 | ||||
Set Approval For... | 70892459 | 336 days ago | IN | 0 ETH | 0.00000057 | ||||
Set Approval For... | 70283917 | 340 days ago | IN | 0 ETH | 0.00000124 | ||||
Set Approval For... | 70255141 | 341 days ago | IN | 0 ETH | 0.00000062 |
Loading...
Loading
Contract Name:
SantoTheCentaur
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Nova.Arbiscan.io on 2023-03-30 */ 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); } 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); } 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); } 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); } 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); } } } 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; } } 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); } } } 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); } } 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; } } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } 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); } 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(); } } pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } 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); } } pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } 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); } 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]; } } pragma solidity ^0.8.0; contract SantoTheCentaur is ERC721, ERC2981, ERC721Enumerable, Pausable, Ownable, AccessControl, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; enum Status { WhiteListSale, PublicSale, FreeSale } string private baseURI; string private baseExtension; string private mysteryURI; uint256 public mysteryStartId; uint8 public groupCurrent; uint256 public openSupply; mapping(Status => uint256) public saleStartTime; mapping(Status => uint256) public keepTime; mapping(Status => uint256) public salePrice; mapping(Status => uint256) public mintMax; mapping(Status => uint256) public mintPerMax; mapping(Status => uint256) public mintCount; mapping(address => mapping(uint8 => uint256)) public amountMintedPerWhiteList; mapping(address => mapping(uint8 => uint256)) public amountMintedPerPublic; mapping(address => mapping(uint8 => uint256)) public amountMintedPerFree; mapping(uint8 => uint256) public whiteListGroupCount; mapping(address => mapping(uint8 => bool)) private whiteList; bytes32 public constant SERVER_ROLE = keccak256("SERVER_ROLE"); Counters.Counter private _tokenIdCounter; constructor( string memory _name, string memory _symbol, uint256 _saleStartTime, address _serverRole, string memory _mysteryURI ) ERC721(_name, _symbol) { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(SERVER_ROLE, _serverRole); openSupply = 7777; mintMax[Status.WhiteListSale] = 3500; mintMax[Status.PublicSale] = 1500; mintMax[Status.FreeSale] = 200; mintPerMax[Status.WhiteListSale] = 2; mintPerMax[Status.PublicSale] = 2; mintPerMax[Status.FreeSale] = 1; salePrice[Status.WhiteListSale] = 30000000 gwei; salePrice[Status.PublicSale] = 50000000 gwei; salePrice[Status.FreeSale] = 30000000 gwei; keepTime[Status.WhiteListSale] = 3 days; keepTime[Status.PublicSale] = 2 days; keepTime[Status.FreeSale] = 1 days; saleStartTime[Status.WhiteListSale] = _saleStartTime; saleStartTime[Status.PublicSale] = _saleStartTime + 1 days; saleStartTime[Status.FreeSale] = _saleStartTime + 2 days; mysteryURI = _mysteryURI; setGroupCurrent(1); _setDefaultRoyalty(msg.sender, 500); } modifier _notContract() { uint256 size; address addr = msg.sender; assembly { size := extcodesize(addr) } require(size == 0, "Contract is not allowed"); require(msg.sender == tx.origin, "Proxy contract is not allowed"); _; } modifier _saleBetweenPeriod(uint256 _startTime, uint256 _endTime) { require(currentTime() >= _startTime, "sale has not started yet"); require(currentTime() < _endTime, "sale is finished"); _; } function whitelistMint(uint256 amount) external payable whenNotPaused _notContract _saleBetweenPeriod(saleStartTime[Status.WhiteListSale], saleStartTime[Status.WhiteListSale] + keepTime[Status.WhiteListSale]) nonReentrant { Status _current = Status.WhiteListSale; uint8 _group = groupCurrent; require(whiteList[msg.sender][_group], "Not in whitelist"); require(amountMintedPerWhiteList[msg.sender][_group] + amount <= mintPerMax[_current], "Minted reached the limit"); require(mintCount[_current] + amount <= mintMax[_current], "Exceeded max mint"); require(msg.value >= salePrice[_current] * amount, "Not enough funds"); mintCount[_current] += amount; amountMintedPerWhiteList[msg.sender][_group] += amount; _batchMint(msg.sender, amount); } function publicSaleMint(uint256 amount) external payable whenNotPaused _notContract _saleBetweenPeriod(saleStartTime[Status.PublicSale], saleStartTime[Status.PublicSale] + keepTime[Status.PublicSale]) nonReentrant { Status _current = Status.PublicSale; uint8 _group = groupCurrent; require(amountMintedPerPublic[msg.sender][_group] + amount <= mintPerMax[_current], "Minted reached the limit"); require(mintCount[_current] + amount <= mintMax[_current], "Exceeded max mint"); uint256 totalValue = salePrice[_current] * amount; require(msg.value >= totalValue, "Not enough funds"); mintCount[_current] += amount; amountMintedPerPublic[msg.sender][_group] += amount; _batchMint(msg.sender, amount); } function freeMint() external payable whenNotPaused _notContract _saleBetweenPeriod(saleStartTime[Status.FreeSale], saleStartTime[Status.FreeSale] + keepTime[Status.FreeSale]) nonReentrant { Status _current = Status.FreeSale; uint8 _group = groupCurrent; uint256 amount = 1; require( amountMintedPerWhiteList[msg.sender][_group] > 0 || amountMintedPerPublic[msg.sender][_group] > 0, "Not have permission" ); require(amountMintedPerFree[msg.sender][_group] + amount <= mintPerMax[_current], "Minted reached the limit"); require(mintCount[_current] + amount <= mintMax[_current], "Exceeded max mint"); require(msg.value >= salePrice[_current] * amount, "Not enough funds"); mintCount[_current] += amount; amountMintedPerFree[msg.sender][_group] += amount; _batchMint(msg.sender, amount); } function _batchMint(address _account, uint256 _quantity) internal { require(totalSupply() + _quantity <= openSupply, "Exceeded open supply"); for (uint256 i = 0; i < _quantity; i++) { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(_account, tokenId); } } function foundationClaim(address to, uint256 amount) external onlyOwner { _batchMint(to, amount); } function rewardClaim(address[] memory addrs) external onlyOwner { for (uint256 i = 0; i < addrs.length; i++) { _batchMint(addrs[i], 1); } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); if (tokenId >= mysteryStartId) { return string(abi.encodePacked(mysteryURI, tokenId.toString(), ".json")); } string memory base = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), baseExtension)) : ""; } function _baseURI() internal view override returns (string memory) { return baseURI; } // White list function isWhiteList(address addr, uint8 group) public view returns (bool) { return whiteList[addr][group]; } function addWhiteList(address addr, uint8 group) public onlyRole(SERVER_ROLE) { whiteListGroupCount[group]++; whiteList[addr][group] = true; } function addWhiteListBatch(address[] memory addrs, uint8 group) public onlyRole(SERVER_ROLE) { for (uint i = 0; i < addrs.length; i++) { addWhiteList(addrs[i], group); } } // Royalty function setDefaultRoyalty(address _receiver, uint96 _freeNumerator) public onlyOwner { _setDefaultRoyalty(_receiver, _freeNumerator); } function deleteDefaultRoyalty() public onlyOwner { _deleteDefaultRoyalty(); } function setTokenRoyalty( uint256 _tokenId, address _receiver, uint96 _freeNumerator ) public onlyOwner { _setTokenRoyalty(_tokenId, _receiver, _freeNumerator); } function resetTokenRoyalty(uint256 _tokenId) public onlyOwner { _resetTokenRoyalty(_tokenId); } function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } // Setup function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBaseURI(string memory _uri) public onlyOwner { baseURI = _uri; } function setOpenSupply(uint256 _openSupply) public onlyOwner { openSupply = _openSupply; } function setGroupCurrent(uint8 _group) public onlyOwner { groupCurrent = _group; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setSaleStartTime(Status _saleStartTimeStatus, uint256 _saleStartTime) public onlyOwner { saleStartTime[_saleStartTimeStatus] = _saleStartTime; } function setKeepTime(Status _keepTimeStatus, uint256 _keepTime) public onlyOwner { keepTime[_keepTimeStatus] = _keepTime; } function setSalePrice(Status _salePriceStatus, uint256 _salePrice) public onlyOwner { salePrice[_salePriceStatus] = _salePrice; } function setMintPerMax(Status _mintPerMaxStatus, uint256 _max) public onlyOwner { mintPerMax[_mintPerMaxStatus] = _max; } function setMintMax(Status _mintMaxStatus, uint256 _max) public onlyOwner { mintMax[_mintMaxStatus] = _max; } function setMysteryURI(string memory _mysteryURI) public onlyOwner { mysteryURI = _mysteryURI; } function setMysteryStartId(uint256 _mysteryStartId) public onlyOwner { mysteryStartId = _mysteryStartId; } // Tools function currentTime() private view returns (uint256) { return block.timestamp; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function getBalanceIds(address _address) public view returns (uint256[] memory) { uint256 balance = balanceOf(_address); uint256[] memory ids = new uint256[](balance); for (uint256 i = 0; i < balance; i++) { uint256 _tokenId = tokenOfOwnerByIndex(_address, i); ids[i] = _tokenId; } return ids; } function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC2981, ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"address","name":"_serverRole","type":"address"},{"internalType":"string","name":"_mysteryURI","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SERVER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint8","name":"group","type":"uint8"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint8","name":"group","type":"uint8"}],"name":"addWhiteListBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"amountMintedPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"amountMintedPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"amountMintedPerWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"foundationClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"_address","type":"address"}],"name":"getBalanceIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"groupCurrent","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint8","name":"group","type":"uint8"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"","type":"uint8"}],"name":"keepTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"","type":"uint8"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"","type":"uint8"}],"name":"mintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"","type":"uint8"}],"name":"mintPerMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mysteryStartId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"rewardClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"","type":"uint8"}],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"","type":"uint8"}],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_freeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_group","type":"uint8"}],"name":"setGroupCurrent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"_keepTimeStatus","type":"uint8"},{"internalType":"uint256","name":"_keepTime","type":"uint256"}],"name":"setKeepTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"_mintMaxStatus","type":"uint8"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"_mintPerMaxStatus","type":"uint8"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMintPerMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mysteryStartId","type":"uint256"}],"name":"setMysteryStartId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_mysteryURI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_openSupply","type":"uint256"}],"name":"setOpenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"_salePriceStatus","type":"uint8"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SantoTheCentaur.Status","name":"_saleStartTimeStatus","type":"uint8"},{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_freeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"whiteListGroupCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004ae138038062004ae183398101604081905262000034916200074a565b8451859085906200004d906000906020850190620005ed565b50805162000063906001906020840190620005ed565b5050600c805460ff19169055506200007b3362000365565b6001600e556200008d600033620003bf565b620000b97fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc7783620003bf565b611e61601455610dac7f999d26de3473317ead3eeaf34ca78057f1439db67b6953469c3c96ce9caf6bd7556105dc7ff3794665d3af9b6fb6f858b70185898134f96768ef31c325d52e04f0ac195a4d5560c87f2bacf7cca723d030d12aee795132f2c5f2d14ad131f16f3f27eeba3e79d18b8c5560027fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b28190557ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da0929145560017f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b58155666a94d74f4300007fd840e16649f6b9a295d95876f4633d3a6b10b55e8162971cf78afd886d5ec89b81905566b1a2bc2ec500007ff36d6bc9642eb6fb6ee9998b09ce990566df752ab06e11f8de7ab633bbd57b8f557fc52df653038b2ad477d8d97f1ddd63cfd138847b628ad8a7b89c109c3f8782ca556203f4807f0263c2b778d062355049effc2dece97bc6547ff8a88a3258daa512061c2153dd556202a3007f4c4dc693d7db52f85fe052106f4b4b920e78e8ef37dee82878a60ab8585faf4955620151807fcaff291fe014adc6b72a172705750b4cabe8f8667664d2924a166caab28856488190556000805260156020527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aed849055620002bf90849062000807565b600160005260156020527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d55620002fa836202a30062000807565b6002600052601560209081527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b9190915581516200033f9160119190840190620005ed565b506200034c600162000464565b6200035a336101f462000484565b505050505062000881565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600d602090815260408083206001600160a01b038516845290915290205460ff1662000460576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200041f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6200046e62000589565b6013805460ff191660ff92909216919091179055565b6127106001600160601b0382161115620004f85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620005505760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620004ef565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b600c546001600160a01b03610100909104163314620005eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004ef565b565b828054620005fb906200082e565b90600052602060002090601f0160209004810192826200061f57600085556200066a565b82601f106200063a57805160ff19168380011785556200066a565b828001600101855582156200066a579182015b828111156200066a5782518255916020019190600101906200064d565b50620006789291506200067c565b5090565b5b808211156200067857600081556001016200067d565b600082601f830112620006a557600080fd5b81516001600160401b0380821115620006c257620006c26200086b565b604051601f8301601f19908116603f01168101908282118183101715620006ed57620006ed6200086b565b816040528381526020925086838588010111156200070a57600080fd5b600091505b838210156200072e57858201830151818301840152908201906200070f565b83821115620007405760008385830101525b9695505050505050565b600080600080600060a086880312156200076357600080fd5b85516001600160401b03808211156200077b57600080fd5b6200078989838a0162000693565b96506020880151915080821115620007a057600080fd5b620007ae89838a0162000693565b604089015160608a0151919750955091506001600160a01b0382168214620007d557600080fd5b608088015191935080821115620007eb57600080fd5b50620007fa8882890162000693565b9150509295509295909350565b600082198211156200082957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200084357607f821691505b602082108114156200086557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61425080620008916000396000f3fe6080604052600436106103ef5760003560e01c806370a0823111610208578063aeaa44a011610118578063cdfdfdc2116100ab578063e3b979a31161007a578063e3b979a314610c94578063e72be68a14610cb4578063e985e9c514610cd4578063eab6a9ad14610d1d578063f2fde38b14610d3d57600080fd5b8063cdfdfdc214610bfc578063d547741f14610c1c578063d9aeab7f14610c3c578063da3ef23f14610c7457600080fd5b8063bdb7f18d116100e7578063bdb7f18d14610b4b578063c194bac914610b77578063c672277714610baf578063c87b56dd14610bdc57600080fd5b8063aeaa44a014610aaf578063b17efb5414610af8578063b3ab66b014610b18578063b88d4fde14610b2b57600080fd5b806391d148541161019b578063a217fddf1161016a578063a217fddf14610a18578063a22cb46514610a2d578063a611b81414610a4d578063a85399c314610a6d578063aa1b103f14610a9a57600080fd5b806391d14854146109ad57806395d89b41146109cd5780639d95c930146109e25780639dbf26a314610a0257600080fd5b80638456cb59116101d75780638456cb5914610942578063868ff4a2146109575780638a616bc01461096a5780638da5cb5b1461098a57600080fd5b806370a08231146108c0578063715018a6146108e0578063784b1ff0146108f5578063810e48ac1461092257600080fd5b806338af39e81161030357806355f804b3116102965780635c975abb116102655780635c975abb1461080e5780635d491492146108265780636352211e14610853578063677cddd61461087357806368b20de0146108a057600080fd5b806355f804b3146107a65780635944c753146107c657806359ae19ad146107e65780635b70ea9f1461080657600080fd5b806342d49c2e116102d257806342d49c2e1461071857806347800068146107505780634f6ccce7146107665780635398fb801461078657600080fd5b806338af39e8146106a15780633ccfd60b146106ce5780633f4ba83a146106e357806342842e0e146106f857600080fd5b806319e958ce116103865780632a55205a116103555780632a55205a146105d55780632e32a632146106145780632f2ff15d146106415780632f745c591461066157806336568abe1461068157600080fd5b806319e958ce1461053857806322730b691461056557806323b872dd14610585578063248a9ca3146105a557600080fd5b80630826a0bd116103c25780630826a0bd146104a5578063095ea7b3146104c557806318160ddd146104e557806318cf28341461050457600080fd5b806301ffc9a7146103f457806304634d8d1461042957806306fdde031461044b578063081812fc1461046d575b600080fd5b34801561040057600080fd5b5061041461040f366004613a5f565b610d5d565b60405190151581526020015b60405180910390f35b34801561043557600080fd5b5061044961044436600461397f565b610d6e565b005b34801561045757600080fd5b50610460610d84565b6040516104209190613dc0565b34801561047957600080fd5b5061048d610488366004613a23565b610e16565b6040516001600160a01b039091168152602001610420565b3480156104b157600080fd5b506104496104c0366004613955565b610e3d565b3480156104d157600080fd5b506104496104e036600461392b565b610ebf565b3480156104f157600080fd5b50600a545b604051908152602001610420565b34801561051057600080fd5b506104f67fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc7781565b34801561054457600080fd5b506104f6610553366004613a99565b60196020526000908152604090205481565b34801561057157600080fd5b50610449610580366004613ab4565b610fda565b34801561059157600080fd5b506104496105a0366004613837565b61101f565b3480156105b157600080fd5b506104f66105c0366004613a23565b6000908152600d602052604090206001015490565b3480156105e157600080fd5b506105f56105f0366004613b55565b611050565b604080516001600160a01b039093168352602083019190915201610420565b34801561062057600080fd5b506104f661062f366004613a99565b60166020526000908152604090205481565b34801561064d57600080fd5b5061044961065c366004613a3c565b6110fc565b34801561066d57600080fd5b506104f661067c36600461392b565b611121565b34801561068d57600080fd5b5061044961069c366004613a3c565b6111b7565b3480156106ad57600080fd5b506104f66106bc366004613a99565b60176020526000908152604090205481565b3480156106da57600080fd5b50610449611231565b3480156106ef57600080fd5b50610449611268565b34801561070457600080fd5b50610449610713366004613837565b61127a565b34801561072457600080fd5b506104f6610733366004613955565b601b60209081526000928352604080842090915290825290205481565b34801561075c57600080fd5b506104f660145481565b34801561077257600080fd5b506104f6610781366004613a23565b611295565b34801561079257600080fd5b506104496107a1366004613ab4565b611328565b3480156107b257600080fd5b506104496107c1366004613ad0565b611347565b3480156107d257600080fd5b506104496107e1366004613b19565b611362565b3480156107f257600080fd5b506104496108013660046139a9565b611375565b6104496113bf565b34801561081a57600080fd5b50600c5460ff16610414565b34801561083257600080fd5b506104f6610841366004613a99565b60186020526000908152604090205481565b34801561085f57600080fd5b5061048d61086e366004613a23565b611747565b34801561087f57600080fd5b5061089361088e3660046137e9565b6117a7565b6040516104209190613d7c565b3480156108ac57600080fd5b506104496108bb366004613a23565b61184f565b3480156108cc57600080fd5b506104f66108db3660046137e9565b61185c565b3480156108ec57600080fd5b506104496118e2565b34801561090157600080fd5b506104f6610910366004613a99565b601a6020526000908152604090205481565b34801561092e57600080fd5b5061044961093d3660046139de565b6118f4565b34801561094e57600080fd5b5061044961195f565b610449610965366004613a23565b61196f565b34801561097657600080fd5b50610449610985366004613a23565b611cc6565b34801561099657600080fd5b50600c5461010090046001600160a01b031661048d565b3480156109b957600080fd5b506104146109c8366004613a3c565b611ce2565b3480156109d957600080fd5b50610460611d0d565b3480156109ee57600080fd5b506104496109fd366004613ab4565b611d1c565b348015610a0e57600080fd5b506104f660125481565b348015610a2457600080fd5b506104f6600081565b348015610a3957600080fd5b50610449610a483660046138ef565b611d3b565b348015610a5957600080fd5b50610449610a68366004613a23565b611d46565b348015610a7957600080fd5b506104f6610a88366004613a99565b60156020526000908152604090205481565b348015610aa657600080fd5b50610449611d53565b348015610abb57600080fd5b50610414610aca366004613955565b6001600160a01b03919091166000908152601f6020908152604080832060ff94851684529091529020541690565b348015610b0457600080fd5b50610449610b13366004613ab4565b611d65565b610449610b26366004613a23565b611d84565b348015610b3757600080fd5b50610449610b46366004613873565b61206e565b348015610b5757600080fd5b50601354610b659060ff1681565b60405160ff9091168152602001610420565b348015610b8357600080fd5b506104f6610b92366004613955565b601d60209081526000928352604080842090915290825290205481565b348015610bbb57600080fd5b506104f6610bca366004613b77565b601e6020526000908152604090205481565b348015610be857600080fd5b50610460610bf7366004613a23565b6120a0565b348015610c0857600080fd5b50610449610c1736600461392b565b612152565b348015610c2857600080fd5b50610449610c37366004613a3c565b612164565b348015610c4857600080fd5b506104f6610c57366004613955565b601c60209081526000928352604080842090915290825290205481565b348015610c8057600080fd5b50610449610c8f366004613ad0565b612189565b348015610ca057600080fd5b50610449610caf366004613b77565b6121a4565b348015610cc057600080fd5b50610449610ccf366004613ad0565b6121c2565b348015610ce057600080fd5b50610414610cef366004613804565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d2957600080fd5b50610449610d38366004613ab4565b6121dd565b348015610d4957600080fd5b50610449610d583660046137e9565b6121fc565b6000610d6882612272565b92915050565b610d76612297565b610d8082826122f7565b5050565b606060008054610d9390614140565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbf90614140565b8015610e0c5780601f10610de157610100808354040283529160200191610e0c565b820191906000526020600020905b815481529060010190602001808311610def57829003601f168201915b5050505050905090565b6000610e21826123b1565b506000908152600460205260409020546001600160a01b031690565b7fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc77610e6781612410565b60ff82166000908152601e60205260408120805491610e858361417b565b9091555050506001600160a01b039091166000908152601f6020908152604080832060ff909416835292905220805460ff19166001179055565b6000610eca82611747565b9050806001600160a01b0316836001600160a01b03161415610f3d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610f595750610f598133610cef565b610fcb5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610f34565b610fd5838361241a565b505050565b610fe2612297565b8060196000846002811115610ff957610ff96141ac565b600281111561100a5761100a6141ac565b81526020810191909152604001600020555050565b6110293382612488565b6110455760405162461bcd60e51b8152600401610f3490613dfe565b610fd5838383612507565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110c55750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906110e4906001600160601b0316876140c7565b6110ee91906140a5565b915196919550909350505050565b6000828152600d602052604090206001015461111781612410565b610fd58383612678565b600061112c8361185c565b821061118e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f34565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6001600160a01b03811633146112275760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f34565b610d8082826126fe565b611239612297565b6040514790339082156108fc029083906000818181858888f19350505050158015610d80573d6000803e3d6000fd5b611270612297565b611278612765565b565b610fd58383836040518060200160405280600081525061206e565b60006112a0600a5490565b82106113035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f34565b600a8281548110611316576113166141d8565b90600052602060002001549050919050565b611330612297565b8060186000846002811115610ff957610ff96141ac565b61134f612297565b8051610d8090600f906020840190613618565b61136a612297565b610fd58383836127b7565b61137d612297565b60005b8151811015610d80576113ad82828151811061139e5761139e6141d8565b60200260200101516001612882565b806113b78161417b565b915050611380565b6113c7612921565b33803b9081156113e95760405162461bcd60e51b8152600401610f3490613f6d565b3332146114085760405162461bcd60e51b8152600401610f3490613fa4565b60026000527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b547fcaff291fe014adc6b72a172705750b4cabe8f8667664d2924a166caab2885648546015602052611460908261408d565b814210156114805760405162461bcd60e51b8152600401610f3490613f0c565b80421061149f5760405162461bcd60e51b8152600401610f3490613f43565b6114a7612967565b601354336000908152601b6020908152604080832060ff90941680845293909152902054600291906001901515806114fb5750336000908152601c6020908152604080832060ff8616845290915290205415155b61153d5760405162461bcd60e51b81526020600482015260136024820152722737ba103430bb32903832b936b4b9b9b4b7b760691b6044820152606401610f34565b60196000846002811115611553576115536141ac565b6002811115611564576115646141ac565b81526020808201929092526040908101600090812054338252601d845282822060ff87168352909352205461159a90839061408d565b11156115b85760405162461bcd60e51b8152600401610f3490613fdb565b601860008460028111156115ce576115ce6141ac565b60028111156115df576115df6141ac565b81526020019081526020016000205481601a6000866002811115611605576116056141ac565b6002811115611616576116166141ac565b81526020019081526020016000205461162f919061408d565b111561164d5760405162461bcd60e51b8152600401610f3490613dd3565b8060176000856002811115611664576116646141ac565b6002811115611675576116756141ac565b81526020019081526020016000205461168e91906140c7565b3410156116ad5760405162461bcd60e51b8152600401610f3490613ee2565b80601a60008560028111156116c4576116c46141ac565b60028111156116d5576116d56141ac565b815260200190815260200160002060008282546116f2919061408d565b9091555050336000908152601d6020908152604080832060ff861684529091528120805483929061172490849061408d565b9091555061173490503382612882565b5050506117416001600e55565b50505050565b6000818152600260205260408120546001600160a01b031680610d685760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f34565b606060006117b48361185c565b905060008167ffffffffffffffff8111156117d1576117d16141ee565b6040519080825280602002602001820160405280156117fa578160200160208202803683370190505b50905060005b828110156118475760006118148683611121565b905080838381518110611829576118296141d8565b6020908102919091010152508061183f8161417b565b915050611800565b509392505050565b611857612297565b601455565b60006001600160a01b0382166118c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610f34565b506001600160a01b031660009081526003602052604090205490565b6118ea612297565b61127860006129c1565b7fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc7761191e81612410565b60005b83518110156117415761194d84828151811061193f5761193f6141d8565b602002602001015184610e3d565b806119578161417b565b915050611921565b611967612297565b611278612a1b565b611977612921565b33803b9081156119995760405162461bcd60e51b8152600401610f3490613f6d565b3332146119b85760405162461bcd60e51b8152600401610f3490613fa4565b600080527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aed547f0263c2b778d062355049effc2dece97bc6547ff8a88a3258daa512061c2153dd546015602052611a0f908261408d565b81421015611a2f5760405162461bcd60e51b8152600401610f3490613f0c565b804210611a4e5760405162461bcd60e51b8152600401610f3490613f43565b611a56612967565b601354336000908152601f6020908152604080832060ff94851680855292528220549192909116611abc5760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b881dda1a5d195b1a5cdd60821b6044820152606401610f34565b60196000836002811115611ad257611ad26141ac565b6002811115611ae357611ae36141ac565b81526020808201929092526040908101600090812054338252601b845282822060ff861683529093522054611b1990899061408d565b1115611b375760405162461bcd60e51b8152600401610f3490613fdb565b60186000836002811115611b4d57611b4d6141ac565b6002811115611b5e57611b5e6141ac565b81526020019081526020016000205487601a6000856002811115611b8457611b846141ac565b6002811115611b9557611b956141ac565b815260200190815260200160002054611bae919061408d565b1115611bcc5760405162461bcd60e51b8152600401610f3490613dd3565b8660176000846002811115611be357611be36141ac565b6002811115611bf457611bf46141ac565b815260200190815260200160002054611c0d91906140c7565b341015611c2c5760405162461bcd60e51b8152600401610f3490613ee2565b86601a6000846002811115611c4357611c436141ac565b6002811115611c5457611c546141ac565b81526020019081526020016000206000828254611c71919061408d565b9091555050336000908152601b6020908152604080832060ff8516845290915281208054899290611ca390849061408d565b90915550611cb390503388612882565b5050611cbf6001600e55565b5050505050565b611cce612297565b600090815260076020526040812055565b50565b6000918252600d602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610d9390614140565b611d24612297565b8060176000846002811115610ff957610ff96141ac565b610d80338383612a58565b611d4e612297565b601255565b611d5b612297565b6112786000600655565b611d6d612297565b8060166000846002811115610ff957610ff96141ac565b611d8c612921565b33803b908115611dae5760405162461bcd60e51b8152600401610f3490613f6d565b333214611dcd5760405162461bcd60e51b8152600401610f3490613fa4565b60016000527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d547f4c4dc693d7db52f85fe052106f4b4b920e78e8ef37dee82878a60ab8585faf49546015602052611e25908261408d565b81421015611e455760405162461bcd60e51b8152600401610f3490613f0c565b804210611e645760405162461bcd60e51b8152600401610f3490613f43565b611e6c612967565b6013547ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da09291454336000908152601c6020908152604080832060ff909516808452949091529020546001929190611ec290899061408d565b1115611ee05760405162461bcd60e51b8152600401610f3490613fdb565b60186000836002811115611ef657611ef66141ac565b6002811115611f0757611f076141ac565b81526020019081526020016000205487601a6000856002811115611f2d57611f2d6141ac565b6002811115611f3e57611f3e6141ac565b815260200190815260200160002054611f57919061408d565b1115611f755760405162461bcd60e51b8152600401610f3490613dd3565b60008760176000856002811115611f8e57611f8e6141ac565b6002811115611f9f57611f9f6141ac565b815260200190815260200160002054611fb891906140c7565b905080341015611fda5760405162461bcd60e51b8152600401610f3490613ee2565b87601a6000856002811115611ff157611ff16141ac565b6002811115612002576120026141ac565b8152602001908152602001600020600082825461201f919061408d565b9091555050336000908152601c6020908152604080832060ff86168452909152812080548a929061205190849061408d565b9091555061206190503389612882565b505050611cbf6001600e55565b6120783383612488565b6120945760405162461bcd60e51b8152600401610f3490613dfe565b61174184848484612b27565b60606120ab826123b1565b60125482106120e65760116120bf83612b5a565b6040516020016120d0929190613c95565b6040516020818303038152906040529050919050565b60006120f0612bef565b90506000600f805461210190614140565b90501161211d576040518060200160405280600081525061214b565b8061212784612b5a565b601060405160200161213b93929190613c58565b6040516020818303038152906040525b9392505050565b61215a612297565b610d808282612882565b6000828152600d602052604090206001015461217f81612410565b610fd583836126fe565b612191612297565b8051610d80906010906020840190613618565b6121ac612297565b6013805460ff191660ff92909216919091179055565b6121ca612297565b8051610d80906011906020840190613618565b6121e5612297565b8060156000846002811115610ff957610ff96141ac565b612204612297565b6001600160a01b0381166122695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f34565b611cdf816129c1565b60006001600160e01b03198216637965db0b60e01b1480610d685750610d6882612bfe565b600c546001600160a01b036101009091041633146112785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f34565b6127106001600160601b03821611156123225760405162461bcd60e51b8152600401610f3490614012565b6001600160a01b0382166123785760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610f34565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b6000818152600260205260409020546001600160a01b0316611cdf5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f34565b611cdf8133612c23565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061244f82611747565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061249483611747565b9050806001600160a01b0316846001600160a01b031614806124db57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806124ff5750836001600160a01b03166124f484610e16565b6001600160a01b0316145b949350505050565b826001600160a01b031661251a82611747565b6001600160a01b0316146125405760405162461bcd60e51b8152600401610f3490613e9d565b6001600160a01b0382166125a25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f34565b6125af8383836001612c7c565b826001600160a01b03166125c282611747565b6001600160a01b0316146125e85760405162461bcd60e51b8152600401610f3490613e9d565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6126828282611ce2565b610d80576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff191660011790556126ba3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6127088282611ce2565b15610d80576000828152600d602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61276d612c90565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6127106001600160601b03821611156127e25760405162461bcd60e51b8152600401610f3490614012565b6001600160a01b0382166128385760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610f34565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600790529190942093519051909116600160a01b029116179055565b6014548161288f600a5490565b612899919061408d565b11156128de5760405162461bcd60e51b81526020600482015260146024820152734578636565646564206f70656e20737570706c7960601b6044820152606401610f34565b60005b81811015610fd55760006128f460205490565b9050612904602080546001019055565b61290e8482612cd9565b50806129198161417b565b9150506128e1565b600c5460ff16156112785760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f34565b6002600e5414156129ba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f34565b6002600e55565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612a23612921565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861279a3390565b816001600160a01b0316836001600160a01b03161415612aba5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f34565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b32848484612507565b612b3e84848484612cf3565b6117415760405162461bcd60e51b8152600401610f3490613e4b565b60606000612b6783612e00565b600101905060008167ffffffffffffffff811115612b8757612b876141ee565b6040519080825280601f01601f191660200182016040528015612bb1576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612bea57611847565b612bbb565b6060600f8054610d9390614140565b60006001600160e01b0319821663780e9d6360e01b1480610d685750610d6882612ed8565b612c2d8282611ce2565b610d8057612c3a81612efd565b612c45836020612f0f565b604051602001612c56929190613cca565b60408051601f198184030181529082905262461bcd60e51b8252610f3491600401613dc0565b612c84612921565b611741848484846130ab565b600c5460ff166112785760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f34565b610d808282604051806020016040528060008152506131e4565b60006001600160a01b0384163b15612df557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d37903390899088908890600401613d3f565b602060405180830381600087803b158015612d5157600080fd5b505af1925050508015612d81575060408051601f3d908101601f19168201909252612d7e91810190613a7c565b60015b612ddb573d808015612daf576040519150601f19603f3d011682016040523d82523d6000602084013e612db4565b606091505b508051612dd35760405162461bcd60e51b8152600401610f3490613e4b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124ff565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612e3f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612e6b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612e8957662386f26fc10000830492506010015b6305f5e1008310612ea1576305f5e100830492506008015b6127108310612eb557612710830492506004015b60648310612ec7576064830492506002015b600a8310610d685760010192915050565b60006001600160e01b0319821663152a902d60e11b1480610d685750610d6882613217565b6060610d686001600160a01b03831660145b60606000612f1e8360026140c7565b612f2990600261408d565b67ffffffffffffffff811115612f4157612f416141ee565b6040519080825280601f01601f191660200182016040528015612f6b576020820181803683370190505b509050600360fc1b81600081518110612f8657612f866141d8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612fb557612fb56141d8565b60200101906001600160f81b031916908160001a9053506000612fd98460026140c7565b612fe490600161408d565b90505b600181111561305c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613018576130186141d8565b1a60f81b82828151811061302e5761302e6141d8565b60200101906001600160f81b031916908160001a90535060049490941c9361305581614129565b9050612fe7565b50831561214b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f34565b6130b784848484613267565b60018111156131265760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610f34565b816001600160a01b0385166131825761317d81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6131a5565b836001600160a01b0316856001600160a01b0316146131a5576131a585826132ef565b6001600160a01b0384166131c1576131bc8161338c565b611cbf565b846001600160a01b0316846001600160a01b031614611cbf57611cbf848261343b565b6131ee838361347f565b6131fb6000848484612cf3565b610fd55760405162461bcd60e51b8152600401610f3490613e4b565b60006001600160e01b031982166380ac58cd60e01b148061324857506001600160e01b03198216635b5e139f60e01b145b80610d6857506301ffc9a760e01b6001600160e01b0319831614610d68565b6001811115611741576001600160a01b038416156132ad576001600160a01b038416600090815260036020526040812080548392906132a79084906140e6565b90915550505b6001600160a01b03831615611741576001600160a01b038316600090815260036020526040812080548392906132e490849061408d565b909155505050505050565b600060016132fc8461185c565b61330691906140e6565b600083815260096020526040902054909150808214613359576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061339e906001906140e6565b6000838152600b6020526040812054600a80549394509092849081106133c6576133c66141d8565b9060005260206000200154905080600a83815481106133e7576133e76141d8565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061341f5761341f6141c2565b6001900381819060005260206000200160009055905550505050565b60006134468361185c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160a01b0382166134d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f34565b6000818152600260205260409020546001600160a01b03161561353a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f34565b613548600083836001612c7c565b6000818152600260205260409020546001600160a01b0316156135ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f34565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461362490614140565b90600052602060002090601f016020900481019282613646576000855561368c565b82601f1061365f57805160ff191683800117855561368c565b8280016001018555821561368c579182015b8281111561368c578251825591602001919060010190613671565b5061369892915061369c565b5090565b5b80821115613698576000815560010161369d565b600067ffffffffffffffff8311156136cb576136cb6141ee565b6136de601f8401601f191660200161405c565b90508281528383830111156136f257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461372057600080fd5b919050565b600082601f83011261373657600080fd5b8135602067ffffffffffffffff821115613752576137526141ee565b8160051b61376182820161405c565b83815282810190868401838801850189101561377c57600080fd5b600093505b858410156137a65761379281613709565b835260019390930192918401918401613781565b50979650505050505050565b80356003811061372057600080fd5b803560ff8116811461372057600080fd5b80356001600160601b038116811461372057600080fd5b6000602082840312156137fb57600080fd5b61214b82613709565b6000806040838503121561381757600080fd5b61382083613709565b915061382e60208401613709565b90509250929050565b60008060006060848603121561384c57600080fd5b61385584613709565b925061386360208501613709565b9150604084013590509250925092565b6000806000806080858703121561388957600080fd5b61389285613709565b93506138a060208601613709565b925060408501359150606085013567ffffffffffffffff8111156138c357600080fd5b8501601f810187136138d457600080fd5b6138e3878235602084016136b1565b91505092959194509250565b6000806040838503121561390257600080fd5b61390b83613709565b91506020830135801515811461392057600080fd5b809150509250929050565b6000806040838503121561393e57600080fd5b61394783613709565b946020939093013593505050565b6000806040838503121561396857600080fd5b61397183613709565b915061382e602084016137c1565b6000806040838503121561399257600080fd5b61399b83613709565b915061382e602084016137d2565b6000602082840312156139bb57600080fd5b813567ffffffffffffffff8111156139d257600080fd5b6124ff84828501613725565b600080604083850312156139f157600080fd5b823567ffffffffffffffff811115613a0857600080fd5b613a1485828601613725565b92505061382e602084016137c1565b600060208284031215613a3557600080fd5b5035919050565b60008060408385031215613a4f57600080fd5b8235915061382e60208401613709565b600060208284031215613a7157600080fd5b813561214b81614204565b600060208284031215613a8e57600080fd5b815161214b81614204565b600060208284031215613aab57600080fd5b61214b826137b2565b60008060408385031215613ac757600080fd5b613947836137b2565b600060208284031215613ae257600080fd5b813567ffffffffffffffff811115613af957600080fd5b8201601f81018413613b0a57600080fd5b6124ff848235602084016136b1565b600080600060608486031215613b2e57600080fd5b83359250613b3e60208501613709565b9150613b4c604085016137d2565b90509250925092565b60008060408385031215613b6857600080fd5b50508035926020909101359150565b600060208284031215613b8957600080fd5b61214b826137c1565b60008151808452613baa8160208601602086016140fd565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680613bd857607f831692505b6020808410821415613bfa57634e487b7160e01b600052602260045260246000fd5b818015613c0e5760018114613c1f57613c4c565b60ff19861689528489019650613c4c565b60008881526020902060005b86811015613c445781548b820152908501908301613c2b565b505084890196505b50505050505092915050565b60008451613c6a8184602089016140fd565b845190830190613c7e8183602089016140fd565b613c8a81830186613bbe565b979650505050505050565b6000613ca18285613bbe565b8351613cb18183602088016140fd565b64173539b7b760d91b9101908152600501949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613d028160178501602088016140fd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613d338160288401602088016140fd565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d7290830184613b92565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613db457835183529284019291840191600101613d98565b50909695505050505050565b60208152600061214b6020830184613b92565b602080825260119082015270115e18d959591959081b585e081b5a5b9d607a1b604082015260600190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526010908201526f4e6f7420656e6f7567682066756e647360801b604082015260600190565b60208082526018908201527f73616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b60208082526010908201526f1cd85b19481a5cc8199a5b9a5cda195960821b604082015260600190565b60208082526017908201527f436f6e7472616374206973206e6f7420616c6c6f776564000000000000000000604082015260600190565b6020808252601d908201527f50726f787920636f6e7472616374206973206e6f7420616c6c6f776564000000604082015260600190565b60208082526018908201527f4d696e746564207265616368656420746865206c696d69740000000000000000604082015260600190565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715614085576140856141ee565b604052919050565b600082198211156140a0576140a0614196565b500190565b6000826140c257634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156140e1576140e1614196565b500290565b6000828210156140f8576140f8614196565b500390565b60005b83811015614118578181015183820152602001614100565b838111156117415750506000910152565b60008161413857614138614196565b506000190190565b600181811c9082168061415457607f821691505b6020821081141561417557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561418f5761418f614196565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cdf57600080fdfea2646970667358221220de28622413152dec552d6651781df33cb4c8af10eee9c138f7a010f11ba010da64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000064250940000000000000000000000000428a8a0a62f4f5344ba7285bd8a24e36625267c30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000f53616e746f54686543656e74617572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035354430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f746f776e73746f72792e696f2f73616e746f2f0000000000
Deployed Bytecode
0x6080604052600436106103ef5760003560e01c806370a0823111610208578063aeaa44a011610118578063cdfdfdc2116100ab578063e3b979a31161007a578063e3b979a314610c94578063e72be68a14610cb4578063e985e9c514610cd4578063eab6a9ad14610d1d578063f2fde38b14610d3d57600080fd5b8063cdfdfdc214610bfc578063d547741f14610c1c578063d9aeab7f14610c3c578063da3ef23f14610c7457600080fd5b8063bdb7f18d116100e7578063bdb7f18d14610b4b578063c194bac914610b77578063c672277714610baf578063c87b56dd14610bdc57600080fd5b8063aeaa44a014610aaf578063b17efb5414610af8578063b3ab66b014610b18578063b88d4fde14610b2b57600080fd5b806391d148541161019b578063a217fddf1161016a578063a217fddf14610a18578063a22cb46514610a2d578063a611b81414610a4d578063a85399c314610a6d578063aa1b103f14610a9a57600080fd5b806391d14854146109ad57806395d89b41146109cd5780639d95c930146109e25780639dbf26a314610a0257600080fd5b80638456cb59116101d75780638456cb5914610942578063868ff4a2146109575780638a616bc01461096a5780638da5cb5b1461098a57600080fd5b806370a08231146108c0578063715018a6146108e0578063784b1ff0146108f5578063810e48ac1461092257600080fd5b806338af39e81161030357806355f804b3116102965780635c975abb116102655780635c975abb1461080e5780635d491492146108265780636352211e14610853578063677cddd61461087357806368b20de0146108a057600080fd5b806355f804b3146107a65780635944c753146107c657806359ae19ad146107e65780635b70ea9f1461080657600080fd5b806342d49c2e116102d257806342d49c2e1461071857806347800068146107505780634f6ccce7146107665780635398fb801461078657600080fd5b806338af39e8146106a15780633ccfd60b146106ce5780633f4ba83a146106e357806342842e0e146106f857600080fd5b806319e958ce116103865780632a55205a116103555780632a55205a146105d55780632e32a632146106145780632f2ff15d146106415780632f745c591461066157806336568abe1461068157600080fd5b806319e958ce1461053857806322730b691461056557806323b872dd14610585578063248a9ca3146105a557600080fd5b80630826a0bd116103c25780630826a0bd146104a5578063095ea7b3146104c557806318160ddd146104e557806318cf28341461050457600080fd5b806301ffc9a7146103f457806304634d8d1461042957806306fdde031461044b578063081812fc1461046d575b600080fd5b34801561040057600080fd5b5061041461040f366004613a5f565b610d5d565b60405190151581526020015b60405180910390f35b34801561043557600080fd5b5061044961044436600461397f565b610d6e565b005b34801561045757600080fd5b50610460610d84565b6040516104209190613dc0565b34801561047957600080fd5b5061048d610488366004613a23565b610e16565b6040516001600160a01b039091168152602001610420565b3480156104b157600080fd5b506104496104c0366004613955565b610e3d565b3480156104d157600080fd5b506104496104e036600461392b565b610ebf565b3480156104f157600080fd5b50600a545b604051908152602001610420565b34801561051057600080fd5b506104f67fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc7781565b34801561054457600080fd5b506104f6610553366004613a99565b60196020526000908152604090205481565b34801561057157600080fd5b50610449610580366004613ab4565b610fda565b34801561059157600080fd5b506104496105a0366004613837565b61101f565b3480156105b157600080fd5b506104f66105c0366004613a23565b6000908152600d602052604090206001015490565b3480156105e157600080fd5b506105f56105f0366004613b55565b611050565b604080516001600160a01b039093168352602083019190915201610420565b34801561062057600080fd5b506104f661062f366004613a99565b60166020526000908152604090205481565b34801561064d57600080fd5b5061044961065c366004613a3c565b6110fc565b34801561066d57600080fd5b506104f661067c36600461392b565b611121565b34801561068d57600080fd5b5061044961069c366004613a3c565b6111b7565b3480156106ad57600080fd5b506104f66106bc366004613a99565b60176020526000908152604090205481565b3480156106da57600080fd5b50610449611231565b3480156106ef57600080fd5b50610449611268565b34801561070457600080fd5b50610449610713366004613837565b61127a565b34801561072457600080fd5b506104f6610733366004613955565b601b60209081526000928352604080842090915290825290205481565b34801561075c57600080fd5b506104f660145481565b34801561077257600080fd5b506104f6610781366004613a23565b611295565b34801561079257600080fd5b506104496107a1366004613ab4565b611328565b3480156107b257600080fd5b506104496107c1366004613ad0565b611347565b3480156107d257600080fd5b506104496107e1366004613b19565b611362565b3480156107f257600080fd5b506104496108013660046139a9565b611375565b6104496113bf565b34801561081a57600080fd5b50600c5460ff16610414565b34801561083257600080fd5b506104f6610841366004613a99565b60186020526000908152604090205481565b34801561085f57600080fd5b5061048d61086e366004613a23565b611747565b34801561087f57600080fd5b5061089361088e3660046137e9565b6117a7565b6040516104209190613d7c565b3480156108ac57600080fd5b506104496108bb366004613a23565b61184f565b3480156108cc57600080fd5b506104f66108db3660046137e9565b61185c565b3480156108ec57600080fd5b506104496118e2565b34801561090157600080fd5b506104f6610910366004613a99565b601a6020526000908152604090205481565b34801561092e57600080fd5b5061044961093d3660046139de565b6118f4565b34801561094e57600080fd5b5061044961195f565b610449610965366004613a23565b61196f565b34801561097657600080fd5b50610449610985366004613a23565b611cc6565b34801561099657600080fd5b50600c5461010090046001600160a01b031661048d565b3480156109b957600080fd5b506104146109c8366004613a3c565b611ce2565b3480156109d957600080fd5b50610460611d0d565b3480156109ee57600080fd5b506104496109fd366004613ab4565b611d1c565b348015610a0e57600080fd5b506104f660125481565b348015610a2457600080fd5b506104f6600081565b348015610a3957600080fd5b50610449610a483660046138ef565b611d3b565b348015610a5957600080fd5b50610449610a68366004613a23565b611d46565b348015610a7957600080fd5b506104f6610a88366004613a99565b60156020526000908152604090205481565b348015610aa657600080fd5b50610449611d53565b348015610abb57600080fd5b50610414610aca366004613955565b6001600160a01b03919091166000908152601f6020908152604080832060ff94851684529091529020541690565b348015610b0457600080fd5b50610449610b13366004613ab4565b611d65565b610449610b26366004613a23565b611d84565b348015610b3757600080fd5b50610449610b46366004613873565b61206e565b348015610b5757600080fd5b50601354610b659060ff1681565b60405160ff9091168152602001610420565b348015610b8357600080fd5b506104f6610b92366004613955565b601d60209081526000928352604080842090915290825290205481565b348015610bbb57600080fd5b506104f6610bca366004613b77565b601e6020526000908152604090205481565b348015610be857600080fd5b50610460610bf7366004613a23565b6120a0565b348015610c0857600080fd5b50610449610c1736600461392b565b612152565b348015610c2857600080fd5b50610449610c37366004613a3c565b612164565b348015610c4857600080fd5b506104f6610c57366004613955565b601c60209081526000928352604080842090915290825290205481565b348015610c8057600080fd5b50610449610c8f366004613ad0565b612189565b348015610ca057600080fd5b50610449610caf366004613b77565b6121a4565b348015610cc057600080fd5b50610449610ccf366004613ad0565b6121c2565b348015610ce057600080fd5b50610414610cef366004613804565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d2957600080fd5b50610449610d38366004613ab4565b6121dd565b348015610d4957600080fd5b50610449610d583660046137e9565b6121fc565b6000610d6882612272565b92915050565b610d76612297565b610d8082826122f7565b5050565b606060008054610d9390614140565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbf90614140565b8015610e0c5780601f10610de157610100808354040283529160200191610e0c565b820191906000526020600020905b815481529060010190602001808311610def57829003601f168201915b5050505050905090565b6000610e21826123b1565b506000908152600460205260409020546001600160a01b031690565b7fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc77610e6781612410565b60ff82166000908152601e60205260408120805491610e858361417b565b9091555050506001600160a01b039091166000908152601f6020908152604080832060ff909416835292905220805460ff19166001179055565b6000610eca82611747565b9050806001600160a01b0316836001600160a01b03161415610f3d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610f595750610f598133610cef565b610fcb5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610f34565b610fd5838361241a565b505050565b610fe2612297565b8060196000846002811115610ff957610ff96141ac565b600281111561100a5761100a6141ac565b81526020810191909152604001600020555050565b6110293382612488565b6110455760405162461bcd60e51b8152600401610f3490613dfe565b610fd5838383612507565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110c55750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906110e4906001600160601b0316876140c7565b6110ee91906140a5565b915196919550909350505050565b6000828152600d602052604090206001015461111781612410565b610fd58383612678565b600061112c8361185c565b821061118e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610f34565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6001600160a01b03811633146112275760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f34565b610d8082826126fe565b611239612297565b6040514790339082156108fc029083906000818181858888f19350505050158015610d80573d6000803e3d6000fd5b611270612297565b611278612765565b565b610fd58383836040518060200160405280600081525061206e565b60006112a0600a5490565b82106113035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610f34565b600a8281548110611316576113166141d8565b90600052602060002001549050919050565b611330612297565b8060186000846002811115610ff957610ff96141ac565b61134f612297565b8051610d8090600f906020840190613618565b61136a612297565b610fd58383836127b7565b61137d612297565b60005b8151811015610d80576113ad82828151811061139e5761139e6141d8565b60200260200101516001612882565b806113b78161417b565b915050611380565b6113c7612921565b33803b9081156113e95760405162461bcd60e51b8152600401610f3490613f6d565b3332146114085760405162461bcd60e51b8152600401610f3490613fa4565b60026000527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b547fcaff291fe014adc6b72a172705750b4cabe8f8667664d2924a166caab2885648546015602052611460908261408d565b814210156114805760405162461bcd60e51b8152600401610f3490613f0c565b80421061149f5760405162461bcd60e51b8152600401610f3490613f43565b6114a7612967565b601354336000908152601b6020908152604080832060ff90941680845293909152902054600291906001901515806114fb5750336000908152601c6020908152604080832060ff8616845290915290205415155b61153d5760405162461bcd60e51b81526020600482015260136024820152722737ba103430bb32903832b936b4b9b9b4b7b760691b6044820152606401610f34565b60196000846002811115611553576115536141ac565b6002811115611564576115646141ac565b81526020808201929092526040908101600090812054338252601d845282822060ff87168352909352205461159a90839061408d565b11156115b85760405162461bcd60e51b8152600401610f3490613fdb565b601860008460028111156115ce576115ce6141ac565b60028111156115df576115df6141ac565b81526020019081526020016000205481601a6000866002811115611605576116056141ac565b6002811115611616576116166141ac565b81526020019081526020016000205461162f919061408d565b111561164d5760405162461bcd60e51b8152600401610f3490613dd3565b8060176000856002811115611664576116646141ac565b6002811115611675576116756141ac565b81526020019081526020016000205461168e91906140c7565b3410156116ad5760405162461bcd60e51b8152600401610f3490613ee2565b80601a60008560028111156116c4576116c46141ac565b60028111156116d5576116d56141ac565b815260200190815260200160002060008282546116f2919061408d565b9091555050336000908152601d6020908152604080832060ff861684529091528120805483929061172490849061408d565b9091555061173490503382612882565b5050506117416001600e55565b50505050565b6000818152600260205260408120546001600160a01b031680610d685760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f34565b606060006117b48361185c565b905060008167ffffffffffffffff8111156117d1576117d16141ee565b6040519080825280602002602001820160405280156117fa578160200160208202803683370190505b50905060005b828110156118475760006118148683611121565b905080838381518110611829576118296141d8565b6020908102919091010152508061183f8161417b565b915050611800565b509392505050565b611857612297565b601455565b60006001600160a01b0382166118c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610f34565b506001600160a01b031660009081526003602052604090205490565b6118ea612297565b61127860006129c1565b7fa8a7bc421f721cb936ea99efdad79237e6ee0b871a2a08cf648691f9584cdc7761191e81612410565b60005b83518110156117415761194d84828151811061193f5761193f6141d8565b602002602001015184610e3d565b806119578161417b565b915050611921565b611967612297565b611278612a1b565b611977612921565b33803b9081156119995760405162461bcd60e51b8152600401610f3490613f6d565b3332146119b85760405162461bcd60e51b8152600401610f3490613fa4565b600080527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aed547f0263c2b778d062355049effc2dece97bc6547ff8a88a3258daa512061c2153dd546015602052611a0f908261408d565b81421015611a2f5760405162461bcd60e51b8152600401610f3490613f0c565b804210611a4e5760405162461bcd60e51b8152600401610f3490613f43565b611a56612967565b601354336000908152601f6020908152604080832060ff94851680855292528220549192909116611abc5760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b881dda1a5d195b1a5cdd60821b6044820152606401610f34565b60196000836002811115611ad257611ad26141ac565b6002811115611ae357611ae36141ac565b81526020808201929092526040908101600090812054338252601b845282822060ff861683529093522054611b1990899061408d565b1115611b375760405162461bcd60e51b8152600401610f3490613fdb565b60186000836002811115611b4d57611b4d6141ac565b6002811115611b5e57611b5e6141ac565b81526020019081526020016000205487601a6000856002811115611b8457611b846141ac565b6002811115611b9557611b956141ac565b815260200190815260200160002054611bae919061408d565b1115611bcc5760405162461bcd60e51b8152600401610f3490613dd3565b8660176000846002811115611be357611be36141ac565b6002811115611bf457611bf46141ac565b815260200190815260200160002054611c0d91906140c7565b341015611c2c5760405162461bcd60e51b8152600401610f3490613ee2565b86601a6000846002811115611c4357611c436141ac565b6002811115611c5457611c546141ac565b81526020019081526020016000206000828254611c71919061408d565b9091555050336000908152601b6020908152604080832060ff8516845290915281208054899290611ca390849061408d565b90915550611cb390503388612882565b5050611cbf6001600e55565b5050505050565b611cce612297565b600090815260076020526040812055565b50565b6000918252600d602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610d9390614140565b611d24612297565b8060176000846002811115610ff957610ff96141ac565b610d80338383612a58565b611d4e612297565b601255565b611d5b612297565b6112786000600655565b611d6d612297565b8060166000846002811115610ff957610ff96141ac565b611d8c612921565b33803b908115611dae5760405162461bcd60e51b8152600401610f3490613f6d565b333214611dcd5760405162461bcd60e51b8152600401610f3490613fa4565b60016000527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d547f4c4dc693d7db52f85fe052106f4b4b920e78e8ef37dee82878a60ab8585faf49546015602052611e25908261408d565b81421015611e455760405162461bcd60e51b8152600401610f3490613f0c565b804210611e645760405162461bcd60e51b8152600401610f3490613f43565b611e6c612967565b6013547ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da09291454336000908152601c6020908152604080832060ff909516808452949091529020546001929190611ec290899061408d565b1115611ee05760405162461bcd60e51b8152600401610f3490613fdb565b60186000836002811115611ef657611ef66141ac565b6002811115611f0757611f076141ac565b81526020019081526020016000205487601a6000856002811115611f2d57611f2d6141ac565b6002811115611f3e57611f3e6141ac565b815260200190815260200160002054611f57919061408d565b1115611f755760405162461bcd60e51b8152600401610f3490613dd3565b60008760176000856002811115611f8e57611f8e6141ac565b6002811115611f9f57611f9f6141ac565b815260200190815260200160002054611fb891906140c7565b905080341015611fda5760405162461bcd60e51b8152600401610f3490613ee2565b87601a6000856002811115611ff157611ff16141ac565b6002811115612002576120026141ac565b8152602001908152602001600020600082825461201f919061408d565b9091555050336000908152601c6020908152604080832060ff86168452909152812080548a929061205190849061408d565b9091555061206190503389612882565b505050611cbf6001600e55565b6120783383612488565b6120945760405162461bcd60e51b8152600401610f3490613dfe565b61174184848484612b27565b60606120ab826123b1565b60125482106120e65760116120bf83612b5a565b6040516020016120d0929190613c95565b6040516020818303038152906040529050919050565b60006120f0612bef565b90506000600f805461210190614140565b90501161211d576040518060200160405280600081525061214b565b8061212784612b5a565b601060405160200161213b93929190613c58565b6040516020818303038152906040525b9392505050565b61215a612297565b610d808282612882565b6000828152600d602052604090206001015461217f81612410565b610fd583836126fe565b612191612297565b8051610d80906010906020840190613618565b6121ac612297565b6013805460ff191660ff92909216919091179055565b6121ca612297565b8051610d80906011906020840190613618565b6121e5612297565b8060156000846002811115610ff957610ff96141ac565b612204612297565b6001600160a01b0381166122695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f34565b611cdf816129c1565b60006001600160e01b03198216637965db0b60e01b1480610d685750610d6882612bfe565b600c546001600160a01b036101009091041633146112785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f34565b6127106001600160601b03821611156123225760405162461bcd60e51b8152600401610f3490614012565b6001600160a01b0382166123785760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610f34565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b6000818152600260205260409020546001600160a01b0316611cdf5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f34565b611cdf8133612c23565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061244f82611747565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061249483611747565b9050806001600160a01b0316846001600160a01b031614806124db57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806124ff5750836001600160a01b03166124f484610e16565b6001600160a01b0316145b949350505050565b826001600160a01b031661251a82611747565b6001600160a01b0316146125405760405162461bcd60e51b8152600401610f3490613e9d565b6001600160a01b0382166125a25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f34565b6125af8383836001612c7c565b826001600160a01b03166125c282611747565b6001600160a01b0316146125e85760405162461bcd60e51b8152600401610f3490613e9d565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6126828282611ce2565b610d80576000828152600d602090815260408083206001600160a01b03851684529091529020805460ff191660011790556126ba3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6127088282611ce2565b15610d80576000828152600d602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61276d612c90565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6127106001600160601b03821611156127e25760405162461bcd60e51b8152600401610f3490614012565b6001600160a01b0382166128385760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610f34565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600790529190942093519051909116600160a01b029116179055565b6014548161288f600a5490565b612899919061408d565b11156128de5760405162461bcd60e51b81526020600482015260146024820152734578636565646564206f70656e20737570706c7960601b6044820152606401610f34565b60005b81811015610fd55760006128f460205490565b9050612904602080546001019055565b61290e8482612cd9565b50806129198161417b565b9150506128e1565b600c5460ff16156112785760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f34565b6002600e5414156129ba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f34565b6002600e55565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612a23612921565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861279a3390565b816001600160a01b0316836001600160a01b03161415612aba5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f34565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b32848484612507565b612b3e84848484612cf3565b6117415760405162461bcd60e51b8152600401610f3490613e4b565b60606000612b6783612e00565b600101905060008167ffffffffffffffff811115612b8757612b876141ee565b6040519080825280601f01601f191660200182016040528015612bb1576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612bea57611847565b612bbb565b6060600f8054610d9390614140565b60006001600160e01b0319821663780e9d6360e01b1480610d685750610d6882612ed8565b612c2d8282611ce2565b610d8057612c3a81612efd565b612c45836020612f0f565b604051602001612c56929190613cca565b60408051601f198184030181529082905262461bcd60e51b8252610f3491600401613dc0565b612c84612921565b611741848484846130ab565b600c5460ff166112785760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f34565b610d808282604051806020016040528060008152506131e4565b60006001600160a01b0384163b15612df557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d37903390899088908890600401613d3f565b602060405180830381600087803b158015612d5157600080fd5b505af1925050508015612d81575060408051601f3d908101601f19168201909252612d7e91810190613a7c565b60015b612ddb573d808015612daf576040519150601f19603f3d011682016040523d82523d6000602084013e612db4565b606091505b508051612dd35760405162461bcd60e51b8152600401610f3490613e4b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124ff565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612e3f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612e6b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612e8957662386f26fc10000830492506010015b6305f5e1008310612ea1576305f5e100830492506008015b6127108310612eb557612710830492506004015b60648310612ec7576064830492506002015b600a8310610d685760010192915050565b60006001600160e01b0319821663152a902d60e11b1480610d685750610d6882613217565b6060610d686001600160a01b03831660145b60606000612f1e8360026140c7565b612f2990600261408d565b67ffffffffffffffff811115612f4157612f416141ee565b6040519080825280601f01601f191660200182016040528015612f6b576020820181803683370190505b509050600360fc1b81600081518110612f8657612f866141d8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612fb557612fb56141d8565b60200101906001600160f81b031916908160001a9053506000612fd98460026140c7565b612fe490600161408d565b90505b600181111561305c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613018576130186141d8565b1a60f81b82828151811061302e5761302e6141d8565b60200101906001600160f81b031916908160001a90535060049490941c9361305581614129565b9050612fe7565b50831561214b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f34565b6130b784848484613267565b60018111156131265760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610f34565b816001600160a01b0385166131825761317d81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6131a5565b836001600160a01b0316856001600160a01b0316146131a5576131a585826132ef565b6001600160a01b0384166131c1576131bc8161338c565b611cbf565b846001600160a01b0316846001600160a01b031614611cbf57611cbf848261343b565b6131ee838361347f565b6131fb6000848484612cf3565b610fd55760405162461bcd60e51b8152600401610f3490613e4b565b60006001600160e01b031982166380ac58cd60e01b148061324857506001600160e01b03198216635b5e139f60e01b145b80610d6857506301ffc9a760e01b6001600160e01b0319831614610d68565b6001811115611741576001600160a01b038416156132ad576001600160a01b038416600090815260036020526040812080548392906132a79084906140e6565b90915550505b6001600160a01b03831615611741576001600160a01b038316600090815260036020526040812080548392906132e490849061408d565b909155505050505050565b600060016132fc8461185c565b61330691906140e6565b600083815260096020526040902054909150808214613359576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061339e906001906140e6565b6000838152600b6020526040812054600a80549394509092849081106133c6576133c66141d8565b9060005260206000200154905080600a83815481106133e7576133e76141d8565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061341f5761341f6141c2565b6001900381819060005260206000200160009055905550505050565b60006134468361185c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160a01b0382166134d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f34565b6000818152600260205260409020546001600160a01b03161561353a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f34565b613548600083836001612c7c565b6000818152600260205260409020546001600160a01b0316156135ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f34565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461362490614140565b90600052602060002090601f016020900481019282613646576000855561368c565b82601f1061365f57805160ff191683800117855561368c565b8280016001018555821561368c579182015b8281111561368c578251825591602001919060010190613671565b5061369892915061369c565b5090565b5b80821115613698576000815560010161369d565b600067ffffffffffffffff8311156136cb576136cb6141ee565b6136de601f8401601f191660200161405c565b90508281528383830111156136f257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461372057600080fd5b919050565b600082601f83011261373657600080fd5b8135602067ffffffffffffffff821115613752576137526141ee565b8160051b61376182820161405c565b83815282810190868401838801850189101561377c57600080fd5b600093505b858410156137a65761379281613709565b835260019390930192918401918401613781565b50979650505050505050565b80356003811061372057600080fd5b803560ff8116811461372057600080fd5b80356001600160601b038116811461372057600080fd5b6000602082840312156137fb57600080fd5b61214b82613709565b6000806040838503121561381757600080fd5b61382083613709565b915061382e60208401613709565b90509250929050565b60008060006060848603121561384c57600080fd5b61385584613709565b925061386360208501613709565b9150604084013590509250925092565b6000806000806080858703121561388957600080fd5b61389285613709565b93506138a060208601613709565b925060408501359150606085013567ffffffffffffffff8111156138c357600080fd5b8501601f810187136138d457600080fd5b6138e3878235602084016136b1565b91505092959194509250565b6000806040838503121561390257600080fd5b61390b83613709565b91506020830135801515811461392057600080fd5b809150509250929050565b6000806040838503121561393e57600080fd5b61394783613709565b946020939093013593505050565b6000806040838503121561396857600080fd5b61397183613709565b915061382e602084016137c1565b6000806040838503121561399257600080fd5b61399b83613709565b915061382e602084016137d2565b6000602082840312156139bb57600080fd5b813567ffffffffffffffff8111156139d257600080fd5b6124ff84828501613725565b600080604083850312156139f157600080fd5b823567ffffffffffffffff811115613a0857600080fd5b613a1485828601613725565b92505061382e602084016137c1565b600060208284031215613a3557600080fd5b5035919050565b60008060408385031215613a4f57600080fd5b8235915061382e60208401613709565b600060208284031215613a7157600080fd5b813561214b81614204565b600060208284031215613a8e57600080fd5b815161214b81614204565b600060208284031215613aab57600080fd5b61214b826137b2565b60008060408385031215613ac757600080fd5b613947836137b2565b600060208284031215613ae257600080fd5b813567ffffffffffffffff811115613af957600080fd5b8201601f81018413613b0a57600080fd5b6124ff848235602084016136b1565b600080600060608486031215613b2e57600080fd5b83359250613b3e60208501613709565b9150613b4c604085016137d2565b90509250925092565b60008060408385031215613b6857600080fd5b50508035926020909101359150565b600060208284031215613b8957600080fd5b61214b826137c1565b60008151808452613baa8160208601602086016140fd565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680613bd857607f831692505b6020808410821415613bfa57634e487b7160e01b600052602260045260246000fd5b818015613c0e5760018114613c1f57613c4c565b60ff19861689528489019650613c4c565b60008881526020902060005b86811015613c445781548b820152908501908301613c2b565b505084890196505b50505050505092915050565b60008451613c6a8184602089016140fd565b845190830190613c7e8183602089016140fd565b613c8a81830186613bbe565b979650505050505050565b6000613ca18285613bbe565b8351613cb18183602088016140fd565b64173539b7b760d91b9101908152600501949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613d028160178501602088016140fd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613d338160288401602088016140fd565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d7290830184613b92565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613db457835183529284019291840191600101613d98565b50909695505050505050565b60208152600061214b6020830184613b92565b602080825260119082015270115e18d959591959081b585e081b5a5b9d607a1b604082015260600190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526010908201526f4e6f7420656e6f7567682066756e647360801b604082015260600190565b60208082526018908201527f73616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b60208082526010908201526f1cd85b19481a5cc8199a5b9a5cda195960821b604082015260600190565b60208082526017908201527f436f6e7472616374206973206e6f7420616c6c6f776564000000000000000000604082015260600190565b6020808252601d908201527f50726f787920636f6e7472616374206973206e6f7420616c6c6f776564000000604082015260600190565b60208082526018908201527f4d696e746564207265616368656420746865206c696d69740000000000000000604082015260600190565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715614085576140856141ee565b604052919050565b600082198211156140a0576140a0614196565b500190565b6000826140c257634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156140e1576140e1614196565b500290565b6000828210156140f8576140f8614196565b500390565b60005b83811015614118578181015183820152602001614100565b838111156117415750506000910152565b60008161413857614138614196565b506000190190565b600181811c9082168061415457607f821691505b6020821081141561417557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561418f5761418f614196565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cdf57600080fdfea2646970667358221220de28622413152dec552d6651781df33cb4c8af10eee9c138f7a010f11ba010da64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000064250940000000000000000000000000428a8a0a62f4f5344ba7285bd8a24e36625267c30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000f53616e746f54686543656e74617572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035354430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f746f776e73746f72792e696f2f73616e746f2f0000000000
-----Decoded View---------------
Arg [0] : _name (string): SantoTheCentaur
Arg [1] : _symbol (string): STC
Arg [2] : _saleStartTime (uint256): 1680148800
Arg [3] : _serverRole (address): 0x428A8a0A62F4F5344bA7285bd8a24e36625267C3
Arg [4] : _mysteryURI (string): https://townstory.io/santo/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000064250940
Arg [3] : 000000000000000000000000428a8a0a62f4f5344ba7285bd8a24e36625267c3
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 53616e746f54686543656e746175720000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5354430000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [10] : 68747470733a2f2f746f776e73746f72792e696f2f73616e746f2f0000000000
Deployed Bytecode Sourcemap
83010:11147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93918:236;;;;;;;;;;-1:-1:-1;93918:236:0;;;;;:::i;:::-;;:::i;:::-;;;12960:14:1;;12953:22;12935:41;;12923:2;12908:18;93918:236:0;;;;;;;;90609:150;;;;;;;;;;-1:-1:-1;90609:150:0;;;;;:::i;:::-;;:::i;:::-;;35382:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36894:171::-;;;;;;;;;;-1:-1:-1;36894:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11342:32:1;;;11324:51;;11312:2;11297:18;36894:171:0;11178:203:1;90205:165:0;;;;;;;;;;-1:-1:-1;90205:165:0;;;;;:::i;:::-;;:::i;36412:416::-;;;;;;;;;;-1:-1:-1;36412:416:0;;;;;:::i;:::-;;:::i;52672:113::-;;;;;;;;;;-1:-1:-1;52760:10:0;:17;52672:113;;;13133:25:1;;;13121:2;13106:18;52672:113:0;12987:177:1;84177:62:0;;;;;;;;;;;;84215:24;84177:62;;83700:44;;;;;;;;;;-1:-1:-1;83700:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;92419:135;;;;;;;;;;-1:-1:-1;92419:135:0;;;;;:::i;:::-;;:::i;37594:335::-;;;;;;;;;;-1:-1:-1;37594:335:0;;;;;:::i;:::-;;:::i;70222:131::-;;;;;;;;;;-1:-1:-1;70222:131:0;;;;;:::i;:::-;70296:7;70323:12;;;:6;:12;;;;;:22;;;;70222:131;80484:442;;;;;;;;;;-1:-1:-1;80484:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;12071:32:1;;;12053:51;;12135:2;12120:18;;12113:34;;;;12026:18;80484:442:0;11879:274:1;83553:42:0;;;;;;;;;;-1:-1:-1;83553:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;70663:147;;;;;;;;;;-1:-1:-1;70663:147:0;;;;;:::i;:::-;;:::i;52340:256::-;;;;;;;;;;-1:-1:-1;52340:256:0;;;;;:::i;:::-;;:::i;71807:218::-;;;;;;;;;;-1:-1:-1;71807:218:0;;;;;:::i;:::-;;:::i;83602:43::-;;;;;;;;;;-1:-1:-1;83602:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;93056:140;;;;;;;;;;;;;:::i;91425:65::-;;;;;;;;;;;;;:::i;38000:185::-;;;;;;;;;;-1:-1:-1;38000:185:0;;;;;:::i;:::-;;:::i;83803:77::-;;;;;;;;;;-1:-1:-1;83803:77:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;83467:25;;;;;;;;;;;;;;;;52862:233;;;;;;;;;;-1:-1:-1;52862:233:0;;;;;:::i;:::-;;:::i;92562:123::-;;;;;;;;;;-1:-1:-1;92562:123:0;;;;;:::i;:::-;;:::i;91498:90::-;;;;;;;;;;-1:-1:-1;91498:90:0;;;;;:::i;:::-;;:::i;90866:208::-;;;;;;;;;;-1:-1:-1;90866:208:0;;;;;:::i;:::-;;:::i;89328:175::-;;;;;;;;;;-1:-1:-1;89328:175:0;;;;;:::i;:::-;;:::i;87848:979::-;;;:::i;59505:86::-;;;;;;;;;;-1:-1:-1;59576:7:0;;;;59505:86;;83652:41;;;;;;;;;;-1:-1:-1;83652:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;35092:223;;;;;;;;;;-1:-1:-1;35092:223:0;;;;;:::i;:::-;;:::i;93204:373::-;;;;;;;;;;-1:-1:-1;93204:373:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;91596:104::-;;;;;;;;;;-1:-1:-1;91596:104:0;;;;;:::i;:::-;;:::i;34823:207::-;;;;;;;;;;-1:-1:-1;34823:207:0;;;;;:::i;:::-;;:::i;62239:103::-;;;;;;;;;;;;;:::i;83751:43::-;;;;;;;;;;-1:-1:-1;83751:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;90378:207;;;;;;;;;;-1:-1:-1;90378:207:0;;;;;:::i;:::-;;:::i;91356:61::-;;;;;;;;;;;;;:::i;86092:891::-;;;;;;:::i;:::-;;:::i;91082:109::-;;;;;;;;;;-1:-1:-1;91082:109:0;;;;;:::i;:::-;;:::i;61591:87::-;;;;;;;;;;-1:-1:-1;61664:6:0;;;;;-1:-1:-1;;;;;61664:6:0;61591:87;;68695:147;;;;;;;;;;-1:-1:-1;68695:147:0;;;;;:::i;:::-;;:::i;35551:104::-;;;;;;;;;;;;;:::i;92268:143::-;;;;;;;;;;-1:-1:-1;92268:143:0;;;;;:::i;:::-;;:::i;83393:29::-;;;;;;;;;;;;;;;;67800:49;;;;;;;;;;-1:-1:-1;67800:49:0;67845:4;67800:49;;37137:155;;;;;;;;;;-1:-1:-1;37137:155:0;;;;;:::i;:::-;;:::i;92811:120::-;;;;;;;;;;-1:-1:-1;92811:120:0;;;;;:::i;:::-;;:::i;83499:47::-;;;;;;;;;;-1:-1:-1;83499:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;90767:91;;;;;;;;;;;;;:::i;90074:123::-;;;;;;;;;;-1:-1:-1;90074:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;90167:15:0;;;;90143:4;90167:15;;;:9;:15;;;;;;;;:22;;;;;;;;;;;;;;90074:123;92123:137;;;;;;;;;;-1:-1:-1;92123:137:0;;;;;:::i;:::-;;:::i;86991:849::-;;;;;;:::i;:::-;;:::i;38256:322::-;;;;;;;;;;-1:-1:-1;38256:322:0;;;;;:::i;:::-;;:::i;83435:25::-;;;;;;;;;;-1:-1:-1;83435:25:0;;;;;;;;;;;26519:4:1;26507:17;;;26489:36;;26477:2;26462:18;83435:25:0;26347:184:1;83968:72:0;;;;;;;;;;-1:-1:-1;83968:72:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;84049:52;;;;;;;;;;-1:-1:-1;84049:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;89511:428;;;;;;;;;;-1:-1:-1;89511:428:0;;;;;:::i;:::-;;:::i;89207:113::-;;;;;;;;;;-1:-1:-1;89207:113:0;;;;;:::i;:::-;;:::i;71103:149::-;;;;;;;;;;-1:-1:-1;71103:149:0;;;;;:::i;:::-;;:::i;83887:74::-;;;;;;;;;;-1:-1:-1;83887:74:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;91812:128;;;;;;;;;;-1:-1:-1;91812:128:0;;;;;:::i;:::-;;:::i;91708:96::-;;;;;;;;;;-1:-1:-1;91708:96:0;;;;;:::i;:::-;;:::i;92693:110::-;;;;;;;;;;-1:-1:-1;92693:110:0;;;;;:::i;:::-;;:::i;37363:164::-;;;;;;;;;;-1:-1:-1;37363:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37484:25:0;;;37460:4;37484:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37363:164;91948:167;;;;;;;;;;-1:-1:-1;91948:167:0;;;;;:::i;:::-;;:::i;62497:201::-;;;;;;;;;;-1:-1:-1;62497:201:0;;;;;:::i;:::-;;:::i;93918:236::-;94081:4;94110:36;94134:11;94110:23;:36::i;:::-;94103:43;93918:236;-1:-1:-1;;93918:236:0:o;90609:150::-;61477:13;:11;:13::i;:::-;90706:45:::1;90725:9;90736:14;90706:18;:45::i;:::-;90609:150:::0;;:::o;35382:100::-;35436:13;35469:5;35462:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35382:100;:::o;36894:171::-;36970:7;36990:23;37005:7;36990:14;:23::i;:::-;-1:-1:-1;37033:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37033:24:0;;36894:171::o;90205:165::-;84215:24;68291:16;68302:4;68291:10;:16::i;:::-;90294:26:::1;::::0;::::1;;::::0;;;:19:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;90333:15:0;;::::1;;::::0;;;:9:::1;:15;::::0;;;;;;;:22:::1;::::0;;::::1;::::0;;;;;;:29;;-1:-1:-1;;90333:29:0::1;90358:4;90333:29;::::0;;90205:165::o;36412:416::-;36493:13;36509:23;36524:7;36509:14;:23::i;:::-;36493:39;;36557:5;-1:-1:-1;;;;;36551:11:0;:2;-1:-1:-1;;;;;36551:11:0;;;36543:57;;;;-1:-1:-1;;;36543:57:0;;22803:2:1;36543:57:0;;;22785:21:1;22842:2;22822:18;;;22815:30;22881:34;22861:18;;;22854:62;-1:-1:-1;;;22932:18:1;;;22925:31;22973:19;;36543:57:0;;;;;;;;;17236:10;-1:-1:-1;;;;;36635:21:0;;;;:62;;-1:-1:-1;36660:37:0;36677:5;17236:10;37363:164;:::i;36660:37::-;36613:173;;;;-1:-1:-1;;;36613:173:0;;23205:2:1;36613:173:0;;;23187:21:1;23244:2;23224:18;;;23217:30;23283:34;23263:18;;;23256:62;23354:31;23334:18;;;23327:59;23403:19;;36613:173:0;23003:425:1;36613:173:0;36799:21;36808:2;36812:7;36799:8;:21::i;:::-;36482:346;36412:416;;:::o;92419:135::-;61477:13;:11;:13::i;:::-;92542:4:::1;92510:10;:29;92521:17;92510:29;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;92510:29:0;:36;-1:-1:-1;;92419:135:0:o;37594:335::-;37789:41;17236:10;37822:7;37789:18;:41::i;:::-;37781:99;;;;-1:-1:-1;;;37781:99:0;;;;;;;:::i;:::-;37893:28;37903:4;37909:2;37913:7;37893:9;:28::i;80484:442::-;80581:7;80639:27;;;:17;:27;;;;;;;;80610:56;;;;;;;;;-1:-1:-1;;;;;80610:56:0;;;;;-1:-1:-1;;;80610:56:0;;;-1:-1:-1;;;;;80610:56:0;;;;;;;;80581:7;;80679:92;;-1:-1:-1;80730:29:0;;;;;;;;;80740:19;80730:29;-1:-1:-1;;;;;80730:29:0;;;;-1:-1:-1;;;80730:29:0;;-1:-1:-1;;;;;80730:29:0;;;;;80679:92;80821:23;;;;80783:21;;81292:5;;80808:36;;-1:-1:-1;;;;;80808:36:0;:10;:36;:::i;:::-;80807:58;;;;:::i;:::-;80886:16;;;;;-1:-1:-1;80484:442:0;;-1:-1:-1;;;;80484:442:0:o;70663:147::-;70296:7;70323:12;;;:6;:12;;;;;:22;;;68291:16;68302:4;68291:10;:16::i;:::-;70777:25:::1;70788:4;70794:7;70777:10;:25::i;52340:256::-:0;52437:7;52473:23;52490:5;52473:16;:23::i;:::-;52465:5;:31;52457:87;;;;-1:-1:-1;;;52457:87:0;;15065:2:1;52457:87:0;;;15047:21:1;15104:2;15084:18;;;15077:30;15143:34;15123:18;;;15116:62;-1:-1:-1;;;15194:18:1;;;15187:41;15245:19;;52457:87:0;14863:407:1;52457:87:0;-1:-1:-1;;;;;;52562:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;52340:256::o;71807:218::-;-1:-1:-1;;;;;71903:23:0;;17236:10;71903:23;71895:83;;;;-1:-1:-1;;;71895:83:0;;25951:2:1;71895:83:0;;;25933:21:1;25990:2;25970:18;;;25963:30;26029:34;26009:18;;;26002:62;-1:-1:-1;;;26080:18:1;;;26073:45;26135:19;;71895:83:0;25749:411:1;71895:83:0;71991:26;72003:4;72009:7;71991:11;:26::i;93056:140::-;61477:13;:11;:13::i;:::-;93151:37:::1;::::0;93119:21:::1;::::0;93159:10:::1;::::0;93151:37;::::1;;;::::0;93119:21;;93104:12:::1;93151:37:::0;93104:12;93151:37;93119:21;93159:10;93151:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;91425:65:::0;61477:13;:11;:13::i;:::-;91472:10:::1;:8;:10::i;:::-;91425:65::o:0;38000:185::-;38138:39;38155:4;38161:2;38165:7;38138:39;;;;;;;;;;;;:16;:39::i;52862:233::-;52937:7;52973:30;52760:10;:17;;52672:113;52973:30;52965:5;:38;52957:95;;;;-1:-1:-1;;;52957:95:0;;23991:2:1;52957:95:0;;;23973:21:1;24030:2;24010:18;;;24003:30;24069:34;24049:18;;;24042:62;-1:-1:-1;;;24120:18:1;;;24113:42;24172:19;;52957:95:0;23789:408:1;52957:95:0;53070:10;53081:5;53070:17;;;;;;;;:::i;:::-;;;;;;;;;53063:24;;52862:233;;;:::o;92562:123::-;61477:13;:11;:13::i;:::-;92673:4:::1;92647:7;:23;92655:14;92647:23;;;;;;;;:::i;91498:90::-:0;61477:13;:11;:13::i;:::-;91566:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;90866:208::-:0;61477:13;:11;:13::i;:::-;91013:53:::1;91030:8;91040:9;91051:14;91013:16;:53::i;89328:175::-:0;61477:13;:11;:13::i;:::-;89408:9:::1;89403:93;89427:5;:12;89423:1;:16;89403:93;;;89461:23;89472:5;89478:1;89472:8;;;;;;;;:::i;:::-;;;;;;;89482:1;89461:10;:23::i;:::-;89441:3:::0;::::1;::::0;::::1;:::i;:::-;;;;89403:93;;87848:979:::0;59110:19;:17;:19::i;:::-;85619:10:::1;85672:17:::0;::::1;::::0;85718:9;;85710:45:::1;;;;-1:-1:-1::0;;;85710:45:0::1;;;;;;;:::i;:::-;85774:10;85788:9;85774:23;85766:65;;;;-1:-1:-1::0;;;85766:65:0::1;;;;;;;:::i;:::-;87990:15:::2;87976:30;::::0;;;88041:25;;87976:13:::2;:30;88008::::0;:58:::2;::::0;87976:30;88008:58:::2;:::i;:::-;85961:10:::0;93025:15;85944:27:::2;;85936:64;;;;-1:-1:-1::0;;;85936:64:0::2;;;;;;;:::i;:::-;86035:8:::0;93025:15;86019:24:::2;86011:53;;;;-1:-1:-1::0;;;86011:53:0::2;;;;;;;:::i;:::-;77615:21:::3;:19;:21::i;:::-;88165:12:::4;::::0;88266:10:::4;88106:15;88241:36:::0;;;:24:::4;:36;::::0;;;;;;;88165:12:::4;::::0;;::::4;88241:44:::0;;;;;;;;;;88124:15:::4;::::0;88165:12;;;88241:48;;;:97:::4;;-1:-1:-1::0;88315:10:0::4;88337:1;88293:33:::0;;;:21:::4;:33;::::0;;;;;;;:41:::4;::::0;::::4;::::0;;;;;;;;:45;;88241:97:::4;88219:166;;;::::0;-1:-1:-1;;;88219:166:0;;21388:2:1;88219:166:0::4;::::0;::::4;21370:21:1::0;21427:2;21407:18;;;21400:30;-1:-1:-1;;;21446:18:1;;;21439:49;21505:18;;88219:166:0::4;21186:343:1::0;88219:166:0::4;88456:10;:20;88467:8;88456:20;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::4;::::0;;::::4;::::0;;;;;;;;-1:-1:-1;88456:20:0;;;;88424:10:::4;88404:31:::0;;:19:::4;:31:::0;;;;;:39:::4;::::0;::::4;::::0;;;;;;;:48:::4;::::0;88446:6;;88404:48:::4;:::i;:::-;:72;;88396:109;;;;-1:-1:-1::0;;;88396:109:0::4;;;;;;;:::i;:::-;88556:7;:17;88564:8;88556:17;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88546:6;88524:9;:19;88534:8;88524:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;:::i;:::-;:49;;88516:79;;;;-1:-1:-1::0;;;88516:79:0::4;;;;;;;:::i;:::-;88649:6;88627:9;:19;88637:8;88627:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;:::i;:::-;88614:9;:41;;88606:70;;;;-1:-1:-1::0;;;88606:70:0::4;;;;;;;:::i;:::-;88712:6;88689:9;:19;88699:8;88689:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;88749:10:0::4;88729:31;::::0;;;:19:::4;:31;::::0;;;;;;;:39:::4;::::0;::::4;::::0;;;;;;;:49;;88772:6;;88729:31;:49:::4;::::0;88772:6;;88729:49:::4;:::i;:::-;::::0;;;-1:-1:-1;88789:30:0::4;::::0;-1:-1:-1;88800:10:0::4;88812:6:::0;88789:10:::4;:30::i;:::-;88095:732;;;77659:20:::3;77053:1:::0;78179:7;:22;77996:213;77659:20:::3;85842:1:::2;;85570:281:::1;;87848:979::o:0;35092:223::-;35164:7;39979:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39979:16:0;;35228:56;;;;-1:-1:-1;;;35228:56:0;;22450:2:1;35228:56:0;;;22432:21:1;22489:2;22469:18;;;22462:30;-1:-1:-1;;;22508:18:1;;;22501:54;22572:18;;35228:56:0;22248:348:1;93204:373:0;93266:16;93295:15;93313:19;93323:8;93313:9;:19::i;:::-;93295:37;;93343:20;93380:7;93366:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93366:22:0;;93343:45;;93406:9;93401:148;93425:7;93421:1;:11;93401:148;;;93454:16;93473:32;93493:8;93503:1;93473:19;:32::i;:::-;93454:51;;93529:8;93520:3;93524:1;93520:6;;;;;;;;:::i;:::-;;;;;;;;;;:17;-1:-1:-1;93434:3:0;;;;:::i;:::-;;;;93401:148;;;-1:-1:-1;93566:3:0;93204:373;-1:-1:-1;;;93204:373:0:o;91596:104::-;61477:13;:11;:13::i;:::-;91668:10:::1;:24:::0;91596:104::o;34823:207::-;34895:7;-1:-1:-1;;;;;34923:19:0;;34915:73;;;;-1:-1:-1;;;34915:73:0;;19558:2:1;34915:73:0;;;19540:21:1;19597:2;19577:18;;;19570:30;19636:34;19616:18;;;19609:62;-1:-1:-1;;;19687:18:1;;;19680:39;19736:19;;34915:73:0;19356:405:1;34915:73:0;-1:-1:-1;;;;;;35006:16:0;;;;;:9;:16;;;;;;;34823:207::o;62239:103::-;61477:13;:11;:13::i;:::-;62304:30:::1;62331:1;62304:18;:30::i;90378:207::-:0;84215:24;68291:16;68302:4;68291:10;:16::i;:::-;90487:6:::1;90482:96;90503:5;:12;90499:1;:16;90482:96;;;90537:29;90550:5;90556:1;90550:8;;;;;;;;:::i;:::-;;;;;;;90560:5;90537:12;:29::i;:::-;90517:3:::0;::::1;::::0;::::1;:::i;:::-;;;;90482:96;;91356:61:::0;61477:13;:11;:13::i;:::-;91401:8:::1;:6;:8::i;86092:891::-:0;59110:19;:17;:19::i;:::-;85619:10:::1;85672:17:::0;::::1;::::0;85718:9;;85710:45:::1;;;;-1:-1:-1::0;;;85710:45:0::1;;;;;;;:::i;:::-;85774:10;85788:9;85774:23;85766:65;;;;-1:-1:-1::0;;;85766:65:0::1;;;;;;;:::i;:::-;86239:35:::2;::::0;;;;86314:30;;86239:13:::2;:35;86276::::0;:68:::2;::::0;86239:35;86276:68:::2;:::i;:::-;85961:10:::0;93025:15;85944:27:::2;;85936:64;;;;-1:-1:-1::0;;;85936:64:0::2;;;;;;;:::i;:::-;86035:8:::0;93025:15;86019:24:::2;86011:53;;;;-1:-1:-1::0;;;86011:53:0::2;;;;;;;:::i;:::-;77615:21:::3;:19;:21::i;:::-;86448:12:::4;::::0;86491:10:::4;86384:15;86481:21:::0;;;:9:::4;:21;::::0;;;;;;;86448:12:::4;::::0;;::::4;86481:29:::0;;;;;;;;86384:15;;86448:12;;86481:29:::4;86473:58;;;::::0;-1:-1:-1;;;86473:58:0;;18868:2:1;86473:58:0::4;::::0;::::4;18850:21:1::0;18907:2;18887:18;;;18880:30;-1:-1:-1;;;18926:18:1;;;18919:46;18982:18;;86473:58:0::4;18666:340:1::0;86473:58:0::4;86607:10;:20;86618:8;86607:20;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::4;::::0;;::::4;::::0;;;;;;;;-1:-1:-1;86607:20:0;;;;86575:10:::4;86550:36:::0;;:24:::4;:36:::0;;;;;:44:::4;::::0;::::4;::::0;;;;;;;:53:::4;::::0;86597:6;;86550:53:::4;:::i;:::-;:77;;86542:114;;;;-1:-1:-1::0;;;86542:114:0::4;;;;;;;:::i;:::-;86707:7;:17;86715:8;86707:17;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86697:6;86675:9;:19;86685:8;86675:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;:::i;:::-;:49;;86667:79;;;;-1:-1:-1::0;;;86667:79:0::4;;;;;;;:::i;:::-;86800:6;86778:9;:19;86788:8;86778:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;:::i;:::-;86765:9;:41;;86757:70;;;;-1:-1:-1::0;;;86757:70:0::4;;;;;;;:::i;:::-;86863:6;86840:9;:19;86850:8;86840:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;86905:10:0::4;86880:36;::::0;;;:24:::4;:36;::::0;;;;;;;:44:::4;::::0;::::4;::::0;;;;;;;:54;;86928:6;;86880:36;:54:::4;::::0;86928:6;;86880:54:::4;:::i;:::-;::::0;;;-1:-1:-1;86945:30:0::4;::::0;-1:-1:-1;86956:10:0::4;86968:6:::0;86945:10:::4;:30::i;:::-;86373:610;;77659:20:::3;77053:1:::0;78179:7;:22;77996:213;77659:20:::3;85842:1:::2;;85570:281:::1;;86092:891:::0;:::o;91082:109::-;61477:13;:11;:13::i;:::-;82940:26;;;;:17;:26;;;;;82933:33;91082:109::o;91155:28::-:1;91082:109:::0;:::o;68695:147::-;68781:4;68805:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;68805:29:0;;;;;;;;;;;;;;;68695:147::o;35551:104::-;35607:13;35640:7;35633:14;;;;;:::i;92268:143::-;61477:13;:11;:13::i;:::-;92393:10:::1;92363:9;:27;92373:16;92363:27;;;;;;;;:::i;37137:155::-:0;37232:52;17236:10;37265:8;37275;37232:18;:52::i;92811:120::-;61477:13;:11;:13::i;:::-;92891:14:::1;:32:::0;92811:120::o;90767:91::-;61477:13;:11;:13::i;:::-;90827:23:::1;82052:19:::0;;82045:26;81984:95;92123:137;61477:13;:11;:13::i;:::-;92243:9:::1;92215:8;:25;92224:15;92215:25;;;;;;;;:::i;86991:849::-:0;59110:19;:17;:19::i;:::-;85619:10:::1;85672:17:::0;::::1;::::0;85718:9;;85710:45:::1;;;;-1:-1:-1::0;;;85710:45:0::1;;;;;;;:::i;:::-;85774:10;85788:9;85774:23;85766:65;;;;-1:-1:-1::0;;;85766:65:0::1;;;;;;;:::i;:::-;87153:17:::2;87139:32;::::0;;;87208:27;;87139:13:::2;:32;87173::::0;:62:::2;::::0;87139:32;87173:62:::2;:::i;:::-;85961:10:::0;93025:15;85944:27:::2;;85936:64;;;;-1:-1:-1::0;;;85936:64:0::2;;;;;;;:::i;:::-;86035:8:::0;93025:15;86019:24:::2;86011:53;;;;-1:-1:-1::0;;;86011:53:0::2;;;;;;;:::i;:::-;77615:21:::3;:19;:21::i;:::-;87336:12:::4;::::0;87423:20;;87391:10:::4;87275:15;87369:33:::0;;;:21:::4;87423:20;87369:33:::0;;;87423:20;87369:33;;;87336:12:::4;::::0;;::::4;87369:41:::0;;;;;;;;;;87293:17:::4;::::0;87336:12;87423:20;87369:50:::4;::::0;87413:6;;87369:50:::4;:::i;:::-;:74;;87361:111;;;;-1:-1:-1::0;;;87361:111:0::4;;;;;;;:::i;:::-;87523:7;:17;87531:8;87523:17;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;87513:6;87491:9;:19;87501:8;87491:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;:::i;:::-;:49;;87483:79;;;;-1:-1:-1::0;;;87483:79:0::4;;;;;;;:::i;:::-;87575:18;87618:6;87596:9;:19;87606:8;87596:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;:::i;:::-;87575:49;;87656:10;87643:9;:23;;87635:52;;;;-1:-1:-1::0;;;87635:52:0::4;;;;;;;:::i;:::-;87723:6;87700:9;:19;87710:8;87700:19;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;87762:10:0::4;87740:33;::::0;;;:21:::4;:33;::::0;;;;;;;:41:::4;::::0;::::4;::::0;;;;;;;:51;;87785:6;;87740:33;:51:::4;::::0;87785:6;;87740:51:::4;:::i;:::-;::::0;;;-1:-1:-1;87802:30:0::4;::::0;-1:-1:-1;87813:10:0::4;87825:6:::0;87802:10:::4;:30::i;:::-;87264:576;;;77659:20:::3;77053:1:::0;78179:7;:22;77996:213;38256:322;38430:41;17236:10;38463:7;38430:18;:41::i;:::-;38422:99;;;;-1:-1:-1;;;38422:99:0;;;;;;;:::i;:::-;38532:38;38546:4;38552:2;38556:7;38565:4;38532:13;:38::i;89511:428::-;89584:13;89610:23;89625:7;89610:14;:23::i;:::-;89659:14;;89648:7;:25;89644:130;;89721:10;89733:18;:7;:16;:18::i;:::-;89704:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89690:72;;89511:428;;;:::o;89644:130::-;89784:18;89805:10;:8;:10::i;:::-;89784:31;;89857:1;89839:7;89833:21;;;;;:::i;:::-;;;:25;:98;;;;;;;;;;;;;;;;;89885:4;89891:18;:7;:16;:18::i;:::-;89911:13;89868:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89833:98;89826:105;89511:428;-1:-1:-1;;;89511:428:0:o;89207:113::-;61477:13;:11;:13::i;:::-;89290:22:::1;89301:2;89305:6;89290:10;:22::i;71103:149::-:0;70296:7;70323:12;;;:6;:12;;;;;:22;;;68291:16;68302:4;68291:10;:16::i;:::-;71218:26:::1;71230:4;71236:7;71218:11;:26::i;91812:128::-:0;61477:13;:11;:13::i;:::-;91899:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;91708:96::-:0;61477:13;:11;:13::i;:::-;91775:12:::1;:21:::0;;-1:-1:-1;;91775:21:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;91708:96::o;92693:110::-;61477:13;:11;:13::i;:::-;92771:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;91948:167::-:0;61477:13;:11;:13::i;:::-;92093:14:::1;92055:13;:35;92069:20;92055:35;;;;;;;;:::i;62497:201::-:0;61477:13;:11;:13::i;:::-;-1:-1:-1;;;;;62586:22:0;::::1;62578:73;;;::::0;-1:-1:-1;;;62578:73:0;;15896:2:1;62578:73:0::1;::::0;::::1;15878:21:1::0;15935:2;15915:18;;;15908:30;15974:34;15954:18;;;15947:62;-1:-1:-1;;;16025:18:1;;;16018:36;16071:19;;62578:73:0::1;15694:402:1::0;62578:73:0::1;62662:28;62681:8;62662:18;:28::i;68399:204::-:0;68484:4;-1:-1:-1;;;;;;68508:47:0;;-1:-1:-1;;;68508:47:0;;:87;;;68559:36;68583:11;68559:23;:36::i;61756:132::-;61664:6;;-1:-1:-1;;;;;61664:6:0;;;;;17236:10;61820:23;61812:68;;;;-1:-1:-1;;;61812:68:0;;21736:2:1;61812:68:0;;;21718:21:1;;;21755:18;;;21748:30;21814:34;21794:18;;;21787:62;21866:18;;61812:68:0;21534:356:1;81576:332:0;81292:5;-1:-1:-1;;;;;81679:33:0;;;;81671:88;;;;-1:-1:-1;;;81671:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;81778:22:0;;81770:60;;;;-1:-1:-1;;;81770:60:0;;25597:2:1;81770:60:0;;;25579:21:1;25636:2;25616:18;;;25609:30;25675:27;25655:18;;;25648:55;25720:18;;81770:60:0;25395:349:1;81770:60:0;81865:35;;;;;;;;;-1:-1:-1;;;;;81865:35:0;;;;;;-1:-1:-1;;;;;81865:35:0;;;;;;;;;;-1:-1:-1;;;81843:57:0;;;;:19;:57;81576:332::o;46713:135::-;40381:4;39979:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39979:16:0;46787:53;;;;-1:-1:-1;;;46787:53:0;;22450:2:1;46787:53:0;;;22432:21:1;22489:2;22469:18;;;22462:30;-1:-1:-1;;;22508:18:1;;;22501:54;22572:18;;46787:53:0;22248:348:1;69146:105:0;69213:30;69224:4;17236:10;69213;:30::i;45992:174::-;46067:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;46067:29:0;-1:-1:-1;;;;;46067:29:0;;;;;;;;:24;;46121:23;46067:24;46121:14;:23::i;:::-;-1:-1:-1;;;;;46112:46:0;;;;;;;;;;;45992:174;;:::o;40611:264::-;40704:4;40721:13;40737:23;40752:7;40737:14;:23::i;:::-;40721:39;;40790:5;-1:-1:-1;;;;;40779:16:0;:7;-1:-1:-1;;;;;40779:16:0;;:52;;;-1:-1:-1;;;;;;37484:25:0;;;37460:4;37484:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40799:32;40779:87;;;;40859:7;-1:-1:-1;;;;;40835:31:0;:20;40847:7;40835:11;:20::i;:::-;-1:-1:-1;;;;;40835:31:0;;40779:87;40771:96;40611:264;-1:-1:-1;;;;40611:264:0:o;44610:1263::-;44769:4;-1:-1:-1;;;;;44742:31:0;:23;44757:7;44742:14;:23::i;:::-;-1:-1:-1;;;;;44742:31:0;;44734:81;;;;-1:-1:-1;;;44734:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44834:16:0;;44826:65;;;;-1:-1:-1;;;44826:65:0;;17411:2:1;44826:65:0;;;17393:21:1;17450:2;17430:18;;;17423:30;17489:34;17469:18;;;17462:62;-1:-1:-1;;;17540:18:1;;;17533:34;17584:19;;44826:65:0;17209:400:1;44826:65:0;44904:42;44925:4;44931:2;44935:7;44944:1;44904:20;:42::i;:::-;45076:4;-1:-1:-1;;;;;45049:31:0;:23;45064:7;45049:14;:23::i;:::-;-1:-1:-1;;;;;45049:31:0;;45041:81;;;;-1:-1:-1;;;45041:81:0;;;;;;;:::i;:::-;45194:24;;;;:15;:24;;;;;;;;45187:31;;-1:-1:-1;;;;;;45187:31:0;;;;;;-1:-1:-1;;;;;45670:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;45670:20:0;;;45705:13;;;;;;;;;:18;;45187:31;45705:18;;;45745:16;;;:7;:16;;;;;;:21;;;;;;;;;;45784:27;;45210:7;;45784:27;;;36482:346;36412:416;;:::o;73404:238::-;73488:22;73496:4;73502:7;73488;:22::i;:::-;73483:152;;73527:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;73527:29:0;;;;;;;;;:36;;-1:-1:-1;;73527:36:0;73559:4;73527:36;;;73610:12;17236:10;;17156:98;73610:12;-1:-1:-1;;;;;73583:40:0;73601:7;-1:-1:-1;;;;;73583:40:0;73595:4;73583:40;;;;;;;;;;73404:238;;:::o;73822:239::-;73906:22;73914:4;73920:7;73906;:22::i;:::-;73902:152;;;73977:5;73945:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;73945:29:0;;;;;;;;;;:37;;-1:-1:-1;;73945:37:0;;;74002:40;17236:10;;73945:12;;74002:40;;73977:5;74002:40;73822:239;;:::o;60360:120::-;59369:16;:14;:16::i;:::-;60419:7:::1;:15:::0;;-1:-1:-1;;60419:15:0::1;::::0;;60450:22:::1;17236:10:::0;60459:12:::1;60450:22;::::0;-1:-1:-1;;;;;11342:32:1;;;11324:51;;11312:2;11297:18;60450:22:0::1;;;;;;;60360:120::o:0;82359:390::-;81292:5;-1:-1:-1;;;;;82511:33:0;;;;82503:88;;;;-1:-1:-1;;;82503:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;82610:22:0;;82602:62;;;;-1:-1:-1;;;82602:62:0;;23635:2:1;82602:62:0;;;23617:21:1;23674:2;23654:18;;;23647:30;23713:29;23693:18;;;23686:57;23760:18;;82602:62:0;23433:351:1;82602:62:0;82706:35;;;;;;;;-1:-1:-1;;;;;82706:35:0;;;;;-1:-1:-1;;;;;82706:35:0;;;;;;;;;;-1:-1:-1;82677:26:0;;;:17;:26;;;;;;:64;;;;;;;-1:-1:-1;;;82677:64:0;;;;;;82359:390::o;88835:364::-;88949:10;;88936:9;88920:13;52760:10;:17;;52672:113;88920:13;:25;;;;:::i;:::-;:39;;88912:72;;;;-1:-1:-1;;;88912:72:0;;19968:2:1;88912:72:0;;;19950:21:1;20007:2;19987:18;;;19980:30;-1:-1:-1;;;20026:18:1;;;20019:50;20086:18;;88912:72:0;19766:344:1;88912:72:0;89002:9;88997:195;89021:9;89017:1;:13;88997:195;;;89052:15;89070:25;:15;74918:14;;74826:114;89070:25;89052:43;;89110:27;:15;75037:19;;75055:1;75037:19;;;74948:127;89110:27;89152:28;89162:8;89172:7;89152:9;:28::i;:::-;-1:-1:-1;89032:3:0;;;;:::i;:::-;;;;88997:195;;59664:108;59576:7;;;;59734:9;59726:38;;;;-1:-1:-1;;;59726:38:0;;19213:2:1;59726:38:0;;;19195:21:1;19252:2;19232:18;;;19225:30;-1:-1:-1;;;19271:18:1;;;19264:46;19327:18;;59726:38:0;19011:340:1;77695:293:0;77097:1;77829:7;;:19;;77821:63;;;;-1:-1:-1;;;77821:63:0;;25237:2:1;77821:63:0;;;25219:21:1;25276:2;25256:18;;;25249:30;25315:33;25295:18;;;25288:61;25366:18;;77821:63:0;25035:355:1;77821:63:0;77097:1;77962:7;:18;77695:293::o;62858:191::-;62951:6;;;-1:-1:-1;;;;;62968:17:0;;;62951:6;62968:17;;;-1:-1:-1;;;;;;62968:17:0;;;;;;63001:40;;62951:6;;;;;;;;63001:40;;62932:16;;63001:40;62921:128;62858:191;:::o;60101:118::-;59110:19;:17;:19::i;:::-;60161:7:::1;:14:::0;;-1:-1:-1;;60161:14:0::1;60171:4;60161:14;::::0;;60191:20:::1;60198:12;17236:10:::0;;17156:98;46309:315;46464:8;-1:-1:-1;;;;;46455:17:0;:5;-1:-1:-1;;;;;46455:17:0;;;46447:55;;;;-1:-1:-1;;;46447:55:0;;17816:2:1;46447:55:0;;;17798:21:1;17855:2;17835:18;;;17828:30;17894:27;17874:18;;;17867:55;17939:18;;46447:55:0;17614:349:1;46447:55:0;-1:-1:-1;;;;;46513:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;46513:46:0;;;;;;;;;;46575:41;;12935::1;;;46575::0;;12908:18:1;46575:41:0;;;;;;;46309:315;;;:::o;39459:313::-;39615:28;39625:4;39631:2;39635:7;39615:9;:28::i;:::-;39662:47;39685:4;39691:2;39695:7;39704:4;39662:22;:47::i;:::-;39654:110;;;;-1:-1:-1;;;39654:110:0;;;;;;;:::i;30415:716::-;30471:13;30522:14;30539:17;30550:5;30539:10;:17::i;:::-;30559:1;30539:21;30522:38;;30575:20;30609:6;30598:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30598:18:0;-1:-1:-1;30575:41:0;-1:-1:-1;30740:28:0;;;30756:2;30740:28;30797:288;-1:-1:-1;;30829:5:0;-1:-1:-1;;;30966:2:0;30955:14;;30950:30;30829:5;30937:44;31027:2;31018:11;;;-1:-1:-1;31052:10:0;31048:21;;31064:5;;31048:21;30797:288;;89947:100;89999:13;90032:7;90025:14;;;;;:::i;52032:224::-;52134:4;-1:-1:-1;;;;;;52158:50:0;;-1:-1:-1;;;52158:50:0;;:90;;;52212:36;52236:11;52212:23;:36::i;69541:492::-;69630:22;69638:4;69644:7;69630;:22::i;:::-;69625:401;;69818:28;69838:7;69818:19;:28::i;:::-;69919:38;69947:4;69954:2;69919:19;:38::i;:::-;69723:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;69723:257:0;;;;;;;;;;-1:-1:-1;;;69669:345:0;;;;;;;:::i;93585:257::-;59110:19;:17;:19::i;:::-;93778:56:::1;93805:4;93811:2;93815:7;93824:9;93778:26;:56::i;59849:108::-:0;59576:7;;;;59908:41;;;;-1:-1:-1;;;59908:41:0;;13956:2:1;59908:41:0;;;13938:21:1;13995:2;13975:18;;;13968:30;-1:-1:-1;;;14014:18:1;;;14007:50;14074:18;;59908:41:0;13754:344:1;41217:110:0;41293:26;41303:2;41307:7;41293:26;;;;;;;;;;;;:9;:26::i;47412:853::-;47566:4;-1:-1:-1;;;;;47587:13:0;;8689:19;:23;47583:675;;47623:71;;-1:-1:-1;;;47623:71:0;;-1:-1:-1;;;;;47623:36:0;;;;;:71;;17236:10;;47674:4;;47680:7;;47689:4;;47623:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47623:71:0;;;;;;;;-1:-1:-1;;47623:71:0;;;;;;;;;;;;:::i;:::-;;;47619:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47864:13:0;;47860:328;;47907:60;;-1:-1:-1;;;47907:60:0;;;;;;;:::i;47860:328::-;48138:6;48132:13;48123:6;48119:2;48115:15;48108:38;47619:584;-1:-1:-1;;;;;;47745:51:0;-1:-1:-1;;;47745:51:0;;-1:-1:-1;47738:58:0;;47583:675;-1:-1:-1;48242:4:0;47412:853;;;;;;:::o;27410:922::-;27463:7;;-1:-1:-1;;;27541:15:0;;27537:102;;-1:-1:-1;;;27577:15:0;;;-1:-1:-1;27621:2:0;27611:12;27537:102;27666:6;27657:5;:15;27653:102;;27702:6;27693:15;;;-1:-1:-1;27737:2:0;27727:12;27653:102;27782:6;27773:5;:15;27769:102;;27818:6;27809:15;;;-1:-1:-1;27853:2:0;27843:12;27769:102;27898:5;27889;:14;27885:99;;27933:5;27924:14;;;-1:-1:-1;27967:1:0;27957:11;27885:99;28011:5;28002;:14;27998:99;;28046:5;28037:14;;;-1:-1:-1;28080:1:0;28070:11;27998:99;28124:5;28115;:14;28111:99;;28159:5;28150:14;;;-1:-1:-1;28193:1:0;28183:11;28111:99;28237:5;28228;:14;28224:66;;28273:1;28263:11;28318:6;27410:922;-1:-1:-1;;27410:922:0:o;80214:215::-;80316:4;-1:-1:-1;;;;;;80340:41:0;;-1:-1:-1;;;80340:41:0;;:81;;;80385:36;80409:11;80385:23;:36::i;32151:151::-;32209:13;32242:52;-1:-1:-1;;;;;32254:22:0;;30306:2;31547:447;31622:13;31648:19;31680:10;31684:6;31680:1;:10;:::i;:::-;:14;;31693:1;31680:14;:::i;:::-;31670:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31670:25:0;;31648:47;;-1:-1:-1;;;31706:6:0;31713:1;31706:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;31706:15:0;;;;;;;;;-1:-1:-1;;;31732:6:0;31739:1;31732:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;31732:15:0;;;;;;;;-1:-1:-1;31763:9:0;31775:10;31779:6;31775:1;:10;:::i;:::-;:14;;31788:1;31775:14;:::i;:::-;31763:26;;31758:131;31795:1;31791;:5;31758:131;;;-1:-1:-1;;;31839:5:0;31847:3;31839:11;31830:21;;;;;;;:::i;:::-;;;;31818:6;31825:1;31818:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;31818:33:0;;;;;;;;-1:-1:-1;31876:1:0;31866:11;;;;;31798:3;;;:::i;:::-;;;31758:131;;;-1:-1:-1;31907:10:0;;31899:55;;;;-1:-1:-1;;;31899:55:0;;13595:2:1;31899:55:0;;;13577:21:1;;;13614:18;;;13607:30;13673:34;13653:18;;;13646:62;13725:18;;31899:55:0;13393:356:1;53169:915:0;53346:61;53373:4;53379:2;53383:12;53397:9;53346:26;:61::i;:::-;53436:1;53424:9;:13;53420:222;;;53567:63;;-1:-1:-1;;;53567:63:0;;24404:2:1;53567:63:0;;;24386:21:1;24443:2;24423:18;;;24416:30;24482:34;24462:18;;;24455:62;-1:-1:-1;;;24533:18:1;;;24526:51;24594:19;;53567:63:0;24202:417:1;53420:222:0;53672:12;-1:-1:-1;;;;;53701:18:0;;53697:187;;53736:40;53768:7;54911:10;:17;;54884:24;;;;:15;:24;;;;;:44;;;54939:24;;;;;;;;;;;;54807:164;53736:40;53697:187;;;53806:2;-1:-1:-1;;;;;53798:10:0;:4;-1:-1:-1;;;;;53798:10:0;;53794:90;;53825:47;53858:4;53864:7;53825:32;:47::i;:::-;-1:-1:-1;;;;;53898:16:0;;53894:183;;53931:45;53968:7;53931:36;:45::i;:::-;53894:183;;;54004:4;-1:-1:-1;;;;;53998:10:0;:2;-1:-1:-1;;;;;53998:10:0;;53994:83;;54025:40;54053:2;54057:7;54025:27;:40::i;41554:319::-;41683:18;41689:2;41693:7;41683:5;:18::i;:::-;41734:53;41765:1;41769:2;41773:7;41782:4;41734:22;:53::i;:::-;41712:153;;;;-1:-1:-1;;;41712:153:0;;;;;;;:::i;34454:305::-;34556:4;-1:-1:-1;;;;;;34593:40:0;;-1:-1:-1;;;34593:40:0;;:105;;-1:-1:-1;;;;;;;34650:48:0;;-1:-1:-1;;;34650:48:0;34593:105;:158;;;-1:-1:-1;;;;;;;;;;33143:40:0;;;34715:36;33034:157;48997:410;49187:1;49175:9;:13;49171:229;;;-1:-1:-1;;;;;49209:18:0;;;49205:87;;-1:-1:-1;;;;;49248:15:0;;;;;;:9;:15;;;;;:28;;49267:9;;49248:15;:28;;49267:9;;49248:28;:::i;:::-;;;;-1:-1:-1;;49205:87:0;-1:-1:-1;;;;;49310:16:0;;;49306:83;;-1:-1:-1;;;;;49347:13:0;;;;;;:9;:13;;;;;:26;;49364:9;;49347:13;:26;;49364:9;;49347:26;:::i;:::-;;;;-1:-1:-1;;48997:410:0;;;;:::o;55598:988::-;55864:22;55914:1;55889:22;55906:4;55889:16;:22::i;:::-;:26;;;;:::i;:::-;55926:18;55947:26;;;:17;:26;;;;;;55864:51;;-1:-1:-1;56080:28:0;;;56076:328;;-1:-1:-1;;;;;56147:18:0;;56125:19;56147:18;;;:12;:18;;;;;;;;:34;;;;;;;;;56198:30;;;;;;:44;;;56315:30;;:17;:30;;;;;:43;;;56076:328;-1:-1:-1;56500:26:0;;;;:17;:26;;;;;;;;56493:33;;;-1:-1:-1;;;;;56544:18:0;;;;;:12;:18;;;;;:34;;;;;;;56537:41;55598:988::o;56881:1079::-;57159:10;:17;57134:22;;57159:21;;57179:1;;57159:21;:::i;:::-;57191:18;57212:24;;;:15;:24;;;;;;57585:10;:26;;57134:46;;-1:-1:-1;57212:24:0;;57134:46;;57585:26;;;;;;:::i;:::-;;;;;;;;;57563:48;;57649:11;57624:10;57635;57624:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;57729:28;;;:15;:28;;;;;;;:41;;;57901:24;;;;;57894:31;57936:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56952:1008;;;56881:1079;:::o;54385:221::-;54470:14;54487:20;54504:2;54487:16;:20::i;:::-;-1:-1:-1;;;;;54518:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;54563:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;54385:221:0:o;42209:942::-;-1:-1:-1;;;;;42289:16:0;;42281:61;;;;-1:-1:-1;;;42281:61:0;;21027:2:1;42281:61:0;;;21009:21:1;;;21046:18;;;21039:30;21105:34;21085:18;;;21078:62;21157:18;;42281:61:0;20825:356:1;42281:61:0;40381:4;39979:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39979:16:0;40405:31;42353:58;;;;-1:-1:-1;;;42353:58:0;;16709:2:1;42353:58:0;;;16691:21:1;16748:2;16728:18;;;16721:30;16787;16767:18;;;16760:58;16835:18;;42353:58:0;16507:352:1;42353:58:0;42424:48;42453:1;42457:2;42461:7;42470:1;42424:20;:48::i;:::-;40381:4;39979:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39979:16:0;40405:31;42562:58;;;;-1:-1:-1;;;42562:58:0;;16709:2:1;42562:58:0;;;16691:21:1;16748:2;16728:18;;;16721:30;16787;16767:18;;;16760:58;16835:18;;42562:58:0;16507:352:1;42562:58:0;-1:-1:-1;;;;;42969:13:0;;;;;;:9;:13;;;;;;;;:18;;42986:1;42969:18;;;43011:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43011:21:0;;;;;43050:33;43019:7;;42969:13;;43050:33;;42969:13;;43050:33;90609:150;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:729::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:169;1148:2;1145:1;1142:9;1134:169;;;1205:23;1224:3;1205:23;:::i;:::-;1193:36;;1166:1;1159:9;;;;;1249:12;;;;1281;;1134:169;;;-1:-1:-1;1321:5:1;603:729;-1:-1:-1;;;;;;;603:729:1:o;1337:147::-;1409:20;;1458:1;1448:12;;1438:40;;1474:1;1471;1464:12;1489:156;1555:20;;1615:4;1604:16;;1594:27;;1584:55;;1635:1;1632;1625:12;1650:179;1717:20;;-1:-1:-1;;;;;1766:38:1;;1756:49;;1746:77;;1819:1;1816;1809:12;1834:186;1893:6;1946:2;1934:9;1925:7;1921:23;1917:32;1914:52;;;1962:1;1959;1952:12;1914:52;1985:29;2004:9;1985:29;:::i;2025:260::-;2093:6;2101;2154:2;2142:9;2133:7;2129:23;2125:32;2122:52;;;2170:1;2167;2160:12;2122:52;2193:29;2212:9;2193:29;:::i;:::-;2183:39;;2241:38;2275:2;2264:9;2260:18;2241:38;:::i;:::-;2231:48;;2025:260;;;;;:::o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;2623:666::-;2718:6;2726;2734;2742;2795:3;2783:9;2774:7;2770:23;2766:33;2763:53;;;2812:1;2809;2802:12;2763:53;2835:29;2854:9;2835:29;:::i;:::-;2825:39;;2883:38;2917:2;2906:9;2902:18;2883:38;:::i;:::-;2873:48;;2968:2;2957:9;2953:18;2940:32;2930:42;;3023:2;3012:9;3008:18;2995:32;3050:18;3042:6;3039:30;3036:50;;;3082:1;3079;3072:12;3036:50;3105:22;;3158:4;3150:13;;3146:27;-1:-1:-1;3136:55:1;;3187:1;3184;3177:12;3136:55;3210:73;3275:7;3270:2;3257:16;3252:2;3248;3244:11;3210:73;:::i;:::-;3200:83;;;2623:666;;;;;;;:::o;3294:347::-;3359:6;3367;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3459:29;3478:9;3459:29;:::i;:::-;3449:39;;3538:2;3527:9;3523:18;3510:32;3585:5;3578:13;3571:21;3564:5;3561:32;3551:60;;3607:1;3604;3597:12;3551:60;3630:5;3620:15;;;3294:347;;;;;:::o;3646:254::-;3714:6;3722;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3814:29;3833:9;3814:29;:::i;:::-;3804:39;3890:2;3875:18;;;;3862:32;;-1:-1:-1;;;3646:254:1:o;3905:256::-;3971:6;3979;4032:2;4020:9;4011:7;4007:23;4003:32;4000:52;;;4048:1;4045;4038:12;4000:52;4071:29;4090:9;4071:29;:::i;:::-;4061:39;;4119:36;4151:2;4140:9;4136:18;4119:36;:::i;4166:258::-;4233:6;4241;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:29;4352:9;4333:29;:::i;:::-;4323:39;;4381:37;4414:2;4403:9;4399:18;4381:37;:::i;4429:348::-;4513:6;4566:2;4554:9;4545:7;4541:23;4537:32;4534:52;;;4582:1;4579;4572:12;4534:52;4622:9;4609:23;4655:18;4647:6;4644:30;4641:50;;;4687:1;4684;4677:12;4641:50;4710:61;4763:7;4754:6;4743:9;4739:22;4710:61;:::i;4782:418::-;4873:6;4881;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;4990:9;4977:23;5023:18;5015:6;5012:30;5009:50;;;5055:1;5052;5045:12;5009:50;5078:61;5131:7;5122:6;5111:9;5107:22;5078:61;:::i;:::-;5068:71;;;5158:36;5190:2;5179:9;5175:18;5158:36;:::i;5205:180::-;5264:6;5317:2;5305:9;5296:7;5292:23;5288:32;5285:52;;;5333:1;5330;5323:12;5285:52;-1:-1:-1;5356:23:1;;5205:180;-1:-1:-1;5205:180:1:o;5390:254::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5571:9;5558:23;5548:33;;5600:38;5634:2;5623:9;5619:18;5600:38;:::i;5649:245::-;5707:6;5760:2;5748:9;5739:7;5735:23;5731:32;5728:52;;;5776:1;5773;5766:12;5728:52;5815:9;5802:23;5834:30;5858:5;5834:30;:::i;5899:249::-;5968:6;6021:2;6009:9;6000:7;5996:23;5992:32;5989:52;;;6037:1;6034;6027:12;5989:52;6069:9;6063:16;6088:30;6112:5;6088:30;:::i;6153:201::-;6223:6;6276:2;6264:9;6255:7;6251:23;6247:32;6244:52;;;6292:1;6289;6282:12;6244:52;6315:33;6338:9;6315:33;:::i;6359:269::-;6438:6;6446;6499:2;6487:9;6478:7;6474:23;6470:32;6467:52;;;6515:1;6512;6505:12;6467:52;6538:33;6561:9;6538:33;:::i;6633:450::-;6702:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:52;;;6771:1;6768;6761:12;6723:52;6811:9;6798:23;6844:18;6836:6;6833:30;6830:50;;;6876:1;6873;6866:12;6830:50;6899:22;;6952:4;6944:13;;6940:27;-1:-1:-1;6930:55:1;;6981:1;6978;6971:12;6930:55;7004:73;7069:7;7064:2;7051:16;7046:2;7042;7038:11;7004:73;:::i;7273:326::-;7349:6;7357;7365;7418:2;7406:9;7397:7;7393:23;7389:32;7386:52;;;7434:1;7431;7424:12;7386:52;7470:9;7457:23;7447:33;;7499:38;7533:2;7522:9;7518:18;7499:38;:::i;:::-;7489:48;;7556:37;7589:2;7578:9;7574:18;7556:37;:::i;:::-;7546:47;;7273:326;;;;;:::o;7604:248::-;7672:6;7680;7733:2;7721:9;7712:7;7708:23;7704:32;7701:52;;;7749:1;7746;7739:12;7701:52;-1:-1:-1;;7772:23:1;;;7842:2;7827:18;;;7814:32;;-1:-1:-1;7604:248:1:o;7857:182::-;7914:6;7967:2;7955:9;7946:7;7942:23;7938:32;7935:52;;;7983:1;7980;7973:12;7935:52;8006:27;8023:9;8006:27;:::i;8044:257::-;8085:3;8123:5;8117:12;8150:6;8145:3;8138:19;8166:63;8222:6;8215:4;8210:3;8206:14;8199:4;8192:5;8188:16;8166:63;:::i;:::-;8283:2;8262:15;-1:-1:-1;;8258:29:1;8249:39;;;;8290:4;8245:50;;8044:257;-1:-1:-1;;8044:257:1:o;8306:973::-;8391:12;;8356:3;;8446:1;8466:18;;;;8519;;;;8546:61;;8600:4;8592:6;8588:17;8578:27;;8546:61;8626:2;8674;8666:6;8663:14;8643:18;8640:38;8637:161;;;8720:10;8715:3;8711:20;8708:1;8701:31;8755:4;8752:1;8745:15;8783:4;8780:1;8773:15;8637:161;8814:18;8841:104;;;;8959:1;8954:319;;;;8807:466;;8841:104;-1:-1:-1;;8874:24:1;;8862:37;;8919:16;;;;-1:-1:-1;8841:104:1;;8954:319;26889:1;26882:14;;;26926:4;26913:18;;9048:1;9062:165;9076:6;9073:1;9070:13;9062:165;;;9154:14;;9141:11;;;9134:35;9197:16;;;;9091:10;;9062:165;;;9066:3;;9256:6;9251:3;9247:16;9240:23;;8807:466;;;;;;;8306:973;;;;:::o;9284:550::-;9508:3;9546:6;9540:13;9562:53;9608:6;9603:3;9596:4;9588:6;9584:17;9562:53;:::i;:::-;9678:13;;9637:16;;;;9700:57;9678:13;9637:16;9734:4;9722:17;;9700:57;:::i;:::-;9773:55;9818:8;9811:5;9807:20;9799:6;9773:55;:::i;:::-;9766:62;9284:550;-1:-1:-1;;;;;;;9284:550:1:o;9839:543::-;10116:3;10144:38;10178:3;10170:6;10144:38;:::i;:::-;10211:6;10205:13;10227:52;10272:6;10268:2;10261:4;10253:6;10249:17;10227:52;:::i;:::-;-1:-1:-1;;;10301:15:1;;10325:22;;;10374:1;10363:13;;9839:543;-1:-1:-1;;;;9839:543:1:o;10387:786::-;10798:25;10793:3;10786:38;10768:3;10853:6;10847:13;10869:62;10924:6;10919:2;10914:3;10910:12;10903:4;10895:6;10891:17;10869:62;:::i;:::-;-1:-1:-1;;;10990:2:1;10950:16;;;10982:11;;;10975:40;11040:13;;11062:63;11040:13;11111:2;11103:11;;11096:4;11084:17;;11062:63;:::i;:::-;11145:17;11164:2;11141:26;;10387:786;-1:-1:-1;;;;10387:786:1:o;11386:488::-;-1:-1:-1;;;;;11655:15:1;;;11637:34;;11707:15;;11702:2;11687:18;;11680:43;11754:2;11739:18;;11732:34;;;11802:3;11797:2;11782:18;;11775:31;;;11580:4;;11823:45;;11848:19;;11840:6;11823:45;:::i;:::-;11815:53;11386:488;-1:-1:-1;;;;;;11386:488:1:o;12158:632::-;12329:2;12381:21;;;12451:13;;12354:18;;;12473:22;;;12300:4;;12329:2;12552:15;;;;12526:2;12511:18;;;12300:4;12595:169;12609:6;12606:1;12603:13;12595:169;;;12670:13;;12658:26;;12739:15;;;;12704:12;;;;12631:1;12624:9;12595:169;;;-1:-1:-1;12781:3:1;;12158:632;-1:-1:-1;;;;;;12158:632:1:o;13169:219::-;13318:2;13307:9;13300:21;13281:4;13338:44;13378:2;13367:9;13363:18;13355:6;13338:44;:::i;14103:341::-;14305:2;14287:21;;;14344:2;14324:18;;;14317:30;-1:-1:-1;;;14378:2:1;14363:18;;14356:47;14435:2;14420:18;;14103:341::o;14449:409::-;14651:2;14633:21;;;14690:2;14670:18;;;14663:30;14729:34;14724:2;14709:18;;14702:62;-1:-1:-1;;;14795:2:1;14780:18;;14773:43;14848:3;14833:19;;14449:409::o;15275:414::-;15477:2;15459:21;;;15516:2;15496:18;;;15489:30;15555:34;15550:2;15535:18;;15528:62;-1:-1:-1;;;15621:2:1;15606:18;;15599:48;15679:3;15664:19;;15275:414::o;16101:401::-;16303:2;16285:21;;;16342:2;16322:18;;;16315:30;16381:34;16376:2;16361:18;;16354:62;-1:-1:-1;;;16447:2:1;16432:18;;16425:35;16492:3;16477:19;;16101:401::o;16864:340::-;17066:2;17048:21;;;17105:2;17085:18;;;17078:30;-1:-1:-1;;;17139:2:1;17124:18;;17117:46;17195:2;17180:18;;16864:340::o;17968:348::-;18170:2;18152:21;;;18209:2;18189:18;;;18182:30;18248:26;18243:2;18228:18;;18221:54;18307:2;18292:18;;17968:348::o;18321:340::-;18523:2;18505:21;;;18562:2;18542:18;;;18535:30;-1:-1:-1;;;18596:2:1;18581:18;;18574:46;18652:2;18637:18;;18321:340::o;20115:347::-;20317:2;20299:21;;;20356:2;20336:18;;;20329:30;20395:25;20390:2;20375:18;;20368:53;20453:2;20438:18;;20115:347::o;20467:353::-;20669:2;20651:21;;;20708:2;20688:18;;;20681:30;20747:31;20742:2;20727:18;;20720:59;20811:2;20796:18;;20467:353::o;21895:348::-;22097:2;22079:21;;;22136:2;22116:18;;;22109:30;22175:26;22170:2;22155:18;;22148:54;22234:2;22219:18;;21895:348::o;24624:406::-;24826:2;24808:21;;;24865:2;24845:18;;;24838:30;24904:34;24899:2;24884:18;;24877:62;-1:-1:-1;;;24970:2:1;24955:18;;24948:40;25020:3;25005:19;;24624:406::o;26536:275::-;26607:2;26601:9;26672:2;26653:13;;-1:-1:-1;;26649:27:1;26637:40;;26707:18;26692:34;;26728:22;;;26689:62;26686:88;;;26754:18;;:::i;:::-;26790:2;26783:22;26536:275;;-1:-1:-1;26536:275:1:o;26942:128::-;26982:3;27013:1;27009:6;27006:1;27003:13;27000:39;;;27019:18;;:::i;:::-;-1:-1:-1;27055:9:1;;26942:128::o;27075:217::-;27115:1;27141;27131:132;;27185:10;27180:3;27176:20;27173:1;27166:31;27220:4;27217:1;27210:15;27248:4;27245:1;27238:15;27131:132;-1:-1:-1;27277:9:1;;27075:217::o;27297:168::-;27337:7;27403:1;27399;27395:6;27391:14;27388:1;27385:21;27380:1;27373:9;27366:17;27362:45;27359:71;;;27410:18;;:::i;:::-;-1:-1:-1;27450:9:1;;27297:168::o;27470:125::-;27510:4;27538:1;27535;27532:8;27529:34;;;27543:18;;:::i;:::-;-1:-1:-1;27580:9:1;;27470:125::o;27600:258::-;27672:1;27682:113;27696:6;27693:1;27690:13;27682:113;;;27772:11;;;27766:18;27753:11;;;27746:39;27718:2;27711:10;27682:113;;;27813:6;27810:1;27807:13;27804:48;;;-1:-1:-1;;27848:1:1;27830:16;;27823:27;27600:258::o;27863:136::-;27902:3;27930:5;27920:39;;27939:18;;:::i;:::-;-1:-1:-1;;;27975:18:1;;27863:136::o;28004:380::-;28083:1;28079:12;;;;28126;;;28147:61;;28201:4;28193:6;28189:17;28179:27;;28147:61;28254:2;28246:6;28243:14;28223:18;28220:38;28217:161;;;28300:10;28295:3;28291:20;28288:1;28281:31;28335:4;28332:1;28325:15;28363:4;28360:1;28353:15;28217:161;;28004:380;;;:::o;28389:135::-;28428:3;-1:-1:-1;;28449:17:1;;28446:43;;;28469:18;;:::i;:::-;-1:-1:-1;28516:1:1;28505:13;;28389:135::o;28529:127::-;28590:10;28585:3;28581:20;28578:1;28571:31;28621:4;28618:1;28611:15;28645:4;28642:1;28635:15;28793:127;28854:10;28849:3;28845:20;28842:1;28835:31;28885:4;28882:1;28875:15;28909:4;28906:1;28899:15;28925:127;28986:10;28981:3;28977:20;28974:1;28967:31;29017:4;29014:1;29007:15;29041:4;29038:1;29031:15;29057:127;29118:10;29113:3;29109:20;29106:1;29099:31;29149:4;29146:1;29139:15;29173:4;29170:1;29163:15;29189:127;29250:10;29245:3;29241:20;29238:1;29231:31;29281:4;29278:1;29271:15;29305:4;29302:1;29295:15;29321:131;-1:-1:-1;;;;;;29395:32:1;;29385:43;;29375:71;;29442:1;29439;29432:12
Swarm Source
ipfs://de28622413152dec552d6651781df33cb4c8af10eee9c138f7a010f11ba010da
Loading...
Loading
OVERVIEW
Santo the Centaur is the special OG Pass of the crypto social game Town Story Galaxy, which is a new generation web3 game built on Arbitrum Nova with L2 technology.Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.