Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,333 MS
Holders
627
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MoonSaudis
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-10 */ /** *Submitted for verification at Etherscan.io on 2022-07-09 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) 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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); 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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract MoonSaudis is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://QmP35rG6UsjmimEBZnkGPdBT7XnMPA6aaBReFvy7U9KoiK"; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 5; uint256 public maxSupply = 3333; uint256 public constant PUBLIC_SALE_PRICE = 0.002 ether; uint256 public NUM_FREE_MINTS = 1000; bool public isPublicSaleActive = false; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier freeMintsAvailable() { require( totalSupply() <= NUM_FREE_MINTS, "Not enough free mints remain" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { if(totalSupply()>NUM_FREE_MINTS){ require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); } _; } constructor( ) ERC721A("MoonSaudis", "MS", 100, maxSupply) { } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } //A simple free mint function to avoid confusion //The normal mint function with a cost of 0 would work too // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } // function to disable gasless listings for security in case // opensea ever shuts down or is compromised function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner { isOpenSeaProxyActive = _isOpenSeaProxyActive; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setnumfree(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry( openSeaProxyRegistryAddress ); if ( isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator ) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseURI, "/", "metadata", ".json")); } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setnumfree","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260008055600060075560405180606001604052806035815260200162004e0260359139600b90805190602001906200003e92919062000323565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff021916908315150217905550610d05600d556103e8600e556000600f60006101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600a81526020017f4d6f6f6e536175646973000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d530000000000000000000000000000000000000000000000000000000000008152506064600d54600081116200019b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019290620004c5565b60405180910390fd5b60008211620001e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d890620004a3565b60405180910390fd5b8360019080519060200190620001f992919062000323565b5082600290805190602001906200021292919062000323565b508160a08181525050806080818152505050505050620002476200023b6200025560201b60201c565b6200025d60201b60201c565b60016009819055506200055d565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033190620004f8565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b6000620003e2602783620004e7565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006200044a602e83620004e7565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004be81620003d3565b9050919050565b60006020820190508181036000830152620004e0816200043b565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200051157607f821691505b602082108114156200052857620005276200052e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a0516148746200058e600039600081816123ce015281816123f701526129c30152600050506148746000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba014610727578063e43082f714610752578063e985e9c51461077b578063f0ea88ef146107b8578063f2fde38b146107e1576101f9565b8063b88d4fde1461066b578063c6a91b4214610694578063c87b56dd146106bf578063d5abeb01146106fc576101f9565b806395d89b41116100dc57806395d89b41146105d0578063982d669e146105fb578063a0712d6814610626578063a22cb46514610642576101f9565b806370a0823114610526578063714c539814610563578063715018a61461058e5780638da5cb5b146105a5576101f9565b806328cad13d1161019057806342842e0e1161015f57806342842e0e1461043157806349df728c1461045a5780634f6ccce71461048357806355f804b3146104c05780636352211e146104e9576101f9565b806328cad13d146103765780632a55205a1461039f5780632f745c59146103dd5780633ccfd60b1461041a576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f75780631e84c4131461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613257565b61080a565b6040516102329190613f5c565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d9190613f77565b60405180910390f35b34801561027257600080fd5b5061027b610916565b60405161028891906142b9565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061333c565b610921565b6040516102c59190613ecc565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906131c9565b6109a6565b005b34801561030357600080fd5b5061030c610abf565b60405161031991906142b9565b60405180910390f35b34801561032e57600080fd5b50610337610ac8565b6040516103449190613f5c565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906130c3565b610adb565b005b34801561038257600080fd5b5061039d60048036038101906103989190613205565b610aeb565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061338e565b610b84565b6040516103d4929190613f33565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131c9565b610bf0565b60405161041191906142b9565b60405180910390f35b34801561042657600080fd5b5061042f610dee565b005b34801561043d57600080fd5b50610458600480360381019061045391906130c3565b610eb9565b005b34801561046657600080fd5b50610481600480360381019061047c91906132a9565b610ed9565b005b34801561048f57600080fd5b506104aa60048036038101906104a5919061333c565b611074565b6040516104b791906142b9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e291906132fb565b6110c7565b005b3480156104f557600080fd5b50610510600480360381019061050b919061333c565b61115d565b60405161051d9190613ecc565b60405180910390f35b34801561053257600080fd5b5061054d6004803603810190610548919061305e565b611173565b60405161055a91906142b9565b60405180910390f35b34801561056f57600080fd5b5061057861125c565b6040516105859190613f77565b60405180910390f35b34801561059a57600080fd5b506105a36112ee565b005b3480156105b157600080fd5b506105ba611376565b6040516105c79190613ecc565b60405180910390f35b3480156105dc57600080fd5b506105e56113a0565b6040516105f29190613f77565b60405180910390f35b34801561060757600080fd5b50610610611432565b60405161061d91906142b9565b60405180910390f35b610640600480360381019061063b919061333c565b611438565b005b34801561064e57600080fd5b506106696004803603810190610664919061318d565b6115f3565b005b34801561067757600080fd5b50610692600480360381019061068d9190613112565b611774565b005b3480156106a057600080fd5b506106a96117d0565b6040516106b691906142b9565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061333c565b6117d5565b6040516106f39190613f77565b60405180910390f35b34801561070857600080fd5b50610711611847565b60405161071e91906142b9565b60405180910390f35b34801561073357600080fd5b5061073c61184d565b60405161074991906142b9565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613205565b611853565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613087565b6118ec565b6040516107af9190613f5c565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061333c565b611a06565b005b3480156107ed57600080fd5b506108086004803603810190610803919061305e565b611a8c565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611b84565b5b9050919050565b6060600180546108939061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf9061466c565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b66071afd498d000081565b600061092c82611cce565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290614279565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b18261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990614159565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611cdb565b6118ec565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690614099565b60405180910390fd5b610aba838383611ce3565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610ae6838383611d95565b505050565b610af3611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610b11611376565b73ffffffffffffffffffffffffffffffffffffffff1614610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906140f9565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610b9084611cce565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690614079565b60405180910390fd5b30610be5610bde85600561234e565b6064612364565b915091509250929050565b6000610bfb83611173565b8210610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390613f99565b60405180910390fd5b6000610c46610abf565b905060008060005b83811015610dac576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d4057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d985786841415610d89578195505050505050610de8565b8380610d949061469e565b9450505b508080610da49061469e565b915050610c4e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906141f9565b60405180910390fd5b92915050565b610df6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610e14611376565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906140f9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b5050565b610ed483838360405180602001604052806000815250611774565b505050565b610ee1611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610eff611376565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906140f9565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f909190613ecc565b60206040518083038186803b158015610fa857600080fd5b505afa158015610fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe09190613365565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161101d929190613f33565b602060405180830381600087803b15801561103757600080fd5b505af115801561104b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106f919061322e565b505050565b600061107e610abf565b82106110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613ff9565b60405180910390fd5b819050919050565b6110cf611cdb565b73ffffffffffffffffffffffffffffffffffffffff166110ed611376565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906140f9565b60405180910390fd5b80600b9080519060200190611159929190612df4565b5050565b60006111688261237a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906140b9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461126b9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546112979061466c565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b5050505050905090565b6112f6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611314611376565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906140f9565b60405180910390fd5b611374600061257d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113af9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546113db9061466c565b80156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b5050505050905090565b600e5481565b6002600954141561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590614219565b60405180910390fd5b600260098190555066071afd498d000081600e5461149a610abf565b11156114ee573481836114ad919061448a565b146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e4906141d9565b60405180910390fd5b5b600f60009054906101000a900460ff1661153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490614259565b60405180910390fd5b82600d548161154a610abf565b6115549190614403565b1115611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614019565b60405180910390fd5b8360058111156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190614059565b60405180910390fd5b6115e43386612643565b50505050600160098190555050565b6115fb611cdb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090614119565b60405180910390fd5b8060066000611676611cdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611723611cdb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117689190613f5c565b60405180910390a35050565b61177f848484611d95565b61178b84848484612661565b6117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190614179565b60405180910390fd5b50505050565b600581565b60606117e082611cce565b61181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690614079565b60405180910390fd5b600b6040516020016118319190613e94565b6040516020818303038152906040529050919050565b600d5481565b60075481565b61185b611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611879611376565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c6906140f9565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff1680156119e357508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161197b9190613ecc565b60206040518083038186803b15801561199357600080fd5b505afa1580156119a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cb91906132d2565b73ffffffffffffffffffffffffffffffffffffffff16145b156119f2576001915050611a00565b6119fc84846127f8565b9150505b92915050565b611a0e611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611376565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906140f9565b60405180910390fd5b80600e8190555050565b611a94611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611376565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906140f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f90613fb9565b60405180910390fd5b611b818161257d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cc75750611cc68261288c565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611da08261237a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc7611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480611e235750611dec611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611e0b84610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3f5750611e3e8260000151611e39611cdb565b6118ec565b5b905080611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890614139565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906140d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90614039565b60405180910390fd5b611f7085858560016128f6565b611f806000848460000151611ce3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fee91906144e4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661209291906143bd565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121989190614403565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122de5761220e81611cce565b156122dd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234686868660016128fc565b505050505050565b6000818361235c919061448a565b905092915050565b600081836123729190614459565b905092915050565b612382612e7a565b61238b82611cce565b6123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190613fd9565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061242e5760017f0000000000000000000000000000000000000000000000000000000000000000846124219190614518565b61242b9190614403565b90505b60008390505b81811061253c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252857809350505050612578565b50808061253490614642565b915050612434565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90614239565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61265d828260405180602001604052806000815250612902565b5050565b60006126828473ffffffffffffffffffffffffffffffffffffffff16612de1565b156127eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ab611cdb565b8786866040518563ffffffff1660e01b81526004016126cd9493929190613ee7565b602060405180830381600087803b1580156126e757600080fd5b505af192505050801561271857506040513d601f19601f820116820180604052508101906127159190613280565b60015b61279b573d8060008114612748576040519150601f19603f3d011682016040523d82523d6000602084013e61274d565b606091505b50600081511415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90614179565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f0565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296f906141b9565b60405180910390fd5b61298181611cce565b156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890614199565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90614299565b60405180910390fd5b612a3160008583866128f6565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b2e91906143bd565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b5591906143bd565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612dc457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d646000888488612661565b612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90614179565b60405180910390fd5b8180612dae9061469e565b9250508080612dbc9061469e565b915050612cf3565b5080600081905550612dd960008785886128fc565b505050505050565b600080823b905060008111915050919050565b828054612e009061466c565b90600052602060002090601f016020900481019282612e225760008555612e69565b82601f10612e3b57805160ff1916838001178555612e69565b82800160010185558215612e69579182015b82811115612e68578251825591602001919060010190612e4d565b5b509050612e769190612eb4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ecd576000816000905550600101612eb5565b5090565b6000612ee4612edf84614305565b6142d4565b905082815260208101848484011115612efc57600080fd5b612f07848285614600565b509392505050565b6000612f22612f1d84614335565b6142d4565b905082815260208101848484011115612f3a57600080fd5b612f45848285614600565b509392505050565b600081359050612f5c816147b4565b92915050565b600081359050612f71816147cb565b92915050565b600081519050612f86816147cb565b92915050565b600081359050612f9b816147e2565b92915050565b600081519050612fb0816147e2565b92915050565b600082601f830112612fc757600080fd5b8135612fd7848260208601612ed1565b91505092915050565b600081359050612fef816147f9565b92915050565b60008151905061300481614810565b92915050565b600082601f83011261301b57600080fd5b813561302b848260208601612f0f565b91505092915050565b60008135905061304381614827565b92915050565b60008151905061305881614827565b92915050565b60006020828403121561307057600080fd5b600061307e84828501612f4d565b91505092915050565b6000806040838503121561309a57600080fd5b60006130a885828601612f4d565b92505060206130b985828601612f4d565b9150509250929050565b6000806000606084860312156130d857600080fd5b60006130e686828701612f4d565b93505060206130f786828701612f4d565b925050604061310886828701613034565b9150509250925092565b6000806000806080858703121561312857600080fd5b600061313687828801612f4d565b945050602061314787828801612f4d565b935050604061315887828801613034565b925050606085013567ffffffffffffffff81111561317557600080fd5b61318187828801612fb6565b91505092959194509250565b600080604083850312156131a057600080fd5b60006131ae85828601612f4d565b92505060206131bf85828601612f62565b9150509250929050565b600080604083850312156131dc57600080fd5b60006131ea85828601612f4d565b92505060206131fb85828601613034565b9150509250929050565b60006020828403121561321757600080fd5b600061322584828501612f62565b91505092915050565b60006020828403121561324057600080fd5b600061324e84828501612f77565b91505092915050565b60006020828403121561326957600080fd5b600061327784828501612f8c565b91505092915050565b60006020828403121561329257600080fd5b60006132a084828501612fa1565b91505092915050565b6000602082840312156132bb57600080fd5b60006132c984828501612fe0565b91505092915050565b6000602082840312156132e457600080fd5b60006132f284828501612ff5565b91505092915050565b60006020828403121561330d57600080fd5b600082013567ffffffffffffffff81111561332757600080fd5b6133338482850161300a565b91505092915050565b60006020828403121561334e57600080fd5b600061335c84828501613034565b91505092915050565b60006020828403121561337757600080fd5b600061338584828501613049565b91505092915050565b600080604083850312156133a157600080fd5b60006133af85828601613034565b92505060206133c085828601613034565b9150509250929050565b6133d38161454c565b82525050565b6133e28161455e565b82525050565b60006133f38261437a565b6133fd8185614390565b935061340d81856020860161460f565b613416816147a3565b840191505092915050565b600061342c82614385565b61343681856143a1565b935061344681856020860161460f565b61344f816147a3565b840191505092915050565b600081546134678161466c565b61347181866143b2565b9450600182166000811461348c576001811461349d576134d0565b60ff198316865281860193506134d0565b6134a685614365565b60005b838110156134c8578154818901526001820191506020810190506134a9565b838801955050505b50505092915050565b60006134e66022836143a1565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061354c6026836143a1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b2602a836143a1565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006136186023836143a1565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061367e6022836143a1565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136e46025836143a1565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061374a6022836143a1565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137b06011836143a1565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b60006137f06039836143a1565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006138566008836143b2565b91507f6d657461646174610000000000000000000000000000000000000000000000006000830152600882019050919050565b6000613896602b836143a1565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006138fc6026836143a1565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139626005836143b2565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006139a26020836143a1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139e2601a836143a1565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613a226032836143a1565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613a886022836143a1565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aee6033836143a1565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613b54601d836143a1565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613b946021836143a1565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfa6018836143a1565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b6000613c3a602e836143a1565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613ca0601f836143a1565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613ce0602f836143a1565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d466017836143a1565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b6000613d86602d836143a1565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613dec6022836143a1565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e526001836143b2565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b613e8e816145f6565b82525050565b6000613ea0828461345a565b9150613eab82613e45565b9150613eb682613849565b9150613ec182613955565b915081905092915050565b6000602082019050613ee160008301846133ca565b92915050565b6000608082019050613efc60008301876133ca565b613f0960208301866133ca565b613f166040830185613e85565b8181036060830152613f2881846133e8565b905095945050505050565b6000604082019050613f4860008301856133ca565b613f556020830184613e85565b9392505050565b6000602082019050613f7160008301846133d9565b92915050565b60006020820190508181036000830152613f918184613421565b905092915050565b60006020820190508181036000830152613fb2816134d9565b9050919050565b60006020820190508181036000830152613fd28161353f565b9050919050565b60006020820190508181036000830152613ff2816135a5565b9050919050565b600060208201905081810360008301526140128161360b565b9050919050565b6000602082019050818103600083015261403281613671565b9050919050565b60006020820190508181036000830152614052816136d7565b9050919050565b600060208201905081810360008301526140728161373d565b9050919050565b60006020820190508181036000830152614092816137a3565b9050919050565b600060208201905081810360008301526140b2816137e3565b9050919050565b600060208201905081810360008301526140d281613889565b9050919050565b600060208201905081810360008301526140f2816138ef565b9050919050565b6000602082019050818103600083015261411281613995565b9050919050565b60006020820190508181036000830152614132816139d5565b9050919050565b6000602082019050818103600083015261415281613a15565b9050919050565b6000602082019050818103600083015261417281613a7b565b9050919050565b6000602082019050818103600083015261419281613ae1565b9050919050565b600060208201905081810360008301526141b281613b47565b9050919050565b600060208201905081810360008301526141d281613b87565b9050919050565b600060208201905081810360008301526141f281613bed565b9050919050565b6000602082019050818103600083015261421281613c2d565b9050919050565b6000602082019050818103600083015261423281613c93565b9050919050565b6000602082019050818103600083015261425281613cd3565b9050919050565b6000602082019050818103600083015261427281613d39565b9050919050565b6000602082019050818103600083015261429281613d79565b9050919050565b600060208201905081810360008301526142b281613ddf565b9050919050565b60006020820190506142ce6000830184613e85565b92915050565b6000604051905081810181811067ffffffffffffffff821117156142fb576142fa614774565b5b8060405250919050565b600067ffffffffffffffff8211156143205761431f614774565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156143505761434f614774565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143c8826145ba565b91506143d3836145ba565b9250826fffffffffffffffffffffffffffffffff038211156143f8576143f76146e7565b5b828201905092915050565b600061440e826145f6565b9150614419836145f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561444e5761444d6146e7565b5b828201905092915050565b6000614464826145f6565b915061446f836145f6565b92508261447f5761447e614716565b5b828204905092915050565b6000614495826145f6565b91506144a0836145f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d9576144d86146e7565b5b828202905092915050565b60006144ef826145ba565b91506144fa836145ba565b92508282101561450d5761450c6146e7565b5b828203905092915050565b6000614523826145f6565b915061452e836145f6565b925082821015614541576145406146e7565b5b828203905092915050565b6000614557826145d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006145a18261454c565b9050919050565b60006145b38261454c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561462d578082015181840152602081019050614612565b8381111561463c576000848401525b50505050565b600061464d826145f6565b91506000821415614661576146606146e7565b5b600182039050919050565b6000600282049050600182168061468457607f821691505b6020821081141561469857614697614745565b5b50919050565b60006146a9826145f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146dc576146db6146e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6147bd8161454c565b81146147c857600080fd5b50565b6147d48161455e565b81146147df57600080fd5b50565b6147eb8161456a565b81146147f657600080fd5b50565b61480281614596565b811461480d57600080fd5b50565b614819816145a8565b811461482457600080fd5b50565b614830816145f6565b811461483b57600080fd5b5056fea26469706673582212206d3b91c01f6366800aff12752f57e16aba550096320b4e6289508ba9b93093d964736f6c63430008000033697066733a2f2f516d50333572473655736a6d696d45425a6e6b475064425437586e4d50413661614252654676793755394b6f694b
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba014610727578063e43082f714610752578063e985e9c51461077b578063f0ea88ef146107b8578063f2fde38b146107e1576101f9565b8063b88d4fde1461066b578063c6a91b4214610694578063c87b56dd146106bf578063d5abeb01146106fc576101f9565b806395d89b41116100dc57806395d89b41146105d0578063982d669e146105fb578063a0712d6814610626578063a22cb46514610642576101f9565b806370a0823114610526578063714c539814610563578063715018a61461058e5780638da5cb5b146105a5576101f9565b806328cad13d1161019057806342842e0e1161015f57806342842e0e1461043157806349df728c1461045a5780634f6ccce71461048357806355f804b3146104c05780636352211e146104e9576101f9565b806328cad13d146103765780632a55205a1461039f5780632f745c59146103dd5780633ccfd60b1461041a576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f75780631e84c4131461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613257565b61080a565b6040516102329190613f5c565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d9190613f77565b60405180910390f35b34801561027257600080fd5b5061027b610916565b60405161028891906142b9565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b3919061333c565b610921565b6040516102c59190613ecc565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906131c9565b6109a6565b005b34801561030357600080fd5b5061030c610abf565b60405161031991906142b9565b60405180910390f35b34801561032e57600080fd5b50610337610ac8565b6040516103449190613f5c565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906130c3565b610adb565b005b34801561038257600080fd5b5061039d60048036038101906103989190613205565b610aeb565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061338e565b610b84565b6040516103d4929190613f33565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131c9565b610bf0565b60405161041191906142b9565b60405180910390f35b34801561042657600080fd5b5061042f610dee565b005b34801561043d57600080fd5b50610458600480360381019061045391906130c3565b610eb9565b005b34801561046657600080fd5b50610481600480360381019061047c91906132a9565b610ed9565b005b34801561048f57600080fd5b506104aa60048036038101906104a5919061333c565b611074565b6040516104b791906142b9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e291906132fb565b6110c7565b005b3480156104f557600080fd5b50610510600480360381019061050b919061333c565b61115d565b60405161051d9190613ecc565b60405180910390f35b34801561053257600080fd5b5061054d6004803603810190610548919061305e565b611173565b60405161055a91906142b9565b60405180910390f35b34801561056f57600080fd5b5061057861125c565b6040516105859190613f77565b60405180910390f35b34801561059a57600080fd5b506105a36112ee565b005b3480156105b157600080fd5b506105ba611376565b6040516105c79190613ecc565b60405180910390f35b3480156105dc57600080fd5b506105e56113a0565b6040516105f29190613f77565b60405180910390f35b34801561060757600080fd5b50610610611432565b60405161061d91906142b9565b60405180910390f35b610640600480360381019061063b919061333c565b611438565b005b34801561064e57600080fd5b506106696004803603810190610664919061318d565b6115f3565b005b34801561067757600080fd5b50610692600480360381019061068d9190613112565b611774565b005b3480156106a057600080fd5b506106a96117d0565b6040516106b691906142b9565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061333c565b6117d5565b6040516106f39190613f77565b60405180910390f35b34801561070857600080fd5b50610711611847565b60405161071e91906142b9565b60405180910390f35b34801561073357600080fd5b5061073c61184d565b60405161074991906142b9565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613205565b611853565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613087565b6118ec565b6040516107af9190613f5c565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061333c565b611a06565b005b3480156107ed57600080fd5b506108086004803603810190610803919061305e565b611a8c565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611b84565b5b9050919050565b6060600180546108939061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf9061466c565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b66071afd498d000081565b600061092c82611cce565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290614279565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b18261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990614159565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611cdb565b6118ec565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690614099565b60405180910390fd5b610aba838383611ce3565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610ae6838383611d95565b505050565b610af3611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610b11611376565b73ffffffffffffffffffffffffffffffffffffffff1614610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906140f9565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610b9084611cce565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690614079565b60405180910390fd5b30610be5610bde85600561234e565b6064612364565b915091509250929050565b6000610bfb83611173565b8210610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390613f99565b60405180910390fd5b6000610c46610abf565b905060008060005b83811015610dac576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d4057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d985786841415610d89578195505050505050610de8565b8380610d949061469e565b9450505b508080610da49061469e565b915050610c4e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906141f9565b60405180910390fd5b92915050565b610df6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610e14611376565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906140f9565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b5050565b610ed483838360405180602001604052806000815250611774565b505050565b610ee1611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610eff611376565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906140f9565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f909190613ecc565b60206040518083038186803b158015610fa857600080fd5b505afa158015610fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe09190613365565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161101d929190613f33565b602060405180830381600087803b15801561103757600080fd5b505af115801561104b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106f919061322e565b505050565b600061107e610abf565b82106110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613ff9565b60405180910390fd5b819050919050565b6110cf611cdb565b73ffffffffffffffffffffffffffffffffffffffff166110ed611376565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906140f9565b60405180910390fd5b80600b9080519060200190611159929190612df4565b5050565b60006111688261237a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906140b9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461126b9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546112979061466c565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b5050505050905090565b6112f6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611314611376565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906140f9565b60405180910390fd5b611374600061257d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113af9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546113db9061466c565b80156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b5050505050905090565b600e5481565b6002600954141561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590614219565b60405180910390fd5b600260098190555066071afd498d000081600e5461149a610abf565b11156114ee573481836114ad919061448a565b146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e4906141d9565b60405180910390fd5b5b600f60009054906101000a900460ff1661153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490614259565b60405180910390fd5b82600d548161154a610abf565b6115549190614403565b1115611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614019565b60405180910390fd5b8360058111156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190614059565b60405180910390fd5b6115e43386612643565b50505050600160098190555050565b6115fb611cdb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090614119565b60405180910390fd5b8060066000611676611cdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611723611cdb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117689190613f5c565b60405180910390a35050565b61177f848484611d95565b61178b84848484612661565b6117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190614179565b60405180910390fd5b50505050565b600581565b60606117e082611cce565b61181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690614079565b60405180910390fd5b600b6040516020016118319190613e94565b6040516020818303038152906040529050919050565b600d5481565b60075481565b61185b611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611879611376565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c6906140f9565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff1680156119e357508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161197b9190613ecc565b60206040518083038186803b15801561199357600080fd5b505afa1580156119a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cb91906132d2565b73ffffffffffffffffffffffffffffffffffffffff16145b156119f2576001915050611a00565b6119fc84846127f8565b9150505b92915050565b611a0e611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611376565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906140f9565b60405180910390fd5b80600e8190555050565b611a94611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611376565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906140f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f90613fb9565b60405180910390fd5b611b818161257d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cc75750611cc68261288c565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611da08261237a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc7611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480611e235750611dec611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611e0b84610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3f5750611e3e8260000151611e39611cdb565b6118ec565b5b905080611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890614139565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906140d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90614039565b60405180910390fd5b611f7085858560016128f6565b611f806000848460000151611ce3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fee91906144e4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661209291906143bd565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121989190614403565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122de5761220e81611cce565b156122dd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234686868660016128fc565b505050505050565b6000818361235c919061448a565b905092915050565b600081836123729190614459565b905092915050565b612382612e7a565b61238b82611cce565b6123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190613fd9565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000064831061242e5760017f0000000000000000000000000000000000000000000000000000000000000064846124219190614518565b61242b9190614403565b90505b60008390505b81811061253c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252857809350505050612578565b50808061253490614642565b915050612434565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90614239565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61265d828260405180602001604052806000815250612902565b5050565b60006126828473ffffffffffffffffffffffffffffffffffffffff16612de1565b156127eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ab611cdb565b8786866040518563ffffffff1660e01b81526004016126cd9493929190613ee7565b602060405180830381600087803b1580156126e757600080fd5b505af192505050801561271857506040513d601f19601f820116820180604052508101906127159190613280565b60015b61279b573d8060008114612748576040519150601f19603f3d011682016040523d82523d6000602084013e61274d565b606091505b50600081511415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90614179565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f0565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296f906141b9565b60405180910390fd5b61298181611cce565b156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890614199565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90614299565b60405180910390fd5b612a3160008583866128f6565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b2e91906143bd565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b5591906143bd565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612dc457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d646000888488612661565b612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90614179565b60405180910390fd5b8180612dae9061469e565b9250508080612dbc9061469e565b915050612cf3565b5080600081905550612dd960008785886128fc565b505050505050565b600080823b905060008111915050919050565b828054612e009061466c565b90600052602060002090601f016020900481019282612e225760008555612e69565b82601f10612e3b57805160ff1916838001178555612e69565b82800160010185558215612e69579182015b82811115612e68578251825591602001919060010190612e4d565b5b509050612e769190612eb4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ecd576000816000905550600101612eb5565b5090565b6000612ee4612edf84614305565b6142d4565b905082815260208101848484011115612efc57600080fd5b612f07848285614600565b509392505050565b6000612f22612f1d84614335565b6142d4565b905082815260208101848484011115612f3a57600080fd5b612f45848285614600565b509392505050565b600081359050612f5c816147b4565b92915050565b600081359050612f71816147cb565b92915050565b600081519050612f86816147cb565b92915050565b600081359050612f9b816147e2565b92915050565b600081519050612fb0816147e2565b92915050565b600082601f830112612fc757600080fd5b8135612fd7848260208601612ed1565b91505092915050565b600081359050612fef816147f9565b92915050565b60008151905061300481614810565b92915050565b600082601f83011261301b57600080fd5b813561302b848260208601612f0f565b91505092915050565b60008135905061304381614827565b92915050565b60008151905061305881614827565b92915050565b60006020828403121561307057600080fd5b600061307e84828501612f4d565b91505092915050565b6000806040838503121561309a57600080fd5b60006130a885828601612f4d565b92505060206130b985828601612f4d565b9150509250929050565b6000806000606084860312156130d857600080fd5b60006130e686828701612f4d565b93505060206130f786828701612f4d565b925050604061310886828701613034565b9150509250925092565b6000806000806080858703121561312857600080fd5b600061313687828801612f4d565b945050602061314787828801612f4d565b935050604061315887828801613034565b925050606085013567ffffffffffffffff81111561317557600080fd5b61318187828801612fb6565b91505092959194509250565b600080604083850312156131a057600080fd5b60006131ae85828601612f4d565b92505060206131bf85828601612f62565b9150509250929050565b600080604083850312156131dc57600080fd5b60006131ea85828601612f4d565b92505060206131fb85828601613034565b9150509250929050565b60006020828403121561321757600080fd5b600061322584828501612f62565b91505092915050565b60006020828403121561324057600080fd5b600061324e84828501612f77565b91505092915050565b60006020828403121561326957600080fd5b600061327784828501612f8c565b91505092915050565b60006020828403121561329257600080fd5b60006132a084828501612fa1565b91505092915050565b6000602082840312156132bb57600080fd5b60006132c984828501612fe0565b91505092915050565b6000602082840312156132e457600080fd5b60006132f284828501612ff5565b91505092915050565b60006020828403121561330d57600080fd5b600082013567ffffffffffffffff81111561332757600080fd5b6133338482850161300a565b91505092915050565b60006020828403121561334e57600080fd5b600061335c84828501613034565b91505092915050565b60006020828403121561337757600080fd5b600061338584828501613049565b91505092915050565b600080604083850312156133a157600080fd5b60006133af85828601613034565b92505060206133c085828601613034565b9150509250929050565b6133d38161454c565b82525050565b6133e28161455e565b82525050565b60006133f38261437a565b6133fd8185614390565b935061340d81856020860161460f565b613416816147a3565b840191505092915050565b600061342c82614385565b61343681856143a1565b935061344681856020860161460f565b61344f816147a3565b840191505092915050565b600081546134678161466c565b61347181866143b2565b9450600182166000811461348c576001811461349d576134d0565b60ff198316865281860193506134d0565b6134a685614365565b60005b838110156134c8578154818901526001820191506020810190506134a9565b838801955050505b50505092915050565b60006134e66022836143a1565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061354c6026836143a1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b2602a836143a1565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006136186023836143a1565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061367e6022836143a1565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136e46025836143a1565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061374a6022836143a1565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137b06011836143a1565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b60006137f06039836143a1565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006138566008836143b2565b91507f6d657461646174610000000000000000000000000000000000000000000000006000830152600882019050919050565b6000613896602b836143a1565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006138fc6026836143a1565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139626005836143b2565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006139a26020836143a1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139e2601a836143a1565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613a226032836143a1565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613a886022836143a1565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aee6033836143a1565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613b54601d836143a1565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613b946021836143a1565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfa6018836143a1565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b6000613c3a602e836143a1565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613ca0601f836143a1565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613ce0602f836143a1565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d466017836143a1565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b6000613d86602d836143a1565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613dec6022836143a1565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e526001836143b2565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b613e8e816145f6565b82525050565b6000613ea0828461345a565b9150613eab82613e45565b9150613eb682613849565b9150613ec182613955565b915081905092915050565b6000602082019050613ee160008301846133ca565b92915050565b6000608082019050613efc60008301876133ca565b613f0960208301866133ca565b613f166040830185613e85565b8181036060830152613f2881846133e8565b905095945050505050565b6000604082019050613f4860008301856133ca565b613f556020830184613e85565b9392505050565b6000602082019050613f7160008301846133d9565b92915050565b60006020820190508181036000830152613f918184613421565b905092915050565b60006020820190508181036000830152613fb2816134d9565b9050919050565b60006020820190508181036000830152613fd28161353f565b9050919050565b60006020820190508181036000830152613ff2816135a5565b9050919050565b600060208201905081810360008301526140128161360b565b9050919050565b6000602082019050818103600083015261403281613671565b9050919050565b60006020820190508181036000830152614052816136d7565b9050919050565b600060208201905081810360008301526140728161373d565b9050919050565b60006020820190508181036000830152614092816137a3565b9050919050565b600060208201905081810360008301526140b2816137e3565b9050919050565b600060208201905081810360008301526140d281613889565b9050919050565b600060208201905081810360008301526140f2816138ef565b9050919050565b6000602082019050818103600083015261411281613995565b9050919050565b60006020820190508181036000830152614132816139d5565b9050919050565b6000602082019050818103600083015261415281613a15565b9050919050565b6000602082019050818103600083015261417281613a7b565b9050919050565b6000602082019050818103600083015261419281613ae1565b9050919050565b600060208201905081810360008301526141b281613b47565b9050919050565b600060208201905081810360008301526141d281613b87565b9050919050565b600060208201905081810360008301526141f281613bed565b9050919050565b6000602082019050818103600083015261421281613c2d565b9050919050565b6000602082019050818103600083015261423281613c93565b9050919050565b6000602082019050818103600083015261425281613cd3565b9050919050565b6000602082019050818103600083015261427281613d39565b9050919050565b6000602082019050818103600083015261429281613d79565b9050919050565b600060208201905081810360008301526142b281613ddf565b9050919050565b60006020820190506142ce6000830184613e85565b92915050565b6000604051905081810181811067ffffffffffffffff821117156142fb576142fa614774565b5b8060405250919050565b600067ffffffffffffffff8211156143205761431f614774565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156143505761434f614774565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143c8826145ba565b91506143d3836145ba565b9250826fffffffffffffffffffffffffffffffff038211156143f8576143f76146e7565b5b828201905092915050565b600061440e826145f6565b9150614419836145f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561444e5761444d6146e7565b5b828201905092915050565b6000614464826145f6565b915061446f836145f6565b92508261447f5761447e614716565b5b828204905092915050565b6000614495826145f6565b91506144a0836145f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d9576144d86146e7565b5b828202905092915050565b60006144ef826145ba565b91506144fa836145ba565b92508282101561450d5761450c6146e7565b5b828203905092915050565b6000614523826145f6565b915061452e836145f6565b925082821015614541576145406146e7565b5b828203905092915050565b6000614557826145d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006145a18261454c565b9050919050565b60006145b38261454c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561462d578082015181840152602081019050614612565b8381111561463c576000848401525b50505050565b600061464d826145f6565b91506000821415614661576146606146e7565b5b600182039050919050565b6000600282049050600182168061468457607f821691505b6020821081141561469857614697614745565b5b50919050565b60006146a9826145f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146dc576146db6146e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6147bd8161454c565b81146147c857600080fd5b50565b6147d48161455e565b81146147df57600080fd5b50565b6147eb8161456a565b81146147f657600080fd5b50565b61480281614596565b811461480d57600080fd5b50565b614819816145a8565b811461482457600080fd5b50565b614830816145f6565b811461483b57600080fd5b5056fea26469706673582212206d3b91c01f6366800aff12752f57e16aba550096320b4e6289508ba9b93093d964736f6c63430008000033
Deployed Bytecode Sourcemap
55010:5698:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58899:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44239:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55528:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45764:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45327:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41074:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55633:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46614:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58004:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60387:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58316:143;;;;;;;;;;;;;:::i;:::-;;46819:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58467:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41237:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57606:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44062:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42939:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57442:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:103;;;;;;;;;;;;;:::i;:::-;;18446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44394:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55590:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56926:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46032:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47039:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55437:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60024:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55488:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51454:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57830:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59328:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58172:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58899:292;59047:4;59104:26;59089:41;;;:11;:41;;;;:94;;;;59147:36;59171:11;59147:23;:36::i;:::-;59089:94;59069:114;;58899:292;;;:::o;44239:94::-;44293:13;44322:5;44315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239:94;:::o;55528:55::-;55572:11;55528:55;:::o;45764:204::-;45832:7;45856:16;45864:7;45856;:16::i;:::-;45848:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45938:15;:24;45954:7;45938:24;;;;;;;;;;;;;;;;;;;;;45931:31;;45764:204;;;:::o;45327:379::-;45396:13;45412:24;45428:7;45412:15;:24::i;:::-;45396:40;;45457:5;45451:11;;:2;:11;;;;45443:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45542:5;45526:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45551:37;45568:5;45575:12;:10;:12::i;:::-;45551:16;:37::i;:::-;45526:62;45510:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45672:28;45681:2;45685:7;45694:5;45672:8;:28::i;:::-;45327:379;;;:::o;41074:94::-;41127:7;41150:12;;41143:19;;41074:94;:::o;55633:38::-;;;;;;;;;;;;;:::o;46614:142::-;46722:28;46732:4;46738:2;46742:7;46722:9;:28::i;:::-;46614:142;;;:::o;58004:158::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58135:19:::1;58114:18;;:40;;;;;;;;;;;;;;;;;;58004:158:::0;:::o;60387:318::-;60512:16;60530:21;60577:16;60585:7;60577;:16::i;:::-;60569:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60644:4;60651:45;60664:26;60677:9;60688:1;60664:12;:26::i;:::-;60692:3;60651:12;:45::i;:::-;60628:69;;;;60387:318;;;;;:::o;41705:744::-;41814:7;41849:16;41859:5;41849:9;:16::i;:::-;41841:5;:24;41833:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41911:22;41936:13;:11;:13::i;:::-;41911:38;;41956:19;41986:25;42036:9;42031:350;42055:14;42051:1;:18;42031:350;;;42085:31;42119:11;:14;42131:1;42119:14;;;;;;;;;;;42085:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42172:1;42146:28;;:9;:14;;;:28;;;42142:89;;42207:9;:14;;;42187:34;;42142:89;42264:5;42243:26;;:17;:26;;;42239:135;;;42301:5;42286:11;:20;42282:59;;;42328:1;42321:8;;;;;;;;;42282:59;42351:13;;;;;:::i;:::-;;;;42239:135;42031:350;42071:3;;;;;:::i;:::-;;;;42031:350;;;;42387:56;;;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;:::o;58316:143::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58364:15:::1;58382:21;58364:39;;58422:10;58414:28;;:37;58443:7;58414:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;18737:1;58316:143::o:0;46819:157::-;46931:39;46948:4;46954:2;46958:7;46931:39;;;;;;;;;;;;:16;:39::i;:::-;46819:157;;;:::o;58467:168::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58533:15:::1;58551:5;:15;;;58575:4;58551:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58533:48;;58592:5;:14;;;58607:10;58619:7;58592:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18737:1;58467:168:::0;:::o;41237:177::-;41304:7;41336:13;:11;:13::i;:::-;41328:5;:21;41320:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41403:5;41396:12;;41237:177;;;:::o;57606:100::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57690:8:::1;57680:7;:18;;;;;;;;;;;;:::i;:::-;;57606:100:::0;:::o;44062:118::-;44126:7;44149:20;44161:7;44149:11;:20::i;:::-;:25;;;44142:32;;44062:118;;;:::o;42939:211::-;43003:7;43044:1;43027:19;;:5;:19;;;;43019:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43116:12;:19;43129:5;43116:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43108:36;;43101:43;;42939:211;;;:::o;57442:93::-;57487:13;57520:7;57513:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57442:93;:::o;19097:103::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19162:30:::1;19189:1;19162:18;:30::i;:::-;19097:103::o:0;18446:87::-;18492:7;18519:6;;;;;;;;;;;18512:13;;18446:87;:::o;44394:98::-;44450:13;44479:7;44472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44394:98;:::o;55590:36::-;;;;:::o;56926:321::-;10375:1;10973:7;;:19;;10965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:1;11106:7;:18;;;;55572:11:::1;57066:14;56603;;56589:13;:11;:13::i;:::-;:28;56586:166;;;56679:9;56660:14;56652:5;:22;;;;:::i;:::-;56651:37;56629:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56586:166;55801:18:::2;;;;;;;;;;;55793:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57129:14:::3;56212:9;;56177:14;56161:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56139:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57168:14:::4;55480:1;55959:14;:34;;55937:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57202:37:::5;57212:10;57224:14;57202:9;:37::i;:::-;56294:1:::4;55858::::3;11137::::1;;10331::::0;11285:7;:22;;;;56926:321;:::o;46032:274::-;46135:12;:10;:12::i;:::-;46123:24;;:8;:24;;;;46115:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46232:8;46187:18;:32;46206:12;:10;:12::i;:::-;46187:32;;;;;;;;;;;;;;;:42;46220:8;46187:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46281:8;46252:48;;46267:12;:10;:12::i;:::-;46252:48;;;46291:8;46252:48;;;;;;:::i;:::-;;;;;;;;46032:274;;:::o;47039:311::-;47176:28;47186:4;47192:2;47196:7;47176:9;:28::i;:::-;47227:48;47250:4;47256:2;47260:7;47269:5;47227:22;:48::i;:::-;47211:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47039:311;;;;:::o;55437:44::-;55480:1;55437:44;:::o;60024:297::-;60142:13;60181:16;60189:7;60181;:16::i;:::-;60173:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60267:7;60250:51;;;;;;;;:::i;:::-;;;;;;;;;;;;;60232:70;;60024:297;;;:::o;55488:31::-;;;;:::o;51454:43::-;;;;:::o;57830:166::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57967:21:::1;57944:20;;:44;;;;;;;;;;;;;;;;;;57830:166:::0;:::o;59328:617::-;59453:4;59618:27;59676;;;;;;;;;;;59618:96;;59743:20;;;;;;;;;;;:86;;;;;59821:8;59780:49;;59788:13;:21;;;59810:5;59788:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59780:49;;;59743:86;59725:154;;;59863:4;59856:11;;;;;59725:154;59898:39;59921:5;59928:8;59898:22;:39::i;:::-;59891:46;;;59328:617;;;;;:::o;58172:134::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58285:13:::1;58268:14;:30;;;;58172:134:::0;:::o;19355:201::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19464:1:::1;19444:22;;:8;:22;;;;19436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19520:28;19539:8;19520:18;:28::i;:::-;19355:201:::0;:::o;42513:370::-;42640:4;42685:25;42670:40;;;:11;:40;;;;:99;;;;42736:33;42721:48;;;:11;:48;;;;42670:99;:160;;;;42795:35;42780:50;;;:11;:50;;;;42670:160;:207;;;;42841:36;42865:11;42841:23;:36::i;:::-;42670:207;42656:221;;42513:370;;;:::o;47589:105::-;47646:4;47676:12;;47666:7;:22;47659:29;;47589:105;;;:::o;17170:98::-;17223:7;17250:10;17243:17;;17170:98;:::o;51276:172::-;51400:2;51373:15;:24;51389:7;51373:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51434:7;51430:2;51414:28;;51423:5;51414:28;;;;;;;;;;;;51276:172;;;:::o;49641:1529::-;49738:35;49776:20;49788:7;49776:11;:20::i;:::-;49738:58;;49805:22;49847:13;:18;;;49831:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49900:12;:10;:12::i;:::-;49876:36;;:20;49888:7;49876:11;:20::i;:::-;:36;;;49831:81;:142;;;;49923:50;49940:13;:18;;;49960:12;:10;:12::i;:::-;49923:16;:50::i;:::-;49831:142;49805:169;;49999:17;49983:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50131:4;50109:26;;:13;:18;;;:26;;;50093:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50220:1;50206:16;;:2;:16;;;;50198:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50273:43;50295:4;50301:2;50305:7;50314:1;50273:21;:43::i;:::-;50373:49;50390:1;50394:7;50403:13;:18;;;50373:8;:49::i;:::-;50461:1;50431:12;:18;50444:4;50431:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50497:1;50469:12;:16;50482:2;50469:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50528:43;;;;;;;;50543:2;50528:43;;;;;;50554:15;50528:43;;;;;50505:11;:20;50517:7;50505:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50799:19;50831:1;50821:7;:11;;;;:::i;:::-;50799:33;;50884:1;50843:43;;:11;:24;50855:11;50843:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50839:236;;;50901:20;50909:11;50901:7;:20::i;:::-;50897:171;;;50961:97;;;;;;;;50988:13;:18;;;50961:97;;;;;;51019:13;:28;;;50961:97;;;;;50934:11;:24;50946:11;50934:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50897:171;50839:236;51107:7;51103:2;51088:27;;51097:4;51088:27;;;;;;;;;;;;51122:42;51143:4;51149:2;51153:7;51162:1;51122:20;:42::i;:::-;49641:1529;;;;;;:::o;3671:98::-;3729:7;3760:1;3756;:5;;;;:::i;:::-;3749:12;;3671:98;;;;:::o;4070:::-;4128:7;4159:1;4155;:5;;;;:::i;:::-;4148:12;;4070:98;;;;:::o;43402:606::-;43478:21;;:::i;:::-;43519:16;43527:7;43519;:16::i;:::-;43511:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43591:26;43639:12;43628:7;:23;43624:93;;43708:1;43693:12;43683:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43662:47;;43624:93;43730:12;43745:7;43730:22;;43725:212;43762:18;43754:4;:26;43725:212;;43799:31;43833:11;:17;43845:4;43833:17;;;;;;;;;;;43799:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43889:1;43863:28;;:9;:14;;;:28;;;43859:71;;43911:9;43904:16;;;;;;;43859:71;43725:212;43782:6;;;;;:::i;:::-;;;;43725:212;;;;43945:57;;;;;;;;;;:::i;:::-;;;;;;;;43402:606;;;;:::o;19716:191::-;19790:16;19809:6;;;;;;;;;;;19790:25;;19835:8;19826:6;;:17;;;;;;;;;;;;;;;;;;19890:8;19859:40;;19880:8;19859:40;;;;;;;;;;;;19716:191;;:::o;47700:98::-;47765:27;47775:2;47779:8;47765:27;;;;;;;;;;;;:9;:27::i;:::-;47700:98;;:::o;52991:690::-;53128:4;53145:15;:2;:13;;;:15::i;:::-;53141:535;;;53200:2;53184:36;;;53221:12;:10;:12::i;:::-;53235:4;53241:7;53250:5;53184:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53171:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53432:1;53415:6;:13;:18;53411:215;;;53448:61;;;;;;;;;;:::i;:::-;;;;;;;;53411:215;53594:6;53588:13;53579:6;53575:2;53571:15;53564:38;53171:464;53316:45;;;53306:55;;;:6;:55;;;;53299:62;;;;;53141:535;53664:4;53657:11;;52991:690;;;;;;;:::o;46369:186::-;46491:4;46514:18;:25;46533:5;46514:25;;;;;;;;;;;;;;;:35;46540:8;46514:35;;;;;;;;;;;;;;;;;;;;;;;;;46507:42;;46369:186;;;;:::o;31846:157::-;31931:4;31970:25;31955:40;;;:11;:40;;;;31948:47;;31846:157;;;:::o;54143:141::-;;;;;:::o;54670:140::-;;;;;:::o;48137:1272::-;48242:20;48265:12;;48242:35;;48306:1;48292:16;;:2;:16;;;;48284:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48483:21;48491:12;48483:7;:21::i;:::-;48482:22;48474:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48565:12;48553:8;:24;;48545:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:61;48655:1;48659:2;48663:12;48677:8;48625:21;:61::i;:::-;48695:30;48728:12;:16;48741:2;48728:16;;;;;;;;;;;;;;;48695:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48770:119;;;;;;;;48820:8;48790:11;:19;;;:39;;;;:::i;:::-;48770:119;;;;;;48873:8;48838:11;:24;;;:44;;;;:::i;:::-;48770:119;;;;;48751:12;:16;48764:2;48751:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48924:43;;;;;;;;48939:2;48924:43;;;;;;48950:15;48924:43;;;;;48896:11;:25;48908:12;48896:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48976:20;48999:12;48976:35;;49025:9;49020:281;49044:8;49040:1;:12;49020:281;;;49098:12;49094:2;49073:38;;49090:1;49073:38;;;;;;;;;;;;49138:59;49169:1;49173:2;49177:12;49191:5;49138:22;:59::i;:::-;49120:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49279:14;;;;;:::i;:::-;;;;49054:3;;;;;:::i;:::-;;;;49020:281;;;;49324:12;49309;:27;;;;49343:60;49372:1;49376:2;49380:12;49394:8;49343:20;:60::i;:::-;48137:1272;;;;;;:::o;20734:387::-;20794:4;21002:12;21069:7;21057:20;21049:28;;21112:1;21105:4;:8;21098:15;;;20734:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1074:6;1068:13;1059:22;;1090:30;1114:5;1090:30;:::i;:::-;1049:77;;;;:::o;1132:137::-;;1215:6;1202:20;1193:29;;1231:32;1257:5;1231:32;:::i;:::-;1183:86;;;;:::o;1275:141::-;;1362:6;1356:13;1347:22;;1378:32;1404:5;1378:32;:::i;:::-;1337:79;;;;:::o;1435:271::-;;1539:3;1532:4;1524:6;1520:17;1516:27;1506:2;;1557:1;1554;1547:12;1506:2;1597:6;1584:20;1622:78;1696:3;1688:6;1681:4;1673:6;1669:17;1622:78;:::i;:::-;1613:87;;1496:210;;;;;:::o;1712:167::-;;1810:6;1797:20;1788:29;;1826:47;1867:5;1826:47;:::i;:::-;1778:101;;;;:::o;1885:201::-;;2002:6;1996:13;1987:22;;2018:62;2074:5;2018:62;:::i;:::-;1977:109;;;;:::o;2106:273::-;;2211:3;2204:4;2196:6;2192:17;2188:27;2178:2;;2229:1;2226;2219:12;2178:2;2269:6;2256:20;2294:79;2369:3;2361:6;2354:4;2346:6;2342:17;2294:79;:::i;:::-;2285:88;;2168:211;;;;;:::o;2385:139::-;;2469:6;2456:20;2447:29;;2485:33;2512:5;2485:33;:::i;:::-;2437:87;;;;:::o;2530:143::-;;2618:6;2612:13;2603:22;;2634:33;2661:5;2634:33;:::i;:::-;2593:80;;;;:::o;2679:262::-;;2787:2;2775:9;2766:7;2762:23;2758:32;2755:2;;;2803:1;2800;2793:12;2755:2;2846:1;2871:53;2916:7;2907:6;2896:9;2892:22;2871:53;:::i;:::-;2861:63;;2817:117;2745:196;;;;:::o;2947:407::-;;;3072:2;3060:9;3051:7;3047:23;3043:32;3040:2;;;3088:1;3085;3078:12;3040:2;3131:1;3156:53;3201:7;3192:6;3181:9;3177:22;3156:53;:::i;:::-;3146:63;;3102:117;3258:2;3284:53;3329:7;3320:6;3309:9;3305:22;3284:53;:::i;:::-;3274:63;;3229:118;3030:324;;;;;:::o;3360:552::-;;;;3502:2;3490:9;3481:7;3477:23;3473:32;3470:2;;;3518:1;3515;3508:12;3470:2;3561:1;3586:53;3631:7;3622:6;3611:9;3607:22;3586:53;:::i;:::-;3576:63;;3532:117;3688:2;3714:53;3759:7;3750:6;3739:9;3735:22;3714:53;:::i;:::-;3704:63;;3659:118;3816:2;3842:53;3887:7;3878:6;3867:9;3863:22;3842:53;:::i;:::-;3832:63;;3787:118;3460:452;;;;;:::o;3918:809::-;;;;;4086:3;4074:9;4065:7;4061:23;4057:33;4054:2;;;4103:1;4100;4093:12;4054:2;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;4401:2;4427:53;4472:7;4463:6;4452:9;4448:22;4427:53;:::i;:::-;4417:63;;4372:118;4557:2;4546:9;4542:18;4529:32;4588:18;4580:6;4577:30;4574:2;;;4620:1;4617;4610:12;4574:2;4648:62;4702:7;4693:6;4682:9;4678:22;4648:62;:::i;:::-;4638:72;;4500:220;4044:683;;;;;;;:::o;4733:401::-;;;4855:2;4843:9;4834:7;4830:23;4826:32;4823:2;;;4871:1;4868;4861:12;4823:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4813:321;;;;;:::o;5140:407::-;;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:53;5394:7;5385:6;5374:9;5370:22;5349:53;:::i;:::-;5339:63;;5295:117;5451:2;5477:53;5522:7;5513:6;5502:9;5498:22;5477:53;:::i;:::-;5467:63;;5422:118;5223:324;;;;;:::o;5553:256::-;;5658:2;5646:9;5637:7;5633:23;5629:32;5626:2;;;5674:1;5671;5664:12;5626:2;5717:1;5742:50;5784:7;5775:6;5764:9;5760:22;5742:50;:::i;:::-;5732:60;;5688:114;5616:193;;;;:::o;5815:278::-;;5931:2;5919:9;5910:7;5906:23;5902:32;5899:2;;;5947:1;5944;5937:12;5899:2;5990:1;6015:61;6068:7;6059:6;6048:9;6044:22;6015:61;:::i;:::-;6005:71;;5961:125;5889:204;;;;:::o;6099:260::-;;6206:2;6194:9;6185:7;6181:23;6177:32;6174:2;;;6222:1;6219;6212:12;6174:2;6265:1;6290:52;6334:7;6325:6;6314:9;6310:22;6290:52;:::i;:::-;6280:62;;6236:116;6164:195;;;;:::o;6365:282::-;;6483:2;6471:9;6462:7;6458:23;6454:32;6451:2;;;6499:1;6496;6489:12;6451:2;6542:1;6567:63;6622:7;6613:6;6602:9;6598:22;6567:63;:::i;:::-;6557:73;;6513:127;6441:206;;;;:::o;6653:290::-;;6775:2;6763:9;6754:7;6750:23;6746:32;6743:2;;;6791:1;6788;6781:12;6743:2;6834:1;6859:67;6918:7;6909:6;6898:9;6894:22;6859:67;:::i;:::-;6849:77;;6805:131;6733:210;;;;:::o;6949:342::-;;7097:2;7085:9;7076:7;7072:23;7068:32;7065:2;;;7113:1;7110;7103:12;7065:2;7156:1;7181:93;7266:7;7257:6;7246:9;7242:22;7181:93;:::i;:::-;7171:103;;7127:157;7055:236;;;;:::o;7297:375::-;;7415:2;7403:9;7394:7;7390:23;7386:32;7383:2;;;7431:1;7428;7421:12;7383:2;7502:1;7491:9;7487:17;7474:31;7532:18;7524:6;7521:30;7518:2;;;7564:1;7561;7554:12;7518:2;7592:63;7647:7;7638:6;7627:9;7623:22;7592:63;:::i;:::-;7582:73;;7445:220;7373:299;;;;:::o;7678:262::-;;7786:2;7774:9;7765:7;7761:23;7757:32;7754:2;;;7802:1;7799;7792:12;7754:2;7845:1;7870:53;7915:7;7906:6;7895:9;7891:22;7870:53;:::i;:::-;7860:63;;7816:117;7744:196;;;;:::o;7946:284::-;;8065:2;8053:9;8044:7;8040:23;8036:32;8033:2;;;8081:1;8078;8071:12;8033:2;8124:1;8149:64;8205:7;8196:6;8185:9;8181:22;8149:64;:::i;:::-;8139:74;;8095:128;8023:207;;;;:::o;8236:407::-;;;8361:2;8349:9;8340:7;8336:23;8332:32;8329:2;;;8377:1;8374;8367:12;8329:2;8420:1;8445:53;8490:7;8481:6;8470:9;8466:22;8445:53;:::i;:::-;8435:63;;8391:117;8547:2;8573:53;8618:7;8609:6;8598:9;8594:22;8573:53;:::i;:::-;8563:63;;8518:118;8319:324;;;;;:::o;8649:118::-;8736:24;8754:5;8736:24;:::i;:::-;8731:3;8724:37;8714:53;;:::o;8773:109::-;8854:21;8869:5;8854:21;:::i;:::-;8849:3;8842:34;8832:50;;:::o;8888:360::-;;9002:38;9034:5;9002:38;:::i;:::-;9056:70;9119:6;9114:3;9056:70;:::i;:::-;9049:77;;9135:52;9180:6;9175:3;9168:4;9161:5;9157:16;9135:52;:::i;:::-;9212:29;9234:6;9212:29;:::i;:::-;9207:3;9203:39;9196:46;;8978:270;;;;;:::o;9254:364::-;;9370:39;9403:5;9370:39;:::i;:::-;9425:71;9489:6;9484:3;9425:71;:::i;:::-;9418:78;;9505:52;9550:6;9545:3;9538:4;9531:5;9527:16;9505:52;:::i;:::-;9582:29;9604:6;9582:29;:::i;:::-;9577:3;9573:39;9566:46;;9346:272;;;;;:::o;9648:845::-;;9788:5;9782:12;9817:36;9843:9;9817:36;:::i;:::-;9869:89;9951:6;9946:3;9869:89;:::i;:::-;9862:96;;9989:1;9978:9;9974:17;10005:1;10000:137;;;;10151:1;10146:341;;;;9967:520;;10000:137;10084:4;10080:9;10069;10065:25;10060:3;10053:38;10120:6;10115:3;10111:16;10104:23;;10000:137;;10146:341;10213:38;10245:5;10213:38;:::i;:::-;10273:1;10287:154;10301:6;10298:1;10295:13;10287:154;;;10375:7;10369:14;10365:1;10360:3;10356:11;10349:35;10425:1;10416:7;10412:15;10401:26;;10323:4;10320:1;10316:12;10311:17;;10287:154;;;10470:6;10465:3;10461:16;10454:23;;10153:334;;9967:520;;9755:738;;;;;;:::o;10499:366::-;;10662:67;10726:2;10721:3;10662:67;:::i;:::-;10655:74;;10759:34;10755:1;10750:3;10746:11;10739:55;10825:4;10820:2;10815:3;10811:12;10804:26;10856:2;10851:3;10847:12;10840:19;;10645:220;;;:::o;10871:370::-;;11034:67;11098:2;11093:3;11034:67;:::i;:::-;11027:74;;11131:34;11127:1;11122:3;11118:11;11111:55;11197:8;11192:2;11187:3;11183:12;11176:30;11232:2;11227:3;11223:12;11216:19;;11017:224;;;:::o;11247:374::-;;11410:67;11474:2;11469:3;11410:67;:::i;:::-;11403:74;;11507:34;11503:1;11498:3;11494:11;11487:55;11573:12;11568:2;11563:3;11559:12;11552:34;11612:2;11607:3;11603:12;11596:19;;11393:228;;;:::o;11627:367::-;;11790:67;11854:2;11849:3;11790:67;:::i;:::-;11783:74;;11887:34;11883:1;11878:3;11874:11;11867:55;11953:5;11948:2;11943:3;11939:12;11932:27;11985:2;11980:3;11976:12;11969:19;;11773:221;;;:::o;12000:366::-;;12163:67;12227:2;12222:3;12163:67;:::i;:::-;12156:74;;12260:34;12256:1;12251:3;12247:11;12240:55;12326:4;12321:2;12316:3;12312:12;12305:26;12357:2;12352:3;12348:12;12341:19;;12146:220;;;:::o;12372:369::-;;12535:67;12599:2;12594:3;12535:67;:::i;:::-;12528:74;;12632:34;12628:1;12623:3;12619:11;12612:55;12698:7;12693:2;12688:3;12684:12;12677:29;12732:2;12727:3;12723:12;12716:19;;12518:223;;;:::o;12747:366::-;;12910:67;12974:2;12969:3;12910:67;:::i;:::-;12903:74;;13007:34;13003:1;12998:3;12994:11;12987:55;13073:4;13068:2;13063:3;13059:12;13052:26;13104:2;13099:3;13095:12;13088:19;;12893:220;;;:::o;13119:315::-;;13282:67;13346:2;13341:3;13282:67;:::i;:::-;13275:74;;13379:19;13375:1;13370:3;13366:11;13359:40;13425:2;13420:3;13416:12;13409:19;;13265:169;;;:::o;13440:389::-;;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13700:34;13696:1;13691:3;13687:11;13680:55;13766:27;13761:2;13756:3;13752:12;13745:49;13820:2;13815:3;13811:12;13804:19;;13586:243;;;:::o;13835:340::-;;14016:84;14098:1;14093:3;14016:84;:::i;:::-;14009:91;;14130:10;14126:1;14121:3;14117:11;14110:31;14167:1;14162:3;14158:11;14151:18;;13999:176;;;:::o;14181:375::-;;14344:67;14408:2;14403:3;14344:67;:::i;:::-;14337:74;;14441:34;14437:1;14432:3;14428:11;14421:55;14507:13;14502:2;14497:3;14493:12;14486:35;14547:2;14542:3;14538:12;14531:19;;14327:229;;;:::o;14562:370::-;;14725:67;14789:2;14784:3;14725:67;:::i;:::-;14718:74;;14822:34;14818:1;14813:3;14809:11;14802:55;14888:8;14883:2;14878:3;14874:12;14867:30;14923:2;14918:3;14914:12;14907:19;;14708:224;;;:::o;14938:337::-;;15119:84;15201:1;15196:3;15119:84;:::i;:::-;15112:91;;15233:7;15229:1;15224:3;15220:11;15213:28;15267:1;15262:3;15258:11;15251:18;;15102:173;;;:::o;15281:330::-;;15444:67;15508:2;15503:3;15444:67;:::i;:::-;15437:74;;15541:34;15537:1;15532:3;15528:11;15521:55;15602:2;15597:3;15593:12;15586:19;;15427:184;;;:::o;15617:324::-;;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15877:28;15873:1;15868:3;15864:11;15857:49;15932:2;15927:3;15923:12;15916:19;;15763:178;;;:::o;15947:382::-;;16110:67;16174:2;16169:3;16110:67;:::i;:::-;16103:74;;16207:34;16203:1;16198:3;16194:11;16187:55;16273:20;16268:2;16263:3;16259:12;16252:42;16320:2;16315:3;16311:12;16304:19;;16093:236;;;:::o;16335:366::-;;16498:67;16562:2;16557:3;16498:67;:::i;:::-;16491:74;;16595:34;16591:1;16586:3;16582:11;16575:55;16661:4;16656:2;16651:3;16647:12;16640:26;16692:2;16687:3;16683:12;16676:19;;16481:220;;;:::o;16707:383::-;;16870:67;16934:2;16929:3;16870:67;:::i;:::-;16863:74;;16967:34;16963:1;16958:3;16954:11;16947:55;17033:21;17028:2;17023:3;17019:12;17012:43;17081:2;17076:3;17072:12;17065:19;;16853:237;;;:::o;17096:327::-;;17259:67;17323:2;17318:3;17259:67;:::i;:::-;17252:74;;17356:31;17352:1;17347:3;17343:11;17336:52;17414:2;17409:3;17405:12;17398:19;;17242:181;;;:::o;17429:365::-;;17592:67;17656:2;17651:3;17592:67;:::i;:::-;17585:74;;17689:34;17685:1;17680:3;17676:11;17669:55;17755:3;17750:2;17745:3;17741:12;17734:25;17785:2;17780:3;17776:12;17769:19;;17575:219;;;:::o;17800:322::-;;17963:67;18027:2;18022:3;17963:67;:::i;:::-;17956:74;;18060:26;18056:1;18051:3;18047:11;18040:47;18113:2;18108:3;18104:12;18097:19;;17946:176;;;:::o;18128:378::-;;18291:67;18355:2;18350:3;18291:67;:::i;:::-;18284:74;;18388:34;18384:1;18379:3;18375:11;18368:55;18454:16;18449:2;18444:3;18440:12;18433:38;18497:2;18492:3;18488:12;18481:19;;18274:232;;;:::o;18512:329::-;;18675:67;18739:2;18734:3;18675:67;:::i;:::-;18668:74;;18772:33;18768:1;18763:3;18759:11;18752:54;18832:2;18827:3;18823:12;18816:19;;18658:183;;;:::o;18847:379::-;;19010:67;19074:2;19069:3;19010:67;:::i;:::-;19003:74;;19107:34;19103:1;19098:3;19094:11;19087:55;19173:17;19168:2;19163:3;19159:12;19152:39;19217:2;19212:3;19208:12;19201:19;;18993:233;;;:::o;19232:321::-;;19395:67;19459:2;19454:3;19395:67;:::i;:::-;19388:74;;19492:25;19488:1;19483:3;19479:11;19472:46;19544:2;19539:3;19535:12;19528:19;;19378:175;;;:::o;19559:377::-;;19722:67;19786:2;19781:3;19722:67;:::i;:::-;19715:74;;19819:34;19815:1;19810:3;19806:11;19799:55;19885:15;19880:2;19875:3;19871:12;19864:37;19927:2;19922:3;19918:12;19911:19;;19705:231;;;:::o;19942:366::-;;20105:67;20169:2;20164:3;20105:67;:::i;:::-;20098:74;;20202:34;20198:1;20193:3;20189:11;20182:55;20268:4;20263:2;20258:3;20254:12;20247:26;20299:2;20294:3;20290:12;20283:19;;20088:220;;;:::o;20314:333::-;;20495:84;20577:1;20572:3;20495:84;:::i;:::-;20488:91;;20609:3;20605:1;20600:3;20596:11;20589:24;20639:1;20634:3;20630:11;20623:18;;20478:169;;;:::o;20653:118::-;20740:24;20758:5;20740:24;:::i;:::-;20735:3;20728:37;20718:53;;:::o;20777:1067::-;;21231:92;21319:3;21310:6;21231:92;:::i;:::-;21224:99;;21340:148;21484:3;21340:148;:::i;:::-;21333:155;;21505:148;21649:3;21505:148;:::i;:::-;21498:155;;21670:148;21814:3;21670:148;:::i;:::-;21663:155;;21835:3;21828:10;;21213:631;;;;:::o;21850:222::-;;21981:2;21970:9;21966:18;21958:26;;21994:71;22062:1;22051:9;22047:17;22038:6;21994:71;:::i;:::-;21948:124;;;;:::o;22078:640::-;;22311:3;22300:9;22296:19;22288:27;;22325:71;22393:1;22382:9;22378:17;22369:6;22325:71;:::i;:::-;22406:72;22474:2;22463:9;22459:18;22450:6;22406:72;:::i;:::-;22488;22556:2;22545:9;22541:18;22532:6;22488:72;:::i;:::-;22607:9;22601:4;22597:20;22592:2;22581:9;22577:18;22570:48;22635:76;22706:4;22697:6;22635:76;:::i;:::-;22627:84;;22278:440;;;;;;;:::o;22724:332::-;;22883:2;22872:9;22868:18;22860:26;;22896:71;22964:1;22953:9;22949:17;22940:6;22896:71;:::i;:::-;22977:72;23045:2;23034:9;23030:18;23021:6;22977:72;:::i;:::-;22850:206;;;;;:::o;23062:210::-;;23187:2;23176:9;23172:18;23164:26;;23200:65;23262:1;23251:9;23247:17;23238:6;23200:65;:::i;:::-;23154:118;;;;:::o;23278:313::-;;23429:2;23418:9;23414:18;23406:26;;23478:9;23472:4;23468:20;23464:1;23453:9;23449:17;23442:47;23506:78;23579:4;23570:6;23506:78;:::i;:::-;23498:86;;23396:195;;;;:::o;23597:419::-;;23801:2;23790:9;23786:18;23778:26;;23850:9;23844:4;23840:20;23836:1;23825:9;23821:17;23814:47;23878:131;24004:4;23878:131;:::i;:::-;23870:139;;23768:248;;;:::o;24022:419::-;;24226:2;24215:9;24211:18;24203:26;;24275:9;24269:4;24265:20;24261:1;24250:9;24246:17;24239:47;24303:131;24429:4;24303:131;:::i;:::-;24295:139;;24193:248;;;:::o;24447:419::-;;24651:2;24640:9;24636:18;24628:26;;24700:9;24694:4;24690:20;24686:1;24675:9;24671:17;24664:47;24728:131;24854:4;24728:131;:::i;:::-;24720:139;;24618:248;;;:::o;24872:419::-;;25076:2;25065:9;25061:18;25053:26;;25125:9;25119:4;25115:20;25111:1;25100:9;25096:17;25089:47;25153:131;25279:4;25153:131;:::i;:::-;25145:139;;25043:248;;;:::o;25297:419::-;;25501:2;25490:9;25486:18;25478:26;;25550:9;25544:4;25540:20;25536:1;25525:9;25521:17;25514:47;25578:131;25704:4;25578:131;:::i;:::-;25570:139;;25468:248;;;:::o;25722:419::-;;25926:2;25915:9;25911:18;25903:26;;25975:9;25969:4;25965:20;25961:1;25950:9;25946:17;25939:47;26003:131;26129:4;26003:131;:::i;:::-;25995:139;;25893:248;;;:::o;26147:419::-;;26351:2;26340:9;26336:18;26328:26;;26400:9;26394:4;26390:20;26386:1;26375:9;26371:17;26364:47;26428:131;26554:4;26428:131;:::i;:::-;26420:139;;26318:248;;;:::o;26572:419::-;;26776:2;26765:9;26761:18;26753:26;;26825:9;26819:4;26815:20;26811:1;26800:9;26796:17;26789:47;26853:131;26979:4;26853:131;:::i;:::-;26845:139;;26743:248;;;:::o;26997:419::-;;27201:2;27190:9;27186:18;27178:26;;27250:9;27244:4;27240:20;27236:1;27225:9;27221:17;27214:47;27278:131;27404:4;27278:131;:::i;:::-;27270:139;;27168:248;;;:::o;27422:419::-;;27626:2;27615:9;27611:18;27603:26;;27675:9;27669:4;27665:20;27661:1;27650:9;27646:17;27639:47;27703:131;27829:4;27703:131;:::i;:::-;27695:139;;27593:248;;;:::o;27847:419::-;;28051:2;28040:9;28036:18;28028:26;;28100:9;28094:4;28090:20;28086:1;28075:9;28071:17;28064:47;28128:131;28254:4;28128:131;:::i;:::-;28120:139;;28018:248;;;:::o;28272:419::-;;28476:2;28465:9;28461:18;28453:26;;28525:9;28519:4;28515:20;28511:1;28500:9;28496:17;28489:47;28553:131;28679:4;28553:131;:::i;:::-;28545:139;;28443:248;;;:::o;28697:419::-;;28901:2;28890:9;28886:18;28878:26;;28950:9;28944:4;28940:20;28936:1;28925:9;28921:17;28914:47;28978:131;29104:4;28978:131;:::i;:::-;28970:139;;28868:248;;;:::o;29122:419::-;;29326:2;29315:9;29311:18;29303:26;;29375:9;29369:4;29365:20;29361:1;29350:9;29346:17;29339:47;29403:131;29529:4;29403:131;:::i;:::-;29395:139;;29293:248;;;:::o;29547:419::-;;29751:2;29740:9;29736:18;29728:26;;29800:9;29794:4;29790:20;29786:1;29775:9;29771:17;29764:47;29828:131;29954:4;29828:131;:::i;:::-;29820:139;;29718:248;;;:::o;29972:419::-;;30176:2;30165:9;30161:18;30153:26;;30225:9;30219:4;30215:20;30211:1;30200:9;30196:17;30189:47;30253:131;30379:4;30253:131;:::i;:::-;30245:139;;30143:248;;;:::o;30397:419::-;;30601:2;30590:9;30586:18;30578:26;;30650:9;30644:4;30640:20;30636:1;30625:9;30621:17;30614:47;30678:131;30804:4;30678:131;:::i;:::-;30670:139;;30568:248;;;:::o;30822:419::-;;31026:2;31015:9;31011:18;31003:26;;31075:9;31069:4;31065:20;31061:1;31050:9;31046:17;31039:47;31103:131;31229:4;31103:131;:::i;:::-;31095:139;;30993:248;;;:::o;31247:419::-;;31451:2;31440:9;31436:18;31428:26;;31500:9;31494:4;31490:20;31486:1;31475:9;31471:17;31464:47;31528:131;31654:4;31528:131;:::i;:::-;31520:139;;31418:248;;;:::o;31672:419::-;;31876:2;31865:9;31861:18;31853:26;;31925:9;31919:4;31915:20;31911:1;31900:9;31896:17;31889:47;31953:131;32079:4;31953:131;:::i;:::-;31945:139;;31843:248;;;:::o;32097:419::-;;32301:2;32290:9;32286:18;32278:26;;32350:9;32344:4;32340:20;32336:1;32325:9;32321:17;32314:47;32378:131;32504:4;32378:131;:::i;:::-;32370:139;;32268:248;;;:::o;32522:419::-;;32726:2;32715:9;32711:18;32703:26;;32775:9;32769:4;32765:20;32761:1;32750:9;32746:17;32739:47;32803:131;32929:4;32803:131;:::i;:::-;32795:139;;32693:248;;;:::o;32947:419::-;;33151:2;33140:9;33136:18;33128:26;;33200:9;33194:4;33190:20;33186:1;33175:9;33171:17;33164:47;33228:131;33354:4;33228:131;:::i;:::-;33220:139;;33118:248;;;:::o;33372:419::-;;33576:2;33565:9;33561:18;33553:26;;33625:9;33619:4;33615:20;33611:1;33600:9;33596:17;33589:47;33653:131;33779:4;33653:131;:::i;:::-;33645:139;;33543:248;;;:::o;33797:419::-;;34001:2;33990:9;33986:18;33978:26;;34050:9;34044:4;34040:20;34036:1;34025:9;34021:17;34014:47;34078:131;34204:4;34078:131;:::i;:::-;34070:139;;33968:248;;;:::o;34222:222::-;;34353:2;34342:9;34338:18;34330:26;;34366:71;34434:1;34423:9;34419:17;34410:6;34366:71;:::i;:::-;34320:124;;;;:::o;34450:283::-;;34516:2;34510:9;34500:19;;34558:4;34550:6;34546:17;34665:6;34653:10;34650:22;34629:18;34617:10;34614:34;34611:62;34608:2;;;34676:18;;:::i;:::-;34608:2;34716:10;34712:2;34705:22;34490:243;;;;:::o;34739:331::-;;34890:18;34882:6;34879:30;34876:2;;;34912:18;;:::i;:::-;34876:2;34997:4;34993:9;34986:4;34978:6;34974:17;34970:33;34962:41;;35058:4;35052;35048:15;35040:23;;34805:265;;;:::o;35076:332::-;;35228:18;35220:6;35217:30;35214:2;;;35250:18;;:::i;:::-;35214:2;35335:4;35331:9;35324:4;35316:6;35312:17;35308:33;35300:41;;35396:4;35390;35386:15;35378:23;;35143:265;;;:::o;35414:141::-;;35486:3;35478:11;;35509:3;35506:1;35499:14;35543:4;35540:1;35530:18;35522:26;;35468:87;;;:::o;35561:98::-;;35646:5;35640:12;35630:22;;35619:40;;;:::o;35665:99::-;;35751:5;35745:12;35735:22;;35724:40;;;:::o;35770:168::-;;35887:6;35882:3;35875:19;35927:4;35922:3;35918:14;35903:29;;35865:73;;;;:::o;35944:169::-;;36062:6;36057:3;36050:19;36102:4;36097:3;36093:14;36078:29;;36040:73;;;;:::o;36119:148::-;;36258:3;36243:18;;36233:34;;;;:::o;36273:273::-;;36332:20;36350:1;36332:20;:::i;:::-;36327:25;;36366:20;36384:1;36366:20;:::i;:::-;36361:25;;36488:1;36452:34;36448:42;36445:1;36442:49;36439:2;;;36494:18;;:::i;:::-;36439:2;36538:1;36535;36531:9;36524:16;;36317:229;;;;:::o;36552:305::-;;36611:20;36629:1;36611:20;:::i;:::-;36606:25;;36645:20;36663:1;36645:20;:::i;:::-;36640:25;;36799:1;36731:66;36727:74;36724:1;36721:81;36718:2;;;36805:18;;:::i;:::-;36718:2;36849:1;36846;36842:9;36835:16;;36596:261;;;;:::o;36863:185::-;;36920:20;36938:1;36920:20;:::i;:::-;36915:25;;36954:20;36972:1;36954:20;:::i;:::-;36949:25;;36993:1;36983:2;;36998:18;;:::i;:::-;36983:2;37040:1;37037;37033:9;37028:14;;36905:143;;;;:::o;37054:348::-;;37117:20;37135:1;37117:20;:::i;:::-;37112:25;;37151:20;37169:1;37151:20;:::i;:::-;37146:25;;37339:1;37271:66;37267:74;37264:1;37261:81;37256:1;37249:9;37242:17;37238:105;37235:2;;;37346:18;;:::i;:::-;37235:2;37394:1;37391;37387:9;37376:20;;37102:300;;;;:::o;37408:191::-;;37468:20;37486:1;37468:20;:::i;:::-;37463:25;;37502:20;37520:1;37502:20;:::i;:::-;37497:25;;37541:1;37538;37535:8;37532:2;;;37546:18;;:::i;:::-;37532:2;37591:1;37588;37584:9;37576:17;;37453:146;;;;:::o;37605:191::-;;37665:20;37683:1;37665:20;:::i;:::-;37660:25;;37699:20;37717:1;37699:20;:::i;:::-;37694:25;;37738:1;37735;37732:8;37729:2;;;37743:18;;:::i;:::-;37729:2;37788:1;37785;37781:9;37773:17;;37650:146;;;;:::o;37802:96::-;;37868:24;37886:5;37868:24;:::i;:::-;37857:35;;37847:51;;;:::o;37904:90::-;;37981:5;37974:13;37967:21;37956:32;;37946:48;;;:::o;38000:149::-;;38076:66;38069:5;38065:78;38054:89;;38044:105;;;:::o;38155:110::-;;38235:24;38253:5;38235:24;:::i;:::-;38224:35;;38214:51;;;:::o;38271:125::-;;38366:24;38384:5;38366:24;:::i;:::-;38355:35;;38345:51;;;:::o;38402:118::-;;38479:34;38472:5;38468:46;38457:57;;38447:73;;;:::o;38526:126::-;;38603:42;38596:5;38592:54;38581:65;;38571:81;;;:::o;38658:77::-;;38724:5;38713:16;;38703:32;;;:::o;38741:154::-;38825:6;38820:3;38815;38802:30;38887:1;38878:6;38873:3;38869:16;38862:27;38792:103;;;:::o;38901:307::-;38969:1;38979:113;38993:6;38990:1;38987:13;38979:113;;;39078:1;39073:3;39069:11;39063:18;39059:1;39054:3;39050:11;39043:39;39015:2;39012:1;39008:10;39003:15;;38979:113;;;39110:6;39107:1;39104:13;39101:2;;;39190:1;39181:6;39176:3;39172:16;39165:27;39101:2;38950:258;;;;:::o;39214:171::-;;39276:24;39294:5;39276:24;:::i;:::-;39267:33;;39322:4;39315:5;39312:15;39309:2;;;39330:18;;:::i;:::-;39309:2;39377:1;39370:5;39366:13;39359:20;;39257:128;;;:::o;39391:320::-;;39472:1;39466:4;39462:12;39452:22;;39519:1;39513:4;39509:12;39540:18;39530:2;;39596:4;39588:6;39584:17;39574:27;;39530:2;39658;39650:6;39647:14;39627:18;39624:38;39621:2;;;39677:18;;:::i;:::-;39621:2;39442:269;;;;:::o;39717:233::-;;39779:24;39797:5;39779:24;:::i;:::-;39770:33;;39825:66;39818:5;39815:77;39812:2;;;39895:18;;:::i;:::-;39812:2;39942:1;39935:5;39931:13;39924:20;;39760:190;;;:::o;39956:180::-;40004:77;40001:1;39994:88;40101:4;40098:1;40091:15;40125:4;40122:1;40115:15;40142:180;40190:77;40187:1;40180:88;40287:4;40284:1;40277:15;40311:4;40308:1;40301:15;40328:180;40376:77;40373:1;40366:88;40473:4;40470:1;40463:15;40497:4;40494:1;40487:15;40514:180;40562:77;40559:1;40552:88;40659:4;40656:1;40649:15;40683:4;40680:1;40673:15;40700:102;;40792:2;40788:7;40783:2;40776:5;40772:14;40768:28;40758:38;;40748:54;;;:::o;40808:122::-;40881:24;40899:5;40881:24;:::i;:::-;40874:5;40871:35;40861:2;;40920:1;40917;40910:12;40861:2;40851:79;:::o;40936:116::-;41006:21;41021:5;41006:21;:::i;:::-;40999:5;40996:32;40986:2;;41042:1;41039;41032:12;40986:2;40976:76;:::o;41058:120::-;41130:23;41147:5;41130:23;:::i;:::-;41123:5;41120:34;41110:2;;41168:1;41165;41158:12;41110:2;41100:78;:::o;41184:150::-;41271:38;41303:5;41271:38;:::i;:::-;41264:5;41261:49;41251:2;;41324:1;41321;41314:12;41251:2;41241:93;:::o;41340:180::-;41442:53;41489:5;41442:53;:::i;:::-;41435:5;41432:64;41422:2;;41510:1;41507;41500:12;41422:2;41412:108;:::o;41526:122::-;41599:24;41617:5;41599:24;:::i;:::-;41592:5;41589:35;41579:2;;41638:1;41635;41628:12;41579:2;41569:79;:::o
Swarm Source
ipfs://6d3b91c01f6366800aff12752f57e16aba550096320b4e6289508ba9b93093d9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.