ERC-721
Overview
Max Total Supply
21 BDC
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CollabsContract
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
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/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if account is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, isContract will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on isContract to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's transfer: sends amount wei to * recipient, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by transfer, making them unable to receive funds via * transfer. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to recipient, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level call. A * plain call is an unsafe replacement for a function call: use this * function instead. * * If target reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode]. * * Requirements: * * - target must be a contract. * - calling target with data must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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/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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by owner at a given index of its token list. * Use along with {balanceOf} to enumerate all of owner's tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given index of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for tokenId token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/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/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/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); } } //-------------END DEPENDENCIES------------------------// /** * @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 _startTokenId() (defaults to 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; uint256 public immutable collectionSize; uint256 public 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_; currentIndex = 4201; } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 4201; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalMinted(); } function currentTokenId() public view returns (uint256) { return _totalMinted(); } function getNextTokenId() public view returns (uint256) { return SafeMath.add(_totalMinted(), 1); } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { unchecked { return currentIndex - _startTokenId(); } } /** * @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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; 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) { string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @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 _startTokenId() <= tokenId && 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"); if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet'); 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 {} } interface IERC20 { function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } abstract contract Withdrawable is Ownable { address public payableAddresses = 0x0206749A610Df9490C95f44D178D8527A1B014f1; function _widthdraw(uint256 _amount) public onlyOwner { (bool success, ) = payableAddresses.call{value: _amount}(""); require(success, "Transfer failed."); } } abstract contract RamppERC721A is Ownable, ERC721A, Withdrawable, ReentrancyGuard { constructor( string memory tokenName, string memory tokenSymbol ) ERC721A(tokenName, tokenSymbol, 20, 10000 ) {} using SafeMath for uint256; string public _baseTokenURI = "ipfs://QmSd5A4MwQo5u5UTEvHbSGbLBbnwWj6W7ZTU3sfpCZau7f/"; mapping(address => uint256) private addressMints; /////////////// Admin Mint Functions /** * @dev Mints a token to an address with a tokenURI. * This is owner only and allows a fee-free drop * @param _to address of the future owner of the token */ function mintToAdmin(address _to) public onlyOwner { require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap"); _safeMint(_to, 1); } function mintManyAdmin(address[] memory _addresses, uint256 _addressCount) public onlyOwner { for(uint i=0; i < _addressCount; i++ ) { mintToAdmin(_addresses[i]); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function baseTokenURI() public view returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } } //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract CollabsContract is RamppERC721A { constructor() RamppERC721A("Battle Derps Collabs", "BDC"){} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"_widthdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","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":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_addressCount","type":"uint256"}],"name":"mintManyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","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":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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"}]
Contract Creation Code
60a06040526000600955730206749a610df9490c95f44d178d8527a1b014f1600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200480d60369139600c90805190602001906200008f929190620002e7565b503480156200009d57600080fd5b506040518060400160405280601481526020017f426174746c6520446572707320436f6c6c6162730000000000000000000000008152506040518060400160405280600381526020017f42444300000000000000000000000000000000000000000000000000000000008152508181601461271062000131620001256200021b60201b60201c565b6200022360201b60201c565b6000811162000177576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016e9062000407565b60405180910390fd5b60008211620001bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b490620003e5565b60405180910390fd5b8360039080519060200190620001d5929190620002e7565b508260049080519060200190620001ee929190620002e7565b50816002819055508060808181525050611069600181905550505050506001600b8190555050506200053d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f5906200043a565b90600052602060002090601f01602090048101928262000319576000855562000365565b82601f106200033457805160ff191683800117855562000365565b8280016001018555821562000365579182015b828111156200036457825182559160200191906001019062000347565b5b50905062000374919062000378565b5090565b5b808211156200039357600081600090555060010162000379565b5090565b6000620003a660278362000429565b9150620003b3826200049f565b604082019050919050565b6000620003cd602e8362000429565b9150620003da82620004ee565b604082019050919050565b60006020820190508181036000830152620004008162000397565b9050919050565b600060208201905081810360008301526200042281620003be565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045357607f821691505b602082108114156200046a576200046962000470565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6080516142ad6200056060003960008181610d4a01526113b801526142ad6000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806370a082311161010f578063b88d4fde116100a2578063d547cfb711610071578063d547cfb7146105a6578063d7224ba0146105c4578063e985e9c5146105e2578063f2fde38b14610612576101ef565b8063b88d4fde1461051e578063c87b56dd1461053a578063caa0f92a1461056a578063cfc86f7b14610588576101ef565b806395d89b41116100de57806395d89b41146104aa578063985b3af6146104c8578063a22cb465146104e6578063a54dd93c14610502576101ef565b806370a0823114610422578063715018a6146104525780638da5cb5b1461045c5780639231ab2a1461047a576101ef565b80632913daa0116101875780634d5f4e76116101565780634d5f4e761461038a5780634f6ccce7146103a657806355f804b3146103d65780636352211e146103f2576101ef565b80632913daa0146103025780632f745c591461032057806342842e0e1461035057806345c0f5331461036c576101ef565b8063095ea7b3116101c3578063095ea7b31461029057806318160ddd146102ac57806323b872dd146102ca57806323e21020146102e6576101ef565b80629a9b7b146101f457806301ffc9a71461021257806306fdde0314610242578063081812fc14610260575b600080fd5b6101fc61062e565b60405161020991906137d1565b60405180910390f35b61022c60048036038101906102279190612f6f565b61063d565b60405161023991906134f9565b60405180910390f35b61024a610787565b6040516102579190613514565b60405180910390f35b61027a60048036038101906102759190613006565b610819565b6040516102879190613492565b60405180910390f35b6102aa60048036038101906102a59190612edf565b61089e565b005b6102b46109b7565b6040516102c191906137d1565b60405180910390f35b6102e460048036038101906102df9190612dd9565b6109c6565b005b61030060048036038101906102fb9190613006565b6109d6565b005b61030a610b24565b60405161031791906137d1565b60405180910390f35b61033a60048036038101906103359190612edf565b610b2a565b60405161034791906137d1565b60405180910390f35b61036a60048036038101906103659190612dd9565b610d28565b005b610374610d48565b60405161038191906137d1565b60405180910390f35b6103a4600480360381019061039f9190612f1b565b610d6c565b005b6103c060048036038101906103bb9190613006565b610e54565b6040516103cd91906137d1565b60405180910390f35b6103f060048036038101906103eb9190612fc1565b610ea7565b005b61040c60048036038101906104079190613006565b610f39565b6040516104199190613492565b60405180910390f35b61043c60048036038101906104379190612d74565b610f4f565b60405161044991906137d1565b60405180910390f35b61045a611038565b005b6104646110c0565b6040516104719190613492565b60405180910390f35b610494600480360381019061048f9190613006565b6110e9565b6040516104a191906137b6565b60405180910390f35b6104b2611101565b6040516104bf9190613514565b60405180910390f35b6104d0611193565b6040516104dd9190613492565b60405180910390f35b61050060048036038101906104fb9190612ea3565b6111b9565b005b61051c60048036038101906105179190612d74565b61133a565b005b61053860048036038101906105339190612e28565b61142e565b005b610554600480360381019061054f9190613006565b61148a565b6040516105619190613514565b60405180910390f35b6105726114e9565b60405161057f91906137d1565b60405180910390f35b610590611502565b60405161059d9190613514565b60405180910390f35b6105ae611590565b6040516105bb9190613514565b60405180910390f35b6105cc611622565b6040516105d991906137d1565b60405180910390f35b6105fc60048036038101906105f79190612d9d565b611628565b60405161060991906134f9565b60405180910390f35b61062c60048036038101906106279190612d74565b6116bc565b005b60006106386117b4565b905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610780575061077f826117c7565b5b9050919050565b60606003805461079690613ad7565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290613ad7565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b600061082482611831565b610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a90613776565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a982610f39565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190613696565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610939611852565b73ffffffffffffffffffffffffffffffffffffffff161480610968575061096781610962611852565b611628565b5b6109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e906135d6565b60405180910390fd5b6109b283838361185a565b505050565b60006109c16117b4565b905090565b6109d183838361190c565b505050565b6109de611852565b73ffffffffffffffffffffffffffffffffffffffff166109fc6110c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990613636565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610a9a9061347d565b60006040518083038185875af1925050503d8060008114610ad7576040519150601f19603f3d011682016040523d82523d6000602084013e610adc565b606091505b5050905080610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906136b6565b60405180910390fd5b5050565b60025481565b6000610b3583610f4f565b8210610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90613536565b60405180910390fd5b6000610b806109b7565b905060008060005b83811015610ce6576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd25786841415610cc3578195505050505050610d22565b8380610cce90613b3a565b9450505b508080610cde90613b3a565b915050610b88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990613736565b60405180910390fd5b92915050565b610d438383836040518060200160405280600081525061142e565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d74611852565b73ffffffffffffffffffffffffffffffffffffffff16610d926110c0565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613636565b60405180910390fd5b60005b81811015610e4f57610e3c838281518110610e2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161133a565b8080610e4790613b3a565b915050610deb565b505050565b6000610e5e6109b7565b8210610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613596565b60405180910390fd5b819050919050565b610eaf611852565b73ffffffffffffffffffffffffffffffffffffffff16610ecd6110c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613636565b60405180910390fd5b8181600c9190610f34929190612ae6565b505050565b6000610f4482611ec5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb7906135f6565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611040611852565b73ffffffffffffffffffffffffffffffffffffffff1661105e6110c0565b73ffffffffffffffffffffffffffffffffffffffff16146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613636565b60405180910390fd5b6110be600061211d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110f1612b6c565b6110fa82611ec5565b9050919050565b60606004805461111090613ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461113c90613ad7565b80156111895780601f1061115e57610100808354040283529160200191611189565b820191906000526020600020905b81548152906001019060200180831161116c57829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111c1611852565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613656565b60405180910390fd5b806008600061123c611852565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e9611852565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132e91906134f9565b60405180910390a35050565b611342611852565b73ffffffffffffffffffffffffffffffffffffffff166113606110c0565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613636565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006113df6114e9565b1115611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613576565b60405180910390fd5b61142b8160016121e1565b50565b61143984848461190c565b611445848484846121ff565b611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906136d6565b60405180910390fd5b50505050565b60606000611496612396565b905060008151116114b657604051806020016040528060008152506114e1565b806114c084612428565b6040516020016114d192919061344e565b6040516020818303038152906040525b915050919050565b60006114fd6114f66117b4565b60016125d5565b905090565b600c805461150f90613ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461153b90613ad7565b80156115885780601f1061155d57610100808354040283529160200191611588565b820191906000526020600020905b81548152906001019060200180831161156b57829003601f168201915b505050505081565b6060600c805461159f90613ad7565b80601f01602080910402602001604051908101604052809291908181526020018280546115cb90613ad7565b80156116185780601f106115ed57610100808354040283529160200191611618565b820191906000526020600020905b8154815290600101906020018083116115fb57829003601f168201915b5050505050905090565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c4611852565b73ffffffffffffffffffffffffffffffffffffffff166116e26110c0565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613636565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613556565b60405180910390fd5b6117b18161211d565b50565b60006117be6125eb565b60015403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161183c6125eb565b1115801561184b575060015482105b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061191782611ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661193e611852565b73ffffffffffffffffffffffffffffffffffffffff16148061199a5750611963611852565b73ffffffffffffffffffffffffffffffffffffffff1661198284610819565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b657506119b582600001516119b0611852565b611628565b5b9050806119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90613676565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad1906135b6565b60405180910390fd5b611ae785858560016125f5565b611af7600084846000015161185a565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b659190613989565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c0991906138bc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d0f9190613902565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e5557611d8581611831565b15611e54576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506005600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ebd86868660016125fb565b505050505050565b611ecd612b6c565b600082905080611edb6125eb565b11158015611eea575060015481105b156120dd576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fdb578092505050612118565b5b6001156120db57818060019003925050600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120d6578092505050612118565b611fdc565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613756565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fb828260405180602001604052806000815250612601565b5050565b60006122208473ffffffffffffffffffffffffffffffffffffffff16612ac3565b15612389578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612249611852565b8786866040518563ffffffff1660e01b815260040161226b94939291906134ad565b602060405180830381600087803b15801561228557600080fd5b505af19250505080156122b657506040513d601f19601f820116820180604052508101906122b39190612f98565b60015b612339573d80600081146122e6576040519150601f19603f3d011682016040523d82523d6000602084013e6122eb565b606091505b50600081511415612331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612328906136d6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238e565b600190505b949350505050565b6060600c80546123a590613ad7565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190613ad7565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606000821415612470576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d0565b600082905060005b600082146124a257808061248b90613b3a565b915050600a8261249b9190613958565b9150612478565b60008167ffffffffffffffff8111156124e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505b600085146125c95760018261252f91906139bd565b9150600a8561253e9190613b83565b603061254a9190613902565b60f81b818381518110612586577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c29190613958565b945061251a565b8093505050505b919050565b600081836125e39190613902565b905092915050565b6000611069905090565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613716565b60405180910390fd5b61268181611831565b156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b8906136f6565b60405180910390fd5b600254831115612706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd90613796565b60405180910390fd5b61271360008583866125f5565b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161281091906138bc565b6fffffffffffffffffffffffffffffffff16815260200185836020015161283791906138bc565b6fffffffffffffffffffffffffffffffff16815250600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612aa657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4660008884886121ff565b612a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7c906136d6565b60405180910390fd5b8180612a9090613b3a565b9250508080612a9e90613b3a565b9150506129d5565b5080600181905550612abb60008785886125fb565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612af290613ad7565b90600052602060002090601f016020900481019282612b145760008555612b5b565b82601f10612b2d57803560ff1916838001178555612b5b565b82800160010185558215612b5b579182015b82811115612b5a578235825591602001919060010190612b3f565b5b509050612b689190612ba6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612bbf576000816000905550600101612ba7565b5090565b6000612bd6612bd184613811565b6137ec565b90508083825260208201905082856020860282011115612bf557600080fd5b60005b85811015612c255781612c0b8882612c6d565b845260208401935060208301925050600181019050612bf8565b5050509392505050565b6000612c42612c3d8461383d565b6137ec565b905082815260208101848484011115612c5a57600080fd5b612c65848285613a95565b509392505050565b600081359050612c7c8161421b565b92915050565b600082601f830112612c9357600080fd5b8135612ca3848260208601612bc3565b91505092915050565b600081359050612cbb81614232565b92915050565b600081359050612cd081614249565b92915050565b600081519050612ce581614249565b92915050565b600082601f830112612cfc57600080fd5b8135612d0c848260208601612c2f565b91505092915050565b60008083601f840112612d2757600080fd5b8235905067ffffffffffffffff811115612d4057600080fd5b602083019150836001820283011115612d5857600080fd5b9250929050565b600081359050612d6e81614260565b92915050565b600060208284031215612d8657600080fd5b6000612d9484828501612c6d565b91505092915050565b60008060408385031215612db057600080fd5b6000612dbe85828601612c6d565b9250506020612dcf85828601612c6d565b9150509250929050565b600080600060608486031215612dee57600080fd5b6000612dfc86828701612c6d565b9350506020612e0d86828701612c6d565b9250506040612e1e86828701612d5f565b9150509250925092565b60008060008060808587031215612e3e57600080fd5b6000612e4c87828801612c6d565b9450506020612e5d87828801612c6d565b9350506040612e6e87828801612d5f565b925050606085013567ffffffffffffffff811115612e8b57600080fd5b612e9787828801612ceb565b91505092959194509250565b60008060408385031215612eb657600080fd5b6000612ec485828601612c6d565b9250506020612ed585828601612cac565b9150509250929050565b60008060408385031215612ef257600080fd5b6000612f0085828601612c6d565b9250506020612f1185828601612d5f565b9150509250929050565b60008060408385031215612f2e57600080fd5b600083013567ffffffffffffffff811115612f4857600080fd5b612f5485828601612c82565b9250506020612f6585828601612d5f565b9150509250929050565b600060208284031215612f8157600080fd5b6000612f8f84828501612cc1565b91505092915050565b600060208284031215612faa57600080fd5b6000612fb884828501612cd6565b91505092915050565b60008060208385031215612fd457600080fd5b600083013567ffffffffffffffff811115612fee57600080fd5b612ffa85828601612d15565b92509250509250929050565b60006020828403121561301857600080fd5b600061302684828501612d5f565b91505092915050565b613038816139f1565b82525050565b613047816139f1565b82525050565b61305681613a03565b82525050565b60006130678261386e565b6130718185613884565b9350613081818560208601613aa4565b61308a81613c70565b840191505092915050565b60006130a082613879565b6130aa81856138a0565b93506130ba818560208601613aa4565b6130c381613c70565b840191505092915050565b60006130d982613879565b6130e381856138b1565b93506130f3818560208601613aa4565b80840191505092915050565b600061310c6022836138a0565b915061311782613c81565b604082019050919050565b600061312f6026836138a0565b915061313a82613cd0565b604082019050919050565b6000613152601b836138a0565b915061315d82613d1f565b602082019050919050565b60006131756023836138a0565b915061318082613d48565b604082019050919050565b60006131986025836138a0565b91506131a382613d97565b604082019050919050565b60006131bb6039836138a0565b91506131c682613de6565b604082019050919050565b60006131de602b836138a0565b91506131e982613e35565b604082019050919050565b60006132016026836138a0565b915061320c82613e84565b604082019050919050565b60006132246005836138b1565b915061322f82613ed3565b600582019050919050565b60006132476020836138a0565b915061325282613efc565b602082019050919050565b600061326a601a836138a0565b915061327582613f25565b602082019050919050565b600061328d6032836138a0565b915061329882613f4e565b604082019050919050565b60006132b06022836138a0565b91506132bb82613f9d565b604082019050919050565b60006132d3600083613895565b91506132de82613fec565b600082019050919050565b60006132f66010836138a0565b915061330182613fef565b602082019050919050565b60006133196033836138a0565b915061332482614018565b604082019050919050565b600061333c601d836138a0565b915061334782614067565b602082019050919050565b600061335f6021836138a0565b915061336a82614090565b604082019050919050565b6000613382602e836138a0565b915061338d826140df565b604082019050919050565b60006133a5602f836138a0565b91506133b08261412e565b604082019050919050565b60006133c8602d836138a0565b91506133d38261417d565b604082019050919050565b60006133eb6022836138a0565b91506133f6826141cc565b604082019050919050565b604082016000820151613417600085018261302f565b50602082015161342a602085018261343f565b50505050565b61343981613a77565b82525050565b61344881613a81565b82525050565b600061345a82856130ce565b915061346682846130ce565b915061347182613217565b91508190509392505050565b6000613488826132c6565b9150819050919050565b60006020820190506134a7600083018461303e565b92915050565b60006080820190506134c2600083018761303e565b6134cf602083018661303e565b6134dc6040830185613430565b81810360608301526134ee818461305c565b905095945050505050565b600060208201905061350e600083018461304d565b92915050565b6000602082019050818103600083015261352e8184613095565b905092915050565b6000602082019050818103600083015261354f816130ff565b9050919050565b6000602082019050818103600083015261356f81613122565b9050919050565b6000602082019050818103600083015261358f81613145565b9050919050565b600060208201905081810360008301526135af81613168565b9050919050565b600060208201905081810360008301526135cf8161318b565b9050919050565b600060208201905081810360008301526135ef816131ae565b9050919050565b6000602082019050818103600083015261360f816131d1565b9050919050565b6000602082019050818103600083015261362f816131f4565b9050919050565b6000602082019050818103600083015261364f8161323a565b9050919050565b6000602082019050818103600083015261366f8161325d565b9050919050565b6000602082019050818103600083015261368f81613280565b9050919050565b600060208201905081810360008301526136af816132a3565b9050919050565b600060208201905081810360008301526136cf816132e9565b9050919050565b600060208201905081810360008301526136ef8161330c565b9050919050565b6000602082019050818103600083015261370f8161332f565b9050919050565b6000602082019050818103600083015261372f81613352565b9050919050565b6000602082019050818103600083015261374f81613375565b9050919050565b6000602082019050818103600083015261376f81613398565b9050919050565b6000602082019050818103600083015261378f816133bb565b9050919050565b600060208201905081810360008301526137af816133de565b9050919050565b60006040820190506137cb6000830184613401565b92915050565b60006020820190506137e66000830184613430565b92915050565b60006137f6613807565b90506138028282613b09565b919050565b6000604051905090565b600067ffffffffffffffff82111561382c5761382b613c41565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561385857613857613c41565b5b61386182613c70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c782613a3b565b91506138d283613a3b565b9250826fffffffffffffffffffffffffffffffff038211156138f7576138f6613bb4565b5b828201905092915050565b600061390d82613a77565b915061391883613a77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394d5761394c613bb4565b5b828201905092915050565b600061396382613a77565b915061396e83613a77565b92508261397e5761397d613be3565b5b828204905092915050565b600061399482613a3b565b915061399f83613a3b565b9250828210156139b2576139b1613bb4565b5b828203905092915050565b60006139c882613a77565b91506139d383613a77565b9250828210156139e6576139e5613bb4565b5b828203905092915050565b60006139fc82613a57565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613ac2578082015181840152602081019050613aa7565b83811115613ad1576000848401525b50505050565b60006002820490506001821680613aef57607f821691505b60208210811415613b0357613b02613c12565b5b50919050565b613b1282613c70565b810181811067ffffffffffffffff82111715613b3157613b30613c41565b5b80604052505050565b6000613b4582613a77565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7857613b77613bb4565b5b600182019050919050565b6000613b8e82613a77565b9150613b9983613a77565b925082613ba957613ba8613be3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206f76657220737570706c79206361700000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614224816139f1565b811461422f57600080fd5b50565b61423b81613a03565b811461424657600080fd5b50565b61425281613a0f565b811461425d57600080fd5b50565b61426981613a77565b811461427457600080fd5b5056fea26469706673582212203a53e6c84dd86bfe0d14951034de982d3305762349b1837eefa974edd16f539b64736f6c63430008040033697066733a2f2f516d53643541344d77516f3575355554457648625347624c42626e77576a3657375a545533736670435a617537662f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806370a082311161010f578063b88d4fde116100a2578063d547cfb711610071578063d547cfb7146105a6578063d7224ba0146105c4578063e985e9c5146105e2578063f2fde38b14610612576101ef565b8063b88d4fde1461051e578063c87b56dd1461053a578063caa0f92a1461056a578063cfc86f7b14610588576101ef565b806395d89b41116100de57806395d89b41146104aa578063985b3af6146104c8578063a22cb465146104e6578063a54dd93c14610502576101ef565b806370a0823114610422578063715018a6146104525780638da5cb5b1461045c5780639231ab2a1461047a576101ef565b80632913daa0116101875780634d5f4e76116101565780634d5f4e761461038a5780634f6ccce7146103a657806355f804b3146103d65780636352211e146103f2576101ef565b80632913daa0146103025780632f745c591461032057806342842e0e1461035057806345c0f5331461036c576101ef565b8063095ea7b3116101c3578063095ea7b31461029057806318160ddd146102ac57806323b872dd146102ca57806323e21020146102e6576101ef565b80629a9b7b146101f457806301ffc9a71461021257806306fdde0314610242578063081812fc14610260575b600080fd5b6101fc61062e565b60405161020991906137d1565b60405180910390f35b61022c60048036038101906102279190612f6f565b61063d565b60405161023991906134f9565b60405180910390f35b61024a610787565b6040516102579190613514565b60405180910390f35b61027a60048036038101906102759190613006565b610819565b6040516102879190613492565b60405180910390f35b6102aa60048036038101906102a59190612edf565b61089e565b005b6102b46109b7565b6040516102c191906137d1565b60405180910390f35b6102e460048036038101906102df9190612dd9565b6109c6565b005b61030060048036038101906102fb9190613006565b6109d6565b005b61030a610b24565b60405161031791906137d1565b60405180910390f35b61033a60048036038101906103359190612edf565b610b2a565b60405161034791906137d1565b60405180910390f35b61036a60048036038101906103659190612dd9565b610d28565b005b610374610d48565b60405161038191906137d1565b60405180910390f35b6103a4600480360381019061039f9190612f1b565b610d6c565b005b6103c060048036038101906103bb9190613006565b610e54565b6040516103cd91906137d1565b60405180910390f35b6103f060048036038101906103eb9190612fc1565b610ea7565b005b61040c60048036038101906104079190613006565b610f39565b6040516104199190613492565b60405180910390f35b61043c60048036038101906104379190612d74565b610f4f565b60405161044991906137d1565b60405180910390f35b61045a611038565b005b6104646110c0565b6040516104719190613492565b60405180910390f35b610494600480360381019061048f9190613006565b6110e9565b6040516104a191906137b6565b60405180910390f35b6104b2611101565b6040516104bf9190613514565b60405180910390f35b6104d0611193565b6040516104dd9190613492565b60405180910390f35b61050060048036038101906104fb9190612ea3565b6111b9565b005b61051c60048036038101906105179190612d74565b61133a565b005b61053860048036038101906105339190612e28565b61142e565b005b610554600480360381019061054f9190613006565b61148a565b6040516105619190613514565b60405180910390f35b6105726114e9565b60405161057f91906137d1565b60405180910390f35b610590611502565b60405161059d9190613514565b60405180910390f35b6105ae611590565b6040516105bb9190613514565b60405180910390f35b6105cc611622565b6040516105d991906137d1565b60405180910390f35b6105fc60048036038101906105f79190612d9d565b611628565b60405161060991906134f9565b60405180910390f35b61062c60048036038101906106279190612d74565b6116bc565b005b60006106386117b4565b905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610780575061077f826117c7565b5b9050919050565b60606003805461079690613ad7565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290613ad7565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b600061082482611831565b610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a90613776565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a982610f39565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190613696565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610939611852565b73ffffffffffffffffffffffffffffffffffffffff161480610968575061096781610962611852565b611628565b5b6109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e906135d6565b60405180910390fd5b6109b283838361185a565b505050565b60006109c16117b4565b905090565b6109d183838361190c565b505050565b6109de611852565b73ffffffffffffffffffffffffffffffffffffffff166109fc6110c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990613636565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610a9a9061347d565b60006040518083038185875af1925050503d8060008114610ad7576040519150601f19603f3d011682016040523d82523d6000602084013e610adc565b606091505b5050905080610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b17906136b6565b60405180910390fd5b5050565b60025481565b6000610b3583610f4f565b8210610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90613536565b60405180910390fd5b6000610b806109b7565b905060008060005b83811015610ce6576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd25786841415610cc3578195505050505050610d22565b8380610cce90613b3a565b9450505b508080610cde90613b3a565b915050610b88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990613736565b60405180910390fd5b92915050565b610d438383836040518060200160405280600081525061142e565b505050565b7f000000000000000000000000000000000000000000000000000000000000271081565b610d74611852565b73ffffffffffffffffffffffffffffffffffffffff16610d926110c0565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613636565b60405180910390fd5b60005b81811015610e4f57610e3c838281518110610e2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161133a565b8080610e4790613b3a565b915050610deb565b505050565b6000610e5e6109b7565b8210610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613596565b60405180910390fd5b819050919050565b610eaf611852565b73ffffffffffffffffffffffffffffffffffffffff16610ecd6110c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613636565b60405180910390fd5b8181600c9190610f34929190612ae6565b505050565b6000610f4482611ec5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb7906135f6565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611040611852565b73ffffffffffffffffffffffffffffffffffffffff1661105e6110c0565b73ffffffffffffffffffffffffffffffffffffffff16146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613636565b60405180910390fd5b6110be600061211d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110f1612b6c565b6110fa82611ec5565b9050919050565b60606004805461111090613ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461113c90613ad7565b80156111895780601f1061115e57610100808354040283529160200191611189565b820191906000526020600020905b81548152906001019060200180831161116c57829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111c1611852565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613656565b60405180910390fd5b806008600061123c611852565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e9611852565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132e91906134f9565b60405180910390a35050565b611342611852565b73ffffffffffffffffffffffffffffffffffffffff166113606110c0565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613636565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027106113df6114e9565b1115611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613576565b60405180910390fd5b61142b8160016121e1565b50565b61143984848461190c565b611445848484846121ff565b611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906136d6565b60405180910390fd5b50505050565b60606000611496612396565b905060008151116114b657604051806020016040528060008152506114e1565b806114c084612428565b6040516020016114d192919061344e565b6040516020818303038152906040525b915050919050565b60006114fd6114f66117b4565b60016125d5565b905090565b600c805461150f90613ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461153b90613ad7565b80156115885780601f1061155d57610100808354040283529160200191611588565b820191906000526020600020905b81548152906001019060200180831161156b57829003601f168201915b505050505081565b6060600c805461159f90613ad7565b80601f01602080910402602001604051908101604052809291908181526020018280546115cb90613ad7565b80156116185780601f106115ed57610100808354040283529160200191611618565b820191906000526020600020905b8154815290600101906020018083116115fb57829003601f168201915b5050505050905090565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c4611852565b73ffffffffffffffffffffffffffffffffffffffff166116e26110c0565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613636565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613556565b60405180910390fd5b6117b18161211d565b50565b60006117be6125eb565b60015403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161183c6125eb565b1115801561184b575060015482105b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061191782611ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661193e611852565b73ffffffffffffffffffffffffffffffffffffffff16148061199a5750611963611852565b73ffffffffffffffffffffffffffffffffffffffff1661198284610819565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b657506119b582600001516119b0611852565b611628565b5b9050806119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90613676565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad1906135b6565b60405180910390fd5b611ae785858560016125f5565b611af7600084846000015161185a565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b659190613989565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c0991906138bc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d0f9190613902565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e5557611d8581611831565b15611e54576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506005600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ebd86868660016125fb565b505050505050565b611ecd612b6c565b600082905080611edb6125eb565b11158015611eea575060015481105b156120dd576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fdb578092505050612118565b5b6001156120db57818060019003925050600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120d6578092505050612118565b611fdc565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613756565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fb828260405180602001604052806000815250612601565b5050565b60006122208473ffffffffffffffffffffffffffffffffffffffff16612ac3565b15612389578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612249611852565b8786866040518563ffffffff1660e01b815260040161226b94939291906134ad565b602060405180830381600087803b15801561228557600080fd5b505af19250505080156122b657506040513d601f19601f820116820180604052508101906122b39190612f98565b60015b612339573d80600081146122e6576040519150601f19603f3d011682016040523d82523d6000602084013e6122eb565b606091505b50600081511415612331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612328906136d6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238e565b600190505b949350505050565b6060600c80546123a590613ad7565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190613ad7565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606000821415612470576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d0565b600082905060005b600082146124a257808061248b90613b3a565b915050600a8261249b9190613958565b9150612478565b60008167ffffffffffffffff8111156124e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505b600085146125c95760018261252f91906139bd565b9150600a8561253e9190613b83565b603061254a9190613902565b60f81b818381518110612586577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c29190613958565b945061251a565b8093505050505b919050565b600081836125e39190613902565b905092915050565b6000611069905090565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613716565b60405180910390fd5b61268181611831565b156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b8906136f6565b60405180910390fd5b600254831115612706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd90613796565b60405180910390fd5b61271360008583866125f5565b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161281091906138bc565b6fffffffffffffffffffffffffffffffff16815260200185836020015161283791906138bc565b6fffffffffffffffffffffffffffffffff16815250600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506005600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612aa657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4660008884886121ff565b612a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7c906136d6565b60405180910390fd5b8180612a9090613b3a565b9250508080612a9e90613b3a565b9150506129d5565b5080600181905550612abb60008785886125fb565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612af290613ad7565b90600052602060002090601f016020900481019282612b145760008555612b5b565b82601f10612b2d57803560ff1916838001178555612b5b565b82800160010185558215612b5b579182015b82811115612b5a578235825591602001919060010190612b3f565b5b509050612b689190612ba6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612bbf576000816000905550600101612ba7565b5090565b6000612bd6612bd184613811565b6137ec565b90508083825260208201905082856020860282011115612bf557600080fd5b60005b85811015612c255781612c0b8882612c6d565b845260208401935060208301925050600181019050612bf8565b5050509392505050565b6000612c42612c3d8461383d565b6137ec565b905082815260208101848484011115612c5a57600080fd5b612c65848285613a95565b509392505050565b600081359050612c7c8161421b565b92915050565b600082601f830112612c9357600080fd5b8135612ca3848260208601612bc3565b91505092915050565b600081359050612cbb81614232565b92915050565b600081359050612cd081614249565b92915050565b600081519050612ce581614249565b92915050565b600082601f830112612cfc57600080fd5b8135612d0c848260208601612c2f565b91505092915050565b60008083601f840112612d2757600080fd5b8235905067ffffffffffffffff811115612d4057600080fd5b602083019150836001820283011115612d5857600080fd5b9250929050565b600081359050612d6e81614260565b92915050565b600060208284031215612d8657600080fd5b6000612d9484828501612c6d565b91505092915050565b60008060408385031215612db057600080fd5b6000612dbe85828601612c6d565b9250506020612dcf85828601612c6d565b9150509250929050565b600080600060608486031215612dee57600080fd5b6000612dfc86828701612c6d565b9350506020612e0d86828701612c6d565b9250506040612e1e86828701612d5f565b9150509250925092565b60008060008060808587031215612e3e57600080fd5b6000612e4c87828801612c6d565b9450506020612e5d87828801612c6d565b9350506040612e6e87828801612d5f565b925050606085013567ffffffffffffffff811115612e8b57600080fd5b612e9787828801612ceb565b91505092959194509250565b60008060408385031215612eb657600080fd5b6000612ec485828601612c6d565b9250506020612ed585828601612cac565b9150509250929050565b60008060408385031215612ef257600080fd5b6000612f0085828601612c6d565b9250506020612f1185828601612d5f565b9150509250929050565b60008060408385031215612f2e57600080fd5b600083013567ffffffffffffffff811115612f4857600080fd5b612f5485828601612c82565b9250506020612f6585828601612d5f565b9150509250929050565b600060208284031215612f8157600080fd5b6000612f8f84828501612cc1565b91505092915050565b600060208284031215612faa57600080fd5b6000612fb884828501612cd6565b91505092915050565b60008060208385031215612fd457600080fd5b600083013567ffffffffffffffff811115612fee57600080fd5b612ffa85828601612d15565b92509250509250929050565b60006020828403121561301857600080fd5b600061302684828501612d5f565b91505092915050565b613038816139f1565b82525050565b613047816139f1565b82525050565b61305681613a03565b82525050565b60006130678261386e565b6130718185613884565b9350613081818560208601613aa4565b61308a81613c70565b840191505092915050565b60006130a082613879565b6130aa81856138a0565b93506130ba818560208601613aa4565b6130c381613c70565b840191505092915050565b60006130d982613879565b6130e381856138b1565b93506130f3818560208601613aa4565b80840191505092915050565b600061310c6022836138a0565b915061311782613c81565b604082019050919050565b600061312f6026836138a0565b915061313a82613cd0565b604082019050919050565b6000613152601b836138a0565b915061315d82613d1f565b602082019050919050565b60006131756023836138a0565b915061318082613d48565b604082019050919050565b60006131986025836138a0565b91506131a382613d97565b604082019050919050565b60006131bb6039836138a0565b91506131c682613de6565b604082019050919050565b60006131de602b836138a0565b91506131e982613e35565b604082019050919050565b60006132016026836138a0565b915061320c82613e84565b604082019050919050565b60006132246005836138b1565b915061322f82613ed3565b600582019050919050565b60006132476020836138a0565b915061325282613efc565b602082019050919050565b600061326a601a836138a0565b915061327582613f25565b602082019050919050565b600061328d6032836138a0565b915061329882613f4e565b604082019050919050565b60006132b06022836138a0565b91506132bb82613f9d565b604082019050919050565b60006132d3600083613895565b91506132de82613fec565b600082019050919050565b60006132f66010836138a0565b915061330182613fef565b602082019050919050565b60006133196033836138a0565b915061332482614018565b604082019050919050565b600061333c601d836138a0565b915061334782614067565b602082019050919050565b600061335f6021836138a0565b915061336a82614090565b604082019050919050565b6000613382602e836138a0565b915061338d826140df565b604082019050919050565b60006133a5602f836138a0565b91506133b08261412e565b604082019050919050565b60006133c8602d836138a0565b91506133d38261417d565b604082019050919050565b60006133eb6022836138a0565b91506133f6826141cc565b604082019050919050565b604082016000820151613417600085018261302f565b50602082015161342a602085018261343f565b50505050565b61343981613a77565b82525050565b61344881613a81565b82525050565b600061345a82856130ce565b915061346682846130ce565b915061347182613217565b91508190509392505050565b6000613488826132c6565b9150819050919050565b60006020820190506134a7600083018461303e565b92915050565b60006080820190506134c2600083018761303e565b6134cf602083018661303e565b6134dc6040830185613430565b81810360608301526134ee818461305c565b905095945050505050565b600060208201905061350e600083018461304d565b92915050565b6000602082019050818103600083015261352e8184613095565b905092915050565b6000602082019050818103600083015261354f816130ff565b9050919050565b6000602082019050818103600083015261356f81613122565b9050919050565b6000602082019050818103600083015261358f81613145565b9050919050565b600060208201905081810360008301526135af81613168565b9050919050565b600060208201905081810360008301526135cf8161318b565b9050919050565b600060208201905081810360008301526135ef816131ae565b9050919050565b6000602082019050818103600083015261360f816131d1565b9050919050565b6000602082019050818103600083015261362f816131f4565b9050919050565b6000602082019050818103600083015261364f8161323a565b9050919050565b6000602082019050818103600083015261366f8161325d565b9050919050565b6000602082019050818103600083015261368f81613280565b9050919050565b600060208201905081810360008301526136af816132a3565b9050919050565b600060208201905081810360008301526136cf816132e9565b9050919050565b600060208201905081810360008301526136ef8161330c565b9050919050565b6000602082019050818103600083015261370f8161332f565b9050919050565b6000602082019050818103600083015261372f81613352565b9050919050565b6000602082019050818103600083015261374f81613375565b9050919050565b6000602082019050818103600083015261376f81613398565b9050919050565b6000602082019050818103600083015261378f816133bb565b9050919050565b600060208201905081810360008301526137af816133de565b9050919050565b60006040820190506137cb6000830184613401565b92915050565b60006020820190506137e66000830184613430565b92915050565b60006137f6613807565b90506138028282613b09565b919050565b6000604051905090565b600067ffffffffffffffff82111561382c5761382b613c41565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561385857613857613c41565b5b61386182613c70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c782613a3b565b91506138d283613a3b565b9250826fffffffffffffffffffffffffffffffff038211156138f7576138f6613bb4565b5b828201905092915050565b600061390d82613a77565b915061391883613a77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394d5761394c613bb4565b5b828201905092915050565b600061396382613a77565b915061396e83613a77565b92508261397e5761397d613be3565b5b828204905092915050565b600061399482613a3b565b915061399f83613a3b565b9250828210156139b2576139b1613bb4565b5b828203905092915050565b60006139c882613a77565b91506139d383613a77565b9250828210156139e6576139e5613bb4565b5b828203905092915050565b60006139fc82613a57565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613ac2578082015181840152602081019050613aa7565b83811115613ad1576000848401525b50505050565b60006002820490506001821680613aef57607f821691505b60208210811415613b0357613b02613c12565b5b50919050565b613b1282613c70565b810181811067ffffffffffffffff82111715613b3157613b30613c41565b5b80604052505050565b6000613b4582613a77565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7857613b77613bb4565b5b600182019050919050565b6000613b8e82613a77565b9150613b9983613a77565b925082613ba957613ba8613be3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206f76657220737570706c79206361700000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614224816139f1565b811461422f57600080fd5b50565b61423b81613a03565b811461424657600080fd5b50565b61425281613a0f565b811461425d57600080fd5b50565b61426981613a77565b811461427457600080fd5b5056fea26469706673582212203a53e6c84dd86bfe0d14951034de982d3305762349b1837eefa974edd16f539b64736f6c63430008040033
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.