ERC-721
Overview
Max Total Supply
264 DB
Holders
79
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DoodleBrains
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-22 */ /** *Submitted for verification at Etherscan.io on 2022-01-06 */ // 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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) 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 DoodleBrains is ERC721, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = ""; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 20; uint256 public maxSupply = 3333; uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether; uint256 public NUM_FREE_MINTS = 1000; bool public isPublicSaleActive = true; // ============ 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( tokenCounter.current() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { if(tokenCounter.current()>NUM_FREE_MINTS){ require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); } _; } constructor( ) ERC721("Doodle Brains", "DB") { } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { //require(numberOfTokens <= MAX_MINTS_PER_TX); //if(tokenCounter.current()>NUM_FREE_MINTS){ // require((PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value); //} for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, nextTokenId()); } } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } function getLastTokenId() external view returns (uint256) { return tokenCounter.current(); } function totalSupply() external view returns (uint256) { return tokenCounter.current(); } // ============ 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 setNumFreeMints(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(ERC721, 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, "/", tokenId.toString(), ".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":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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
608060405260405180602001604052806000815250600990805190602001906200002b9291906200026d565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff021916908315150217905550610d05600b556103e8600c556001600d60006101000a81548160ff021916908315150217905550348015620000d057600080fd5b506040518060400160405280600d81526020017f446f6f646c6520427261696e73000000000000000000000000000000000000008152506040518060400160405280600281526020017f44420000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001559291906200026d565b5080600190805190602001906200016e9291906200026d565b50505062000191620001856200019f60201b60201c565b620001a760201b60201c565b600160078190555062000382565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027b906200031d565b90600052602060002090601f0160209004810192826200029f5760008555620002eb565b82601f10620002ba57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002ea578251825591602001919060010190620002cd565b5b509050620002fa9190620002fe565b5090565b5b8082111562000319576000816000905550600101620002ff565b5090565b600060028204905060018216806200033657607f821691505b602082108114156200034d576200034c62000353565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61401980620003926000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106c0578063e43082f7146106eb578063e985e9c514610714578063f2fde38b14610751576101e3565b8063a22cb46514610606578063b88d4fde1461062f578063c6a91b4214610658578063c87b56dd14610683576101e3565b80638da5cb5b116100d15780638da5cb5b1461056957806395d89b4114610594578063982d669e146105bf578063a0712d68146105ea576101e3565b806370a08231146104bf578063714c5398146104fc578063715018a61461052757806383c4c00d1461053e576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461040757806349df728c1461043057806355f804b3146104595780636352211e14610482576101e3565b806323b872dd1461036057806328cad13d146103895780632a55205a146103b25780633ccfd60b146103f0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630a00ae83146102e157806318160ddd1461030a5780631e84c41314610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b34565b61077a565b60405161021c9190613209565b60405180910390f35b34801561023157600080fd5b5061023a6107f4565b6040516102479190613224565b60405180910390f35b34801561025c57600080fd5b50610265610886565b60405161027291906134e6565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612c31565b610891565b6040516102af9190613179565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612a9a565b610916565b005b3480156102ed57600080fd5b5061030860048036038101906103039190612c31565b610a2e565b005b34801561031657600080fd5b5061031f610ab4565b60405161032c91906134e6565b60405180910390f35b34801561034157600080fd5b5061034a610ac5565b6040516103579190613209565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612984565b610ad8565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612ada565b610b38565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612c8b565b610bd1565b6040516103e79291906131e0565b60405180910390f35b3480156103fc57600080fd5b50610405610c3d565b005b34801561041357600080fd5b5061042e60048036038101906104299190612984565b610d08565b005b34801561043c57600080fd5b5061045760048036038101906104529190612b8e565b610d28565b005b34801561046557600080fd5b50610480600480360381019061047b9190612be8565b610ec3565b005b34801561048e57600080fd5b506104a960048036038101906104a49190612c31565b610f59565b6040516104b69190613179565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612917565b61100b565b6040516104f391906134e6565b60405180910390f35b34801561050857600080fd5b506105116110c3565b60405161051e9190613224565b60405180910390f35b34801561053357600080fd5b5061053c611155565b005b34801561054a57600080fd5b506105536111dd565b60405161056091906134e6565b60405180910390f35b34801561057557600080fd5b5061057e6111ee565b60405161058b9190613179565b60405180910390f35b3480156105a057600080fd5b506105a9611218565b6040516105b69190613224565b60405180910390f35b3480156105cb57600080fd5b506105d46112aa565b6040516105e191906134e6565b60405180910390f35b61060460048036038101906105ff9190612c31565b6112b0565b005b34801561061257600080fd5b5061062d60048036038101906106289190612a5a565b611495565b005b34801561063b57600080fd5b50610656600480360381019061065191906129d7565b6114ab565b005b34801561066457600080fd5b5061066d61150d565b60405161067a91906134e6565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612c31565b611512565b6040516106b79190613224565b60405180910390f35b3480156106cc57600080fd5b506106d561158e565b6040516106e291906134e6565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612ada565b611594565b005b34801561072057600080fd5b5061073b60048036038101906107369190612944565b61162d565b6040516107489190613209565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190612917565b611747565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ed57506107ec8261183f565b5b9050919050565b606060008054610803906137cf565b80601f016020809104026020016040519081016040528092919081815260200182805461082f906137cf565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b662386f26fc1000081565b600061089c82611921565b6108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d2906133e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092182610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098990613446565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b161198d565b73ffffffffffffffffffffffffffffffffffffffff1614806109e057506109df816109da61198d565b61162d565b5b610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690613346565b60405180910390fd5b610a298383611995565b505050565b610a3661198d565b73ffffffffffffffffffffffffffffffffffffffff16610a546111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613406565b60405180910390fd5b80600c8190555050565b6000610ac06008611a4e565b905090565b600d60009054906101000a900460ff1681565b610ae9610ae361198d565b82611a5c565b610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613466565b60405180910390fd5b610b33838383611b3a565b505050565b610b4061198d565b73ffffffffffffffffffffffffffffffffffffffff16610b5e6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90613406565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610bdd84611921565b610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613366565b60405180910390fd5b30610c32610c2b856005611d96565b6064611dac565b915091509250929050565b610c4561198d565b73ffffffffffffffffffffffffffffffffffffffff16610c636111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613406565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d04573d6000803e3d6000fd5b5050565b610d23838383604051806020016040528060008152506114ab565b505050565b610d3061198d565b73ffffffffffffffffffffffffffffffffffffffff16610d4e6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90613406565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ddf9190613179565b60206040518083038186803b158015610df757600080fd5b505afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190612c5e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e6c9291906131e0565b602060405180830381600087803b158015610e8657600080fd5b505af1158015610e9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebe9190612b07565b505050565b610ecb61198d565b73ffffffffffffffffffffffffffffffffffffffff16610ee96111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613406565b60405180910390fd5b8060099080519060200190610f559291906126d7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff9906133a6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613386565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600980546110d2906137cf565b80601f01602080910402602001604051908101604052809291908181526020018280546110fe906137cf565b801561114b5780601f106111205761010080835404028352916020019161114b565b820191906000526020600020905b81548152906001019060200180831161112e57829003601f168201915b5050505050905090565b61115d61198d565b73ffffffffffffffffffffffffffffffffffffffff1661117b6111ee565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890613406565b60405180910390fd5b6111db6000611dc2565b565b60006111e96008611a4e565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611227906137cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611253906137cf565b80156112a05780601f10611275576101008083540402835291602001916112a0565b820191906000526020600020905b81548152906001019060200180831161128357829003601f168201915b5050505050905090565b600c5481565b600260075414156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906134a6565b60405180910390fd5b6002600781905550662386f26fc1000081600c546113146008611a4e565b1115611368573481836113279190613667565b14611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613486565b60405180910390fd5b5b600d60009054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906134c6565b60405180910390fd5b82600b54816113c66008611a4e565b6113d091906135e0565b1115611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906132a6565b60405180910390fd5b836014811115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613326565b60405180910390fd5b60005b85811015611485576114723361146d611e88565b611ea3565b808061147d90613832565b915050611459565b5050505050600160078190555050565b6114a76114a061198d565b8383611ec1565b5050565b6114bc6114b661198d565b83611a5c565b6114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290613466565b60405180910390fd5b6115078484848461202e565b50505050565b601481565b606061151d82611921565b61155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613366565b60405180910390fd5b60096115678361208a565b60405160200161157892919061313f565b6040516020818303038152906040529050919050565b600b5481565b61159c61198d565b73ffffffffffffffffffffffffffffffffffffffff166115ba6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613406565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60149054906101000a900460ff16801561172457508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016116bc9190613179565b60206040518083038186803b1580156116d457600080fd5b505afa1580156116e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170c9190612bbb565b73ffffffffffffffffffffffffffffffffffffffff16145b15611733576001915050611741565b61173d84846121eb565b9150505b92915050565b61174f61198d565b73ffffffffffffffffffffffffffffffffffffffff1661176d6111ee565b73ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613406565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90613266565b60405180910390fd5b61183c81611dc2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061191a57506119198261227f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0883610f59565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a6782611921565b611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613306565b60405180910390fd5b6000611ab183610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2057508373ffffffffffffffffffffffffffffffffffffffff16611b0884610891565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b315750611b30818561162d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5a82610f59565b73ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790613426565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c17906132c6565b60405180910390fd5b611c2b8383836122e9565b611c36600082611995565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8691906136c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cdd91906135e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611da49190613667565b905092915050565b60008183611dba9190613636565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611e9460086122ee565b611e9e6008611a4e565b905090565b611ebd828260405180602001604052806000815250612304565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f27906132e6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120219190613209565b60405180910390a3505050565b612039848484611b3a565b6120458484848461235f565b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613246565b60405180910390fd5b50505050565b606060008214156120d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e6565b600082905060005b600082146121045780806120ed90613832565b915050600a826120fd9190613636565b91506120da565b60008167ffffffffffffffff8111156121205761211f613968565b5b6040519080825280601f01601f1916602001820160405280156121525781602001600182028036833780820191505090505b5090505b600085146121df5760018261216b91906136c1565b9150600a8561217a919061387b565b603061218691906135e0565b60f81b81838151811061219c5761219b613939565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d89190613636565b9450612156565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6001816000016000828254019250508190555050565b61230e83836124f6565b61231b600084848461235f565b61235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190613246565b60405180910390fd5b505050565b60006123808473ffffffffffffffffffffffffffffffffffffffff166126c4565b156124e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a961198d565b8786866040518563ffffffff1660e01b81526004016123cb9493929190613194565b602060405180830381600087803b1580156123e557600080fd5b505af192505050801561241657506040513d601f19601f820116820180604052508101906124139190612b61565b60015b612499573d8060008114612446576040519150601f19603f3d011682016040523d82523d6000602084013e61244b565b606091505b50600081511415612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890613246565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ee565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d906133c6565b60405180910390fd5b61256f81611921565b156125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690613286565b60405180910390fd5b6125bb600083836122e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461260b91906135e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126e3906137cf565b90600052602060002090601f016020900481019282612705576000855561274c565b82601f1061271e57805160ff191683800117855561274c565b8280016001018555821561274c579182015b8281111561274b578251825591602001919060010190612730565b5b509050612759919061275d565b5090565b5b8082111561277657600081600090555060010161275e565b5090565b600061278d61278884613526565b613501565b9050828152602081018484840111156127a9576127a861399c565b5b6127b484828561378d565b509392505050565b60006127cf6127ca84613557565b613501565b9050828152602081018484840111156127eb576127ea61399c565b5b6127f684828561378d565b509392505050565b60008135905061280d81613f59565b92915050565b60008135905061282281613f70565b92915050565b60008151905061283781613f70565b92915050565b60008135905061284c81613f87565b92915050565b60008151905061286181613f87565b92915050565b600082601f83011261287c5761287b613997565b5b813561288c84826020860161277a565b91505092915050565b6000813590506128a481613f9e565b92915050565b6000815190506128b981613fb5565b92915050565b600082601f8301126128d4576128d3613997565b5b81356128e48482602086016127bc565b91505092915050565b6000813590506128fc81613fcc565b92915050565b60008151905061291181613fcc565b92915050565b60006020828403121561292d5761292c6139a6565b5b600061293b848285016127fe565b91505092915050565b6000806040838503121561295b5761295a6139a6565b5b6000612969858286016127fe565b925050602061297a858286016127fe565b9150509250929050565b60008060006060848603121561299d5761299c6139a6565b5b60006129ab868287016127fe565b93505060206129bc868287016127fe565b92505060406129cd868287016128ed565b9150509250925092565b600080600080608085870312156129f1576129f06139a6565b5b60006129ff878288016127fe565b9450506020612a10878288016127fe565b9350506040612a21878288016128ed565b925050606085013567ffffffffffffffff811115612a4257612a416139a1565b5b612a4e87828801612867565b91505092959194509250565b60008060408385031215612a7157612a706139a6565b5b6000612a7f858286016127fe565b9250506020612a9085828601612813565b9150509250929050565b60008060408385031215612ab157612ab06139a6565b5b6000612abf858286016127fe565b9250506020612ad0858286016128ed565b9150509250929050565b600060208284031215612af057612aef6139a6565b5b6000612afe84828501612813565b91505092915050565b600060208284031215612b1d57612b1c6139a6565b5b6000612b2b84828501612828565b91505092915050565b600060208284031215612b4a57612b496139a6565b5b6000612b588482850161283d565b91505092915050565b600060208284031215612b7757612b766139a6565b5b6000612b8584828501612852565b91505092915050565b600060208284031215612ba457612ba36139a6565b5b6000612bb284828501612895565b91505092915050565b600060208284031215612bd157612bd06139a6565b5b6000612bdf848285016128aa565b91505092915050565b600060208284031215612bfe57612bfd6139a6565b5b600082013567ffffffffffffffff811115612c1c57612c1b6139a1565b5b612c28848285016128bf565b91505092915050565b600060208284031215612c4757612c466139a6565b5b6000612c55848285016128ed565b91505092915050565b600060208284031215612c7457612c736139a6565b5b6000612c8284828501612902565b91505092915050565b60008060408385031215612ca257612ca16139a6565b5b6000612cb0858286016128ed565b9250506020612cc1858286016128ed565b9150509250929050565b612cd4816136f5565b82525050565b612ce381613707565b82525050565b6000612cf48261359d565b612cfe81856135b3565b9350612d0e81856020860161379c565b612d17816139ab565b840191505092915050565b6000612d2d826135a8565b612d3781856135c4565b9350612d4781856020860161379c565b612d50816139ab565b840191505092915050565b6000612d66826135a8565b612d7081856135d5565b9350612d8081856020860161379c565b80840191505092915050565b60008154612d99816137cf565b612da381866135d5565b94506001821660008114612dbe5760018114612dcf57612e02565b60ff19831686528186019350612e02565b612dd885613588565b60005b83811015612dfa57815481890152600182019150602081019050612ddb565b838801955050505b50505092915050565b6000612e186032836135c4565b9150612e23826139bc565b604082019050919050565b6000612e3b6026836135c4565b9150612e4682613a0b565b604082019050919050565b6000612e5e601c836135c4565b9150612e6982613a5a565b602082019050919050565b6000612e816022836135c4565b9150612e8c82613a83565b604082019050919050565b6000612ea46024836135c4565b9150612eaf82613ad2565b604082019050919050565b6000612ec76019836135c4565b9150612ed282613b21565b602082019050919050565b6000612eea602c836135c4565b9150612ef582613b4a565b604082019050919050565b6000612f0d6022836135c4565b9150612f1882613b99565b604082019050919050565b6000612f306038836135c4565b9150612f3b82613be8565b604082019050919050565b6000612f536011836135c4565b9150612f5e82613c37565b602082019050919050565b6000612f76602a836135c4565b9150612f8182613c60565b604082019050919050565b6000612f996029836135c4565b9150612fa482613caf565b604082019050919050565b6000612fbc6020836135c4565b9150612fc782613cfe565b602082019050919050565b6000612fdf602c836135c4565b9150612fea82613d27565b604082019050919050565b60006130026005836135d5565b915061300d82613d76565b600582019050919050565b60006130256020836135c4565b915061303082613d9f565b602082019050919050565b60006130486029836135c4565b915061305382613dc8565b604082019050919050565b600061306b6021836135c4565b915061307682613e17565b604082019050919050565b600061308e6031836135c4565b915061309982613e66565b604082019050919050565b60006130b16018836135c4565b91506130bc82613eb5565b602082019050919050565b60006130d4601f836135c4565b91506130df82613ede565b602082019050919050565b60006130f76017836135c4565b915061310282613f07565b602082019050919050565b600061311a6001836135d5565b915061312582613f30565b600182019050919050565b61313981613783565b82525050565b600061314b8285612d8c565b91506131568261310d565b91506131628284612d5b565b915061316d82612ff5565b91508190509392505050565b600060208201905061318e6000830184612ccb565b92915050565b60006080820190506131a96000830187612ccb565b6131b66020830186612ccb565b6131c36040830185613130565b81810360608301526131d58184612ce9565b905095945050505050565b60006040820190506131f56000830185612ccb565b6132026020830184613130565b9392505050565b600060208201905061321e6000830184612cda565b92915050565b6000602082019050818103600083015261323e8184612d22565b905092915050565b6000602082019050818103600083015261325f81612e0b565b9050919050565b6000602082019050818103600083015261327f81612e2e565b9050919050565b6000602082019050818103600083015261329f81612e51565b9050919050565b600060208201905081810360008301526132bf81612e74565b9050919050565b600060208201905081810360008301526132df81612e97565b9050919050565b600060208201905081810360008301526132ff81612eba565b9050919050565b6000602082019050818103600083015261331f81612edd565b9050919050565b6000602082019050818103600083015261333f81612f00565b9050919050565b6000602082019050818103600083015261335f81612f23565b9050919050565b6000602082019050818103600083015261337f81612f46565b9050919050565b6000602082019050818103600083015261339f81612f69565b9050919050565b600060208201905081810360008301526133bf81612f8c565b9050919050565b600060208201905081810360008301526133df81612faf565b9050919050565b600060208201905081810360008301526133ff81612fd2565b9050919050565b6000602082019050818103600083015261341f81613018565b9050919050565b6000602082019050818103600083015261343f8161303b565b9050919050565b6000602082019050818103600083015261345f8161305e565b9050919050565b6000602082019050818103600083015261347f81613081565b9050919050565b6000602082019050818103600083015261349f816130a4565b9050919050565b600060208201905081810360008301526134bf816130c7565b9050919050565b600060208201905081810360008301526134df816130ea565b9050919050565b60006020820190506134fb6000830184613130565b92915050565b600061350b61351c565b90506135178282613801565b919050565b6000604051905090565b600067ffffffffffffffff82111561354157613540613968565b5b61354a826139ab565b9050602081019050919050565b600067ffffffffffffffff82111561357257613571613968565b5b61357b826139ab565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135eb82613783565b91506135f683613783565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362b5761362a6138ac565b5b828201905092915050565b600061364182613783565b915061364c83613783565b92508261365c5761365b6138db565b5b828204905092915050565b600061367282613783565b915061367d83613783565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b6576136b56138ac565b5b828202905092915050565b60006136cc82613783565b91506136d783613783565b9250828210156136ea576136e96138ac565b5b828203905092915050565b600061370082613763565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061374a826136f5565b9050919050565b600061375c826136f5565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ba57808201518184015260208101905061379f565b838111156137c9576000848401525b50505050565b600060028204905060018216806137e757607f821691505b602082108114156137fb576137fa61390a565b5b50919050565b61380a826139ab565b810181811067ffffffffffffffff8211171561382957613828613968565b5b80604052505050565b600061383d82613783565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138705761386f6138ac565b5b600182019050919050565b600061388682613783565b915061389183613783565b9250826138a1576138a06138db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613f62816136f5565b8114613f6d57600080fd5b50565b613f7981613707565b8114613f8457600080fd5b50565b613f9081613713565b8114613f9b57600080fd5b50565b613fa78161373f565b8114613fb257600080fd5b50565b613fbe81613751565b8114613fc957600080fd5b50565b613fd581613783565b8114613fe057600080fd5b5056fea2646970667358221220168104a6e12d1046127fec36a0e6db4a1c4964a2dbe7fa0d618365d2b7186c6964736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106c0578063e43082f7146106eb578063e985e9c514610714578063f2fde38b14610751576101e3565b8063a22cb46514610606578063b88d4fde1461062f578063c6a91b4214610658578063c87b56dd14610683576101e3565b80638da5cb5b116100d15780638da5cb5b1461056957806395d89b4114610594578063982d669e146105bf578063a0712d68146105ea576101e3565b806370a08231146104bf578063714c5398146104fc578063715018a61461052757806383c4c00d1461053e576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461040757806349df728c1461043057806355f804b3146104595780636352211e14610482576101e3565b806323b872dd1461036057806328cad13d146103895780632a55205a146103b25780633ccfd60b146103f0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630a00ae83146102e157806318160ddd1461030a5780631e84c41314610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b34565b61077a565b60405161021c9190613209565b60405180910390f35b34801561023157600080fd5b5061023a6107f4565b6040516102479190613224565b60405180910390f35b34801561025c57600080fd5b50610265610886565b60405161027291906134e6565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612c31565b610891565b6040516102af9190613179565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612a9a565b610916565b005b3480156102ed57600080fd5b5061030860048036038101906103039190612c31565b610a2e565b005b34801561031657600080fd5b5061031f610ab4565b60405161032c91906134e6565b60405180910390f35b34801561034157600080fd5b5061034a610ac5565b6040516103579190613209565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612984565b610ad8565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612ada565b610b38565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612c8b565b610bd1565b6040516103e79291906131e0565b60405180910390f35b3480156103fc57600080fd5b50610405610c3d565b005b34801561041357600080fd5b5061042e60048036038101906104299190612984565b610d08565b005b34801561043c57600080fd5b5061045760048036038101906104529190612b8e565b610d28565b005b34801561046557600080fd5b50610480600480360381019061047b9190612be8565b610ec3565b005b34801561048e57600080fd5b506104a960048036038101906104a49190612c31565b610f59565b6040516104b69190613179565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612917565b61100b565b6040516104f391906134e6565b60405180910390f35b34801561050857600080fd5b506105116110c3565b60405161051e9190613224565b60405180910390f35b34801561053357600080fd5b5061053c611155565b005b34801561054a57600080fd5b506105536111dd565b60405161056091906134e6565b60405180910390f35b34801561057557600080fd5b5061057e6111ee565b60405161058b9190613179565b60405180910390f35b3480156105a057600080fd5b506105a9611218565b6040516105b69190613224565b60405180910390f35b3480156105cb57600080fd5b506105d46112aa565b6040516105e191906134e6565b60405180910390f35b61060460048036038101906105ff9190612c31565b6112b0565b005b34801561061257600080fd5b5061062d60048036038101906106289190612a5a565b611495565b005b34801561063b57600080fd5b50610656600480360381019061065191906129d7565b6114ab565b005b34801561066457600080fd5b5061066d61150d565b60405161067a91906134e6565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612c31565b611512565b6040516106b79190613224565b60405180910390f35b3480156106cc57600080fd5b506106d561158e565b6040516106e291906134e6565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612ada565b611594565b005b34801561072057600080fd5b5061073b60048036038101906107369190612944565b61162d565b6040516107489190613209565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190612917565b611747565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ed57506107ec8261183f565b5b9050919050565b606060008054610803906137cf565b80601f016020809104026020016040519081016040528092919081815260200182805461082f906137cf565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b662386f26fc1000081565b600061089c82611921565b6108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d2906133e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092182610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098990613446565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b161198d565b73ffffffffffffffffffffffffffffffffffffffff1614806109e057506109df816109da61198d565b61162d565b5b610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690613346565b60405180910390fd5b610a298383611995565b505050565b610a3661198d565b73ffffffffffffffffffffffffffffffffffffffff16610a546111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613406565b60405180910390fd5b80600c8190555050565b6000610ac06008611a4e565b905090565b600d60009054906101000a900460ff1681565b610ae9610ae361198d565b82611a5c565b610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613466565b60405180910390fd5b610b33838383611b3a565b505050565b610b4061198d565b73ffffffffffffffffffffffffffffffffffffffff16610b5e6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90613406565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610bdd84611921565b610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613366565b60405180910390fd5b30610c32610c2b856005611d96565b6064611dac565b915091509250929050565b610c4561198d565b73ffffffffffffffffffffffffffffffffffffffff16610c636111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613406565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d04573d6000803e3d6000fd5b5050565b610d23838383604051806020016040528060008152506114ab565b505050565b610d3061198d565b73ffffffffffffffffffffffffffffffffffffffff16610d4e6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90613406565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ddf9190613179565b60206040518083038186803b158015610df757600080fd5b505afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f9190612c5e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e6c9291906131e0565b602060405180830381600087803b158015610e8657600080fd5b505af1158015610e9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebe9190612b07565b505050565b610ecb61198d565b73ffffffffffffffffffffffffffffffffffffffff16610ee96111ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613406565b60405180910390fd5b8060099080519060200190610f559291906126d7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff9906133a6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613386565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600980546110d2906137cf565b80601f01602080910402602001604051908101604052809291908181526020018280546110fe906137cf565b801561114b5780601f106111205761010080835404028352916020019161114b565b820191906000526020600020905b81548152906001019060200180831161112e57829003601f168201915b5050505050905090565b61115d61198d565b73ffffffffffffffffffffffffffffffffffffffff1661117b6111ee565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890613406565b60405180910390fd5b6111db6000611dc2565b565b60006111e96008611a4e565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611227906137cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611253906137cf565b80156112a05780601f10611275576101008083540402835291602001916112a0565b820191906000526020600020905b81548152906001019060200180831161128357829003601f168201915b5050505050905090565b600c5481565b600260075414156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906134a6565b60405180910390fd5b6002600781905550662386f26fc1000081600c546113146008611a4e565b1115611368573481836113279190613667565b14611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613486565b60405180910390fd5b5b600d60009054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906134c6565b60405180910390fd5b82600b54816113c66008611a4e565b6113d091906135e0565b1115611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906132a6565b60405180910390fd5b836014811115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613326565b60405180910390fd5b60005b85811015611485576114723361146d611e88565b611ea3565b808061147d90613832565b915050611459565b5050505050600160078190555050565b6114a76114a061198d565b8383611ec1565b5050565b6114bc6114b661198d565b83611a5c565b6114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290613466565b60405180910390fd5b6115078484848461202e565b50505050565b601481565b606061151d82611921565b61155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613366565b60405180910390fd5b60096115678361208a565b60405160200161157892919061313f565b6040516020818303038152906040529050919050565b600b5481565b61159c61198d565b73ffffffffffffffffffffffffffffffffffffffff166115ba6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613406565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60149054906101000a900460ff16801561172457508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016116bc9190613179565b60206040518083038186803b1580156116d457600080fd5b505afa1580156116e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170c9190612bbb565b73ffffffffffffffffffffffffffffffffffffffff16145b15611733576001915050611741565b61173d84846121eb565b9150505b92915050565b61174f61198d565b73ffffffffffffffffffffffffffffffffffffffff1661176d6111ee565b73ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613406565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90613266565b60405180910390fd5b61183c81611dc2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061191a57506119198261227f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0883610f59565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a6782611921565b611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613306565b60405180910390fd5b6000611ab183610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2057508373ffffffffffffffffffffffffffffffffffffffff16611b0884610891565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b315750611b30818561162d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5a82610f59565b73ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790613426565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c17906132c6565b60405180910390fd5b611c2b8383836122e9565b611c36600082611995565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8691906136c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cdd91906135e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611da49190613667565b905092915050565b60008183611dba9190613636565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611e9460086122ee565b611e9e6008611a4e565b905090565b611ebd828260405180602001604052806000815250612304565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f27906132e6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120219190613209565b60405180910390a3505050565b612039848484611b3a565b6120458484848461235f565b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613246565b60405180910390fd5b50505050565b606060008214156120d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e6565b600082905060005b600082146121045780806120ed90613832565b915050600a826120fd9190613636565b91506120da565b60008167ffffffffffffffff8111156121205761211f613968565b5b6040519080825280601f01601f1916602001820160405280156121525781602001600182028036833780820191505090505b5090505b600085146121df5760018261216b91906136c1565b9150600a8561217a919061387b565b603061218691906135e0565b60f81b81838151811061219c5761219b613939565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d89190613636565b9450612156565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6001816000016000828254019250508190555050565b61230e83836124f6565b61231b600084848461235f565b61235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190613246565b60405180910390fd5b505050565b60006123808473ffffffffffffffffffffffffffffffffffffffff166126c4565b156124e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a961198d565b8786866040518563ffffffff1660e01b81526004016123cb9493929190613194565b602060405180830381600087803b1580156123e557600080fd5b505af192505050801561241657506040513d601f19601f820116820180604052508101906124139190612b61565b60015b612499573d8060008114612446576040519150601f19603f3d011682016040523d82523d6000602084013e61244b565b606091505b50600081511415612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890613246565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ee565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d906133c6565b60405180910390fd5b61256f81611921565b156125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690613286565b60405180910390fd5b6125bb600083836122e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461260b91906135e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126e3906137cf565b90600052602060002090601f016020900481019282612705576000855561274c565b82601f1061271e57805160ff191683800117855561274c565b8280016001018555821561274c579182015b8281111561274b578251825591602001919060010190612730565b5b509050612759919061275d565b5090565b5b8082111561277657600081600090555060010161275e565b5090565b600061278d61278884613526565b613501565b9050828152602081018484840111156127a9576127a861399c565b5b6127b484828561378d565b509392505050565b60006127cf6127ca84613557565b613501565b9050828152602081018484840111156127eb576127ea61399c565b5b6127f684828561378d565b509392505050565b60008135905061280d81613f59565b92915050565b60008135905061282281613f70565b92915050565b60008151905061283781613f70565b92915050565b60008135905061284c81613f87565b92915050565b60008151905061286181613f87565b92915050565b600082601f83011261287c5761287b613997565b5b813561288c84826020860161277a565b91505092915050565b6000813590506128a481613f9e565b92915050565b6000815190506128b981613fb5565b92915050565b600082601f8301126128d4576128d3613997565b5b81356128e48482602086016127bc565b91505092915050565b6000813590506128fc81613fcc565b92915050565b60008151905061291181613fcc565b92915050565b60006020828403121561292d5761292c6139a6565b5b600061293b848285016127fe565b91505092915050565b6000806040838503121561295b5761295a6139a6565b5b6000612969858286016127fe565b925050602061297a858286016127fe565b9150509250929050565b60008060006060848603121561299d5761299c6139a6565b5b60006129ab868287016127fe565b93505060206129bc868287016127fe565b92505060406129cd868287016128ed565b9150509250925092565b600080600080608085870312156129f1576129f06139a6565b5b60006129ff878288016127fe565b9450506020612a10878288016127fe565b9350506040612a21878288016128ed565b925050606085013567ffffffffffffffff811115612a4257612a416139a1565b5b612a4e87828801612867565b91505092959194509250565b60008060408385031215612a7157612a706139a6565b5b6000612a7f858286016127fe565b9250506020612a9085828601612813565b9150509250929050565b60008060408385031215612ab157612ab06139a6565b5b6000612abf858286016127fe565b9250506020612ad0858286016128ed565b9150509250929050565b600060208284031215612af057612aef6139a6565b5b6000612afe84828501612813565b91505092915050565b600060208284031215612b1d57612b1c6139a6565b5b6000612b2b84828501612828565b91505092915050565b600060208284031215612b4a57612b496139a6565b5b6000612b588482850161283d565b91505092915050565b600060208284031215612b7757612b766139a6565b5b6000612b8584828501612852565b91505092915050565b600060208284031215612ba457612ba36139a6565b5b6000612bb284828501612895565b91505092915050565b600060208284031215612bd157612bd06139a6565b5b6000612bdf848285016128aa565b91505092915050565b600060208284031215612bfe57612bfd6139a6565b5b600082013567ffffffffffffffff811115612c1c57612c1b6139a1565b5b612c28848285016128bf565b91505092915050565b600060208284031215612c4757612c466139a6565b5b6000612c55848285016128ed565b91505092915050565b600060208284031215612c7457612c736139a6565b5b6000612c8284828501612902565b91505092915050565b60008060408385031215612ca257612ca16139a6565b5b6000612cb0858286016128ed565b9250506020612cc1858286016128ed565b9150509250929050565b612cd4816136f5565b82525050565b612ce381613707565b82525050565b6000612cf48261359d565b612cfe81856135b3565b9350612d0e81856020860161379c565b612d17816139ab565b840191505092915050565b6000612d2d826135a8565b612d3781856135c4565b9350612d4781856020860161379c565b612d50816139ab565b840191505092915050565b6000612d66826135a8565b612d7081856135d5565b9350612d8081856020860161379c565b80840191505092915050565b60008154612d99816137cf565b612da381866135d5565b94506001821660008114612dbe5760018114612dcf57612e02565b60ff19831686528186019350612e02565b612dd885613588565b60005b83811015612dfa57815481890152600182019150602081019050612ddb565b838801955050505b50505092915050565b6000612e186032836135c4565b9150612e23826139bc565b604082019050919050565b6000612e3b6026836135c4565b9150612e4682613a0b565b604082019050919050565b6000612e5e601c836135c4565b9150612e6982613a5a565b602082019050919050565b6000612e816022836135c4565b9150612e8c82613a83565b604082019050919050565b6000612ea46024836135c4565b9150612eaf82613ad2565b604082019050919050565b6000612ec76019836135c4565b9150612ed282613b21565b602082019050919050565b6000612eea602c836135c4565b9150612ef582613b4a565b604082019050919050565b6000612f0d6022836135c4565b9150612f1882613b99565b604082019050919050565b6000612f306038836135c4565b9150612f3b82613be8565b604082019050919050565b6000612f536011836135c4565b9150612f5e82613c37565b602082019050919050565b6000612f76602a836135c4565b9150612f8182613c60565b604082019050919050565b6000612f996029836135c4565b9150612fa482613caf565b604082019050919050565b6000612fbc6020836135c4565b9150612fc782613cfe565b602082019050919050565b6000612fdf602c836135c4565b9150612fea82613d27565b604082019050919050565b60006130026005836135d5565b915061300d82613d76565b600582019050919050565b60006130256020836135c4565b915061303082613d9f565b602082019050919050565b60006130486029836135c4565b915061305382613dc8565b604082019050919050565b600061306b6021836135c4565b915061307682613e17565b604082019050919050565b600061308e6031836135c4565b915061309982613e66565b604082019050919050565b60006130b16018836135c4565b91506130bc82613eb5565b602082019050919050565b60006130d4601f836135c4565b91506130df82613ede565b602082019050919050565b60006130f76017836135c4565b915061310282613f07565b602082019050919050565b600061311a6001836135d5565b915061312582613f30565b600182019050919050565b61313981613783565b82525050565b600061314b8285612d8c565b91506131568261310d565b91506131628284612d5b565b915061316d82612ff5565b91508190509392505050565b600060208201905061318e6000830184612ccb565b92915050565b60006080820190506131a96000830187612ccb565b6131b66020830186612ccb565b6131c36040830185613130565b81810360608301526131d58184612ce9565b905095945050505050565b60006040820190506131f56000830185612ccb565b6132026020830184613130565b9392505050565b600060208201905061321e6000830184612cda565b92915050565b6000602082019050818103600083015261323e8184612d22565b905092915050565b6000602082019050818103600083015261325f81612e0b565b9050919050565b6000602082019050818103600083015261327f81612e2e565b9050919050565b6000602082019050818103600083015261329f81612e51565b9050919050565b600060208201905081810360008301526132bf81612e74565b9050919050565b600060208201905081810360008301526132df81612e97565b9050919050565b600060208201905081810360008301526132ff81612eba565b9050919050565b6000602082019050818103600083015261331f81612edd565b9050919050565b6000602082019050818103600083015261333f81612f00565b9050919050565b6000602082019050818103600083015261335f81612f23565b9050919050565b6000602082019050818103600083015261337f81612f46565b9050919050565b6000602082019050818103600083015261339f81612f69565b9050919050565b600060208201905081810360008301526133bf81612f8c565b9050919050565b600060208201905081810360008301526133df81612faf565b9050919050565b600060208201905081810360008301526133ff81612fd2565b9050919050565b6000602082019050818103600083015261341f81613018565b9050919050565b6000602082019050818103600083015261343f8161303b565b9050919050565b6000602082019050818103600083015261345f8161305e565b9050919050565b6000602082019050818103600083015261347f81613081565b9050919050565b6000602082019050818103600083015261349f816130a4565b9050919050565b600060208201905081810360008301526134bf816130c7565b9050919050565b600060208201905081810360008301526134df816130ea565b9050919050565b60006020820190506134fb6000830184613130565b92915050565b600061350b61351c565b90506135178282613801565b919050565b6000604051905090565b600067ffffffffffffffff82111561354157613540613968565b5b61354a826139ab565b9050602081019050919050565b600067ffffffffffffffff82111561357257613571613968565b5b61357b826139ab565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135eb82613783565b91506135f683613783565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362b5761362a6138ac565b5b828201905092915050565b600061364182613783565b915061364c83613783565b92508261365c5761365b6138db565b5b828204905092915050565b600061367282613783565b915061367d83613783565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b6576136b56138ac565b5b828202905092915050565b60006136cc82613783565b91506136d783613783565b9250828210156136ea576136e96138ac565b5b828203905092915050565b600061370082613763565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061374a826136f5565b9050919050565b600061375c826136f5565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ba57808201518184015260208101905061379f565b838111156137c9576000848401525b50505050565b600060028204905060018216806137e757607f821691505b602082108114156137fb576137fa61390a565b5b50919050565b61380a826139ab565b810181811067ffffffffffffffff8211171561382957613828613968565b5b80604052505050565b600061383d82613783565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138705761386f6138ac565b5b600182019050919050565b600061388682613783565b915061389183613783565b9250826138a1576138a06138db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613f62816136f5565b8114613f6d57600080fd5b50565b613f7981613707565b8114613f8457600080fd5b50565b613f9081613713565b8114613f9b57600080fd5b50565b613fa78161373f565b8114613fb257600080fd5b50565b613fbe81613751565b8114613fc957600080fd5b50565b613fd581613783565b8114613fe057600080fd5b5056fea2646970667358221220168104a6e12d1046127fec36a0e6db4a1c4964a2dbe7fa0d618365d2b7186c6964736f6c63430008070033
Deployed Bytecode Sourcemap
51722:5841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55757:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40022:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52189:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41581:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41104:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55025:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54287:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52293:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42331:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54859:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57242:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;55174:143;;;;;;;;;;;;;:::i;:::-;;42741:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55325:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54461:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39716:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39446:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54072:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:103;;;;;;;;;;;;;:::i;:::-;;54173:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40191:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52250:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53408:587;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41874:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42997:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52097:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56873:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52149:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54685:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56185:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55757:291;55904:4;55961:26;55946:41;;;:11;:41;;;;:94;;;;56004:36;56028:11;56004:23;:36::i;:::-;55946:94;55926:114;;55757:291;;;:::o;40022:100::-;40076:13;40109:5;40102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40022:100;:::o;52189:54::-;52233:10;52189:54;:::o;41581:221::-;41657:7;41685:16;41693:7;41685;:16::i;:::-;41677:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41770:15;:24;41786:7;41770:24;;;;;;;;;;;;;;;;;;;;;41763:31;;41581:221;;;:::o;41104:411::-;41185:13;41201:23;41216:7;41201:14;:23::i;:::-;41185:39;;41249:5;41243:11;;:2;:11;;;;41235:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41343:5;41327:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41352:37;41369:5;41376:12;:10;:12::i;:::-;41352:16;:37::i;:::-;41327:62;41305:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;41486:21;41495:2;41499:7;41486:8;:21::i;:::-;41174:341;41104:411;;:::o;55025:139::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55143:13:::1;55126:14;:30;;;;55025:139:::0;:::o;54287:103::-;54333:7;54360:22;:12;:20;:22::i;:::-;54353:29;;54287:103;:::o;52293:37::-;;;;;;;;;;;;;:::o;42331:339::-;42526:41;42545:12;:10;:12::i;:::-;42559:7;42526:18;:41::i;:::-;42518:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;42634:28;42644:4;42650:2;42654:7;42634:9;:28::i;:::-;42331:339;;;:::o;54859:158::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54990:19:::1;54969:18;;:40;;;;;;;;;;;;;;;;;;54859:158:::0;:::o;57242:318::-;57367:16;57385:21;57432:16;57440:7;57432;:16::i;:::-;57424:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57499:4;57506:45;57519:26;57532:9;57543:1;57519:12;:26::i;:::-;57547:3;57506:12;:45::i;:::-;57483:69;;;;57242:318;;;;;:::o;55174:143::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55222:15:::1;55240:21;55222:39;;55280:10;55272:28;;:37;55301:7;55272:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55211:106;55174:143::o:0;42741:185::-;42879:39;42896:4;42902:2;42906:7;42879:39;;;;;;;;;;;;:16;:39::i;:::-;42741:185;;;:::o;55325:168::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55391:15:::1;55409:5;:15;;;55433:4;55409:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55391:48;;55450:5;:14;;;55465:10;55477:7;55450:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55380:113;55325:168:::0;:::o;54461:100::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54545:8:::1;54535:7;:18;;;;;;;;;;;;:::i;:::-;;54461:100:::0;:::o;39716:239::-;39788:7;39808:13;39824:7;:16;39832:7;39824:16;;;;;;;;;;;;;;;;;;;;;39808:32;;39876:1;39859:19;;:5;:19;;;;39851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39942:5;39935:12;;;39716:239;;;:::o;39446:208::-;39518:7;39563:1;39546:19;;:5;:19;;;;39538:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39630:9;:16;39640:5;39630:16;;;;;;;;;;;;;;;;39623:23;;39446:208;;;:::o;54072:93::-;54117:13;54150:7;54143:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54072: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;54173:106::-;54222:7;54249:22;:12;:20;:22::i;:::-;54242:29;;54173:106;:::o;18446:87::-;18492:7;18519:6;;;;;;;;;;;18512:13;;18446:87;:::o;40191:104::-;40247:13;40280:7;40273:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40191:104;:::o;52250:36::-;;;;:::o;53408:587::-;10375:1;10973:7;;:19;;10965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:1;11106:7;:18;;;;52233:10:::1;53548:14;53085;;53062:22;:12;:20;:22::i;:::-;:37;53059:175;;;53161:9;53142:14;53134:5;:22;;;;:::i;:::-;53133:37;53111:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53059:175;52460:18:::2;;;;;;;;;;;52452:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;53611:14:::3;52880:9;;52845:14;52820:22;:12;:20;:22::i;:::-;:39;;;;:::i;:::-;:69;;52798:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;53650:14:::4;52140:2;52618:14;:34;;52596:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;53885:9:::5;53880:108;53904:14;53900:1;:18;53880:108;;;53940:36;53950:10;53962:13;:11;:13::i;:::-;53940:9;:36::i;:::-;53920:3;;;;;:::i;:::-;;;;53880:108;;;;52962:1:::4;52517::::3;11137::::1;;10331::::0;11285:7;:22;;;;53408:587;:::o;41874:155::-;41969:52;41988:12;:10;:12::i;:::-;42002:8;42012;41969:18;:52::i;:::-;41874:155;;:::o;42997:328::-;43172:41;43191:12;:10;:12::i;:::-;43205:7;43172:18;:41::i;:::-;43164:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43278:39;43292:4;43298:2;43302:7;43311:5;43278:13;:39::i;:::-;42997:328;;;;:::o;52097:45::-;52140:2;52097:45;:::o;56873:303::-;56991:13;57030:16;57038:7;57030;:16::i;:::-;57022:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57125:7;57139:18;:7;:16;:18::i;:::-;57108:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57081:87;;56873:303;;;:::o;52149:31::-;;;;:::o;54685:166::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54822:21:::1;54799:20;;:44;;;;;;;;;;;;;;;;;;54685:166:::0;:::o;56185:617::-;56310:4;56475:27;56533;;;;;;;;;;;56475:96;;56600:20;;;;;;;;;;;:86;;;;;56678:8;56637:49;;56645:13;:21;;;56667:5;56645:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56637:49;;;56600:86;56582:154;;;56720:4;56713:11;;;;;56582:154;56755:39;56778:5;56785:8;56755:22;:39::i;:::-;56748:46;;;56185:617;;;;;:::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;39077:305::-;39179:4;39231:25;39216:40;;;:11;:40;;;;:105;;;;39288:33;39273:48;;;:11;:48;;;;39216:105;:158;;;;39338:36;39362:11;39338:23;:36::i;:::-;39216:158;39196:178;;39077:305;;;:::o;44835:127::-;44900:4;44952:1;44924:30;;:7;:16;44932:7;44924:16;;;;;;;;;;;;;;;;;;;;;:30;;;;44917:37;;44835:127;;;:::o;17170:98::-;17223:7;17250:10;17243:17;;17170:98;:::o;48817:174::-;48919:2;48892:15;:24;48908:7;48892:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48975:7;48971:2;48937:46;;48946:23;48961:7;48946:14;:23::i;:::-;48937:46;;;;;;;;;;;;48817:174;;:::o;7970:114::-;8035:7;8062;:14;;;8055:21;;7970:114;;;:::o;45129:348::-;45222:4;45247:16;45255:7;45247;:16::i;:::-;45239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45323:13;45339:23;45354:7;45339:14;:23::i;:::-;45323:39;;45392:5;45381:16;;:7;:16;;;:51;;;;45425:7;45401:31;;:20;45413:7;45401:11;:20::i;:::-;:31;;;45381:51;:87;;;;45436:32;45453:5;45460:7;45436:16;:32::i;:::-;45381:87;45373:96;;;45129:348;;;;:::o;48121:578::-;48280:4;48253:31;;:23;48268:7;48253:14;:23::i;:::-;:31;;;48245:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48363:1;48349:16;;:2;:16;;;;48341:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48419:39;48440:4;48446:2;48450:7;48419:20;:39::i;:::-;48523:29;48540:1;48544:7;48523:8;:29::i;:::-;48584:1;48565:9;:15;48575:4;48565:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;48613:1;48596:9;:13;48606:2;48596:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48644:2;48625:7;:16;48633:7;48625:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48683:7;48679:2;48664:27;;48673:4;48664:27;;;;;;;;;;;;48121:578;;;:::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;19716:191::-;19790:16;19809:6;;;;;;;;;;;19790:25;;19835:8;19826:6;;:17;;;;;;;;;;;;;;;;;;19890:8;19859:40;;19880:8;19859:40;;;;;;;;;;;;19779:128;19716:191;:::o;55562:132::-;55602:7;55622:24;:12;:22;:24::i;:::-;55664:22;:12;:20;:22::i;:::-;55657:29;;55562:132;:::o;45819:110::-;45895:26;45905:2;45909:7;45895:26;;;;;;;;;;;;:9;:26::i;:::-;45819:110;;:::o;49133:315::-;49288:8;49279:17;;:5;:17;;;;49271:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49375:8;49337:18;:25;49356:5;49337:25;;;;;;;;;;;;;;;:35;49363:8;49337:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49421:8;49399:41;;49414:5;49399:41;;;49431:8;49399:41;;;;;;:::i;:::-;;;;;;;;49133:315;;;:::o;44207:::-;44364:28;44374:4;44380:2;44384:7;44364:9;:28::i;:::-;44411:48;44434:4;44440:2;44444:7;44453:5;44411:22;:48::i;:::-;44403:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;44207:315;;;;:::o;14732:723::-;14788:13;15018:1;15009:5;:10;15005:53;;;15036:10;;;;;;;;;;;;;;;;;;;;;15005:53;15068:12;15083:5;15068:20;;15099:14;15124:78;15139:1;15131:4;:9;15124:78;;15157:8;;;;;:::i;:::-;;;;15188:2;15180:10;;;;;:::i;:::-;;;15124:78;;;15212:19;15244:6;15234:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212:39;;15262:154;15278:1;15269:5;:10;15262:154;;15306:1;15296:11;;;;;:::i;:::-;;;15373:2;15365:5;:10;;;;:::i;:::-;15352:2;:24;;;;:::i;:::-;15339:39;;15322:6;15329;15322:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15402:2;15393:11;;;;;:::i;:::-;;;15262:154;;;15440:6;15426:21;;;;;14732:723;;;;:::o;42100:164::-;42197:4;42221:18;:25;42240:5;42221:25;;;;;;;;;;;;;;;:35;42247:8;42221:35;;;;;;;;;;;;;;;;;;;;;;;;;42214:42;;42100:164;;;;:::o;31846:157::-;31931:4;31970:25;31955:40;;;:11;:40;;;;31948:47;;31846:157;;;:::o;51384:126::-;;;;:::o;8092:127::-;8199:1;8181:7;:14;;;:19;;;;;;;;;;;8092:127;:::o;46156:321::-;46286:18;46292:2;46296:7;46286:5;:18::i;:::-;46337:54;46368:1;46372:2;46376:7;46385:5;46337:22;:54::i;:::-;46315:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;46156:321;;;:::o;50013:799::-;50168:4;50189:15;:2;:13;;;:15::i;:::-;50185:620;;;50241:2;50225:36;;;50262:12;:10;:12::i;:::-;50276:4;50282:7;50291:5;50225:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50221:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50484:1;50467:6;:13;:18;50463:272;;;50510:60;;;;;;;;;;:::i;:::-;;;;;;;;50463:272;50685:6;50679:13;50670:6;50666:2;50662:15;50655:38;50221:529;50358:41;;;50348:51;;;:6;:51;;;;50341:58;;;;;50185:620;50789:4;50782:11;;50013:799;;;;;;;:::o;46813:382::-;46907:1;46893:16;;:2;:16;;;;46885:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46966:16;46974:7;46966;:16::i;:::-;46965:17;46957:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47028:45;47057:1;47061:2;47065:7;47028:20;:45::i;:::-;47103:1;47086:9;:13;47096:2;47086:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;47134:2;47115:7;:16;47123:7;47115:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47179:7;47175:2;47154:33;;47171:1;47154:33;;;;;;;;;;;;46813:382;;:::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;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11100:377::-;11206:3;11234:39;11267:5;11234:39;:::i;:::-;11289:89;11371:6;11366:3;11289:89;:::i;:::-;11282:96;;11387:52;11432:6;11427:3;11420:4;11413:5;11409:16;11387:52;:::i;:::-;11464:6;11459:3;11455:16;11448:23;;11210:267;11100:377;;;;:::o;11507:845::-;11610:3;11647:5;11641:12;11676:36;11702:9;11676:36;:::i;:::-;11728:89;11810:6;11805:3;11728:89;:::i;:::-;11721:96;;11848:1;11837:9;11833:17;11864:1;11859:137;;;;12010:1;12005:341;;;;11826:520;;11859:137;11943:4;11939:9;11928;11924:25;11919:3;11912:38;11979:6;11974:3;11970:16;11963:23;;11859:137;;12005:341;12072:38;12104:5;12072:38;:::i;:::-;12132:1;12146:154;12160:6;12157:1;12154:13;12146:154;;;12234:7;12228:14;12224:1;12219:3;12215:11;12208:35;12284:1;12275:7;12271:15;12260:26;;12182:4;12179:1;12175:12;12170:17;;12146:154;;;12329:6;12324:3;12320:16;12313:23;;12012:334;;11826:520;;11614:738;;11507:845;;;;:::o;12358:366::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:::-;12872:3;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12969:93;13058:3;12969:93;:::i;:::-;13087:2;13082:3;13078:12;13071:19;;12730:366;;;:::o;13102:::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:::-;15104:3;15125:67;15189:2;15184:3;15125:67;:::i;:::-;15118:74;;15201:93;15290:3;15201:93;:::i;:::-;15319:2;15314:3;15310:12;15303:19;;14962:366;;;:::o;15334:::-;15476:3;15497:67;15561:2;15556:3;15497:67;:::i;:::-;15490:74;;15573:93;15662:3;15573:93;:::i;:::-;15691:2;15686:3;15682:12;15675:19;;15334:366;;;:::o;15706:::-;15848:3;15869:67;15933:2;15928:3;15869:67;:::i;:::-;15862:74;;15945:93;16034:3;15945:93;:::i;:::-;16063:2;16058:3;16054:12;16047:19;;15706:366;;;:::o;16078:::-;16220:3;16241:67;16305:2;16300:3;16241:67;:::i;:::-;16234:74;;16317:93;16406:3;16317:93;:::i;:::-;16435:2;16430:3;16426:12;16419:19;;16078:366;;;:::o;16450:::-;16592:3;16613:67;16677:2;16672:3;16613:67;:::i;:::-;16606:74;;16689:93;16778:3;16689:93;:::i;:::-;16807:2;16802:3;16798:12;16791:19;;16450:366;;;:::o;16822:::-;16964:3;16985:67;17049:2;17044:3;16985:67;:::i;:::-;16978:74;;17061:93;17150:3;17061:93;:::i;:::-;17179:2;17174:3;17170:12;17163:19;;16822:366;;;:::o;17194:::-;17336:3;17357:67;17421:2;17416:3;17357:67;:::i;:::-;17350:74;;17433:93;17522:3;17433:93;:::i;:::-;17551:2;17546:3;17542:12;17535:19;;17194:366;;;:::o;17566:400::-;17726:3;17747:84;17829:1;17824:3;17747:84;:::i;:::-;17740:91;;17840:93;17929:3;17840:93;:::i;:::-;17958:1;17953:3;17949:11;17942:18;;17566:400;;;:::o;17972:366::-;18114:3;18135:67;18199:2;18194:3;18135:67;:::i;:::-;18128:74;;18211:93;18300:3;18211:93;:::i;:::-;18329:2;18324:3;18320:12;18313:19;;17972:366;;;:::o;18344:::-;18486:3;18507:67;18571:2;18566:3;18507:67;:::i;:::-;18500:74;;18583:93;18672:3;18583:93;:::i;:::-;18701:2;18696:3;18692:12;18685:19;;18344:366;;;:::o;18716:::-;18858:3;18879:67;18943:2;18938:3;18879:67;:::i;:::-;18872:74;;18955:93;19044:3;18955:93;:::i;:::-;19073:2;19068:3;19064:12;19057:19;;18716:366;;;:::o;19088:::-;19230:3;19251:67;19315:2;19310:3;19251:67;:::i;:::-;19244:74;;19327:93;19416:3;19327:93;:::i;:::-;19445:2;19440:3;19436:12;19429:19;;19088:366;;;:::o;19460:::-;19602:3;19623:67;19687:2;19682:3;19623:67;:::i;:::-;19616:74;;19699:93;19788:3;19699:93;:::i;:::-;19817:2;19812:3;19808:12;19801:19;;19460:366;;;:::o;19832:::-;19974:3;19995:67;20059:2;20054:3;19995:67;:::i;:::-;19988:74;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19832:366;;;:::o;20204:::-;20346:3;20367:67;20431:2;20426:3;20367:67;:::i;:::-;20360:74;;20443:93;20532:3;20443:93;:::i;:::-;20561:2;20556:3;20552:12;20545:19;;20204:366;;;:::o;20576:400::-;20736:3;20757:84;20839:1;20834:3;20757:84;:::i;:::-;20750:91;;20850:93;20939:3;20850:93;:::i;:::-;20968:1;20963:3;20959:11;20952:18;;20576:400;;;:::o;20982:118::-;21069:24;21087:5;21069:24;:::i;:::-;21064:3;21057:37;20982:118;;:::o;21106:961::-;21485:3;21507:92;21595:3;21586:6;21507:92;:::i;:::-;21500:99;;21616:148;21760:3;21616:148;:::i;:::-;21609:155;;21781:95;21872:3;21863:6;21781:95;:::i;:::-;21774:102;;21893:148;22037:3;21893:148;:::i;:::-;21886:155;;22058:3;22051:10;;21106:961;;;;;:::o;22073:222::-;22166:4;22204:2;22193:9;22189:18;22181:26;;22217:71;22285:1;22274:9;22270:17;22261:6;22217:71;:::i;:::-;22073:222;;;;:::o;22301:640::-;22496:4;22534:3;22523:9;22519:19;22511:27;;22548:71;22616:1;22605:9;22601:17;22592:6;22548:71;:::i;:::-;22629:72;22697:2;22686:9;22682:18;22673:6;22629:72;:::i;:::-;22711;22779:2;22768:9;22764:18;22755:6;22711:72;:::i;:::-;22830:9;22824:4;22820:20;22815:2;22804:9;22800:18;22793:48;22858:76;22929:4;22920:6;22858:76;:::i;:::-;22850:84;;22301:640;;;;;;;:::o;22947:332::-;23068:4;23106:2;23095:9;23091:18;23083:26;;23119:71;23187:1;23176:9;23172:17;23163:6;23119:71;:::i;:::-;23200:72;23268:2;23257:9;23253:18;23244:6;23200:72;:::i;:::-;22947:332;;;;;:::o;23285:210::-;23372:4;23410:2;23399:9;23395:18;23387:26;;23423:65;23485:1;23474:9;23470:17;23461:6;23423:65;:::i;:::-;23285:210;;;;:::o;23501:313::-;23614:4;23652:2;23641:9;23637:18;23629:26;;23701:9;23695:4;23691:20;23687:1;23676:9;23672:17;23665:47;23729:78;23802:4;23793:6;23729:78;:::i;:::-;23721:86;;23501:313;;;;:::o;23820:419::-;23986:4;24024:2;24013:9;24009:18;24001:26;;24073:9;24067:4;24063:20;24059:1;24048:9;24044:17;24037:47;24101:131;24227:4;24101:131;:::i;:::-;24093:139;;23820:419;;;:::o;24245:::-;24411:4;24449:2;24438:9;24434:18;24426:26;;24498:9;24492:4;24488:20;24484:1;24473:9;24469:17;24462:47;24526:131;24652:4;24526:131;:::i;:::-;24518:139;;24245:419;;;:::o;24670:::-;24836:4;24874:2;24863:9;24859:18;24851:26;;24923:9;24917:4;24913:20;24909:1;24898:9;24894:17;24887:47;24951:131;25077:4;24951:131;:::i;:::-;24943:139;;24670:419;;;:::o;25095:::-;25261:4;25299:2;25288:9;25284:18;25276:26;;25348:9;25342:4;25338:20;25334:1;25323:9;25319:17;25312:47;25376:131;25502:4;25376:131;:::i;:::-;25368:139;;25095:419;;;:::o;25520:::-;25686:4;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25520:419;;;:::o;25945:::-;26111:4;26149:2;26138:9;26134:18;26126:26;;26198:9;26192:4;26188:20;26184:1;26173:9;26169:17;26162:47;26226:131;26352:4;26226:131;:::i;:::-;26218:139;;25945:419;;;:::o;26370:::-;26536:4;26574:2;26563:9;26559:18;26551:26;;26623:9;26617:4;26613:20;26609:1;26598:9;26594:17;26587:47;26651:131;26777:4;26651:131;:::i;:::-;26643:139;;26370:419;;;:::o;26795:::-;26961:4;26999:2;26988:9;26984:18;26976:26;;27048:9;27042:4;27038:20;27034:1;27023:9;27019:17;27012:47;27076:131;27202:4;27076:131;:::i;:::-;27068:139;;26795:419;;;:::o;27220:::-;27386:4;27424:2;27413:9;27409:18;27401:26;;27473:9;27467:4;27463:20;27459:1;27448:9;27444:17;27437:47;27501:131;27627:4;27501:131;:::i;:::-;27493:139;;27220:419;;;:::o;27645:::-;27811:4;27849:2;27838:9;27834:18;27826:26;;27898:9;27892:4;27888:20;27884:1;27873:9;27869:17;27862:47;27926:131;28052:4;27926:131;:::i;:::-;27918:139;;27645:419;;;:::o;28070:::-;28236:4;28274:2;28263:9;28259:18;28251:26;;28323:9;28317:4;28313:20;28309:1;28298:9;28294:17;28287:47;28351:131;28477:4;28351:131;:::i;:::-;28343:139;;28070:419;;;:::o;28495:::-;28661:4;28699:2;28688:9;28684:18;28676:26;;28748:9;28742:4;28738:20;28734:1;28723:9;28719:17;28712:47;28776:131;28902:4;28776:131;:::i;:::-;28768:139;;28495:419;;;:::o;28920:::-;29086:4;29124:2;29113:9;29109:18;29101:26;;29173:9;29167:4;29163:20;29159:1;29148:9;29144:17;29137:47;29201:131;29327:4;29201:131;:::i;:::-;29193:139;;28920:419;;;:::o;29345:::-;29511:4;29549:2;29538:9;29534:18;29526:26;;29598:9;29592:4;29588:20;29584:1;29573:9;29569:17;29562:47;29626:131;29752:4;29626:131;:::i;:::-;29618:139;;29345:419;;;:::o;29770:::-;29936:4;29974:2;29963:9;29959:18;29951:26;;30023:9;30017:4;30013:20;30009:1;29998:9;29994:17;29987:47;30051:131;30177:4;30051:131;:::i;:::-;30043:139;;29770:419;;;:::o;30195:::-;30361:4;30399:2;30388:9;30384:18;30376:26;;30448:9;30442:4;30438:20;30434:1;30423:9;30419:17;30412:47;30476:131;30602:4;30476:131;:::i;:::-;30468:139;;30195:419;;;:::o;30620:::-;30786:4;30824:2;30813:9;30809:18;30801:26;;30873:9;30867:4;30863:20;30859:1;30848:9;30844:17;30837:47;30901:131;31027:4;30901:131;:::i;:::-;30893:139;;30620:419;;;:::o;31045:::-;31211:4;31249:2;31238:9;31234:18;31226:26;;31298:9;31292:4;31288:20;31284:1;31273:9;31269:17;31262:47;31326:131;31452:4;31326:131;:::i;:::-;31318:139;;31045:419;;;:::o;31470:::-;31636:4;31674:2;31663:9;31659:18;31651:26;;31723:9;31717:4;31713:20;31709:1;31698:9;31694:17;31687:47;31751:131;31877:4;31751:131;:::i;:::-;31743:139;;31470:419;;;:::o;31895:::-;32061:4;32099:2;32088:9;32084:18;32076:26;;32148:9;32142:4;32138:20;32134:1;32123:9;32119:17;32112:47;32176:131;32302:4;32176:131;:::i;:::-;32168:139;;31895:419;;;:::o;32320:::-;32486:4;32524:2;32513:9;32509:18;32501:26;;32573:9;32567:4;32563:20;32559:1;32548:9;32544:17;32537:47;32601:131;32727:4;32601:131;:::i;:::-;32593:139;;32320:419;;;:::o;32745:222::-;32838:4;32876:2;32865:9;32861:18;32853:26;;32889:71;32957:1;32946:9;32942:17;32933:6;32889:71;:::i;:::-;32745:222;;;;:::o;32973:129::-;33007:6;33034:20;;:::i;:::-;33024:30;;33063:33;33091:4;33083:6;33063:33;:::i;:::-;32973:129;;;:::o;33108:75::-;33141:6;33174:2;33168:9;33158:19;;33108:75;:::o;33189:307::-;33250:4;33340:18;33332:6;33329:30;33326:56;;;33362:18;;:::i;:::-;33326:56;33400:29;33422:6;33400:29;:::i;:::-;33392:37;;33484:4;33478;33474:15;33466:23;;33189:307;;;:::o;33502:308::-;33564:4;33654:18;33646:6;33643:30;33640:56;;;33676:18;;:::i;:::-;33640:56;33714:29;33736:6;33714:29;:::i;:::-;33706:37;;33798:4;33792;33788:15;33780:23;;33502:308;;;:::o;33816:141::-;33865:4;33888:3;33880:11;;33911:3;33908:1;33901:14;33945:4;33942:1;33932:18;33924:26;;33816:141;;;:::o;33963:98::-;34014:6;34048:5;34042:12;34032:22;;33963:98;;;:::o;34067:99::-;34119:6;34153:5;34147:12;34137:22;;34067:99;;;:::o;34172:168::-;34255:11;34289:6;34284:3;34277:19;34329:4;34324:3;34320:14;34305:29;;34172:168;;;;:::o;34346:169::-;34430:11;34464:6;34459:3;34452:19;34504:4;34499:3;34495:14;34480:29;;34346:169;;;;:::o;34521:148::-;34623:11;34660:3;34645:18;;34521:148;;;;:::o;34675:305::-;34715:3;34734:20;34752:1;34734:20;:::i;:::-;34729:25;;34768:20;34786:1;34768:20;:::i;:::-;34763:25;;34922:1;34854:66;34850:74;34847:1;34844:81;34841:107;;;34928:18;;:::i;:::-;34841:107;34972:1;34969;34965:9;34958:16;;34675:305;;;;:::o;34986:185::-;35026:1;35043:20;35061:1;35043:20;:::i;:::-;35038:25;;35077:20;35095:1;35077:20;:::i;:::-;35072:25;;35116:1;35106:35;;35121:18;;:::i;:::-;35106:35;35163:1;35160;35156:9;35151:14;;34986:185;;;;:::o;35177:348::-;35217:7;35240:20;35258:1;35240:20;:::i;:::-;35235:25;;35274:20;35292:1;35274:20;:::i;:::-;35269:25;;35462:1;35394:66;35390:74;35387:1;35384:81;35379:1;35372:9;35365:17;35361:105;35358:131;;;35469:18;;:::i;:::-;35358:131;35517:1;35514;35510:9;35499:20;;35177:348;;;;:::o;35531:191::-;35571:4;35591:20;35609:1;35591:20;:::i;:::-;35586:25;;35625:20;35643:1;35625:20;:::i;:::-;35620:25;;35664:1;35661;35658:8;35655:34;;;35669:18;;:::i;:::-;35655:34;35714:1;35711;35707:9;35699:17;;35531:191;;;;:::o;35728:96::-;35765:7;35794:24;35812:5;35794:24;:::i;:::-;35783:35;;35728:96;;;:::o;35830:90::-;35864:7;35907:5;35900:13;35893:21;35882:32;;35830:90;;;:::o;35926:149::-;35962:7;36002:66;35995:5;35991:78;35980:89;;35926:149;;;:::o;36081:110::-;36132:7;36161:24;36179:5;36161:24;:::i;:::-;36150:35;;36081:110;;;:::o;36197:125::-;36263:7;36292:24;36310:5;36292:24;:::i;:::-;36281:35;;36197:125;;;:::o;36328:126::-;36365:7;36405:42;36398:5;36394:54;36383:65;;36328:126;;;:::o;36460:77::-;36497:7;36526:5;36515:16;;36460:77;;;:::o;36543:154::-;36627:6;36622:3;36617;36604:30;36689:1;36680:6;36675:3;36671:16;36664:27;36543:154;;;:::o;36703:307::-;36771:1;36781:113;36795:6;36792:1;36789:13;36781:113;;;36880:1;36875:3;36871:11;36865:18;36861:1;36856:3;36852:11;36845:39;36817:2;36814:1;36810:10;36805:15;;36781:113;;;36912:6;36909:1;36906:13;36903:101;;;36992:1;36983:6;36978:3;36974:16;36967:27;36903:101;36752:258;36703:307;;;:::o;37016:320::-;37060:6;37097:1;37091:4;37087:12;37077:22;;37144:1;37138:4;37134:12;37165:18;37155:81;;37221:4;37213:6;37209:17;37199:27;;37155:81;37283:2;37275:6;37272:14;37252:18;37249:38;37246:84;;;37302:18;;:::i;:::-;37246:84;37067:269;37016:320;;;:::o;37342:281::-;37425:27;37447:4;37425:27;:::i;:::-;37417:6;37413:40;37555:6;37543:10;37540:22;37519:18;37507:10;37504:34;37501:62;37498:88;;;37566:18;;:::i;:::-;37498:88;37606:10;37602:2;37595:22;37385:238;37342:281;;:::o;37629:233::-;37668:3;37691:24;37709:5;37691:24;:::i;:::-;37682:33;;37737:66;37730:5;37727:77;37724:103;;;37807:18;;:::i;:::-;37724:103;37854:1;37847:5;37843:13;37836:20;;37629:233;;;:::o;37868:176::-;37900:1;37917:20;37935:1;37917:20;:::i;:::-;37912:25;;37951:20;37969:1;37951:20;:::i;:::-;37946:25;;37990:1;37980:35;;37995:18;;:::i;:::-;37980:35;38036:1;38033;38029:9;38024:14;;37868:176;;;;:::o;38050:180::-;38098:77;38095:1;38088:88;38195:4;38192:1;38185:15;38219:4;38216:1;38209:15;38236:180;38284:77;38281:1;38274:88;38381:4;38378:1;38371:15;38405:4;38402:1;38395:15;38422:180;38470:77;38467:1;38460:88;38567:4;38564:1;38557:15;38591:4;38588:1;38581:15;38608:180;38656:77;38653:1;38646:88;38753:4;38750:1;38743:15;38777:4;38774:1;38767:15;38794:180;38842:77;38839:1;38832:88;38939:4;38936:1;38929:15;38963:4;38960:1;38953:15;38980:117;39089:1;39086;39079:12;39103:117;39212:1;39209;39202:12;39226:117;39335:1;39332;39325:12;39349:117;39458:1;39455;39448:12;39472:102;39513:6;39564:2;39560:7;39555:2;39548:5;39544:14;39540:28;39530:38;;39472:102;;;:::o;39580:237::-;39720:34;39716:1;39708:6;39704:14;39697:58;39789:20;39784:2;39776:6;39772:15;39765:45;39580:237;:::o;39823:225::-;39963:34;39959:1;39951:6;39947:14;39940:58;40032:8;40027:2;40019:6;40015:15;40008:33;39823:225;:::o;40054:178::-;40194:30;40190:1;40182:6;40178:14;40171:54;40054:178;:::o;40238:221::-;40378:34;40374:1;40366:6;40362:14;40355:58;40447:4;40442:2;40434:6;40430:15;40423:29;40238:221;:::o;40465:223::-;40605:34;40601:1;40593:6;40589:14;40582:58;40674:6;40669:2;40661:6;40657:15;40650:31;40465:223;:::o;40694:175::-;40834:27;40830:1;40822:6;40818:14;40811:51;40694:175;:::o;40875:231::-;41015:34;41011:1;41003:6;40999:14;40992:58;41084:14;41079:2;41071:6;41067:15;41060:39;40875:231;:::o;41112:221::-;41252:34;41248:1;41240:6;41236:14;41229:58;41321:4;41316:2;41308:6;41304:15;41297:29;41112:221;:::o;41339:243::-;41479:34;41475:1;41467:6;41463:14;41456:58;41548:26;41543:2;41535:6;41531:15;41524:51;41339:243;:::o;41588:167::-;41728:19;41724:1;41716:6;41712:14;41705:43;41588:167;:::o;41761:229::-;41901:34;41897:1;41889:6;41885:14;41878:58;41970:12;41965:2;41957:6;41953:15;41946:37;41761:229;:::o;41996:228::-;42136:34;42132:1;42124:6;42120:14;42113:58;42205:11;42200:2;42192:6;42188:15;42181:36;41996:228;:::o;42230:182::-;42370:34;42366:1;42358:6;42354:14;42347:58;42230:182;:::o;42418:231::-;42558:34;42554:1;42546:6;42542:14;42535:58;42627:14;42622:2;42614:6;42610:15;42603:39;42418:231;:::o;42655:155::-;42795:7;42791:1;42783:6;42779:14;42772:31;42655:155;:::o;42816:182::-;42956:34;42952:1;42944:6;42940:14;42933:58;42816:182;:::o;43004:228::-;43144:34;43140:1;43132:6;43128:14;43121:58;43213:11;43208:2;43200:6;43196:15;43189:36;43004:228;:::o;43238:220::-;43378:34;43374:1;43366:6;43362:14;43355:58;43447:3;43442:2;43434:6;43430:15;43423:28;43238:220;:::o;43464:236::-;43604:34;43600:1;43592:6;43588:14;43581:58;43673:19;43668:2;43660:6;43656:15;43649:44;43464:236;:::o;43706:174::-;43846:26;43842:1;43834:6;43830:14;43823:50;43706:174;:::o;43886:181::-;44026:33;44022:1;44014:6;44010:14;44003:57;43886:181;:::o;44073:173::-;44213:25;44209:1;44201:6;44197:14;44190:49;44073:173;:::o;44252:151::-;44392:3;44388:1;44380:6;44376:14;44369:27;44252:151;:::o;44409:122::-;44482:24;44500:5;44482:24;:::i;:::-;44475:5;44472:35;44462:63;;44521:1;44518;44511:12;44462:63;44409:122;:::o;44537:116::-;44607:21;44622:5;44607:21;:::i;:::-;44600:5;44597:32;44587:60;;44643:1;44640;44633:12;44587:60;44537:116;:::o;44659:120::-;44731:23;44748:5;44731:23;:::i;:::-;44724:5;44721:34;44711:62;;44769:1;44766;44759:12;44711:62;44659:120;:::o;44785:150::-;44872:38;44904:5;44872:38;:::i;:::-;44865:5;44862:49;44852:77;;44925:1;44922;44915:12;44852:77;44785:150;:::o;44941:180::-;45043:53;45090:5;45043:53;:::i;:::-;45036:5;45033:64;45023:92;;45111:1;45108;45101:12;45023:92;44941:180;:::o;45127:122::-;45200:24;45218:5;45200:24;:::i;:::-;45193:5;45190:35;45180:63;;45239:1;45236;45229:12;45180:63;45127:122;:::o
Swarm Source
ipfs://168104a6e12d1046127fec36a0e6db4a1c4964a2dbe7fa0d618365d2b7186c69
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.