ERC-721
Overview
Max Total Supply
7,178 NELK
Holders
105
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 NELKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FullSend
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-18 */ /** _________ __ __ _____ _____ _____ _____ __ _ ______ (_ _____) ) ) ( ( (_ _) (_ _) / ____\ / ___/ / \ / ) (_ __ \ ) (___ ( ( ) ) | | | | ( (___ ( (__ / /\ \ / / ) ) \ \ ( ___) ) ) ( ( | | | | \___ \ ) __) ) ) ) ) ) ) ( ( ) ) ) ( ( ( ) ) | | __ | | __ ) ) ( ( ( ( ( ( ( ( ) ) ) ) ( ) ) \__/ ( __| |___) ) __| |___) ) ___/ / \ \___ / / \ \/ / / /__/ / \_/ \______/ \________/ \________/ /____/ \____\ (_/ \__/ (______/ ______ __ __ ________ __ __ _____ (_ _ \ ) \ / ( (___ ___) ( \ / ) / ___/ ) (_) ) \ \ / / ) ) \ (__) / ( (__ \ _/ \ \/ / ( ( ) __ ( ) __) / _ \ \ / ) ) ( ( ) ) ( ( _) (_) ) )( ( ( ) )( ( \ \___ (______/ /__\ /__\ /_/ \_\ \____\ __ _ _____ _____ __ ___ ______ ____ __ __ _____ / \ / ) / ___/ (_ _) () ) / __) (_ _ \ / __ \ ) \ / ( / ____\ / /\ \ / / ( (__ | | ( (_/ / ) (_) ) / / \ \ \ \ / / ( (___ ) ) ) ) ) ) ) __) | | () ( \ _/ ( () () ) \ \/ / \___ \ ( ( ( ( ( ( ( ( | | __ () /\ \ / _ \ ( () () ) \ / ) ) / / \ \/ / \ \___ __| |___) ) ( ( \ \ _) (_) ) \ \__/ / )( ___/ / (_/ \__/ \____\ \________/ ()_) \_\ (______/ \____/ /__\ /____/ MINT PRICE: 0.08 ETH LIMIT: 10 per transaction CREDIT TO: @AzukiZen for gas optimizations DISCORD: discord.com/invite/FullSendNFT */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract FullSend is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://QmVbV8u3JANpuE7gzrHEsir7T3BULsNUoNX3gP8Hqi8wW4"; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 10; uint256 public maxSupply = 10000; uint256 public constant PUBLIC_SALE_PRICE = 0.08 ether; 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( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); _; } constructor( ) ERC721A("Full Send", "NELK", 100, maxSupply) { } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } // function to disable gasless listings for security in case // opensea ever shuts down or is compromised function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner { isOpenSeaProxyActive = _isOpenSeaProxyActive; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function reserveMint(uint256 numberOfTokens) public onlyOwner { _safeMint(msg.sender, numberOfTokens); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry( openSeaProxyRegistryAddress ); if ( isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator ) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseURI, "/", (tokenId+1).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":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveMint","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60016000908155600755610120604052603560c08181529062002c2260e03980516200003491600b91602090910190620001cb565b50600c805460ff60a01b196001600160a01b031990911673a5409ec958c83c3f309868babaca7c86dcb077c11716600160a01b179055612710600d55600e805460ff191660011790553480156200008a57600080fd5b5060405180604001604052806009815260200168119d5b1b0814d95b9960ba1b815250604051806040016040528060048152602001634e454c4b60e01b8152506064600d5460008111620000fb5760405162461bcd60e51b8152600401620000f290620002b8565b60405180910390fd5b600082116200011e5760405162461bcd60e51b8152600401620000f29062000271565b835162000133906001906020870190620001cb565b50825162000149906002906020860190620001cb565b5060a091909152608052506200016a90506200016462000175565b62000179565b600160095562000343565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d99062000306565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200031b57607f821691505b602082108114156200033d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516128ae62000374600039600081816114bf015281816114e901526118c10152600050506128ae6000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610545578063d7224ba01461055a578063e43082f71461056f578063e985e9c51461058f578063f2fde38b146105af576101ee565b8063a22cb465146104d0578063b88d4fde146104f0578063c6a91b4214610510578063c87b56dd14610525576101ee565b8063715018a6116100dc578063715018a61461047e5780638da5cb5b1461049357806395d89b41146104a8578063a0712d68146104bd576101ee565b806355f804b3146104095780636352211e1461042957806370a0823114610449578063714c539814610469576101ee565b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461039457806342842e0e146103a957806349df728c146103c95780634f6ccce7146103e9576101ee565b806323b872dd1461030657806328cad13d146103265780632a55205a146103465780632f745c5914610374576101ee565b8063095ea7b3116101c1578063095ea7b31461029a5780631342ff4c146102bc57806318160ddd146102dc5780631e84c413146102f1576101ee565b806301ffc9a7146101f357806306fdde031461022957806307e89ec01461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611da6565b6105cf565b6040516102209190612017565b60405180910390f35b34801561023557600080fd5b5061023e6105fc565b6040516102209190612022565b34801561025757600080fd5b5061026061068e565b6040516102209190612686565b34801561027957600080fd5b5061028d610288366004611e40565b61069a565b6040516102209190611fad565b3480156102a657600080fd5b506102ba6102b5366004611d43565b6106e6565b005b3480156102c857600080fd5b506102ba6102d7366004611e40565b61077f565b3480156102e857600080fd5b506102606107cb565b3480156102fd57600080fd5b506102136107d1565b34801561031257600080fd5b506102ba610321366004611c59565b6107da565b34801561033257600080fd5b506102ba610341366004611d6e565b6107e5565b34801561035257600080fd5b50610366610361366004611e70565b610837565b604051610220929190611ffe565b34801561038057600080fd5b5061026061038f366004611d43565b610880565b3480156103a057600080fd5b506102ba61097c565b3480156103b557600080fd5b506102ba6103c4366004611c59565b6109ee565b3480156103d557600080fd5b506102ba6103e4366004611c05565b610a09565b3480156103f557600080fd5b50610260610404366004611e40565b610b4a565b34801561041557600080fd5b506102ba610424366004611dfa565b610b76565b34801561043557600080fd5b5061028d610444366004611e40565b610bc8565b34801561045557600080fd5b50610260610464366004611c05565b610bda565b34801561047557600080fd5b5061023e610c27565b34801561048a57600080fd5b506102ba610c36565b34801561049f57600080fd5b5061028d610c81565b3480156104b457600080fd5b5061023e610c90565b6102ba6104cb366004611e40565b610c9f565b3480156104dc57600080fd5b506102ba6104eb366004611d16565b610d65565b3480156104fc57600080fd5b506102ba61050b366004611c99565b610e33565b34801561051c57600080fd5b50610260610e6c565b34801561053157600080fd5b5061023e610540366004611e40565b610e71565b34801561055157600080fd5b50610260610ed4565b34801561056657600080fd5b50610260610eda565b34801561057b57600080fd5b506102ba61058a366004611d6e565b610ee0565b34801561059b57600080fd5b506102136105aa366004611c21565b610f3d565b3480156105bb57600080fd5b506102ba6105ca366004611c05565b611011565b60006001600160e01b0319821663152a902d60e11b14806105f457506105f48261107f565b90505b919050565b60606001805461060b90612793565b80601f016020809104026020016040519081016040528092919081815260200182805461063790612793565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b67011c37937e08000081565b60006106a5826110da565b6106ca5760405162461bcd60e51b81526004016106c1906125f7565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106f182610bc8565b9050806001600160a01b0316836001600160a01b031614156107255760405162461bcd60e51b81526004016106c1906123a8565b806001600160a01b03166107376110e1565b6001600160a01b031614806107535750610753816105aa6110e1565b61076f5760405162461bcd60e51b81526004016106c1906121fc565b61077a8383836110e5565b505050565b6107876110e1565b6001600160a01b0316610798610c81565b6001600160a01b0316146107be5760405162461bcd60e51b81526004016106c1906122ea565b6107c83382611141565b50565b60005490565b600e5460ff1681565b61077a83838361115b565b6107ed6110e1565b6001600160a01b03166107fe610c81565b6001600160a01b0316146108245760405162461bcd60e51b81526004016106c1906122ea565b600e805460ff1916911515919091179055565b600080610843846110da565b61085f5760405162461bcd60e51b81526004016106c1906121d1565b3061087561086e85600561146f565b6064611482565b915091509250929050565b600061088b83610bda565b82106108a95760405162461bcd60e51b81526004016106c190612035565b60006108b36107cb565b905060008060005b8381101561095d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090e57805192505b876001600160a01b0316836001600160a01b0316141561094a578684141561093c5750935061097692505050565b83610946816127ce565b9450505b5080610955816127ce565b9150506108bb565b5060405162461bcd60e51b81526004016106c1906124ec565b92915050565b6109846110e1565b6001600160a01b0316610995610c81565b6001600160a01b0316146109bb5760405162461bcd60e51b81526004016106c1906122ea565b6040514790339082156108fc029083906000818181858888f193505050501580156109ea573d6000803e3d6000fd5b5050565b61077a83838360405180602001604052806000815250610e33565b610a116110e1565b6001600160a01b0316610a22610c81565b6001600160a01b031614610a485760405162461bcd60e51b81526004016106c1906122ea565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610a77903090600401611fad565b60206040518083038186803b158015610a8f57600080fd5b505afa158015610aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac79190611e58565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610af89033908590600401611ffe565b602060405180830381600087803b158015610b1257600080fd5b505af1158015610b26573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077a9190611d8a565b6000610b546107cb565b8210610b725760405162461bcd60e51b81526004016106c190612107565b5090565b610b7e6110e1565b6001600160a01b0316610b8f610c81565b6001600160a01b031614610bb55760405162461bcd60e51b81526004016106c1906122ea565b80516109ea90600b906020840190611ae9565b6000610bd38261148e565b5192915050565b60006001600160a01b038216610c025760405162461bcd60e51b81526004016106c190612259565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461060b90612793565b610c3e6110e1565b6001600160a01b0316610c4f610c81565b6001600160a01b031614610c755760405162461bcd60e51b81526004016106c1906122ea565b610c7f60006115a1565b565b6008546001600160a01b031690565b60606002805461060b90612793565b60026009541415610cc25760405162461bcd60e51b81526004016106c19061253a565b600260095567011c37937e0800008134610cdc82846126f2565b14610cf95760405162461bcd60e51b81526004016106c1906124b5565b600e5460ff16610d1b5760405162461bcd60e51b81526004016106c1906125c0565b82600d5481610d286107cb565b610d3291906126c6565b1115610d505760405162461bcd60e51b81526004016106c19061214a565b610d5a3385611141565b505060016009555050565b610d6d6110e1565b6001600160a01b0316826001600160a01b03161415610d9e5760405162461bcd60e51b81526004016106c19061231f565b8060066000610dab6110e1565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610def6110e1565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e279190612017565b60405180910390a35050565b610e3e84848461115b565b610e4a848484846115f3565b610e665760405162461bcd60e51b81526004016106c1906123ea565b50505050565b600a81565b6060610e7c826110da565b610e985760405162461bcd60e51b81526004016106c1906121d1565b600b610ead610ea88460016126c6565b61170e565b604051602001610ebe929190611ef7565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610ee86110e1565b6001600160a01b0316610ef9610c81565b6001600160a01b031614610f1f5760405162461bcd60e51b81526004016106c1906122ea565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff168015610ff05750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b8152600401610f959190611fad565b60206040518083038186803b158015610fad57600080fd5b505afa158015610fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe59190611dde565b6001600160a01b0316145b15610fff576001915050610976565b6110098484611829565b949350505050565b6110196110e1565b6001600160a01b031661102a610c81565b6001600160a01b0316146110505760405162461bcd60e51b81526004016106c1906122ea565b6001600160a01b0381166110765760405162461bcd60e51b81526004016106c190612077565b6107c8816115a1565b60006001600160e01b031982166380ac58cd60e01b14806110b057506001600160e01b03198216635b5e139f60e01b145b806110cb57506001600160e01b0319821663780e9d6360e01b145b806105f457506105f482611857565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ea828260405180602001604052806000815250611870565b60006111668261148e565b9050600081600001516001600160a01b03166111806110e1565b6001600160a01b031614806111b557506111986110e1565b6001600160a01b03166111aa8461069a565b6001600160a01b0316145b806111c9575081516111c9906105aa6110e1565b9050806111e85760405162461bcd60e51b81526004016106c190612356565b846001600160a01b031682600001516001600160a01b03161461121d5760405162461bcd60e51b81526004016106c1906122a4565b6001600160a01b0384166112435760405162461bcd60e51b81526004016106c19061218c565b6112508585856001610e66565b61126060008484600001516110e5565b6001600160a01b03851660009081526004602052604081208054600192906112929084906001600160801b0316612711565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926112de9185911661269b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556113748460016126c6565b6000818152600360205260409020549091506001600160a01b03166114195761139c816110da565b156114195760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114678686866001610e66565b505050505050565b600061147b82846126f2565b9392505050565b600061147b82846126de565b611496611b69565b61149f826110da565b6114bb5760405162461bcd60e51b81526004016106c1906120bd565b60007f0000000000000000000000000000000000000000000000000000000000000000831061151c5761150e7f000000000000000000000000000000000000000000000000000000000000000084612739565b6115199060016126c6565b90505b825b818110611588576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115755792506105f7915050565b50806115808161277c565b91505061151e565b5060405162461bcd60e51b81526004016106c190612571565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611607846001600160a01b0316611ae3565b1561170357836001600160a01b031663150b7a026116236110e1565b8786866040518563ffffffff1660e01b81526004016116459493929190611fc1565b602060405180830381600087803b15801561165f57600080fd5b505af192505050801561168f575060408051601f3d908101601f1916820190925261168c91810190611dc2565b60015b6116e9573d8080156116bd576040519150601f19603f3d011682016040523d82523d6000602084013e6116c2565b606091505b5080516116e15760405162461bcd60e51b81526004016106c1906123ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611009565b506001949350505050565b60608161173357506040805180820190915260018152600360fc1b60208201526105f7565b8160005b811561175d5780611747816127ce565b91506117569050600a836126de565b9150611737565b60008167ffffffffffffffff81111561178657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117b0576020820181803683370190505b5090505b8415611009576117c5600183612739565b91506117d2600a866127e9565b6117dd9060306126c6565b60f81b81838151811061180057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611822600a866126de565b94506117b4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166118995760405162461bcd60e51b81526004016106c190612474565b6118a2816110da565b156118bf5760405162461bcd60e51b81526004016106c19061243d565b7f00000000000000000000000000000000000000000000000000000000000000008311156118ff5760405162461bcd60e51b81526004016106c190612644565b61190c6000858386610e66565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061196890879061269b565b6001600160801b03168152602001858360200151611986919061269b565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611ad15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a9560008884886115f3565b611ab15760405162461bcd60e51b81526004016106c1906123ea565b81611abb816127ce565b9250508080611ac9906127ce565b915050611a48565b50600081815561146790878588610e66565b3b151590565b828054611af590612793565b90600052602060002090601f016020900481019282611b175760008555611b5d565b82601f10611b3057805160ff1916838001178555611b5d565b82800160010185558215611b5d579182015b82811115611b5d578251825591602001919060010190611b42565b50610b72929150611b80565b604080518082019091526000808252602082015290565b5b80821115610b725760008155600101611b81565b600067ffffffffffffffff80841115611bb057611bb0612829565b604051601f8501601f191681016020018281118282101715611bd457611bd4612829565b604052848152915081838501861015611bec57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611c16578081fd5b813561147b8161283f565b60008060408385031215611c33578081fd5b8235611c3e8161283f565b91506020830135611c4e8161283f565b809150509250929050565b600080600060608486031215611c6d578081fd5b8335611c788161283f565b92506020840135611c888161283f565b929592945050506040919091013590565b60008060008060808587031215611cae578081fd5b8435611cb98161283f565b93506020850135611cc98161283f565b925060408501359150606085013567ffffffffffffffff811115611ceb578182fd5b8501601f81018713611cfb578182fd5b611d0a87823560208401611b95565b91505092959194509250565b60008060408385031215611d28578182fd5b8235611d338161283f565b91506020830135611c4e81612854565b60008060408385031215611d55578182fd5b8235611d608161283f565b946020939093013593505050565b600060208284031215611d7f578081fd5b813561147b81612854565b600060208284031215611d9b578081fd5b815161147b81612854565b600060208284031215611db7578081fd5b813561147b81612862565b600060208284031215611dd3578081fd5b815161147b81612862565b600060208284031215611def578081fd5b815161147b8161283f565b600060208284031215611e0b578081fd5b813567ffffffffffffffff811115611e21578182fd5b8201601f81018413611e31578182fd5b61100984823560208401611b95565b600060208284031215611e51578081fd5b5035919050565b600060208284031215611e69578081fd5b5051919050565b60008060408385031215611e82578182fd5b50508035926020909101359150565b60008151808452611ea9816020860160208601612750565b601f01601f19169290920160200192915050565b60008151611ecf818560208601612750565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b8254600090819060028104600180831680611f1357607f831692505b6020808410821415611f3357634e487b7160e01b87526022600452602487fd5b818015611f475760018114611f5857611f84565b60ff19861689528489019650611f84565b611f618b61268f565b885b86811015611f7c5781548b820152908501908301611f63565b505084890196505b505050505050611fa4611f9f611f9983611eea565b86611ebd565b611ed9565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff490830184611e91565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261147b6020830184611e91565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b038083168185168083038211156126bd576126bd6127fd565b01949350505050565b600082198211156126d9576126d96127fd565b500190565b6000826126ed576126ed612813565b500490565b600081600019048311821515161561270c5761270c6127fd565b500290565b60006001600160801b0383811690831681811015612731576127316127fd565b039392505050565b60008282101561274b5761274b6127fd565b500390565b60005b8381101561276b578181015183820152602001612753565b83811115610e665750506000910152565b60008161278b5761278b6127fd565b506000190190565b6002810460018216806127a757607f821691505b602082108114156127c857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e2576127e26127fd565b5060010190565b6000826127f8576127f8612813565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107c857600080fd5b80151581146107c857600080fd5b6001600160e01b0319811681146107c857600080fdfea2646970667358221220b0b82c6c517e66b73c70404beb599636ccbc9c5943ed47d76488d908081a02ac64736f6c63430008000033697066733a2f2f516d5662563875334a414e70754537677a72484573697237543342554c734e556f4e583367503848716938775734
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610545578063d7224ba01461055a578063e43082f71461056f578063e985e9c51461058f578063f2fde38b146105af576101ee565b8063a22cb465146104d0578063b88d4fde146104f0578063c6a91b4214610510578063c87b56dd14610525576101ee565b8063715018a6116100dc578063715018a61461047e5780638da5cb5b1461049357806395d89b41146104a8578063a0712d68146104bd576101ee565b806355f804b3146104095780636352211e1461042957806370a0823114610449578063714c539814610469576101ee565b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461039457806342842e0e146103a957806349df728c146103c95780634f6ccce7146103e9576101ee565b806323b872dd1461030657806328cad13d146103265780632a55205a146103465780632f745c5914610374576101ee565b8063095ea7b3116101c1578063095ea7b31461029a5780631342ff4c146102bc57806318160ddd146102dc5780631e84c413146102f1576101ee565b806301ffc9a7146101f357806306fdde031461022957806307e89ec01461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611da6565b6105cf565b6040516102209190612017565b60405180910390f35b34801561023557600080fd5b5061023e6105fc565b6040516102209190612022565b34801561025757600080fd5b5061026061068e565b6040516102209190612686565b34801561027957600080fd5b5061028d610288366004611e40565b61069a565b6040516102209190611fad565b3480156102a657600080fd5b506102ba6102b5366004611d43565b6106e6565b005b3480156102c857600080fd5b506102ba6102d7366004611e40565b61077f565b3480156102e857600080fd5b506102606107cb565b3480156102fd57600080fd5b506102136107d1565b34801561031257600080fd5b506102ba610321366004611c59565b6107da565b34801561033257600080fd5b506102ba610341366004611d6e565b6107e5565b34801561035257600080fd5b50610366610361366004611e70565b610837565b604051610220929190611ffe565b34801561038057600080fd5b5061026061038f366004611d43565b610880565b3480156103a057600080fd5b506102ba61097c565b3480156103b557600080fd5b506102ba6103c4366004611c59565b6109ee565b3480156103d557600080fd5b506102ba6103e4366004611c05565b610a09565b3480156103f557600080fd5b50610260610404366004611e40565b610b4a565b34801561041557600080fd5b506102ba610424366004611dfa565b610b76565b34801561043557600080fd5b5061028d610444366004611e40565b610bc8565b34801561045557600080fd5b50610260610464366004611c05565b610bda565b34801561047557600080fd5b5061023e610c27565b34801561048a57600080fd5b506102ba610c36565b34801561049f57600080fd5b5061028d610c81565b3480156104b457600080fd5b5061023e610c90565b6102ba6104cb366004611e40565b610c9f565b3480156104dc57600080fd5b506102ba6104eb366004611d16565b610d65565b3480156104fc57600080fd5b506102ba61050b366004611c99565b610e33565b34801561051c57600080fd5b50610260610e6c565b34801561053157600080fd5b5061023e610540366004611e40565b610e71565b34801561055157600080fd5b50610260610ed4565b34801561056657600080fd5b50610260610eda565b34801561057b57600080fd5b506102ba61058a366004611d6e565b610ee0565b34801561059b57600080fd5b506102136105aa366004611c21565b610f3d565b3480156105bb57600080fd5b506102ba6105ca366004611c05565b611011565b60006001600160e01b0319821663152a902d60e11b14806105f457506105f48261107f565b90505b919050565b60606001805461060b90612793565b80601f016020809104026020016040519081016040528092919081815260200182805461063790612793565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b67011c37937e08000081565b60006106a5826110da565b6106ca5760405162461bcd60e51b81526004016106c1906125f7565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106f182610bc8565b9050806001600160a01b0316836001600160a01b031614156107255760405162461bcd60e51b81526004016106c1906123a8565b806001600160a01b03166107376110e1565b6001600160a01b031614806107535750610753816105aa6110e1565b61076f5760405162461bcd60e51b81526004016106c1906121fc565b61077a8383836110e5565b505050565b6107876110e1565b6001600160a01b0316610798610c81565b6001600160a01b0316146107be5760405162461bcd60e51b81526004016106c1906122ea565b6107c83382611141565b50565b60005490565b600e5460ff1681565b61077a83838361115b565b6107ed6110e1565b6001600160a01b03166107fe610c81565b6001600160a01b0316146108245760405162461bcd60e51b81526004016106c1906122ea565b600e805460ff1916911515919091179055565b600080610843846110da565b61085f5760405162461bcd60e51b81526004016106c1906121d1565b3061087561086e85600561146f565b6064611482565b915091509250929050565b600061088b83610bda565b82106108a95760405162461bcd60e51b81526004016106c190612035565b60006108b36107cb565b905060008060005b8381101561095d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090e57805192505b876001600160a01b0316836001600160a01b0316141561094a578684141561093c5750935061097692505050565b83610946816127ce565b9450505b5080610955816127ce565b9150506108bb565b5060405162461bcd60e51b81526004016106c1906124ec565b92915050565b6109846110e1565b6001600160a01b0316610995610c81565b6001600160a01b0316146109bb5760405162461bcd60e51b81526004016106c1906122ea565b6040514790339082156108fc029083906000818181858888f193505050501580156109ea573d6000803e3d6000fd5b5050565b61077a83838360405180602001604052806000815250610e33565b610a116110e1565b6001600160a01b0316610a22610c81565b6001600160a01b031614610a485760405162461bcd60e51b81526004016106c1906122ea565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610a77903090600401611fad565b60206040518083038186803b158015610a8f57600080fd5b505afa158015610aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac79190611e58565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610af89033908590600401611ffe565b602060405180830381600087803b158015610b1257600080fd5b505af1158015610b26573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077a9190611d8a565b6000610b546107cb565b8210610b725760405162461bcd60e51b81526004016106c190612107565b5090565b610b7e6110e1565b6001600160a01b0316610b8f610c81565b6001600160a01b031614610bb55760405162461bcd60e51b81526004016106c1906122ea565b80516109ea90600b906020840190611ae9565b6000610bd38261148e565b5192915050565b60006001600160a01b038216610c025760405162461bcd60e51b81526004016106c190612259565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461060b90612793565b610c3e6110e1565b6001600160a01b0316610c4f610c81565b6001600160a01b031614610c755760405162461bcd60e51b81526004016106c1906122ea565b610c7f60006115a1565b565b6008546001600160a01b031690565b60606002805461060b90612793565b60026009541415610cc25760405162461bcd60e51b81526004016106c19061253a565b600260095567011c37937e0800008134610cdc82846126f2565b14610cf95760405162461bcd60e51b81526004016106c1906124b5565b600e5460ff16610d1b5760405162461bcd60e51b81526004016106c1906125c0565b82600d5481610d286107cb565b610d3291906126c6565b1115610d505760405162461bcd60e51b81526004016106c19061214a565b610d5a3385611141565b505060016009555050565b610d6d6110e1565b6001600160a01b0316826001600160a01b03161415610d9e5760405162461bcd60e51b81526004016106c19061231f565b8060066000610dab6110e1565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610def6110e1565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e279190612017565b60405180910390a35050565b610e3e84848461115b565b610e4a848484846115f3565b610e665760405162461bcd60e51b81526004016106c1906123ea565b50505050565b600a81565b6060610e7c826110da565b610e985760405162461bcd60e51b81526004016106c1906121d1565b600b610ead610ea88460016126c6565b61170e565b604051602001610ebe929190611ef7565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610ee86110e1565b6001600160a01b0316610ef9610c81565b6001600160a01b031614610f1f5760405162461bcd60e51b81526004016106c1906122ea565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff168015610ff05750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b8152600401610f959190611fad565b60206040518083038186803b158015610fad57600080fd5b505afa158015610fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe59190611dde565b6001600160a01b0316145b15610fff576001915050610976565b6110098484611829565b949350505050565b6110196110e1565b6001600160a01b031661102a610c81565b6001600160a01b0316146110505760405162461bcd60e51b81526004016106c1906122ea565b6001600160a01b0381166110765760405162461bcd60e51b81526004016106c190612077565b6107c8816115a1565b60006001600160e01b031982166380ac58cd60e01b14806110b057506001600160e01b03198216635b5e139f60e01b145b806110cb57506001600160e01b0319821663780e9d6360e01b145b806105f457506105f482611857565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ea828260405180602001604052806000815250611870565b60006111668261148e565b9050600081600001516001600160a01b03166111806110e1565b6001600160a01b031614806111b557506111986110e1565b6001600160a01b03166111aa8461069a565b6001600160a01b0316145b806111c9575081516111c9906105aa6110e1565b9050806111e85760405162461bcd60e51b81526004016106c190612356565b846001600160a01b031682600001516001600160a01b03161461121d5760405162461bcd60e51b81526004016106c1906122a4565b6001600160a01b0384166112435760405162461bcd60e51b81526004016106c19061218c565b6112508585856001610e66565b61126060008484600001516110e5565b6001600160a01b03851660009081526004602052604081208054600192906112929084906001600160801b0316612711565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926112de9185911661269b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556113748460016126c6565b6000818152600360205260409020549091506001600160a01b03166114195761139c816110da565b156114195760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114678686866001610e66565b505050505050565b600061147b82846126f2565b9392505050565b600061147b82846126de565b611496611b69565b61149f826110da565b6114bb5760405162461bcd60e51b81526004016106c1906120bd565b60007f0000000000000000000000000000000000000000000000000000000000000064831061151c5761150e7f000000000000000000000000000000000000000000000000000000000000006484612739565b6115199060016126c6565b90505b825b818110611588576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115755792506105f7915050565b50806115808161277c565b91505061151e565b5060405162461bcd60e51b81526004016106c190612571565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611607846001600160a01b0316611ae3565b1561170357836001600160a01b031663150b7a026116236110e1565b8786866040518563ffffffff1660e01b81526004016116459493929190611fc1565b602060405180830381600087803b15801561165f57600080fd5b505af192505050801561168f575060408051601f3d908101601f1916820190925261168c91810190611dc2565b60015b6116e9573d8080156116bd576040519150601f19603f3d011682016040523d82523d6000602084013e6116c2565b606091505b5080516116e15760405162461bcd60e51b81526004016106c1906123ea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611009565b506001949350505050565b60608161173357506040805180820190915260018152600360fc1b60208201526105f7565b8160005b811561175d5780611747816127ce565b91506117569050600a836126de565b9150611737565b60008167ffffffffffffffff81111561178657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117b0576020820181803683370190505b5090505b8415611009576117c5600183612739565b91506117d2600a866127e9565b6117dd9060306126c6565b60f81b81838151811061180057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611822600a866126de565b94506117b4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166118995760405162461bcd60e51b81526004016106c190612474565b6118a2816110da565b156118bf5760405162461bcd60e51b81526004016106c19061243d565b7f00000000000000000000000000000000000000000000000000000000000000648311156118ff5760405162461bcd60e51b81526004016106c190612644565b61190c6000858386610e66565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061196890879061269b565b6001600160801b03168152602001858360200151611986919061269b565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611ad15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a9560008884886115f3565b611ab15760405162461bcd60e51b81526004016106c1906123ea565b81611abb816127ce565b9250508080611ac9906127ce565b915050611a48565b50600081815561146790878588610e66565b3b151590565b828054611af590612793565b90600052602060002090601f016020900481019282611b175760008555611b5d565b82601f10611b3057805160ff1916838001178555611b5d565b82800160010185558215611b5d579182015b82811115611b5d578251825591602001919060010190611b42565b50610b72929150611b80565b604080518082019091526000808252602082015290565b5b80821115610b725760008155600101611b81565b600067ffffffffffffffff80841115611bb057611bb0612829565b604051601f8501601f191681016020018281118282101715611bd457611bd4612829565b604052848152915081838501861015611bec57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611c16578081fd5b813561147b8161283f565b60008060408385031215611c33578081fd5b8235611c3e8161283f565b91506020830135611c4e8161283f565b809150509250929050565b600080600060608486031215611c6d578081fd5b8335611c788161283f565b92506020840135611c888161283f565b929592945050506040919091013590565b60008060008060808587031215611cae578081fd5b8435611cb98161283f565b93506020850135611cc98161283f565b925060408501359150606085013567ffffffffffffffff811115611ceb578182fd5b8501601f81018713611cfb578182fd5b611d0a87823560208401611b95565b91505092959194509250565b60008060408385031215611d28578182fd5b8235611d338161283f565b91506020830135611c4e81612854565b60008060408385031215611d55578182fd5b8235611d608161283f565b946020939093013593505050565b600060208284031215611d7f578081fd5b813561147b81612854565b600060208284031215611d9b578081fd5b815161147b81612854565b600060208284031215611db7578081fd5b813561147b81612862565b600060208284031215611dd3578081fd5b815161147b81612862565b600060208284031215611def578081fd5b815161147b8161283f565b600060208284031215611e0b578081fd5b813567ffffffffffffffff811115611e21578182fd5b8201601f81018413611e31578182fd5b61100984823560208401611b95565b600060208284031215611e51578081fd5b5035919050565b600060208284031215611e69578081fd5b5051919050565b60008060408385031215611e82578182fd5b50508035926020909101359150565b60008151808452611ea9816020860160208601612750565b601f01601f19169290920160200192915050565b60008151611ecf818560208601612750565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b8254600090819060028104600180831680611f1357607f831692505b6020808410821415611f3357634e487b7160e01b87526022600452602487fd5b818015611f475760018114611f5857611f84565b60ff19861689528489019650611f84565b611f618b61268f565b885b86811015611f7c5781548b820152908501908301611f63565b505084890196505b505050505050611fa4611f9f611f9983611eea565b86611ebd565b611ed9565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff490830184611e91565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261147b6020830184611e91565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b038083168185168083038211156126bd576126bd6127fd565b01949350505050565b600082198211156126d9576126d96127fd565b500190565b6000826126ed576126ed612813565b500490565b600081600019048311821515161561270c5761270c6127fd565b500290565b60006001600160801b0383811690831681811015612731576127316127fd565b039392505050565b60008282101561274b5761274b6127fd565b500390565b60005b8381101561276b578181015183820152602001612753565b83811115610e665750506000910152565b60008161278b5761278b6127fd565b506000190190565b6002810460018216806127a757607f821691505b602082108114156127c857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e2576127e26127fd565b5060010190565b6000826127f8576127f8612813565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107c857600080fd5b80151581146107c857600080fd5b6001600160e01b0319811681146107c857600080fdfea2646970667358221220b0b82c6c517e66b73c70404beb599636ccbc9c5943ed47d76488d908081a02ac64736f6c63430008000033
Deployed Bytecode Sourcemap
57212:5226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60627:292;;;;;;;;;;-1:-1:-1;60627:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46449:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57730:54::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47974:204::-;;;;;;;;;;-1:-1:-1;47974:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47537:379::-;;;;;;;;;;-1:-1:-1;47537:379:0;;;;;:::i;:::-;;:::i;:::-;;60069:118;;;;;;;;;;-1:-1:-1;60069:118:0;;;;;:::i;:::-;;:::i;43284:94::-;;;;;;;;;;;;;:::i;57791:37::-;;;;;;;;;;;;;:::i;48824:142::-;;;;;;;;;;-1:-1:-1;48824:142:0;;;;;:::i;:::-;;:::i;59752:158::-;;;;;;;;;;-1:-1:-1;59752:158:0;;;;;:::i;:::-;;:::i;62117:318::-;;;;;;;;;;-1:-1:-1;62117:318:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;43915:744::-;;;;;;;;;;-1:-1:-1;43915:744:0;;;;;:::i;:::-;;:::i;59918:143::-;;;;;;;;;;;;;:::i;49029:157::-;;;;;;;;;;-1:-1:-1;49029:157:0;;;;;:::i;:::-;;:::i;60195:168::-;;;;;;;;;;-1:-1:-1;60195:168:0;;;;;:::i;:::-;;:::i;43447:177::-;;;;;;;;;;-1:-1:-1;43447:177:0;;;;;:::i;:::-;;:::i;59354:100::-;;;;;;;;;;-1:-1:-1;59354:100:0;;;;;:::i;:::-;;:::i;46272:118::-;;;;;;;;;;-1:-1:-1;46272:118:0;;;;;:::i;:::-;;:::i;45149:211::-;;;;;;;;;;-1:-1:-1;45149:211:0;;;;;:::i;:::-;;:::i;59190:93::-;;;;;;;;;;;;;:::i;21307:103::-;;;;;;;;;;;;;:::i;20656:87::-;;;;;;;;;;;;;:::i;46604:98::-;;;;;;;;;;;;;:::i;58835:282::-;;;;;;:::i;:::-;;:::i;48242:274::-;;;;;;;;;;-1:-1:-1;48242:274:0;;;;;:::i;:::-;;:::i;49249:311::-;;;;;;;;;;-1:-1:-1;49249:311:0;;;;;:::i;:::-;;:::i;57637:45::-;;;;;;;;;;;;;:::i;61744:307::-;;;;;;;;;;-1:-1:-1;61744:307:0;;;;;:::i;:::-;;:::i;57689:32::-;;;;;;;;;;;;;:::i;53664:43::-;;;;;;;;;;;;;:::i;59578:166::-;;;;;;;;;;-1:-1:-1;59578:166:0;;;;;:::i;:::-;;:::i;61056:617::-;;;;;;;;;;-1:-1:-1;61056:617:0;;;;;:::i;:::-;;:::i;21565:201::-;;;;;;;;;;-1:-1:-1;21565:201:0;;;;;:::i;:::-;;:::i;60627:292::-;60775:4;-1:-1:-1;;;;;;60817:41:0;;-1:-1:-1;;;60817:41:0;;:94;;;60875:36;60899:11;60875:23;:36::i;:::-;60797:114;;60627:292;;;;:::o;46449:94::-;46503:13;46532:5;46525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46449:94;:::o;57730:54::-;57774:10;57730:54;:::o;47974:204::-;48042:7;48066:16;48074:7;48066;:16::i;:::-;48058:74;;;;-1:-1:-1;;;48058:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;48148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48148:24:0;;47974:204::o;47537:379::-;47606:13;47622:24;47638:7;47622:15;:24::i;:::-;47606:40;;47667:5;-1:-1:-1;;;;;47661:11:0;:2;-1:-1:-1;;;;;47661:11:0;;;47653:58;;;;-1:-1:-1;;;47653:58:0;;;;;;;:::i;:::-;47752:5;-1:-1:-1;;;;;47736:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;47736:21:0;;:62;;;;47761:37;47778:5;47785:12;:10;:12::i;47761:37::-;47720:153;;;;-1:-1:-1;;;47720:153:0;;;;;;;:::i;:::-;47882:28;47891:2;47895:7;47904:5;47882:8;:28::i;:::-;47537:379;;;:::o;60069:118::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;60142:37:::1;60152:10;60164:14;60142:9;:37::i;:::-;60069:118:::0;:::o;43284:94::-;43337:7;43360:12;43284:94;:::o;57791:37::-;;;;;;:::o;48824:142::-;48932:28;48942:4;48948:2;48952:7;48932:9;:28::i;59752:158::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;59862:18:::1;:40:::0;;-1:-1:-1;;59862:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59752:158::o;62117:318::-;62242:16;62260:21;62307:16;62315:7;62307;:16::i;:::-;62299:46;;;;-1:-1:-1;;;62299:46:0;;;;;;;:::i;:::-;62374:4;62381:45;62394:26;62407:9;62418:1;62394:12;:26::i;:::-;62422:3;62381:12;:45::i;:::-;62358:69;;;;62117:318;;;;;:::o;43915:744::-;44024:7;44059:16;44069:5;44059:9;:16::i;:::-;44051:5;:24;44043:71;;;;-1:-1:-1;;;44043:71:0;;;;;;;:::i;:::-;44121:22;44146:13;:11;:13::i;:::-;44121:38;;44166:19;44196:25;44246:9;44241:350;44265:14;44261:1;:18;44241:350;;;44295:31;44329:14;;;:11;:14;;;;;;;;;44295:48;;;;;;;;;-1:-1:-1;;;;;44295:48:0;;;;;-1:-1:-1;;;44295:48:0;;;;;;;;;;;;44356:28;44352:89;;44417:14;;;-1:-1:-1;44352:89:0;44474:5;-1:-1:-1;;;;;44453:26:0;:17;-1:-1:-1;;;;;44453:26:0;;44449:135;;;44511:5;44496:11;:20;44492:59;;;-1:-1:-1;44538:1:0;-1:-1:-1;44531:8:0;;-1:-1:-1;;;44531:8:0;44492:59;44561:13;;;;:::i;:::-;;;;44449:135;-1:-1:-1;44281:3:0;;;;:::i;:::-;;;;44241:350;;;;44597:56;;-1:-1:-1;;;44597:56:0;;;;;;;:::i;43915:744::-;;;;;:::o;59918:143::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;60016:37:::1;::::0;59984:21:::1;::::0;60024:10:::1;::::0;60016:37;::::1;;;::::0;59984:21;;59966:15:::1;60016:37:::0;59966:15;60016:37;59984:21;60024:10;60016:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;20947:1;59918:143::o:0;49029:157::-;49141:39;49158:4;49164:2;49168:7;49141:39;;;;;;;;;;;;:16;:39::i;60195:168::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;60279:30:::1;::::0;-1:-1:-1;;;60279:30:0;;60261:15:::1;::::0;-1:-1:-1;;;;;60279:15:0;::::1;::::0;::::1;::::0;:30:::1;::::0;60303:4:::1;::::0;60279:30:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60320:35;::::0;-1:-1:-1;;;60320:35:0;;60261:48;;-1:-1:-1;;;;;;60320:14:0;::::1;::::0;::::1;::::0;:35:::1;::::0;60335:10:::1;::::0;60261:48;;60320:35:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;43447:177::-:0;43514:7;43546:13;:11;:13::i;:::-;43538:5;:21;43530:69;;;;-1:-1:-1;;;43530:69:0;;;;;;;:::i;:::-;-1:-1:-1;43613:5:0;43447:177::o;59354:100::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;59428:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;46272:118::-:0;46336:7;46359:20;46371:7;46359:11;:20::i;:::-;:25;;46272:118;-1:-1:-1;;46272:118:0:o;45149:211::-;45213:7;-1:-1:-1;;;;;45237:19:0;;45229:75;;;;-1:-1:-1;;;45229:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;45326:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;45326:27:0;;45149:211::o;59190:93::-;59235:13;59268:7;59261:14;;;;;:::i;21307:103::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;21372:30:::1;21399:1;21372:18;:30::i;:::-;21307:103::o:0;20656:87::-;20729:6;;-1:-1:-1;;;;;20729:6:0;20656:87;:::o;46604:98::-;46660:13;46689:7;46682:14;;;;;:::i;58835:282::-;12585:1;13183:7;;:19;;13175:63;;;;-1:-1:-1;;;13175:63:0;;;;;;;:::i;:::-;12585:1;13316:7;:18;57774:10:::1;58975:14:::0;58598:9:::1;58571:22;58975:14:::0;57774:10;58571:22:::1;:::i;:::-;58570:37;58548:111;;;;-1:-1:-1::0;;;58548:111:0::1;;;;;;;:::i;:::-;57958:18:::2;::::0;::::2;;57950:54;;;;-1:-1:-1::0;;;57950:54:0::2;;;;;;;:::i;:::-;59038:14:::3;58369:9;;58334:14;58318:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;58296:144;;;;-1:-1:-1::0;;;58296:144:0::3;;;;;;;:::i;:::-;59072:37:::4;59082:10;59094:14;59072:9;:37::i;:::-;-1:-1:-1::0;;12541:1:0;13495:7;:22;-1:-1:-1;;58835:282:0:o;48242:274::-;48345:12;:10;:12::i;:::-;-1:-1:-1;;;;;48333:24:0;:8;-1:-1:-1;;;;;48333:24:0;;;48325:63;;;;-1:-1:-1;;;48325:63:0;;;;;;;:::i;:::-;48442:8;48397:18;:32;48416:12;:10;:12::i;:::-;-1:-1:-1;;;;;48397:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;48397:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;48397:53:0;;;;;;;;;;;48477:12;:10;:12::i;:::-;-1:-1:-1;;;;;48462:48:0;;48501:8;48462:48;;;;;;:::i;:::-;;;;;;;;48242:274;;:::o;49249:311::-;49386:28;49396:4;49402:2;49406:7;49386:9;:28::i;:::-;49437:48;49460:4;49466:2;49470:7;49479:5;49437:22;:48::i;:::-;49421:133;;;;-1:-1:-1;;;49421:133:0;;;;;;;:::i;:::-;49249:311;;;;:::o;57637:45::-;57680:2;57637:45;:::o;61744:307::-;61862:13;61901:16;61909:7;61901;:16::i;:::-;61893:46;;;;-1:-1:-1;;;61893:46:0;;;;;;;:::i;:::-;61996:7;62010:22;62011:9;:7;62019:1;62011:9;:::i;:::-;62010:20;:22::i;:::-;61979:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61952:91;;61744:307;;;:::o;57689:32::-;;;;:::o;53664:43::-;;;;:::o;59578:166::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;59692:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;59692:44:0::1;-1:-1:-1::0;;;;59692:44:0;;::::1;::::0;;;::::1;::::0;;59578:166::o;61056:617::-;61404:27;;61181:4;;-1:-1:-1;;;;;61404:27:0;;;-1:-1:-1;;;61471:20:0;;;;:86;;;;;61549:8;-1:-1:-1;;;;;61508:49:0;61516:13;-1:-1:-1;;;;;61516:21:0;;61538:5;61516:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61508:49:0;;61471:86;61453:154;;;61591:4;61584:11;;;;;61453:154;61626:39;61649:5;61656:8;61626:22;:39::i;:::-;61619:46;61056:617;-1:-1:-1;;;;61056:617:0:o;21565:201::-;20887:12;:10;:12::i;:::-;-1:-1:-1;;;;;20876:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20876:23:0;;20868:68;;;;-1:-1:-1;;;20868:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21654:22:0;::::1;21646:73;;;;-1:-1:-1::0;;;21646:73:0::1;;;;;;;:::i;:::-;21730:28;21749:8;21730:18;:28::i;44723:370::-:0;44850:4;-1:-1:-1;;;;;;44880:40:0;;-1:-1:-1;;;44880:40:0;;:99;;-1:-1:-1;;;;;;;44931:48:0;;-1:-1:-1;;;44931:48:0;44880:99;:160;;;-1:-1:-1;;;;;;;44990:50:0;;-1:-1:-1;;;44990:50:0;44880:160;:207;;;;45051:36;45075:11;45051:23;:36::i;49799:105::-;49856:4;49886:12;-1:-1:-1;49876:22:0;49799:105::o;19380:98::-;19460:10;19380:98;:::o;53486:172::-;53583:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53583:29:0;-1:-1:-1;;;;;53583:29:0;;;;;;;;;53624:28;;53583:24;;53624:28;;;;;;;53486:172;;;:::o;49910:98::-;49975:27;49985:2;49989:8;49975:27;;;;;;;;;;;;:9;:27::i;51851:1529::-;51948:35;51986:20;51998:7;51986:11;:20::i;:::-;51948:58;;52015:22;52057:13;:18;;;-1:-1:-1;;;;;52041:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;52041:34:0;;:81;;;;52110:12;:10;:12::i;:::-;-1:-1:-1;;;;;52086:36:0;:20;52098:7;52086:11;:20::i;:::-;-1:-1:-1;;;;;52086:36:0;;52041:81;:142;;;-1:-1:-1;52150:18:0;;52133:50;;52170:12;:10;:12::i;52133:50::-;52015:169;;52209:17;52193:101;;;;-1:-1:-1;;;52193:101:0;;;;;;;:::i;:::-;52341:4;-1:-1:-1;;;;;52319:26:0;:13;:18;;;-1:-1:-1;;;;;52319:26:0;;52303:98;;;;-1:-1:-1;;;52303:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52416:16:0;;52408:66;;;;-1:-1:-1;;;52408:66:0;;;;;;;:::i;:::-;52483:43;52505:4;52511:2;52515:7;52524:1;52483:21;:43::i;:::-;52583:49;52600:1;52604:7;52613:13;:18;;;52583:8;:49::i;:::-;-1:-1:-1;;;;;52641:18:0;;;;;;:12;:18;;;;;:31;;52671:1;;52641:18;:31;;52671:1;;-1:-1:-1;;;;;52641:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;52641:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;52679:16:0;;-1:-1:-1;52679:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;52679:16:0;;:29;;-1:-1:-1;;52679:29:0;;:::i;:::-;;;-1:-1:-1;;;;;52679:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52738:43:0;;;;;;;;-1:-1:-1;;;;;52738:43:0;;;;;;52764:15;52738:43;;;;;;;;;-1:-1:-1;52715:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;52715:66:0;-1:-1:-1;;;;52715:66:0;;;;-1:-1:-1;;;;;;52715:66:0;;;;;;;;53031:11;52727:7;-1:-1:-1;53031:11:0;:::i;:::-;53094:1;53053:24;;;:11;:24;;;;;:29;53009:33;;-1:-1:-1;;;;;;53053:29:0;53049:236;;53111:20;53119:11;53111:7;:20::i;:::-;53107:171;;;53171:97;;;;;;;;53198:18;;-1:-1:-1;;;;;53171:97:0;;;;;;53229:28;;;;53171:97;;;;;;;;;;-1:-1:-1;53144:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;53144:124:0;;;;;;;;;-1:-1:-1;;;;53144:124:0;-1:-1:-1;;;53144:124:0;;;;;;;;;;;;;;53107:171;53317:7;53313:2;-1:-1:-1;;;;;53298:27:0;53307:4;-1:-1:-1;;;;;53298:27:0;;;;;;;;;;;53332:42;53353:4;53359:2;53363:7;53372:1;53332:20;:42::i;:::-;51851:1529;;;;;;:::o;5881:98::-;5939:7;5966:5;5970:1;5966;:5;:::i;:::-;5959:12;5881:98;-1:-1:-1;;;5881:98:0:o;6280:::-;6338:7;6365:5;6369:1;6365;:5;:::i;45612:606::-;45688:21;;:::i;:::-;45729:16;45737:7;45729;:16::i;:::-;45721:71;;;;-1:-1:-1;;;45721:71:0;;;;;;;:::i;:::-;45801:26;45849:12;45838:7;:23;45834:93;;45893:22;45903:12;45893:7;:22;:::i;:::-;:26;;45918:1;45893:26;:::i;:::-;45872:47;;45834:93;45955:7;45935:212;45972:18;45964:4;:26;45935:212;;46009:31;46043:17;;;:11;:17;;;;;;;;;46009:51;;;;;;;;;-1:-1:-1;;;;;46009:51:0;;;;;-1:-1:-1;;;46009:51:0;;;;;;;;;;;;46073:28;46069:71;;46121:9;-1:-1:-1;46114:16:0;;-1:-1:-1;;46114:16:0;46069:71;-1:-1:-1;45992:6:0;;;;:::i;:::-;;;;45935:212;;;;46155:57;;-1:-1:-1;;;46155:57:0;;;;;;;:::i;21926:191::-;22019:6;;;-1:-1:-1;;;;;22036:17:0;;;-1:-1:-1;;;;;;22036:17:0;;;;;;;22069:40;;22019:6;;;22036:17;22019:6;;22069:40;;22000:16;;22069:40;21926:191;;:::o;55201:690::-;55338:4;55355:15;:2;-1:-1:-1;;;;;55355:13:0;;:15::i;:::-;55351:535;;;55410:2;-1:-1:-1;;;;;55394:36:0;;55431:12;:10;:12::i;:::-;55445:4;55451:7;55460:5;55394:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55394:72:0;;;;;;;;-1:-1:-1;;55394:72:0;;;;;;;;;;;;:::i;:::-;;;55381:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55625:13:0;;55621:215;;55658:61;;-1:-1:-1;;;55658:61:0;;;;;;;:::i;55621:215::-;55804:6;55798:13;55789:6;55785:2;55781:15;55774:38;55381:464;-1:-1:-1;;;;;;55516:55:0;-1:-1:-1;;;55516:55:0;;-1:-1:-1;55509:62:0;;55351:535;-1:-1:-1;55874:4:0;55201:690;;;;;;:::o;16942:723::-;16998:13;17219:10;17215:53;;-1:-1:-1;17246:10:0;;;;;;;;;;;;-1:-1:-1;;;17246:10:0;;;;;;17215:53;17293:5;17278:12;17334:78;17341:9;;17334:78;;17367:8;;;;:::i;:::-;;-1:-1:-1;17390:10:0;;-1:-1:-1;17398:2:0;17390:10;;:::i;:::-;;;17334:78;;;17422:19;17454:6;17444:17;;;;;;-1:-1:-1;;;17444:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17444:17:0;;17422:39;;17472:154;17479:10;;17472:154;;17506:11;17516:1;17506:11;;:::i;:::-;;-1:-1:-1;17575:10:0;17583:2;17575:5;:10;:::i;:::-;17562:24;;:2;:24;:::i;:::-;17549:39;;17532:6;17539;17532:14;;;;;;-1:-1:-1;;;17532:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17532:56:0;;;;;;;;-1:-1:-1;17603:11:0;17612:2;17603:11;;:::i;:::-;;;17472:154;;48579:186;-1:-1:-1;;;;;48724:25:0;;;48701:4;48724:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48579:186::o;34056:157::-;-1:-1:-1;;;;;;34165:40:0;;-1:-1:-1;;;34165:40:0;34056:157;;;:::o;50347:1272::-;50452:20;50475:12;-1:-1:-1;;;;;50502:16:0;;50494:62;;;;-1:-1:-1;;;50494:62:0;;;;;;;:::i;:::-;50693:21;50701:12;50693:7;:21::i;:::-;50692:22;50684:64;;;;-1:-1:-1;;;50684:64:0;;;;;;;:::i;:::-;50775:12;50763:8;:24;;50755:71;;;;-1:-1:-1;;;50755:71:0;;;;;;;:::i;:::-;50835:61;50865:1;50869:2;50873:12;50887:8;50835:21;:61::i;:::-;-1:-1:-1;;;;;50938:16:0;;50905:30;50938:16;;;:12;:16;;;;;;;;;50905:49;;;;;;;;;-1:-1:-1;;;;;50905:49:0;;;;;-1:-1:-1;;;50905:49:0;;;;;;;;;;;50980:119;;;;;;;;51000:19;;50905:49;;50980:119;;;51000:39;;51030:8;;51000:39;:::i;:::-;-1:-1:-1;;;;;50980:119:0;;;;;51083:8;51048:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;50980:119:0;;;;;;-1:-1:-1;;;;;50961:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;50961:138:0;;;;-1:-1:-1;;50961:138:0;;;;;;;;;;;;;;;;;51134:43;;;;;;;;;;;51160:15;51134:43;;;;;;;;51106:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;51106:71:0;-1:-1:-1;;;;51106:71:0;;;;-1:-1:-1;;;;;;51106:71:0;;;;;;;;;;;;;;;51118:12;;51230:281;51254:8;51250:1;:12;51230:281;;;51283:38;;51308:12;;-1:-1:-1;;;;;51283:38:0;;;51300:1;;51283:38;;51300:1;;51283:38;51348:59;51379:1;51383:2;51387:12;51401:5;51348:22;:59::i;:::-;51330:150;;;;-1:-1:-1;;;51330:150:0;;;;;;;:::i;:::-;51489:14;;;;:::i;:::-;;;;51264:3;;;;;:::i;:::-;;;;51230:281;;;-1:-1:-1;51519:12:0;:27;;;51553:60;;51586:2;51590:12;51604:8;51553:20;:60::i;22944:387::-;23267:20;23315:8;;;22944:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:396::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2939;2898;2939;:::i;3008:327::-;;;3137:2;3125:9;3116:7;3112:23;3108:32;3105:2;;;3158:6;3150;3143:22;3105:2;3202:9;3189:23;3221:33;3248:5;3221:33;:::i;:::-;3273:5;3325:2;3310:18;;;;3297:32;;-1:-1:-1;;;3095:240:1:o;3340:253::-;;3449:2;3437:9;3428:7;3424:23;3420:32;3417:2;;;3470:6;3462;3455:22;3417:2;3514:9;3501:23;3533:30;3557:5;3533:30;:::i;3598:257::-;;3718:2;3706:9;3697:7;3693:23;3689:32;3686:2;;;3739:6;3731;3724:22;3686:2;3776:9;3770:16;3795:30;3819:5;3795:30;:::i;3860:257::-;;3971:2;3959:9;3950:7;3946:23;3942:32;3939:2;;;3992:6;3984;3977:22;3939:2;4036:9;4023:23;4055:32;4081:5;4055:32;:::i;4122:261::-;;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4302:9;4296:16;4321:32;4347:5;4321:32;:::i;4666:292::-;;4818:2;4806:9;4797:7;4793:23;4789:32;4786:2;;;4839:6;4831;4824:22;4786:2;4876:9;4870:16;4895:33;4922:5;4895:33;:::i;4963:482::-;;5085:2;5073:9;5064:7;5060:23;5056:32;5053:2;;;5106:6;5098;5091:22;5053:2;5151:9;5138:23;5184:18;5176:6;5173:30;5170:2;;;5221:6;5213;5206:22;5170:2;5249:22;;5302:4;5294:13;;5290:27;-1:-1:-1;5280:2:1;;5336:6;5328;5321:22;5280:2;5364:75;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5364:75;:::i;5450:190::-;;5562:2;5550:9;5541:7;5537:23;5533:32;5530:2;;;5583:6;5575;5568:22;5530:2;-1:-1:-1;5611:23:1;;5520:120;-1:-1:-1;5520:120:1:o;5645:194::-;;5768:2;5756:9;5747:7;5743:23;5739:32;5736:2;;;5789:6;5781;5774:22;5736:2;-1:-1:-1;5817:16:1;;5726:113;-1:-1:-1;5726:113:1:o;5844:258::-;;;5973:2;5961:9;5952:7;5948:23;5944:32;5941:2;;;5994:6;5986;5979:22;5941:2;-1:-1:-1;;6022:23:1;;;6092:2;6077:18;;;6064:32;;-1:-1:-1;5931:171:1:o;6107:259::-;;6188:5;6182:12;6215:6;6210:3;6203:19;6231:63;6287:6;6280:4;6275:3;6271:14;6264:4;6257:5;6253:16;6231:63;:::i;:::-;6348:2;6327:15;-1:-1:-1;;6323:29:1;6314:39;;;;6355:4;6310:50;;6158:208;-1:-1:-1;;6158:208:1:o;6371:187::-;;6453:5;6447:12;6468:52;6513:6;6508:3;6501:4;6494:5;6490:16;6468:52;:::i;:::-;6536:16;;;;;6423:135;-1:-1:-1;;6423:135:1:o;6563:120::-;-1:-1:-1;;;6630:20:1;;6675:1;6666:11;;6620:63::o;6688:116::-;-1:-1:-1;;;6755:16:1;;6796:1;6787:11;;6745:59::o;6809:1449::-;7245:13;;6809:1449;;;;7318:1;7303:17;;7339:1;7375:18;;;;7402:2;;7456:4;7448:6;7444:17;7434:27;;7402:2;7482;7530;7522:6;7519:14;7499:18;7496:38;7493:2;;;-1:-1:-1;;;7557:33:1;;7613:4;7610:1;7603:15;7643:4;7564:3;7631:17;7493:2;7674:18;7701:104;;;;7819:1;7814:324;;;;7667:471;;7701:104;-1:-1:-1;;7734:24:1;;7722:37;;7779:16;;;;-1:-1:-1;7701:104:1;;7814:324;7850:39;7882:6;7850:39;:::i;:::-;7911:3;7927:165;7941:6;7938:1;7935:13;7927:165;;;8019:14;;8006:11;;;7999:35;8062:16;;;;7956:10;;7927:165;;;7931:3;;8121:6;8116:3;8112:16;8105:23;;7667:471;;;;;;;8154:98;8186:65;8214:36;8246:3;8214:36;:::i;:::-;8206:6;8186:65;:::i;:::-;8154:98;:::i;:::-;8147:105;7195:1063;-1:-1:-1;;;;;7195:1063:1:o;8263:203::-;-1:-1:-1;;;;;8427:32:1;;;;8409:51;;8397:2;8382:18;;8364:102::o;8471:490::-;-1:-1:-1;;;;;8740:15:1;;;8722:34;;8792:15;;8787:2;8772:18;;8765:43;8839:2;8824:18;;8817:34;;;8887:3;8882:2;8867:18;;8860:31;;;8471:490;;8908:47;;8935:19;;8927:6;8908:47;:::i;:::-;8900:55;8674:287;-1:-1:-1;;;;;;8674:287:1:o;8966:274::-;-1:-1:-1;;;;;9158:32:1;;;;9140:51;;9222:2;9207:18;;9200:34;9128:2;9113:18;;9095:145::o;9245:187::-;9410:14;;9403:22;9385:41;;9373:2;9358:18;;9340:92::o;9437:221::-;;9586:2;9575:9;9568:21;9606:46;9648:2;9637:9;9633:18;9625:6;9606:46;:::i;9663:398::-;9865:2;9847:21;;;9904:2;9884:18;;;9877:30;9943:34;9938:2;9923:18;;9916:62;-1:-1:-1;;;10009:2:1;9994:18;;9987:32;10051:3;10036:19;;9837:224::o;10066:402::-;10268:2;10250:21;;;10307:2;10287:18;;;10280:30;10346:34;10341:2;10326:18;;10319:62;-1:-1:-1;;;10412:2:1;10397:18;;10390:36;10458:3;10443:19;;10240:228::o;10473:406::-;10675:2;10657:21;;;10714:2;10694:18;;;10687:30;10753:34;10748:2;10733:18;;10726:62;-1:-1:-1;;;10819:2:1;10804:18;;10797:40;10869:3;10854:19;;10647:232::o;10884:399::-;11086:2;11068:21;;;11125:2;11105:18;;;11098:30;11164:34;11159:2;11144:18;;11137:62;-1:-1:-1;;;11230:2:1;11215:18;;11208:33;11273:3;11258:19;;11058:225::o;11288:398::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;11568:34;11563:2;11548:18;;11541:62;-1:-1:-1;;;11634:2:1;11619:18;;11612:32;11676:3;11661:19;;11462:224::o;11691:401::-;11893:2;11875:21;;;11932:2;11912:18;;;11905:30;11971:34;11966:2;11951:18;;11944:62;-1:-1:-1;;;12037:2:1;12022:18;;12015:35;12082:3;12067:19;;11865:227::o;12097:341::-;12299:2;12281:21;;;12338:2;12318:18;;;12311:30;-1:-1:-1;;;12372:2:1;12357:18;;12350:47;12429:2;12414:18;;12271:167::o;12443:421::-;12645:2;12627:21;;;12684:2;12664:18;;;12657:30;12723:34;12718:2;12703:18;;12696:62;12794:27;12789:2;12774:18;;12767:55;12854:3;12839:19;;12617:247::o;12869:407::-;13071:2;13053:21;;;13110:2;13090:18;;;13083:30;13149:34;13144:2;13129:18;;13122:62;-1:-1:-1;;;13215:2:1;13200:18;;13193:41;13266:3;13251:19;;13043:233::o;13281:402::-;13483:2;13465:21;;;13522:2;13502:18;;;13495:30;13561:34;13556:2;13541:18;;13534:62;-1:-1:-1;;;13627:2:1;13612:18;;13605:36;13673:3;13658:19;;13455:228::o;13688:356::-;13890:2;13872:21;;;13909:18;;;13902:30;13968:34;13963:2;13948:18;;13941:62;14035:2;14020:18;;13862:182::o;14049:350::-;14251:2;14233:21;;;14290:2;14270:18;;;14263:30;14329:28;14324:2;14309:18;;14302:56;14390:2;14375:18;;14223:176::o;14404:414::-;14606:2;14588:21;;;14645:2;14625:18;;;14618:30;14684:34;14679:2;14664:18;;14657:62;-1:-1:-1;;;14750:2:1;14735:18;;14728:48;14808:3;14793:19;;14578:240::o;14823:398::-;15025:2;15007:21;;;15064:2;15044:18;;;15037:30;15103:34;15098:2;15083:18;;15076:62;-1:-1:-1;;;15169:2:1;15154:18;;15147:32;15211:3;15196:19;;14997:224::o;15226:415::-;15428:2;15410:21;;;15467:2;15447:18;;;15440:30;15506:34;15501:2;15486:18;;15479:62;-1:-1:-1;;;15572:2:1;15557:18;;15550:49;15631:3;15616:19;;15400:241::o;15646:353::-;15848:2;15830:21;;;15887:2;15867:18;;;15860:30;15926:31;15921:2;15906:18;;15899:59;15990:2;15975:18;;15820:179::o;16004:397::-;16206:2;16188:21;;;16245:2;16225:18;;;16218:30;16284:34;16279:2;16264:18;;16257:62;-1:-1:-1;;;16350:2:1;16335:18;;16328:31;16391:3;16376:19;;16178:223::o;16406:348::-;16608:2;16590:21;;;16647:2;16627:18;;;16620:30;16686:26;16681:2;16666:18;;16659:54;16745:2;16730:18;;16580:174::o;16759:410::-;16961:2;16943:21;;;17000:2;16980:18;;;16973:30;17039:34;17034:2;17019:18;;17012:62;-1:-1:-1;;;17105:2:1;17090:18;;17083:44;17159:3;17144:19;;16933:236::o;17174:355::-;17376:2;17358:21;;;17415:2;17395:18;;;17388:30;17454:33;17449:2;17434:18;;17427:61;17520:2;17505:18;;17348:181::o;17534:411::-;17736:2;17718:21;;;17775:2;17755:18;;;17748:30;17814:34;17809:2;17794:18;;17787:62;-1:-1:-1;;;17880:2:1;17865:18;;17858:45;17935:3;17920:19;;17708:237::o;17950:347::-;18152:2;18134:21;;;18191:2;18171:18;;;18164:30;18230:25;18225:2;18210:18;;18203:53;18288:2;18273:18;;18124:173::o;18302:409::-;18504:2;18486:21;;;18543:2;18523:18;;;18516:30;18582:34;18577:2;18562:18;;18555:62;-1:-1:-1;;;18648:2:1;18633:18;;18626:43;18701:3;18686:19;;18476:235::o;18716:398::-;18918:2;18900:21;;;18957:2;18937:18;;;18930:30;18996:34;18991:2;18976:18;;18969:62;-1:-1:-1;;;19062:2:1;19047:18;;19040:32;19104:3;19089:19;;18890:224::o;19119:177::-;19265:25;;;19253:2;19238:18;;19220:76::o;19301:129::-;;19369:17;;;19419:4;19403:21;;;19359:71::o;19435:253::-;;-1:-1:-1;;;;;19564:2:1;19561:1;19557:10;19594:2;19591:1;19587:10;19625:3;19621:2;19617:12;19612:3;19609:21;19606:2;;;19633:18;;:::i;:::-;19669:13;;19483:205;-1:-1:-1;;;;19483:205:1:o;19693:128::-;;19764:1;19760:6;19757:1;19754:13;19751:2;;;19770:18;;:::i;:::-;-1:-1:-1;19806:9:1;;19741:80::o;19826:120::-;;19892:1;19882:2;;19897:18;;:::i;:::-;-1:-1:-1;19931:9:1;;19872:74::o;19951:168::-;;20057:1;20053;20049:6;20045:14;20042:1;20039:21;20034:1;20027:9;20020:17;20016:45;20013:2;;;20064:18;;:::i;:::-;-1:-1:-1;20104:9:1;;20003:116::o;20124:246::-;;-1:-1:-1;;;;;20277:10:1;;;;20247;;20299:12;;;20296:2;;;20314:18;;:::i;:::-;20351:13;;20173:197;-1:-1:-1;;;20173:197:1:o;20375:125::-;;20443:1;20440;20437:8;20434:2;;;20448:18;;:::i;:::-;-1:-1:-1;20485:9:1;;20424:76::o;20505:258::-;20577:1;20587:113;20601:6;20598:1;20595:13;20587:113;;;20677:11;;;20671:18;20658:11;;;20651:39;20623:2;20616:10;20587:113;;;20718:6;20715:1;20712:13;20709:2;;;-1:-1:-1;;20753:1:1;20735:16;;20728:27;20558:205::o;20768:136::-;;20835:5;20825:2;;20844:18;;:::i;:::-;-1:-1:-1;;;20880:18:1;;20815:89::o;20909:380::-;20994:1;20984:12;;21041:1;21031:12;;;21052:2;;21106:4;21098:6;21094:17;21084:27;;21052:2;21159;21151:6;21148:14;21128:18;21125:38;21122:2;;;21205:10;21200:3;21196:20;21193:1;21186:31;21240:4;21237:1;21230:15;21268:4;21265:1;21258:15;21122:2;;20964:325;;;:::o;21294:135::-;;-1:-1:-1;;21354:17:1;;21351:2;;;21374:18;;:::i;:::-;-1:-1:-1;21421:1:1;21410:13;;21341:88::o;21434:112::-;;21492:1;21482:2;;21497:18;;:::i;:::-;-1:-1:-1;21531:9:1;;21472:74::o;21551:127::-;21612:10;21607:3;21603:20;21600:1;21593:31;21643:4;21640:1;21633:15;21667:4;21664:1;21657:15;21683:127;21744:10;21739:3;21735:20;21732:1;21725:31;21775:4;21772:1;21765:15;21799:4;21796:1;21789:15;21815:127;21876:10;21871:3;21867:20;21864:1;21857:31;21907:4;21904:1;21897:15;21931:4;21928:1;21921:15;21947:133;-1:-1:-1;;;;;22024:31:1;;22014:42;;22004:2;;22070:1;22067;22060:12;22085:120;22173:5;22166:13;22159:21;22152:5;22149:32;22139:2;;22195:1;22192;22185:12;22210:133;-1:-1:-1;;;;;;22286:32:1;;22276:43;;22266:2;;22333:1;22330;22323:12
Swarm Source
ipfs://b0b82c6c517e66b73c70404beb599636ccbc9c5943ed47d76488d908081a02ac
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.