ERC-721
Overview
Max Total Supply
6,969 LAMS
Holders
954
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LAMSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LookAtMyStick
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; contract LookAtMyStick is TinyERC721, Ownable, DefaultOperatorFilterer { string public baseURI; address public lead; bool public publicPaused = true; uint256 public cost = 0.002 ether; uint256 public maxSupply = 6969; uint256 public maxPerWalletPaid = 10; uint256 public maxPerWalletFree = 1; uint256 public maxPerTxPaid = 10; uint256 public maxPerTxFree = 1; uint256 supply = totalSupply(); mapping(address => uint) public addressMintedBalance; mapping(address => uint) public addressMintedBalanceFree; constructor( string memory _baseURI, address _lead )TinyERC721("LookAtMyStick", "LAMS", 0) { baseURI = _baseURI; lead = _lead; } modifier publicnotPaused() { require(!publicPaused, "Contract is Paused"); _; } modifier callerIsUser() { require(tx.origin == msg.sender, 'The caller is another contract.'); _; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return string(abi.encodePacked(baseURI, Strings.toString(_tokenId),".json")); } function togglePublic(bool _state) external onlyOwner { publicPaused = _state; } function myStick(uint256 _quanitity) public onlyOwner { uint256 supply = totalSupply(); require(_quanitity + supply <= maxSupply); _safeMint(msg.sender, _quanitity); } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setmaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setmaxPerWalletPaid(uint256 _MPWPaid) public onlyOwner { maxPerWalletPaid = _MPWPaid; } function setmaxPerTxPaid(uint256 _MPTxPaid) public onlyOwner { maxPerTxPaid = _MPTxPaid; } function setmaxPerWalletFree(uint256 _MPWFree) public onlyOwner { maxPerWalletFree = _MPWFree; } function setmaxPerTxFree(uint256 _MPTxFree) public onlyOwner { maxPerTxFree = _MPTxFree; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function buyStick(uint256 _quantity) public payable publicnotPaused() callerIsUser() { uint256 supply = totalSupply(); require(msg.value >= cost * _quantity, "Not Enough Ether"); require(_quantity <= maxPerTxPaid, "Over Tx Limit"); require(_quantity + supply <= maxSupply, "SoldOut"); require(addressMintedBalance[msg.sender] < maxPerWalletPaid, "Over maxPerWalletPaid"); addressMintedBalance[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function pickUpStick(uint256 _quantitty) public publicnotPaused() callerIsUser() { uint256 supply = totalSupply(); require(_quantitty <= maxPerTxFree, "Over Tx Limit"); require(_quantitty + supply <= maxSupply, "SoldOut"); require(addressMintedBalanceFree[msg.sender] < maxPerWalletFree, "Over MaxPerWallet"); addressMintedBalanceFree[msg.sender] += _quantitty; _safeMint(msg.sender, _quantitty); } function withdraw() public onlyOwner { (bool success, ) = lead.call{value: address(this).balance}(""); require(success, "Failed to send to lead."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error TokenDataQueryForNonexistentToken(); error OwnerQueryForNonexistentToken(); error OperatorQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); contract TinyERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; struct TokenData { address owner; bytes12 aux; } uint256 private immutable _maxBatchSize; mapping(uint256 => TokenData) private _tokens; uint256 private _mintCounter; string private _name; string private _symbol; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { _name = name_; _symbol = symbol_; _maxBatchSize = maxBatchSize_; } function totalSupply() public view virtual returns (uint256) { return _mintCounter; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } function _baseURI() internal view virtual returns (string memory) { return ''; } function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); uint256 total = totalSupply(); uint256 count; address lastOwner; for (uint256 i; i < total; ++i) { address tokenOwner = _tokens[i].owner; if (tokenOwner != address(0)) lastOwner = tokenOwner; if (lastOwner == owner) ++count; } return count; } function _tokenData(uint256 tokenId) internal view returns (TokenData storage) { if (!_exists(tokenId)) revert TokenDataQueryForNonexistentToken(); TokenData storage token = _tokens[tokenId]; uint256 currentIndex = tokenId; while (token.owner == address(0)) { unchecked { --currentIndex; } token = _tokens[currentIndex]; } return token; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); return _tokenData(tokenId).owner; } function approve(address to, uint256 tokenId) public virtual override { TokenData memory token = _tokenData(tokenId); address owner = token.owner; if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, token); } function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { TokenData memory token = _tokenData(tokenId); if (!_isApprovedOrOwner(_msgSender(), tokenId, token)) revert TransferCallerNotOwnerNorApproved(); _transfer(from, to, tokenId, token); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { TokenData memory token = _tokenData(tokenId); if (!_isApprovedOrOwner(_msgSender(), tokenId, token)) revert TransferCallerNotOwnerNorApproved(); _safeTransfer(from, to, tokenId, token, _data); } function _safeTransfer( address from, address to, uint256 tokenId, TokenData memory token, bytes memory _data ) internal virtual { _transfer(from, to, tokenId, token); if (to.isContract() && !_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _mintCounter; } function _isApprovedOrOwner( address spender, uint256 tokenId, TokenData memory token ) internal view virtual returns (bool) { address owner = token.owner; return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { uint256 startTokenId = _mintCounter; _mint(to, quantity); if (to.isContract()) { unchecked { for (uint256 i; i < quantity; ++i) { if (!_checkOnERC721Received(address(0), to, startTokenId + i, _data)) revert TransferToNonERC721ReceiverImplementer(); } } } } function _mint(address to, uint256 quantity) internal virtual { if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); uint256 startTokenId = _mintCounter; _beforeTokenTransfers(address(0), to, startTokenId, quantity); unchecked { for (uint256 i; i < quantity; ++i) { if (_maxBatchSize == 0 ? i == 0 : i % _maxBatchSize == 0) { TokenData storage token = _tokens[startTokenId + i]; token.owner = to; token.aux = _calculateAux(address(0), to, startTokenId + i, 0); } emit Transfer(address(0), to, startTokenId + i); } _mintCounter += quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function _transfer( address from, address to, uint256 tokenId, TokenData memory token ) internal virtual { if (token.owner != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); _approve(address(0), tokenId, token); unchecked { uint256 nextTokenId = tokenId + 1; if (_exists(nextTokenId)) { TokenData storage nextToken = _tokens[nextTokenId]; if (nextToken.owner == address(0)) { nextToken.owner = token.owner; nextToken.aux = token.aux; } } } TokenData storage newToken = _tokens[tokenId]; newToken.owner = to; newToken.aux = _calculateAux(from, to, tokenId, token.aux); emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } function _calculateAux( address from, address to, uint256 tokenId, bytes12 current ) internal view virtual returns (bytes12) {} function _approve( address to, uint256 tokenId, TokenData memory token ) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(token.owner, to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_lead","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenDataQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"buyStick","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","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":[{"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":"lead","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quanitity","type":"uint256"}],"name":"myStick","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantitty","type":"uint256"}],"name":"pickUpStick","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPTxFree","type":"uint256"}],"name":"setmaxPerTxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPTxPaid","type":"uint256"}],"name":"setmaxPerTxPaid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPWFree","type":"uint256"}],"name":"setmaxPerWalletFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPWPaid","type":"uint256"}],"name":"setmaxPerWalletPaid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","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":"bool","name":"_state","type":"bool"}],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526001600860146101000a81548160ff02191690831515021790555066071afd498d0000600955611b39600a55600a600b556001600c55600a600d556001600e5562000054620003b060201b60201c565b600f553480156200006457600080fd5b5060405162004f6b38038062004f6b83398181016040528101906200008a919062000680565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f4c6f6f6b41744d79537469636b000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c414d53000000000000000000000000000000000000000000000000000000008152506000826002908162000120919062000931565b50816003908162000132919062000931565b5080608081815250505050506200015e62000152620003ba60201b60201c565b620003c260201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200035357801562000219576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001df92919062000a29565b600060405180830381600087803b158015620001fa57600080fd5b505af11580156200020f573d6000803e3d6000fd5b5050505062000352565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002d3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029992919062000a29565b600060405180830381600087803b158015620002b457600080fd5b505af1158015620002c9573d6000803e3d6000fd5b5050505062000351565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031c919062000a56565b600060405180830381600087803b1580156200033757600080fd5b505af11580156200034c573d6000803e3d6000fd5b505050505b5b5b5050816007908162000366919062000931565b5080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000a73565b6000600154905090565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004f182620004a6565b810181811067ffffffffffffffff82111715620005135762000512620004b7565b5b80604052505050565b60006200052862000488565b9050620005368282620004e6565b919050565b600067ffffffffffffffff821115620005595762000558620004b7565b5b6200056482620004a6565b9050602081019050919050565b60005b838110156200059157808201518184015260208101905062000574565b60008484015250505050565b6000620005b4620005ae846200053b565b6200051c565b905082815260208101848484011115620005d357620005d2620004a1565b5b620005e084828562000571565b509392505050565b600082601f8301126200060057620005ff6200049c565b5b8151620006128482602086016200059d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000648826200061b565b9050919050565b6200065a816200063b565b81146200066657600080fd5b50565b6000815190506200067a816200064f565b92915050565b600080604083850312156200069a576200069962000492565b5b600083015167ffffffffffffffff811115620006bb57620006ba62000497565b5b620006c985828601620005e8565b9250506020620006dc8582860162000669565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073957607f821691505b6020821081036200074f576200074e620006f1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200077a565b620007c586836200077a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008126200080c6200080684620007dd565b620007e7565b620007dd565b9050919050565b6000819050919050565b6200082e83620007f1565b620008466200083d8262000819565b84845462000787565b825550505050565b600090565b6200085d6200084e565b6200086a81848462000823565b505050565b5b8181101562000892576200088660008262000853565b60018101905062000870565b5050565b601f821115620008e157620008ab8162000755565b620008b6846200076a565b81016020851015620008c6578190505b620008de620008d5856200076a565b8301826200086f565b50505b505050565b600082821c905092915050565b60006200090660001984600802620008e6565b1980831691505092915050565b6000620009218383620008f3565b9150826002028217905092915050565b6200093c82620006e6565b67ffffffffffffffff811115620009585762000957620004b7565b5b62000964825462000720565b6200097182828562000896565b600060209050601f831160018114620009a9576000841562000994578287015190505b620009a0858262000913565b86555062000a10565b601f198416620009b98662000755565b60005b82811015620009e357848901518255600182019150602085019450602081019050620009bc565b8683101562000a035784890151620009ff601f891682620008f3565b8355505b6001600288020188555050505b505050505050565b62000a23816200063b565b82525050565b600060408201905062000a40600083018562000a18565b62000a4f602083018462000a18565b9392505050565b600060208201905062000a6d600083018462000a18565b92915050565b6080516144d562000a9660003960008181612df40152612e1c01526144d56000f3fe6080604052600436106102455760003560e01c80636352211e1161013957806395e534ba116100b6578063c87b56dd1161007a578063c87b56dd14610851578063cdfc609d1461088e578063d5abeb01146108b9578063e985e9c5146108e4578063ef3e061914610921578063f2fde38b1461093d57610245565b806395e534ba14610780578063980a70d2146107a95780639e98fbe7146107d4578063a22cb465146107ff578063b88d4fde1461082857610245565b8063715018a6116100fd578063715018a6146106bf5780637f5f5a45146106d65780638da5cb5b1461070157806395982f321461072c57806395d89b411461075557610245565b80636352211e146105c857806364f655a3146106055780636c0360eb1461062e5780636cfcc2111461065957806370a082311461068257610245565b8063228025e8116101c757806344a0d68a1161018b57806344a0d68a146104e557806345801a0e1461050e57806346bb0a161461054b57806355f804b3146105765780635a0bdbc81461059f57610245565b8063228025e81461042857806323b872dd146104515780633ccfd60b1461047a57806341f434341461049157806342842e0e146104bc57610245565b80630bb12bb81161020e5780630bb12bb8146103415780630e21f59f1461036c57806313faede61461039557806318160ddd146103c057806318cae269146103eb57610245565b8062a162f51461024a57806301ffc9a71461027357806306fdde03146102b0578063081812fc146102db578063095ea7b314610318575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190613151565b610966565b005b34801561027f57600080fd5b5061029a600480360381019061029591906131d6565b610a16565b6040516102a7919061321e565b60405180910390f35b3480156102bc57600080fd5b506102c5610af8565b6040516102d291906132c9565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190613151565b610b8a565b60405161030f919061332c565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613373565b610c06565b005b34801561034d57600080fd5b50610356610c1f565b604051610363919061321e565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906133df565b610c32565b005b3480156103a157600080fd5b506103aa610ccb565b6040516103b7919061341b565b60405180910390f35b3480156103cc57600080fd5b506103d5610cd1565b6040516103e2919061341b565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613436565b610cdb565b60405161041f919061341b565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613151565b610cf3565b005b34801561045d57600080fd5b5061047860048036038101906104739190613463565b610d79565b005b34801561048657600080fd5b5061048f610dc8565b005b34801561049d57600080fd5b506104a6610f15565b6040516104b39190613515565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190613463565b610f27565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613151565b610f76565b005b34801561051a57600080fd5b5061053560048036038101906105309190613436565b610ffc565b604051610542919061341b565b60405180910390f35b34801561055757600080fd5b50610560611014565b60405161056d919061332c565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613665565b61103a565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613151565b6110c9565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613151565b61130f565b6040516105fc919061332c565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613151565b611384565b005b34801561063a57600080fd5b5061064361140a565b60405161065091906132c9565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613151565b611498565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613436565b61151e565b6040516106b6919061341b565b60405180910390f35b3480156106cb57600080fd5b506106d461166f565b005b3480156106e257600080fd5b506106eb6116f7565b6040516106f8919061341b565b60405180910390f35b34801561070d57600080fd5b506107166116fd565b604051610723919061332c565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613151565b611727565b005b34801561076157600080fd5b5061076a6117ad565b60405161077791906132c9565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613151565b61183f565b005b3480156107b557600080fd5b506107be6118c5565b6040516107cb919061341b565b60405180910390f35b3480156107e057600080fd5b506107e96118cb565b6040516107f6919061341b565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906136ae565b6118d1565b005b34801561083457600080fd5b5061084f600480360381019061084a919061378f565b6118ea565b005b34801561085d57600080fd5b5061087860048036038101906108739190613151565b61193b565b60405161088591906132c9565b60405180910390f35b34801561089a57600080fd5b506108a36119b7565b6040516108b0919061341b565b60405180910390f35b3480156108c557600080fd5b506108ce6119bd565b6040516108db919061341b565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190613812565b6119c3565b604051610918919061321e565b60405180910390f35b61093b60048036038101906109369190613151565b611a57565b005b34801561094957600080fd5b50610964600480360381019061095f9190613436565b611ced565b005b61096e611de4565b73ffffffffffffffffffffffffffffffffffffffff1661098c6116fd565b73ffffffffffffffffffffffffffffffffffffffff16146109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d99061389e565b60405180910390fd5b60006109ec610cd1565b9050600a5481836109fd91906138ed565b1115610a0857600080fd5b610a123383611dec565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af15750610af082611e0a565b5b9050919050565b606060028054610b0790613950565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390613950565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b9582611e74565b610bcb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c1081611e82565b610c1a8383611f7f565b505050565b600860149054906101000a900460ff1681565b610c3a611de4565b73ffffffffffffffffffffffffffffffffffffffff16610c586116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca59061389e565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b60095481565b6000600154905090565b60106020528060005260406000206000915090505481565b610cfb611de4565b73ffffffffffffffffffffffffffffffffffffffff16610d196116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061389e565b60405180910390fd5b80600a8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db757610db633611e82565b5b610dc2848484612139565b50505050565b610dd0611de4565b73ffffffffffffffffffffffffffffffffffffffff16610dee6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b9061389e565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e8c906139b2565b60006040518083038185875af1925050503d8060008114610ec9576040519150601f19603f3d011682016040523d82523d6000602084013e610ece565b606091505b5050905080610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613a13565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6557610f6433611e82565b5b610f70848484612246565b50505050565b610f7e611de4565b73ffffffffffffffffffffffffffffffffffffffff16610f9c6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe99061389e565b60405180910390fd5b8060098190555050565b60116020528060005260406000206000915090505481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611042611de4565b73ffffffffffffffffffffffffffffffffffffffff166110606116fd565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061389e565b60405180910390fd5b80600790816110c59190613bd5565b5050565b600860149054906101000a900460ff1615611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613cf3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90613d5f565b60405180910390fd5b6000611191610cd1565b9050600e548211156111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613dcb565b60405180910390fd5b600a5481836111e791906138ed565b1115611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613e37565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613ea3565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112fa91906138ed565b9250508190555061130b3383611dec565b5050565b600061131a82611e74565b611350576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61135982612266565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61138c611de4565b73ffffffffffffffffffffffffffffffffffffffff166113aa6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f79061389e565b60405180910390fd5b80600d8190555050565b6007805461141790613950565b80601f016020809104026020016040519081016040528092919081815260200182805461144390613950565b80156114905780601f1061146557610100808354040283529160200191611490565b820191906000526020600020905b81548152906001019060200180831161147357829003601f168201915b505050505081565b6114a0611de4565b73ffffffffffffffffffffffffffffffffffffffff166114be6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b9061389e565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611585576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061158f610cd1565b905060008060005b8381101561166357600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611611578092505b8673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611651578361164e90613ec3565b93505b508061165c90613ec3565b9050611597565b50819350505050919050565b611677611de4565b73ffffffffffffffffffffffffffffffffffffffff166116956116fd565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e29061389e565b60405180910390fd5b6116f56000612345565b565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172f611de4565b73ffffffffffffffffffffffffffffffffffffffff1661174d6116fd565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a9061389e565b60405180910390fd5b80600e8190555050565b6060600380546117bc90613950565b80601f01602080910402602001604051908101604052809291908181526020018280546117e890613950565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b611847611de4565b73ffffffffffffffffffffffffffffffffffffffff166118656116fd565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b29061389e565b60405180910390fd5b80600c8190555050565b600e5481565b600d5481565b816118db81611e82565b6118e5838361240b565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119285761192733611e82565b5b61193485858585612582565b5050505050565b606061194682611e74565b611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613f57565b60405180910390fd5b600761199083612691565b6040516020016119a1929190614082565b6040516020818303038152906040529050919050565b600b5481565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1615611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90613cf3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90613d5f565b60405180910390fd5b6000611b1f610cd1565b905081600954611b2f91906140b1565b341015611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b689061413f565b60405180910390fd5b600d54821115611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613dcb565b60405180910390fd5b600a548183611bc591906138ed565b1115611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613e37565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906141ab565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd891906138ed565b92505081905550611ce93383611dec565b5050565b611cf5611de4565b73ffffffffffffffffffffffffffffffffffffffff16611d136116fd565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061389e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf9061423d565b60405180910390fd5b611de181612345565b50565b600033905090565b611e068282604051806020016040528060008152506127f1565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f7c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ef992919061425d565b602060405180830381865afa158015611f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3a919061429b565b611f7b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f72919061332c565b60405180910390fd5b5b50565b6000611f8a82612266565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506000816000015190508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120a0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166120bf611de4565b73ffffffffffffffffffffffffffffffffffffffff16141580156120f157506120ef816120ea611de4565b6119c3565b155b15612128576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612133848484612889565b50505050565b600061214482612266565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506121fe6121f7611de4565b838361293f565b612234576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612240848484846129d1565b50505050565b612261838383604051806020016040528060008152506118ea565b505050565b600061227182611e74565b6122a7576040517f3210dcc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000848152602001908152602001600020905060008390505b600073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361233b578060019003905060008082815260200190815260200160002091506122c3565b8192505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612413611de4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612477576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060056000612484611de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612531611de4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612576919061321e565b60405180910390a35050565b600061258d83612266565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff1916815250509050612647612640611de4565b848361293f565b61267d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61268a8585858486612cb3565b5050505050565b6060600082036126d8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ec565b600082905060005b6000821461270a5780806126f390613ec3565b915050600a8261270391906142f7565b91506126e0565b60008167ffffffffffffffff8111156127265761272561353a565b5b6040519080825280601f01601f1916602001820160405280156127585781602001600182028036833780820191505090505b5090505b600085146127e5576001826127719190614328565b9150600a85612780919061435c565b603061278c91906138ed565b60f81b8183815181106127a2576127a161438d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127de91906142f7565b945061275c565b8093505050505b919050565b600060015490506128028484612d31565b6128218473ffffffffffffffffffffffffffffffffffffffff16612f7e565b156128835760005b838110156128815761284060008683850186612fa1565b612876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001019050612829565b505b50505050565b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080826000015190508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612989575061298881866119c3565b5b806129c757508473ffffffffffffffffffffffffffffffffffffffff166129af85610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b9150509392505050565b8373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aa0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612aad84848460016130f1565b612ab960008383612889565b6000600183019050612aca81611e74565b15612bb35760008060008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612bb15782600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001518160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c02179055505b505b5060008060008481526020019081526020016000209050838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612c1d85858585602001516130f7565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cac8585856001613101565b5050505050565b612cbf858585856129d1565b612cde8473ffffffffffffffffffffffffffffffffffffffff16612f7e565b8015612cf35750612cf185858584612fa1565b155b15612d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612dd1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006001549050612de560008483856130f1565b60005b82811015612f5b5760007f000000000000000000000000000000000000000000000000000000000000000014612e515760007f00000000000000000000000000000000000000000000000000000000000000008281612e4a57612e496142c8565b5b0614612e56565b600081145b15612ef257600080600083850181526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612ec9600086848601600060a01b6130f7565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550505b8082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806001019050612de8565b5081600160008282540192505081905550612f796000848385613101565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc7611de4565b8786866040518563ffffffff1660e01b8152600401612fe99493929190614411565b6020604051808303816000875af192505050801561302557506040513d601f19601f820116820180604052508101906130229190614472565b60015b61309e573d8060008114613055576040519150601f19603f3d011682016040523d82523d6000602084013e61305a565b606091505b506000815103613096576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000949350505050565b50505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61312e8161311b565b811461313957600080fd5b50565b60008135905061314b81613125565b92915050565b60006020828403121561316757613166613111565b5b60006131758482850161313c565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131b38161317e565b81146131be57600080fd5b50565b6000813590506131d0816131aa565b92915050565b6000602082840312156131ec576131eb613111565b5b60006131fa848285016131c1565b91505092915050565b60008115159050919050565b61321881613203565b82525050565b6000602082019050613233600083018461320f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613273578082015181840152602081019050613258565b60008484015250505050565b6000601f19601f8301169050919050565b600061329b82613239565b6132a58185613244565b93506132b5818560208601613255565b6132be8161327f565b840191505092915050565b600060208201905081810360008301526132e38184613290565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613316826132eb565b9050919050565b6133268161330b565b82525050565b6000602082019050613341600083018461331d565b92915050565b6133508161330b565b811461335b57600080fd5b50565b60008135905061336d81613347565b92915050565b6000806040838503121561338a57613389613111565b5b60006133988582860161335e565b92505060206133a98582860161313c565b9150509250929050565b6133bc81613203565b81146133c757600080fd5b50565b6000813590506133d9816133b3565b92915050565b6000602082840312156133f5576133f4613111565b5b6000613403848285016133ca565b91505092915050565b6134158161311b565b82525050565b6000602082019050613430600083018461340c565b92915050565b60006020828403121561344c5761344b613111565b5b600061345a8482850161335e565b91505092915050565b60008060006060848603121561347c5761347b613111565b5b600061348a8682870161335e565b935050602061349b8682870161335e565b92505060406134ac8682870161313c565b9150509250925092565b6000819050919050565b60006134db6134d66134d1846132eb565b6134b6565b6132eb565b9050919050565b60006134ed826134c0565b9050919050565b60006134ff826134e2565b9050919050565b61350f816134f4565b82525050565b600060208201905061352a6000830184613506565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135728261327f565b810181811067ffffffffffffffff821117156135915761359061353a565b5b80604052505050565b60006135a4613107565b90506135b08282613569565b919050565b600067ffffffffffffffff8211156135d0576135cf61353a565b5b6135d98261327f565b9050602081019050919050565b82818337600083830152505050565b6000613608613603846135b5565b61359a565b90508281526020810184848401111561362457613623613535565b5b61362f8482856135e6565b509392505050565b600082601f83011261364c5761364b613530565b5b813561365c8482602086016135f5565b91505092915050565b60006020828403121561367b5761367a613111565b5b600082013567ffffffffffffffff81111561369957613698613116565b5b6136a584828501613637565b91505092915050565b600080604083850312156136c5576136c4613111565b5b60006136d38582860161335e565b92505060206136e4858286016133ca565b9150509250929050565b600067ffffffffffffffff8211156137095761370861353a565b5b6137128261327f565b9050602081019050919050565b600061373261372d846136ee565b61359a565b90508281526020810184848401111561374e5761374d613535565b5b6137598482856135e6565b509392505050565b600082601f83011261377657613775613530565b5b813561378684826020860161371f565b91505092915050565b600080600080608085870312156137a9576137a8613111565b5b60006137b78782880161335e565b94505060206137c88782880161335e565b93505060406137d98782880161313c565b925050606085013567ffffffffffffffff8111156137fa576137f9613116565b5b61380687828801613761565b91505092959194509250565b6000806040838503121561382957613828613111565b5b60006138378582860161335e565b92505060206138488582860161335e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613888602083613244565b915061389382613852565b602082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138f88261311b565b91506139038361311b565b925082820190508082111561391b5761391a6138be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061396857607f821691505b60208210810361397b5761397a613921565b5b50919050565b600081905092915050565b50565b600061399c600083613981565b91506139a78261398c565b600082019050919050565b60006139bd8261398f565b9150819050919050565b7f4661696c656420746f2073656e6420746f206c6561642e000000000000000000600082015250565b60006139fd601783613244565b9150613a08826139c7565b602082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a58565b613a9f8683613a58565b95508019841693508086168417925050509392505050565b6000613ad2613acd613ac88461311b565b6134b6565b61311b565b9050919050565b6000819050919050565b613aec83613ab7565b613b00613af882613ad9565b848454613a65565b825550505050565b600090565b613b15613b08565b613b20818484613ae3565b505050565b5b81811015613b4457613b39600082613b0d565b600181019050613b26565b5050565b601f821115613b8957613b5a81613a33565b613b6384613a48565b81016020851015613b72578190505b613b86613b7e85613a48565b830182613b25565b50505b505050565b600082821c905092915050565b6000613bac60001984600802613b8e565b1980831691505092915050565b6000613bc58383613b9b565b9150826002028217905092915050565b613bde82613239565b67ffffffffffffffff811115613bf757613bf661353a565b5b613c018254613950565b613c0c828285613b48565b600060209050601f831160018114613c3f5760008415613c2d578287015190505b613c378582613bb9565b865550613c9f565b601f198416613c4d86613a33565b60005b82811015613c7557848901518255600182019150602085019450602081019050613c50565b86831015613c925784890151613c8e601f891682613b9b565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000613cdd601283613244565b9150613ce882613ca7565b602082019050919050565b60006020820190508181036000830152613d0c81613cd0565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b6000613d49601f83613244565b9150613d5482613d13565b602082019050919050565b60006020820190508181036000830152613d7881613d3c565b9050919050565b7f4f766572205478204c696d697400000000000000000000000000000000000000600082015250565b6000613db5600d83613244565b9150613dc082613d7f565b602082019050919050565b60006020820190508181036000830152613de481613da8565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000613e21600783613244565b9150613e2c82613deb565b602082019050919050565b60006020820190508181036000830152613e5081613e14565b9050919050565b7f4f766572204d617850657257616c6c6574000000000000000000000000000000600082015250565b6000613e8d601183613244565b9150613e9882613e57565b602082019050919050565b60006020820190508181036000830152613ebc81613e80565b9050919050565b6000613ece8261311b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f0057613eff6138be565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613f41601583613244565b9150613f4c82613f0b565b602082019050919050565b60006020820190508181036000830152613f7081613f34565b9050919050565b600081905092915050565b60008154613f8f81613950565b613f998186613f77565b94506001821660008114613fb45760018114613fc957613ffc565b60ff1983168652811515820286019350613ffc565b613fd285613a33565b60005b83811015613ff457815481890152600182019150602081019050613fd5565b838801955050505b50505092915050565b600061401082613239565b61401a8185613f77565b935061402a818560208601613255565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061406c600583613f77565b915061407782614036565b600582019050919050565b600061408e8285613f82565b915061409a8284614005565b91506140a58261405f565b91508190509392505050565b60006140bc8261311b565b91506140c78361311b565b92508282026140d58161311b565b915082820484148315176140ec576140eb6138be565b5b5092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000614129601083613244565b9150614134826140f3565b602082019050919050565b600060208201905081810360008301526141588161411c565b9050919050565b7f4f766572206d617850657257616c6c6574506169640000000000000000000000600082015250565b6000614195601583613244565b91506141a08261415f565b602082019050919050565b600060208201905081810360008301526141c481614188565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614227602683613244565b9150614232826141cb565b604082019050919050565b600060208201905081810360008301526142568161421a565b9050919050565b6000604082019050614272600083018561331d565b61427f602083018461331d565b9392505050565b600081519050614295816133b3565b92915050565b6000602082840312156142b1576142b0613111565b5b60006142bf84828501614286565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143028261311b565b915061430d8361311b565b92508261431d5761431c6142c8565b5b828204905092915050565b60006143338261311b565b915061433e8361311b565b9250828203905081811115614356576143556138be565b5b92915050565b60006143678261311b565b91506143728361311b565b925082614382576143816142c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006143e3826143bc565b6143ed81856143c7565b93506143fd818560208601613255565b6144068161327f565b840191505092915050565b6000608082019050614426600083018761331d565b614433602083018661331d565b614440604083018561340c565b818103606083015261445281846143d8565b905095945050505050565b60008151905061446c816131aa565b92915050565b60006020828403121561448857614487613111565b5b60006144968482850161445d565b9150509291505056fea2646970667358221220cedf7fa6070a51b0e107aa1ac2fd6b2e7ad34a9c394744bd14ab4b4f1e4f7d7464736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000050e79890ec1d43bb8742c0d22252a509427218d80000000000000000000000000000000000000000000000000000000000000008697066733a2f2f2f000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102455760003560e01c80636352211e1161013957806395e534ba116100b6578063c87b56dd1161007a578063c87b56dd14610851578063cdfc609d1461088e578063d5abeb01146108b9578063e985e9c5146108e4578063ef3e061914610921578063f2fde38b1461093d57610245565b806395e534ba14610780578063980a70d2146107a95780639e98fbe7146107d4578063a22cb465146107ff578063b88d4fde1461082857610245565b8063715018a6116100fd578063715018a6146106bf5780637f5f5a45146106d65780638da5cb5b1461070157806395982f321461072c57806395d89b411461075557610245565b80636352211e146105c857806364f655a3146106055780636c0360eb1461062e5780636cfcc2111461065957806370a082311461068257610245565b8063228025e8116101c757806344a0d68a1161018b57806344a0d68a146104e557806345801a0e1461050e57806346bb0a161461054b57806355f804b3146105765780635a0bdbc81461059f57610245565b8063228025e81461042857806323b872dd146104515780633ccfd60b1461047a57806341f434341461049157806342842e0e146104bc57610245565b80630bb12bb81161020e5780630bb12bb8146103415780630e21f59f1461036c57806313faede61461039557806318160ddd146103c057806318cae269146103eb57610245565b8062a162f51461024a57806301ffc9a71461027357806306fdde03146102b0578063081812fc146102db578063095ea7b314610318575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190613151565b610966565b005b34801561027f57600080fd5b5061029a600480360381019061029591906131d6565b610a16565b6040516102a7919061321e565b60405180910390f35b3480156102bc57600080fd5b506102c5610af8565b6040516102d291906132c9565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190613151565b610b8a565b60405161030f919061332c565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613373565b610c06565b005b34801561034d57600080fd5b50610356610c1f565b604051610363919061321e565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906133df565b610c32565b005b3480156103a157600080fd5b506103aa610ccb565b6040516103b7919061341b565b60405180910390f35b3480156103cc57600080fd5b506103d5610cd1565b6040516103e2919061341b565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613436565b610cdb565b60405161041f919061341b565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613151565b610cf3565b005b34801561045d57600080fd5b5061047860048036038101906104739190613463565b610d79565b005b34801561048657600080fd5b5061048f610dc8565b005b34801561049d57600080fd5b506104a6610f15565b6040516104b39190613515565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190613463565b610f27565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613151565b610f76565b005b34801561051a57600080fd5b5061053560048036038101906105309190613436565b610ffc565b604051610542919061341b565b60405180910390f35b34801561055757600080fd5b50610560611014565b60405161056d919061332c565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613665565b61103a565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613151565b6110c9565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613151565b61130f565b6040516105fc919061332c565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613151565b611384565b005b34801561063a57600080fd5b5061064361140a565b60405161065091906132c9565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613151565b611498565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613436565b61151e565b6040516106b6919061341b565b60405180910390f35b3480156106cb57600080fd5b506106d461166f565b005b3480156106e257600080fd5b506106eb6116f7565b6040516106f8919061341b565b60405180910390f35b34801561070d57600080fd5b506107166116fd565b604051610723919061332c565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613151565b611727565b005b34801561076157600080fd5b5061076a6117ad565b60405161077791906132c9565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613151565b61183f565b005b3480156107b557600080fd5b506107be6118c5565b6040516107cb919061341b565b60405180910390f35b3480156107e057600080fd5b506107e96118cb565b6040516107f6919061341b565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906136ae565b6118d1565b005b34801561083457600080fd5b5061084f600480360381019061084a919061378f565b6118ea565b005b34801561085d57600080fd5b5061087860048036038101906108739190613151565b61193b565b60405161088591906132c9565b60405180910390f35b34801561089a57600080fd5b506108a36119b7565b6040516108b0919061341b565b60405180910390f35b3480156108c557600080fd5b506108ce6119bd565b6040516108db919061341b565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190613812565b6119c3565b604051610918919061321e565b60405180910390f35b61093b60048036038101906109369190613151565b611a57565b005b34801561094957600080fd5b50610964600480360381019061095f9190613436565b611ced565b005b61096e611de4565b73ffffffffffffffffffffffffffffffffffffffff1661098c6116fd565b73ffffffffffffffffffffffffffffffffffffffff16146109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d99061389e565b60405180910390fd5b60006109ec610cd1565b9050600a5481836109fd91906138ed565b1115610a0857600080fd5b610a123383611dec565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af15750610af082611e0a565b5b9050919050565b606060028054610b0790613950565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390613950565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b9582611e74565b610bcb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c1081611e82565b610c1a8383611f7f565b505050565b600860149054906101000a900460ff1681565b610c3a611de4565b73ffffffffffffffffffffffffffffffffffffffff16610c586116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca59061389e565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b60095481565b6000600154905090565b60106020528060005260406000206000915090505481565b610cfb611de4565b73ffffffffffffffffffffffffffffffffffffffff16610d196116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061389e565b60405180910390fd5b80600a8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db757610db633611e82565b5b610dc2848484612139565b50505050565b610dd0611de4565b73ffffffffffffffffffffffffffffffffffffffff16610dee6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b9061389e565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e8c906139b2565b60006040518083038185875af1925050503d8060008114610ec9576040519150601f19603f3d011682016040523d82523d6000602084013e610ece565b606091505b5050905080610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613a13565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6557610f6433611e82565b5b610f70848484612246565b50505050565b610f7e611de4565b73ffffffffffffffffffffffffffffffffffffffff16610f9c6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe99061389e565b60405180910390fd5b8060098190555050565b60116020528060005260406000206000915090505481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611042611de4565b73ffffffffffffffffffffffffffffffffffffffff166110606116fd565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061389e565b60405180910390fd5b80600790816110c59190613bd5565b5050565b600860149054906101000a900460ff1615611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613cf3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90613d5f565b60405180910390fd5b6000611191610cd1565b9050600e548211156111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613dcb565b60405180910390fd5b600a5481836111e791906138ed565b1115611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613e37565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613ea3565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112fa91906138ed565b9250508190555061130b3383611dec565b5050565b600061131a82611e74565b611350576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61135982612266565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61138c611de4565b73ffffffffffffffffffffffffffffffffffffffff166113aa6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f79061389e565b60405180910390fd5b80600d8190555050565b6007805461141790613950565b80601f016020809104026020016040519081016040528092919081815260200182805461144390613950565b80156114905780601f1061146557610100808354040283529160200191611490565b820191906000526020600020905b81548152906001019060200180831161147357829003601f168201915b505050505081565b6114a0611de4565b73ffffffffffffffffffffffffffffffffffffffff166114be6116fd565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b9061389e565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611585576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061158f610cd1565b905060008060005b8381101561166357600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611611578092505b8673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611651578361164e90613ec3565b93505b508061165c90613ec3565b9050611597565b50819350505050919050565b611677611de4565b73ffffffffffffffffffffffffffffffffffffffff166116956116fd565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e29061389e565b60405180910390fd5b6116f56000612345565b565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172f611de4565b73ffffffffffffffffffffffffffffffffffffffff1661174d6116fd565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a9061389e565b60405180910390fd5b80600e8190555050565b6060600380546117bc90613950565b80601f01602080910402602001604051908101604052809291908181526020018280546117e890613950565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b611847611de4565b73ffffffffffffffffffffffffffffffffffffffff166118656116fd565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b29061389e565b60405180910390fd5b80600c8190555050565b600e5481565b600d5481565b816118db81611e82565b6118e5838361240b565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119285761192733611e82565b5b61193485858585612582565b5050505050565b606061194682611e74565b611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613f57565b60405180910390fd5b600761199083612691565b6040516020016119a1929190614082565b6040516020818303038152906040529050919050565b600b5481565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1615611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90613cf3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90613d5f565b60405180910390fd5b6000611b1f610cd1565b905081600954611b2f91906140b1565b341015611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b689061413f565b60405180910390fd5b600d54821115611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613dcb565b60405180910390fd5b600a548183611bc591906138ed565b1115611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613e37565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906141ab565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd891906138ed565b92505081905550611ce93383611dec565b5050565b611cf5611de4565b73ffffffffffffffffffffffffffffffffffffffff16611d136116fd565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061389e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf9061423d565b60405180910390fd5b611de181612345565b50565b600033905090565b611e068282604051806020016040528060008152506127f1565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f7c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ef992919061425d565b602060405180830381865afa158015611f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3a919061429b565b611f7b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f72919061332c565b60405180910390fd5b5b50565b6000611f8a82612266565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506000816000015190508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120a0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166120bf611de4565b73ffffffffffffffffffffffffffffffffffffffff16141580156120f157506120ef816120ea611de4565b6119c3565b155b15612128576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612133848484612889565b50505050565b600061214482612266565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506121fe6121f7611de4565b838361293f565b612234576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612240848484846129d1565b50505050565b612261838383604051806020016040528060008152506118ea565b505050565b600061227182611e74565b6122a7576040517f3210dcc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000848152602001908152602001600020905060008390505b600073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361233b578060019003905060008082815260200190815260200160002091506122c3565b8192505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612413611de4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612477576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060056000612484611de4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612531611de4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612576919061321e565b60405180910390a35050565b600061258d83612266565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff1916815250509050612647612640611de4565b848361293f565b61267d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61268a8585858486612cb3565b5050505050565b6060600082036126d8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ec565b600082905060005b6000821461270a5780806126f390613ec3565b915050600a8261270391906142f7565b91506126e0565b60008167ffffffffffffffff8111156127265761272561353a565b5b6040519080825280601f01601f1916602001820160405280156127585781602001600182028036833780820191505090505b5090505b600085146127e5576001826127719190614328565b9150600a85612780919061435c565b603061278c91906138ed565b60f81b8183815181106127a2576127a161438d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127de91906142f7565b945061275c565b8093505050505b919050565b600060015490506128028484612d31565b6128218473ffffffffffffffffffffffffffffffffffffffff16612f7e565b156128835760005b838110156128815761284060008683850186612fa1565b612876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001019050612829565b505b50505050565b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080826000015190508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612989575061298881866119c3565b5b806129c757508473ffffffffffffffffffffffffffffffffffffffff166129af85610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b9150509392505050565b8373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aa0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612aad84848460016130f1565b612ab960008383612889565b6000600183019050612aca81611e74565b15612bb35760008060008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612bb15782600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001518160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c02179055505b505b5060008060008481526020019081526020016000209050838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612c1d85858585602001516130f7565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cac8585856001613101565b5050505050565b612cbf858585856129d1565b612cde8473ffffffffffffffffffffffffffffffffffffffff16612f7e565b8015612cf35750612cf185858584612fa1565b155b15612d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612dd1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006001549050612de560008483856130f1565b60005b82811015612f5b5760007f000000000000000000000000000000000000000000000000000000000000000014612e515760007f00000000000000000000000000000000000000000000000000000000000000008281612e4a57612e496142c8565b5b0614612e56565b600081145b15612ef257600080600083850181526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612ec9600086848601600060a01b6130f7565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550505b8082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806001019050612de8565b5081600160008282540192505081905550612f796000848385613101565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc7611de4565b8786866040518563ffffffff1660e01b8152600401612fe99493929190614411565b6020604051808303816000875af192505050801561302557506040513d601f19601f820116820180604052508101906130229190614472565b60015b61309e573d8060008114613055576040519150601f19603f3d011682016040523d82523d6000602084013e61305a565b606091505b506000815103613096576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000949350505050565b50505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61312e8161311b565b811461313957600080fd5b50565b60008135905061314b81613125565b92915050565b60006020828403121561316757613166613111565b5b60006131758482850161313c565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131b38161317e565b81146131be57600080fd5b50565b6000813590506131d0816131aa565b92915050565b6000602082840312156131ec576131eb613111565b5b60006131fa848285016131c1565b91505092915050565b60008115159050919050565b61321881613203565b82525050565b6000602082019050613233600083018461320f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613273578082015181840152602081019050613258565b60008484015250505050565b6000601f19601f8301169050919050565b600061329b82613239565b6132a58185613244565b93506132b5818560208601613255565b6132be8161327f565b840191505092915050565b600060208201905081810360008301526132e38184613290565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613316826132eb565b9050919050565b6133268161330b565b82525050565b6000602082019050613341600083018461331d565b92915050565b6133508161330b565b811461335b57600080fd5b50565b60008135905061336d81613347565b92915050565b6000806040838503121561338a57613389613111565b5b60006133988582860161335e565b92505060206133a98582860161313c565b9150509250929050565b6133bc81613203565b81146133c757600080fd5b50565b6000813590506133d9816133b3565b92915050565b6000602082840312156133f5576133f4613111565b5b6000613403848285016133ca565b91505092915050565b6134158161311b565b82525050565b6000602082019050613430600083018461340c565b92915050565b60006020828403121561344c5761344b613111565b5b600061345a8482850161335e565b91505092915050565b60008060006060848603121561347c5761347b613111565b5b600061348a8682870161335e565b935050602061349b8682870161335e565b92505060406134ac8682870161313c565b9150509250925092565b6000819050919050565b60006134db6134d66134d1846132eb565b6134b6565b6132eb565b9050919050565b60006134ed826134c0565b9050919050565b60006134ff826134e2565b9050919050565b61350f816134f4565b82525050565b600060208201905061352a6000830184613506565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135728261327f565b810181811067ffffffffffffffff821117156135915761359061353a565b5b80604052505050565b60006135a4613107565b90506135b08282613569565b919050565b600067ffffffffffffffff8211156135d0576135cf61353a565b5b6135d98261327f565b9050602081019050919050565b82818337600083830152505050565b6000613608613603846135b5565b61359a565b90508281526020810184848401111561362457613623613535565b5b61362f8482856135e6565b509392505050565b600082601f83011261364c5761364b613530565b5b813561365c8482602086016135f5565b91505092915050565b60006020828403121561367b5761367a613111565b5b600082013567ffffffffffffffff81111561369957613698613116565b5b6136a584828501613637565b91505092915050565b600080604083850312156136c5576136c4613111565b5b60006136d38582860161335e565b92505060206136e4858286016133ca565b9150509250929050565b600067ffffffffffffffff8211156137095761370861353a565b5b6137128261327f565b9050602081019050919050565b600061373261372d846136ee565b61359a565b90508281526020810184848401111561374e5761374d613535565b5b6137598482856135e6565b509392505050565b600082601f83011261377657613775613530565b5b813561378684826020860161371f565b91505092915050565b600080600080608085870312156137a9576137a8613111565b5b60006137b78782880161335e565b94505060206137c88782880161335e565b93505060406137d98782880161313c565b925050606085013567ffffffffffffffff8111156137fa576137f9613116565b5b61380687828801613761565b91505092959194509250565b6000806040838503121561382957613828613111565b5b60006138378582860161335e565b92505060206138488582860161335e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613888602083613244565b915061389382613852565b602082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138f88261311b565b91506139038361311b565b925082820190508082111561391b5761391a6138be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061396857607f821691505b60208210810361397b5761397a613921565b5b50919050565b600081905092915050565b50565b600061399c600083613981565b91506139a78261398c565b600082019050919050565b60006139bd8261398f565b9150819050919050565b7f4661696c656420746f2073656e6420746f206c6561642e000000000000000000600082015250565b60006139fd601783613244565b9150613a08826139c7565b602082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a58565b613a9f8683613a58565b95508019841693508086168417925050509392505050565b6000613ad2613acd613ac88461311b565b6134b6565b61311b565b9050919050565b6000819050919050565b613aec83613ab7565b613b00613af882613ad9565b848454613a65565b825550505050565b600090565b613b15613b08565b613b20818484613ae3565b505050565b5b81811015613b4457613b39600082613b0d565b600181019050613b26565b5050565b601f821115613b8957613b5a81613a33565b613b6384613a48565b81016020851015613b72578190505b613b86613b7e85613a48565b830182613b25565b50505b505050565b600082821c905092915050565b6000613bac60001984600802613b8e565b1980831691505092915050565b6000613bc58383613b9b565b9150826002028217905092915050565b613bde82613239565b67ffffffffffffffff811115613bf757613bf661353a565b5b613c018254613950565b613c0c828285613b48565b600060209050601f831160018114613c3f5760008415613c2d578287015190505b613c378582613bb9565b865550613c9f565b601f198416613c4d86613a33565b60005b82811015613c7557848901518255600182019150602085019450602081019050613c50565b86831015613c925784890151613c8e601f891682613b9b565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000613cdd601283613244565b9150613ce882613ca7565b602082019050919050565b60006020820190508181036000830152613d0c81613cd0565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b6000613d49601f83613244565b9150613d5482613d13565b602082019050919050565b60006020820190508181036000830152613d7881613d3c565b9050919050565b7f4f766572205478204c696d697400000000000000000000000000000000000000600082015250565b6000613db5600d83613244565b9150613dc082613d7f565b602082019050919050565b60006020820190508181036000830152613de481613da8565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000613e21600783613244565b9150613e2c82613deb565b602082019050919050565b60006020820190508181036000830152613e5081613e14565b9050919050565b7f4f766572204d617850657257616c6c6574000000000000000000000000000000600082015250565b6000613e8d601183613244565b9150613e9882613e57565b602082019050919050565b60006020820190508181036000830152613ebc81613e80565b9050919050565b6000613ece8261311b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f0057613eff6138be565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613f41601583613244565b9150613f4c82613f0b565b602082019050919050565b60006020820190508181036000830152613f7081613f34565b9050919050565b600081905092915050565b60008154613f8f81613950565b613f998186613f77565b94506001821660008114613fb45760018114613fc957613ffc565b60ff1983168652811515820286019350613ffc565b613fd285613a33565b60005b83811015613ff457815481890152600182019150602081019050613fd5565b838801955050505b50505092915050565b600061401082613239565b61401a8185613f77565b935061402a818560208601613255565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061406c600583613f77565b915061407782614036565b600582019050919050565b600061408e8285613f82565b915061409a8284614005565b91506140a58261405f565b91508190509392505050565b60006140bc8261311b565b91506140c78361311b565b92508282026140d58161311b565b915082820484148315176140ec576140eb6138be565b5b5092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000614129601083613244565b9150614134826140f3565b602082019050919050565b600060208201905081810360008301526141588161411c565b9050919050565b7f4f766572206d617850657257616c6c6574506169640000000000000000000000600082015250565b6000614195601583613244565b91506141a08261415f565b602082019050919050565b600060208201905081810360008301526141c481614188565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614227602683613244565b9150614232826141cb565b604082019050919050565b600060208201905081810360008301526142568161421a565b9050919050565b6000604082019050614272600083018561331d565b61427f602083018461331d565b9392505050565b600081519050614295816133b3565b92915050565b6000602082840312156142b1576142b0613111565b5b60006142bf84828501614286565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143028261311b565b915061430d8361311b565b92508261431d5761431c6142c8565b5b828204905092915050565b60006143338261311b565b915061433e8361311b565b9250828203905081811115614356576143556138be565b5b92915050565b60006143678261311b565b91506143728361311b565b925082614382576143816142c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006143e3826143bc565b6143ed81856143c7565b93506143fd818560208601613255565b6144068161327f565b840191505092915050565b6000608082019050614426600083018761331d565b614433602083018661331d565b614440604083018561340c565b818103606083015261445281846143d8565b905095945050505050565b60008151905061446c816131aa565b92915050565b60006020828403121561448857614487613111565b5b60006144968482850161445d565b9150509291505056fea2646970667358221220cedf7fa6070a51b0e107aa1ac2fd6b2e7ad34a9c394744bd14ab4b4f1e4f7d7464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000050e79890ec1d43bb8742c0d22252a509427218d80000000000000000000000000000000000000000000000000000000000000008697066733a2f2f2f000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs:///
Arg [1] : _lead (address): 0x50e79890Ec1D43bB8742C0D22252a509427218d8
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000050e79890ec1d43bb8742c0d22252a509427218d8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 697066733a2f2f2f000000000000000000000000000000000000000000000000
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.