Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 FRACTUREDCELLS
Holders
372
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FRACTUREDCELLSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FracturedCells
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >= 0.8.0; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; contract FracturedCells is Context, ERC721, Ownable { using Strings for uint256; /** public */ string public __baseURI; uint256 public maxFracturedCells = 1500; uint256 public numFracturedCells; uint256 public maxAirdrop = 500; uint256 public price = 0.1 ether; uint256 public publicMintStartBlockNumber = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff; address public t1Wallet; address public t2Wallet; /** event */ event onFracturedCellCreated(uint256 tokenId); event onPublicMintStarted(); constructor(string memory baseURI_, address t1Wallet_, address t2Wallet_) ERC721("Fractured Cells", "FRACTUREDCELLS") { require(t1Wallet_ != address(0), "team wallet cannot be zero address"); require(t2Wallet_ != address(0), "team wallet cannot be zero address"); __baseURI = baseURI_; t1Wallet = t1Wallet_; t2Wallet = t2Wallet_; numFracturedCells = 0; } /** * @dev override ERC721 _baseURI */ function _baseURI() internal view virtual override returns (string memory) { return __baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")); } function publicMintStarted() public view returns (bool) { return block.number >= publicMintStartBlockNumber; } function _create(address to, uint256 tokenId) internal { _safeMint(to, tokenId); emit onFracturedCellCreated(tokenId); } function create(uint256 qty) external payable { require (publicMintStarted(), "minting has not yet started"); require (qty > 0 && qty <= 10, "quantity must be greater than 0 and no greater than 10"); require (numFracturedCells < maxFracturedCells, "Fractured Cells minting has ended"); require ((numFracturedCells + qty) <= maxFracturedCells, "quantity exceeds the number of Fractured Cells that remain"); require (msg.value >= (price * qty), "value is too low"); for (uint256 i = 0; i < qty; i++) { numFracturedCells += 1; uint256 tokenId = numFracturedCells; _create(_msgSender(), tokenId); } } /** team */ modifier onlyTeam() { require((_msgSender() == t1Wallet || _msgSender() == t2Wallet), "caller does not belong to team"); _; } /** * @dev team members can withdraw funds */ function withdraw(uint256 _amount) external onlyTeam { uint256 t1Payment = (_amount / 100) * 80; require(payable(t1Wallet).send(t1Payment)); require(payable(t2Wallet).send(_amount - t1Payment)); } function withdrawAll() external payable onlyTeam { uint256 t1Payment = (address(this).balance / 100) * 80; require(payable(t1Wallet).send(t1Payment)); require(payable(t2Wallet).send(address(this).balance)); } function forwardERC20s(IERC20 _token, uint256 _amount, address target) external onlyOwner { _token.transfer(target, _amount); } /** owner */ /** * @dev owner can set the block on which the public can begin minting */ function setPublicMintStartBlockNumber(uint256 _publicMintStartBlockNumber) external onlyOwner { publicMintStartBlockNumber = _publicMintStartBlockNumber; emit onPublicMintStarted(); } /** * @dev owner can modify __baseURI for reveal and maintainability */ function setBaseURI(string calldata baseURI) external onlyOwner { __baseURI = baseURI; } /** * @dev owner can airdrop Fractured Cells before public minting begins */ function airdrop(address[] calldata addresses) external onlyOwner { require (addresses.length > 0, "addresses required"); require ((numFracturedCells + addresses.length) <= maxFracturedCells, "quantity exceeds the number of Fractured Cells that remain"); require ((numFracturedCells + addresses.length) <= maxAirdrop, "quantity exceeds the number of Fractured Cells allocated for airdrop"); for (uint256 i = 0; i < addresses.length; i++) { numFracturedCells += 1; uint256 tokenId = numFracturedCells; _create(addresses[i], tokenId); } } }
// SPDX-License-Identifier: MIT 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 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 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.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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 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 pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"t1Wallet_","type":"address"},{"internalType":"address","name":"t2Wallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"onFracturedCellCreated","type":"event"},{"anonymous":false,"inputs":[],"name":"onPublicMintStarted","type":"event"},{"inputs":[],"name":"__baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"create","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"target","type":"address"}],"name":"forwardERC20s","outputs":[],"stateMutability":"nonpayable","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":"maxAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFracturedCells","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numFracturedCells","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStartBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStarted","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":"_publicMintStartBlockNumber","type":"uint256"}],"name":"setPublicMintStartBlockNumber","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":[],"name":"t1Wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2Wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526105dc6008556101f4600a5567016345785d8a0000600b557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600c553480156200004d57600080fd5b50604051620049f7380380620049f7833981810160405281019062000073919062000645565b6040518060400160405280600f81526020017f4672616374757265642043656c6c7300000000000000000000000000000000008152506040518060400160405280600e81526020017f46524143545552454443454c4c530000000000000000000000000000000000008152508160009080519060200190620000f792919062000393565b5080600190805190602001906200011092919062000393565b5050506200013362000127620002c560201b60201c565b620002cd60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019d9062000747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000219576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002109062000747565b60405180910390fd5b82600790805190602001906200023192919062000393565b5081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600981905550505050620007ce565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003a19062000798565b90600052602060002090601f016020900481019282620003c5576000855562000411565b82601f10620003e057805160ff191683800117855562000411565b8280016001018555821562000411579182015b8281111562000410578251825591602001919060010190620003f3565b5b50905062000420919062000424565b5090565b5b808211156200043f57600081600090555060010162000425565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004ac8262000461565b810181811067ffffffffffffffff82111715620004ce57620004cd62000472565b5b80604052505050565b6000620004e362000443565b9050620004f18282620004a1565b919050565b600067ffffffffffffffff82111562000514576200051362000472565b5b6200051f8262000461565b9050602081019050919050565b60005b838110156200054c5780820151818401526020810190506200052f565b838111156200055c576000848401525b50505050565b6000620005796200057384620004f6565b620004d7565b9050828152602081018484840111156200059857620005976200045c565b5b620005a58482856200052c565b509392505050565b600082601f830112620005c557620005c462000457565b5b8151620005d784826020860162000562565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060d82620005e0565b9050919050565b6200061f8162000600565b81146200062b57600080fd5b50565b6000815190506200063f8162000614565b92915050565b6000806000606084860312156200066157620006606200044d565b5b600084015167ffffffffffffffff81111562000682576200068162000452565b5b6200069086828701620005ad565b9350506020620006a3868287016200062e565b9250506040620006b6868287016200062e565b9150509250925092565b600082825260208201905092915050565b7f7465616d2077616c6c65742063616e6e6f74206265207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200072f602283620006c0565b91506200073c82620006d1565b604082019050919050565b60006020820190508181036000830152620007628162000720565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007b157607f821691505b60208210811415620007c857620007c762000769565b5b50919050565b61421980620007de6000396000f3fe6080604052600436106101e35760003560e01c806370a082311161010257806395d89b4111610095578063b88d4fde11610064578063b88d4fde1461068e578063c87b56dd146106b7578063e985e9c5146106f4578063f2fde38b14610731576101e3565b806395d89b41146105e4578063a035b1fe1461060f578063a22cb4651461063a578063afda7e9014610663576101e3565b8063780900dc116100d1578063780900dc14610568578063792c130c14610584578063853828b6146105af5780638da5cb5b146105b9576101e3565b806370a08231146104c0578063715018a6146104fd578063729ad39e1461051457806374fa18a01461053d576101e3565b806323decc3b1161017a57806343f37b981161014957806343f37b981461040657806355f804b31461042f5780636352211e146104585780636e34a48214610495576101e3565b806323decc3b1461035e5780632e1a7d4d146103895780633595bb88146103b257806342842e0e146103dd576101e3565b8063081812fc116101b6578063081812fc146102a6578063095ea7b3146102e35780632073a2b01461030c57806323b872dd14610335576101e3565b806301ffc9a7146101e8578063035240051461022557806305d5c5951461025057806306fdde031461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612983565b61075a565b60405161021c91906129cb565b60405180910390f35b34801561023157600080fd5b5061023a61083c565b60405161024791906129cb565b60405180910390f35b34801561025c57600080fd5b50610265610849565b60405161027291906129ff565b60405180910390f35b34801561028757600080fd5b5061029061084f565b60405161029d9190612ab3565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190612b01565b6108e1565b6040516102da9190612b6f565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612bb6565b610966565b005b34801561031857600080fd5b50610333600480360381019061032e9190612b01565b610a7e565b005b34801561034157600080fd5b5061035c60048036038101906103579190612bf6565b610b30565b005b34801561036a57600080fd5b50610373610b90565b60405161038091906129ff565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612b01565b610b96565b005b3480156103be57600080fd5b506103c7610d78565b6040516103d49190612b6f565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612bf6565b610d9e565b005b34801561041257600080fd5b5061042d60048036038101906104289190612c87565b610dbe565b005b34801561043b57600080fd5b5061045660048036038101906104519190612d3f565b610ecd565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612b01565b610f5f565b60405161048c9190612b6f565b60405180910390f35b3480156104a157600080fd5b506104aa611011565b6040516104b79190612ab3565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612d8c565b61109f565b6040516104f491906129ff565b60405180910390f35b34801561050957600080fd5b50610512611157565b005b34801561052057600080fd5b5061053b60048036038101906105369190612e0f565b6111df565b005b34801561054957600080fd5b506105526113c4565b60405161055f91906129ff565b60405180910390f35b610582600480360381019061057d9190612b01565b6113ca565b005b34801561059057600080fd5b5061059961159e565b6040516105a691906129ff565b60405180910390f35b6105b76115a4565b005b3480156105c557600080fd5b506105ce61177a565b6040516105db9190612b6f565b60405180910390f35b3480156105f057600080fd5b506105f96117a4565b6040516106069190612ab3565b60405180910390f35b34801561061b57600080fd5b50610624611836565b60405161063191906129ff565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612e88565b61183c565b005b34801561066f57600080fd5b506106786119bd565b6040516106859190612b6f565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612ff8565b6119e3565b005b3480156106c357600080fd5b506106de60048036038101906106d99190612b01565b611a45565b6040516106eb9190612ab3565b60405180910390f35b34801561070057600080fd5b5061071b6004803603810190610716919061307b565b611ac7565b60405161072891906129cb565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190612d8c565b611b5b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610835575061083482611c53565b5b9050919050565b6000600c54431015905090565b600a5481565b60606000805461085e906130ea565b80601f016020809104026020016040519081016040528092919081815260200182805461088a906130ea565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b60006108ec82611cbd565b61092b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109229061318e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097182610f5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d990613220565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a01611d29565b73ffffffffffffffffffffffffffffffffffffffff161480610a305750610a2f81610a2a611d29565b611ac7565b5b610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906132b2565b60405180910390fd5b610a798383611d31565b505050565b610a86611d29565b73ffffffffffffffffffffffffffffffffffffffff16610aa461177a565b73ffffffffffffffffffffffffffffffffffffffff1614610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af19061331e565b60405180910390fd5b80600c819055507f4fdbd5eebc3708bb448447f21df88671fc0c6e742a4274900c9fefebd683ae4160405160405180910390a150565b610b41610b3b611d29565b82611dea565b610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b77906133b0565b60405180910390fd5b610b8b838383611ec8565b505050565b600c5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bd7611d29565b73ffffffffffffffffffffffffffffffffffffffff161480610c4d5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c35611d29565b73ffffffffffffffffffffffffffffffffffffffff16145b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c839061341c565b60405180910390fd5b60006050606483610c9d919061349a565b610ca791906134cb565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d0957600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8284610d519190613525565b9081150290604051600060405180830381858888f19350505050610d7457600080fd5b5050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610db9838383604051806020016040528060008152506119e3565b505050565b610dc6611d29565b73ffffffffffffffffffffffffffffffffffffffff16610de461177a565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061331e565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401610e75929190613559565b602060405180830381600087803b158015610e8f57600080fd5b505af1158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190613597565b50505050565b610ed5611d29565b73ffffffffffffffffffffffffffffffffffffffff16610ef361177a565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f409061331e565b60405180910390fd5b818160079190610f5a929190612874565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613636565b60405180910390fd5b80915050919050565b6007805461101e906130ea565b80601f016020809104026020016040519081016040528092919081815260200182805461104a906130ea565b80156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611110576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611107906136c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115f611d29565b73ffffffffffffffffffffffffffffffffffffffff1661117d61177a565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061331e565b60405180910390fd5b6111dd6000612124565b565b6111e7611d29565b73ffffffffffffffffffffffffffffffffffffffff1661120561177a565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061331e565b60405180910390fd5b600082829050116112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890613734565b60405180910390fd5b600854828290506009546112b59190613754565b11156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed9061381c565b60405180910390fd5b600a548282905060095461130a9190613754565b111561134b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611342906138d4565b60405180910390fd5b60005b828290508110156113bf5760016009600082825461136c9190613754565b92505081905550600060095490506113ab8484848181106113905761138f6138f4565b5b90506020020160208101906113a59190612d8c565b826121ea565b5080806113b790613923565b91505061134e565b505050565b60085481565b6113d261083c565b611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906139b8565b60405180910390fd5b6000811180156114225750600a8111155b611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613a4a565b60405180910390fd5b600854600954106114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613adc565b60405180910390fd5b600854816009546114b89190613754565b11156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f09061381c565b60405180910390fd5b80600b5461150791906134cb565b341015611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613b48565b60405180910390fd5b60005b8181101561159a576001600960008282546115679190613754565b9250508190555060006009549050611586611580611d29565b826121ea565b50808061159290613923565b91505061154c565b5050565b60095481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115e5611d29565b73ffffffffffffffffffffffffffffffffffffffff16148061165b5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611643611d29565b73ffffffffffffffffffffffffffffffffffffffff16145b61169a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116919061341c565b60405180910390fd5b600060506064476116ab919061349a565b6116b591906134cb565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061171757600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061177757600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117b3906130ea565b80601f01602080910402602001604051908101604052809291908181526020018280546117df906130ea565b801561182c5780601f106118015761010080835404028352916020019161182c565b820191906000526020600020905b81548152906001019060200180831161180f57829003601f168201915b5050505050905090565b600b5481565b611844611d29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990613bb4565b60405180910390fd5b80600560006118bf611d29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196c611d29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b191906129cb565b60405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119f46119ee611d29565b83611dea565b611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a906133b0565b60405180910390fd5b611a3f8484848461222f565b50505050565b6060611a5082611cbd565b611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613c46565b60405180910390fd5b611a9761228b565b611aa08361231d565b604051602001611ab1929190613cee565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b63611d29565b73ffffffffffffffffffffffffffffffffffffffff16611b8161177a565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061331e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613d8f565b60405180910390fd5b611c5081612124565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611da483610f5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df582611cbd565b611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613e21565b60405180910390fd5b6000611e3f83610f5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eae57508373ffffffffffffffffffffffffffffffffffffffff16611e96846108e1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebf5750611ebe8185611ac7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee882610f5f565b73ffffffffffffffffffffffffffffffffffffffff1614611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590613eb3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613f45565b60405180910390fd5b611fb983838361247e565b611fc4600082611d31565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120149190613525565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206b9190613754565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121f48282612483565b7fbedf922138ab420b21342ee7e7a686a53a25dbc773ca4b001d394954d034d9f68160405161222391906129ff565b60405180910390a15050565b61223a848484611ec8565b612246848484846124a1565b612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90613fd7565b60405180910390fd5b50505050565b60606007805461229a906130ea565b80601f01602080910402602001604051908101604052809291908181526020018280546122c6906130ea565b80156123135780601f106122e857610100808354040283529160200191612313565b820191906000526020600020905b8154815290600101906020018083116122f657829003601f168201915b5050505050905090565b60606000821415612365576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612479565b600082905060005b6000821461239757808061238090613923565b915050600a82612390919061349a565b915061236d565b60008167ffffffffffffffff8111156123b3576123b2612ecd565b5b6040519080825280601f01601f1916602001820160405280156123e55781602001600182028036833780820191505090505b5090505b60008514612472576001826123fe9190613525565b9150600a8561240d9190613ff7565b60306124199190613754565b60f81b81838151811061242f5761242e6138f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561246b919061349a565b94506123e9565b8093505050505b919050565b505050565b61249d828260405180602001604052806000815250612638565b5050565b60006124c28473ffffffffffffffffffffffffffffffffffffffff16612693565b1561262b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124eb611d29565b8786866040518563ffffffff1660e01b815260040161250d949392919061407d565b602060405180830381600087803b15801561252757600080fd5b505af192505050801561255857506040513d601f19601f8201168201806040525081019061255591906140de565b60015b6125db573d8060008114612588576040519150601f19603f3d011682016040523d82523d6000602084013e61258d565b606091505b506000815114156125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca90613fd7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612630565b600190505b949350505050565b61264283836126a6565b61264f60008484846124a1565b61268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590613fd7565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614157565b60405180910390fd5b61271f81611cbd565b1561275f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612756906141c3565b60405180910390fd5b61276b6000838361247e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127bb9190613754565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612880906130ea565b90600052602060002090601f0160209004810192826128a257600085556128e9565b82601f106128bb57803560ff19168380011785556128e9565b828001600101855582156128e9579182015b828111156128e85782358255916020019190600101906128cd565b5b5090506128f691906128fa565b5090565b5b808211156129135760008160009055506001016128fb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129608161292b565b811461296b57600080fd5b50565b60008135905061297d81612957565b92915050565b60006020828403121561299957612998612921565b5b60006129a78482850161296e565b91505092915050565b60008115159050919050565b6129c5816129b0565b82525050565b60006020820190506129e060008301846129bc565b92915050565b6000819050919050565b6129f9816129e6565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a54578082015181840152602081019050612a39565b83811115612a63576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8582612a1a565b612a8f8185612a25565b9350612a9f818560208601612a36565b612aa881612a69565b840191505092915050565b60006020820190508181036000830152612acd8184612a7a565b905092915050565b612ade816129e6565b8114612ae957600080fd5b50565b600081359050612afb81612ad5565b92915050565b600060208284031215612b1757612b16612921565b5b6000612b2584828501612aec565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b5982612b2e565b9050919050565b612b6981612b4e565b82525050565b6000602082019050612b846000830184612b60565b92915050565b612b9381612b4e565b8114612b9e57600080fd5b50565b600081359050612bb081612b8a565b92915050565b60008060408385031215612bcd57612bcc612921565b5b6000612bdb85828601612ba1565b9250506020612bec85828601612aec565b9150509250929050565b600080600060608486031215612c0f57612c0e612921565b5b6000612c1d86828701612ba1565b9350506020612c2e86828701612ba1565b9250506040612c3f86828701612aec565b9150509250925092565b6000612c5482612b4e565b9050919050565b612c6481612c49565b8114612c6f57600080fd5b50565b600081359050612c8181612c5b565b92915050565b600080600060608486031215612ca057612c9f612921565b5b6000612cae86828701612c72565b9350506020612cbf86828701612aec565b9250506040612cd086828701612ba1565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612cff57612cfe612cda565b5b8235905067ffffffffffffffff811115612d1c57612d1b612cdf565b5b602083019150836001820283011115612d3857612d37612ce4565b5b9250929050565b60008060208385031215612d5657612d55612921565b5b600083013567ffffffffffffffff811115612d7457612d73612926565b5b612d8085828601612ce9565b92509250509250929050565b600060208284031215612da257612da1612921565b5b6000612db084828501612ba1565b91505092915050565b60008083601f840112612dcf57612dce612cda565b5b8235905067ffffffffffffffff811115612dec57612deb612cdf565b5b602083019150836020820283011115612e0857612e07612ce4565b5b9250929050565b60008060208385031215612e2657612e25612921565b5b600083013567ffffffffffffffff811115612e4457612e43612926565b5b612e5085828601612db9565b92509250509250929050565b612e65816129b0565b8114612e7057600080fd5b50565b600081359050612e8281612e5c565b92915050565b60008060408385031215612e9f57612e9e612921565b5b6000612ead85828601612ba1565b9250506020612ebe85828601612e73565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0582612a69565b810181811067ffffffffffffffff82111715612f2457612f23612ecd565b5b80604052505050565b6000612f37612917565b9050612f438282612efc565b919050565b600067ffffffffffffffff821115612f6357612f62612ecd565b5b612f6c82612a69565b9050602081019050919050565b82818337600083830152505050565b6000612f9b612f9684612f48565b612f2d565b905082815260208101848484011115612fb757612fb6612ec8565b5b612fc2848285612f79565b509392505050565b600082601f830112612fdf57612fde612cda565b5b8135612fef848260208601612f88565b91505092915050565b6000806000806080858703121561301257613011612921565b5b600061302087828801612ba1565b945050602061303187828801612ba1565b935050604061304287828801612aec565b925050606085013567ffffffffffffffff81111561306357613062612926565b5b61306f87828801612fca565b91505092959194509250565b6000806040838503121561309257613091612921565b5b60006130a085828601612ba1565b92505060206130b185828601612ba1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310257607f821691505b60208210811415613116576131156130bb565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613178602c83612a25565b91506131838261311c565b604082019050919050565b600060208201905081810360008301526131a78161316b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061320a602183612a25565b9150613215826131ae565b604082019050919050565b60006020820190508181036000830152613239816131fd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061329c603883612a25565b91506132a782613240565b604082019050919050565b600060208201905081810360008301526132cb8161328f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613308602083612a25565b9150613313826132d2565b602082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061339a603183612a25565b91506133a58261333e565b604082019050919050565b600060208201905081810360008301526133c98161338d565b9050919050565b7f63616c6c657220646f6573206e6f742062656c6f6e6720746f207465616d0000600082015250565b6000613406601e83612a25565b9150613411826133d0565b602082019050919050565b60006020820190508181036000830152613435816133f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134a5826129e6565b91506134b0836129e6565b9250826134c0576134bf61343c565b5b828204905092915050565b60006134d6826129e6565b91506134e1836129e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351a5761351961346b565b5b828202905092915050565b6000613530826129e6565b915061353b836129e6565b92508282101561354e5761354d61346b565b5b828203905092915050565b600060408201905061356e6000830185612b60565b61357b60208301846129f0565b9392505050565b60008151905061359181612e5c565b92915050565b6000602082840312156135ad576135ac612921565b5b60006135bb84828501613582565b91505092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613620602983612a25565b915061362b826135c4565b604082019050919050565b6000602082019050818103600083015261364f81613613565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006136b2602a83612a25565b91506136bd82613656565b604082019050919050565b600060208201905081810360008301526136e1816136a5565b9050919050565b7f6164647265737365732072657175697265640000000000000000000000000000600082015250565b600061371e601283612a25565b9150613729826136e8565b602082019050919050565b6000602082019050818103600083015261374d81613711565b9050919050565b600061375f826129e6565b915061376a836129e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561379f5761379e61346b565b5b828201905092915050565b7f7175616e74697479206578636565647320746865206e756d626572206f66204660008201527f72616374757265642043656c6c7320746861742072656d61696e000000000000602082015250565b6000613806603a83612a25565b9150613811826137aa565b604082019050919050565b60006020820190508181036000830152613835816137f9565b9050919050565b7f7175616e74697479206578636565647320746865206e756d626572206f66204660008201527f72616374757265642043656c6c7320616c6c6f636174656420666f722061697260208201527f64726f7000000000000000000000000000000000000000000000000000000000604082015250565b60006138be604483612a25565b91506138c98261383c565b606082019050919050565b600060208201905081810360008301526138ed816138b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061392e826129e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139615761396061346b565b5b600182019050919050565b7f6d696e74696e6720686173206e6f742079657420737461727465640000000000600082015250565b60006139a2601b83612a25565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f7175616e74697479206d7573742062652067726561746572207468616e20302060008201527f616e64206e6f2067726561746572207468616e20313000000000000000000000602082015250565b6000613a34603683612a25565b9150613a3f826139d8565b604082019050919050565b60006020820190508181036000830152613a6381613a27565b9050919050565b7f4672616374757265642043656c6c73206d696e74696e672068617320656e646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ac6602183612a25565b9150613ad182613a6a565b604082019050919050565b60006020820190508181036000830152613af581613ab9565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613b32601083612a25565b9150613b3d82613afc565b602082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613b9e601983612a25565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c30602f83612a25565b9150613c3b82613bd4565b604082019050919050565b60006020820190508181036000830152613c5f81613c23565b9050919050565b600081905092915050565b6000613c7c82612a1a565b613c868185613c66565b9350613c96818560208601612a36565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cd8600583613c66565b9150613ce382613ca2565b600582019050919050565b6000613cfa8285613c71565b9150613d068284613c71565b9150613d1182613ccb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d79602683612a25565b9150613d8482613d1d565b604082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e0b602c83612a25565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613e9d602983612a25565b9150613ea882613e41565b604082019050919050565b60006020820190508181036000830152613ecc81613e90565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f2f602483612a25565b9150613f3a82613ed3565b604082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613fc1603283612a25565b9150613fcc82613f65565b604082019050919050565b60006020820190508181036000830152613ff081613fb4565b9050919050565b6000614002826129e6565b915061400d836129e6565b92508261401d5761401c61343c565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061404f82614028565b6140598185614033565b9350614069818560208601612a36565b61407281612a69565b840191505092915050565b60006080820190506140926000830187612b60565b61409f6020830186612b60565b6140ac60408301856129f0565b81810360608301526140be8184614044565b905095945050505050565b6000815190506140d881612957565b92915050565b6000602082840312156140f4576140f3612921565b5b6000614102848285016140c9565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614141602083612a25565b915061414c8261410b565b602082019050919050565b6000602082019050818103600083015261417081614134565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141ad601c83612a25565b91506141b882614177565b602082019050919050565b600060208201905081810360008301526141dc816141a0565b905091905056fea2646970667358221220115c8ee2b54946552680f59168b22ed27a6260c3b7adf55552696721569405f964736f6c634300080900330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000ec2e2d2f3262a2833151f3f2ef3cad010b51f61800000000000000000000000022228f9520aece5f1807868fc035980134528864000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d51366762363737354a4a526f4d43384b584831616d4b776d4638547874463851546532666d6d324b456b67322f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a082311161010257806395d89b4111610095578063b88d4fde11610064578063b88d4fde1461068e578063c87b56dd146106b7578063e985e9c5146106f4578063f2fde38b14610731576101e3565b806395d89b41146105e4578063a035b1fe1461060f578063a22cb4651461063a578063afda7e9014610663576101e3565b8063780900dc116100d1578063780900dc14610568578063792c130c14610584578063853828b6146105af5780638da5cb5b146105b9576101e3565b806370a08231146104c0578063715018a6146104fd578063729ad39e1461051457806374fa18a01461053d576101e3565b806323decc3b1161017a57806343f37b981161014957806343f37b981461040657806355f804b31461042f5780636352211e146104585780636e34a48214610495576101e3565b806323decc3b1461035e5780632e1a7d4d146103895780633595bb88146103b257806342842e0e146103dd576101e3565b8063081812fc116101b6578063081812fc146102a6578063095ea7b3146102e35780632073a2b01461030c57806323b872dd14610335576101e3565b806301ffc9a7146101e8578063035240051461022557806305d5c5951461025057806306fdde031461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612983565b61075a565b60405161021c91906129cb565b60405180910390f35b34801561023157600080fd5b5061023a61083c565b60405161024791906129cb565b60405180910390f35b34801561025c57600080fd5b50610265610849565b60405161027291906129ff565b60405180910390f35b34801561028757600080fd5b5061029061084f565b60405161029d9190612ab3565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190612b01565b6108e1565b6040516102da9190612b6f565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612bb6565b610966565b005b34801561031857600080fd5b50610333600480360381019061032e9190612b01565b610a7e565b005b34801561034157600080fd5b5061035c60048036038101906103579190612bf6565b610b30565b005b34801561036a57600080fd5b50610373610b90565b60405161038091906129ff565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612b01565b610b96565b005b3480156103be57600080fd5b506103c7610d78565b6040516103d49190612b6f565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612bf6565b610d9e565b005b34801561041257600080fd5b5061042d60048036038101906104289190612c87565b610dbe565b005b34801561043b57600080fd5b5061045660048036038101906104519190612d3f565b610ecd565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612b01565b610f5f565b60405161048c9190612b6f565b60405180910390f35b3480156104a157600080fd5b506104aa611011565b6040516104b79190612ab3565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612d8c565b61109f565b6040516104f491906129ff565b60405180910390f35b34801561050957600080fd5b50610512611157565b005b34801561052057600080fd5b5061053b60048036038101906105369190612e0f565b6111df565b005b34801561054957600080fd5b506105526113c4565b60405161055f91906129ff565b60405180910390f35b610582600480360381019061057d9190612b01565b6113ca565b005b34801561059057600080fd5b5061059961159e565b6040516105a691906129ff565b60405180910390f35b6105b76115a4565b005b3480156105c557600080fd5b506105ce61177a565b6040516105db9190612b6f565b60405180910390f35b3480156105f057600080fd5b506105f96117a4565b6040516106069190612ab3565b60405180910390f35b34801561061b57600080fd5b50610624611836565b60405161063191906129ff565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612e88565b61183c565b005b34801561066f57600080fd5b506106786119bd565b6040516106859190612b6f565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612ff8565b6119e3565b005b3480156106c357600080fd5b506106de60048036038101906106d99190612b01565b611a45565b6040516106eb9190612ab3565b60405180910390f35b34801561070057600080fd5b5061071b6004803603810190610716919061307b565b611ac7565b60405161072891906129cb565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190612d8c565b611b5b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610835575061083482611c53565b5b9050919050565b6000600c54431015905090565b600a5481565b60606000805461085e906130ea565b80601f016020809104026020016040519081016040528092919081815260200182805461088a906130ea565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b60006108ec82611cbd565b61092b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109229061318e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097182610f5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d990613220565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a01611d29565b73ffffffffffffffffffffffffffffffffffffffff161480610a305750610a2f81610a2a611d29565b611ac7565b5b610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906132b2565b60405180910390fd5b610a798383611d31565b505050565b610a86611d29565b73ffffffffffffffffffffffffffffffffffffffff16610aa461177a565b73ffffffffffffffffffffffffffffffffffffffff1614610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af19061331e565b60405180910390fd5b80600c819055507f4fdbd5eebc3708bb448447f21df88671fc0c6e742a4274900c9fefebd683ae4160405160405180910390a150565b610b41610b3b611d29565b82611dea565b610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b77906133b0565b60405180910390fd5b610b8b838383611ec8565b505050565b600c5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bd7611d29565b73ffffffffffffffffffffffffffffffffffffffff161480610c4d5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c35611d29565b73ffffffffffffffffffffffffffffffffffffffff16145b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c839061341c565b60405180910390fd5b60006050606483610c9d919061349a565b610ca791906134cb565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610d0957600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8284610d519190613525565b9081150290604051600060405180830381858888f19350505050610d7457600080fd5b5050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610db9838383604051806020016040528060008152506119e3565b505050565b610dc6611d29565b73ffffffffffffffffffffffffffffffffffffffff16610de461177a565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061331e565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401610e75929190613559565b602060405180830381600087803b158015610e8f57600080fd5b505af1158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190613597565b50505050565b610ed5611d29565b73ffffffffffffffffffffffffffffffffffffffff16610ef361177a565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f409061331e565b60405180910390fd5b818160079190610f5a929190612874565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613636565b60405180910390fd5b80915050919050565b6007805461101e906130ea565b80601f016020809104026020016040519081016040528092919081815260200182805461104a906130ea565b80156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611110576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611107906136c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115f611d29565b73ffffffffffffffffffffffffffffffffffffffff1661117d61177a565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061331e565b60405180910390fd5b6111dd6000612124565b565b6111e7611d29565b73ffffffffffffffffffffffffffffffffffffffff1661120561177a565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061331e565b60405180910390fd5b600082829050116112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890613734565b60405180910390fd5b600854828290506009546112b59190613754565b11156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed9061381c565b60405180910390fd5b600a548282905060095461130a9190613754565b111561134b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611342906138d4565b60405180910390fd5b60005b828290508110156113bf5760016009600082825461136c9190613754565b92505081905550600060095490506113ab8484848181106113905761138f6138f4565b5b90506020020160208101906113a59190612d8c565b826121ea565b5080806113b790613923565b91505061134e565b505050565b60085481565b6113d261083c565b611411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611408906139b8565b60405180910390fd5b6000811180156114225750600a8111155b611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613a4a565b60405180910390fd5b600854600954106114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613adc565b60405180910390fd5b600854816009546114b89190613754565b11156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f09061381c565b60405180910390fd5b80600b5461150791906134cb565b341015611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613b48565b60405180910390fd5b60005b8181101561159a576001600960008282546115679190613754565b9250508190555060006009549050611586611580611d29565b826121ea565b50808061159290613923565b91505061154c565b5050565b60095481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115e5611d29565b73ffffffffffffffffffffffffffffffffffffffff16148061165b5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611643611d29565b73ffffffffffffffffffffffffffffffffffffffff16145b61169a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116919061341c565b60405180910390fd5b600060506064476116ab919061349a565b6116b591906134cb565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061171757600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061177757600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117b3906130ea565b80601f01602080910402602001604051908101604052809291908181526020018280546117df906130ea565b801561182c5780601f106118015761010080835404028352916020019161182c565b820191906000526020600020905b81548152906001019060200180831161180f57829003601f168201915b5050505050905090565b600b5481565b611844611d29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990613bb4565b60405180910390fd5b80600560006118bf611d29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196c611d29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b191906129cb565b60405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119f46119ee611d29565b83611dea565b611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a906133b0565b60405180910390fd5b611a3f8484848461222f565b50505050565b6060611a5082611cbd565b611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613c46565b60405180910390fd5b611a9761228b565b611aa08361231d565b604051602001611ab1929190613cee565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b63611d29565b73ffffffffffffffffffffffffffffffffffffffff16611b8161177a565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061331e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613d8f565b60405180910390fd5b611c5081612124565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611da483610f5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df582611cbd565b611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613e21565b60405180910390fd5b6000611e3f83610f5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eae57508373ffffffffffffffffffffffffffffffffffffffff16611e96846108e1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebf5750611ebe8185611ac7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee882610f5f565b73ffffffffffffffffffffffffffffffffffffffff1614611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590613eb3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613f45565b60405180910390fd5b611fb983838361247e565b611fc4600082611d31565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120149190613525565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206b9190613754565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121f48282612483565b7fbedf922138ab420b21342ee7e7a686a53a25dbc773ca4b001d394954d034d9f68160405161222391906129ff565b60405180910390a15050565b61223a848484611ec8565b612246848484846124a1565b612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90613fd7565b60405180910390fd5b50505050565b60606007805461229a906130ea565b80601f01602080910402602001604051908101604052809291908181526020018280546122c6906130ea565b80156123135780601f106122e857610100808354040283529160200191612313565b820191906000526020600020905b8154815290600101906020018083116122f657829003601f168201915b5050505050905090565b60606000821415612365576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612479565b600082905060005b6000821461239757808061238090613923565b915050600a82612390919061349a565b915061236d565b60008167ffffffffffffffff8111156123b3576123b2612ecd565b5b6040519080825280601f01601f1916602001820160405280156123e55781602001600182028036833780820191505090505b5090505b60008514612472576001826123fe9190613525565b9150600a8561240d9190613ff7565b60306124199190613754565b60f81b81838151811061242f5761242e6138f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561246b919061349a565b94506123e9565b8093505050505b919050565b505050565b61249d828260405180602001604052806000815250612638565b5050565b60006124c28473ffffffffffffffffffffffffffffffffffffffff16612693565b1561262b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124eb611d29565b8786866040518563ffffffff1660e01b815260040161250d949392919061407d565b602060405180830381600087803b15801561252757600080fd5b505af192505050801561255857506040513d601f19601f8201168201806040525081019061255591906140de565b60015b6125db573d8060008114612588576040519150601f19603f3d011682016040523d82523d6000602084013e61258d565b606091505b506000815114156125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca90613fd7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612630565b600190505b949350505050565b61264283836126a6565b61264f60008484846124a1565b61268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590613fd7565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614157565b60405180910390fd5b61271f81611cbd565b1561275f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612756906141c3565b60405180910390fd5b61276b6000838361247e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127bb9190613754565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612880906130ea565b90600052602060002090601f0160209004810192826128a257600085556128e9565b82601f106128bb57803560ff19168380011785556128e9565b828001600101855582156128e9579182015b828111156128e85782358255916020019190600101906128cd565b5b5090506128f691906128fa565b5090565b5b808211156129135760008160009055506001016128fb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129608161292b565b811461296b57600080fd5b50565b60008135905061297d81612957565b92915050565b60006020828403121561299957612998612921565b5b60006129a78482850161296e565b91505092915050565b60008115159050919050565b6129c5816129b0565b82525050565b60006020820190506129e060008301846129bc565b92915050565b6000819050919050565b6129f9816129e6565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a54578082015181840152602081019050612a39565b83811115612a63576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a8582612a1a565b612a8f8185612a25565b9350612a9f818560208601612a36565b612aa881612a69565b840191505092915050565b60006020820190508181036000830152612acd8184612a7a565b905092915050565b612ade816129e6565b8114612ae957600080fd5b50565b600081359050612afb81612ad5565b92915050565b600060208284031215612b1757612b16612921565b5b6000612b2584828501612aec565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b5982612b2e565b9050919050565b612b6981612b4e565b82525050565b6000602082019050612b846000830184612b60565b92915050565b612b9381612b4e565b8114612b9e57600080fd5b50565b600081359050612bb081612b8a565b92915050565b60008060408385031215612bcd57612bcc612921565b5b6000612bdb85828601612ba1565b9250506020612bec85828601612aec565b9150509250929050565b600080600060608486031215612c0f57612c0e612921565b5b6000612c1d86828701612ba1565b9350506020612c2e86828701612ba1565b9250506040612c3f86828701612aec565b9150509250925092565b6000612c5482612b4e565b9050919050565b612c6481612c49565b8114612c6f57600080fd5b50565b600081359050612c8181612c5b565b92915050565b600080600060608486031215612ca057612c9f612921565b5b6000612cae86828701612c72565b9350506020612cbf86828701612aec565b9250506040612cd086828701612ba1565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612cff57612cfe612cda565b5b8235905067ffffffffffffffff811115612d1c57612d1b612cdf565b5b602083019150836001820283011115612d3857612d37612ce4565b5b9250929050565b60008060208385031215612d5657612d55612921565b5b600083013567ffffffffffffffff811115612d7457612d73612926565b5b612d8085828601612ce9565b92509250509250929050565b600060208284031215612da257612da1612921565b5b6000612db084828501612ba1565b91505092915050565b60008083601f840112612dcf57612dce612cda565b5b8235905067ffffffffffffffff811115612dec57612deb612cdf565b5b602083019150836020820283011115612e0857612e07612ce4565b5b9250929050565b60008060208385031215612e2657612e25612921565b5b600083013567ffffffffffffffff811115612e4457612e43612926565b5b612e5085828601612db9565b92509250509250929050565b612e65816129b0565b8114612e7057600080fd5b50565b600081359050612e8281612e5c565b92915050565b60008060408385031215612e9f57612e9e612921565b5b6000612ead85828601612ba1565b9250506020612ebe85828601612e73565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0582612a69565b810181811067ffffffffffffffff82111715612f2457612f23612ecd565b5b80604052505050565b6000612f37612917565b9050612f438282612efc565b919050565b600067ffffffffffffffff821115612f6357612f62612ecd565b5b612f6c82612a69565b9050602081019050919050565b82818337600083830152505050565b6000612f9b612f9684612f48565b612f2d565b905082815260208101848484011115612fb757612fb6612ec8565b5b612fc2848285612f79565b509392505050565b600082601f830112612fdf57612fde612cda565b5b8135612fef848260208601612f88565b91505092915050565b6000806000806080858703121561301257613011612921565b5b600061302087828801612ba1565b945050602061303187828801612ba1565b935050604061304287828801612aec565b925050606085013567ffffffffffffffff81111561306357613062612926565b5b61306f87828801612fca565b91505092959194509250565b6000806040838503121561309257613091612921565b5b60006130a085828601612ba1565b92505060206130b185828601612ba1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310257607f821691505b60208210811415613116576131156130bb565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613178602c83612a25565b91506131838261311c565b604082019050919050565b600060208201905081810360008301526131a78161316b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061320a602183612a25565b9150613215826131ae565b604082019050919050565b60006020820190508181036000830152613239816131fd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061329c603883612a25565b91506132a782613240565b604082019050919050565b600060208201905081810360008301526132cb8161328f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613308602083612a25565b9150613313826132d2565b602082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061339a603183612a25565b91506133a58261333e565b604082019050919050565b600060208201905081810360008301526133c98161338d565b9050919050565b7f63616c6c657220646f6573206e6f742062656c6f6e6720746f207465616d0000600082015250565b6000613406601e83612a25565b9150613411826133d0565b602082019050919050565b60006020820190508181036000830152613435816133f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134a5826129e6565b91506134b0836129e6565b9250826134c0576134bf61343c565b5b828204905092915050565b60006134d6826129e6565b91506134e1836129e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351a5761351961346b565b5b828202905092915050565b6000613530826129e6565b915061353b836129e6565b92508282101561354e5761354d61346b565b5b828203905092915050565b600060408201905061356e6000830185612b60565b61357b60208301846129f0565b9392505050565b60008151905061359181612e5c565b92915050565b6000602082840312156135ad576135ac612921565b5b60006135bb84828501613582565b91505092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613620602983612a25565b915061362b826135c4565b604082019050919050565b6000602082019050818103600083015261364f81613613565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006136b2602a83612a25565b91506136bd82613656565b604082019050919050565b600060208201905081810360008301526136e1816136a5565b9050919050565b7f6164647265737365732072657175697265640000000000000000000000000000600082015250565b600061371e601283612a25565b9150613729826136e8565b602082019050919050565b6000602082019050818103600083015261374d81613711565b9050919050565b600061375f826129e6565b915061376a836129e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561379f5761379e61346b565b5b828201905092915050565b7f7175616e74697479206578636565647320746865206e756d626572206f66204660008201527f72616374757265642043656c6c7320746861742072656d61696e000000000000602082015250565b6000613806603a83612a25565b9150613811826137aa565b604082019050919050565b60006020820190508181036000830152613835816137f9565b9050919050565b7f7175616e74697479206578636565647320746865206e756d626572206f66204660008201527f72616374757265642043656c6c7320616c6c6f636174656420666f722061697260208201527f64726f7000000000000000000000000000000000000000000000000000000000604082015250565b60006138be604483612a25565b91506138c98261383c565b606082019050919050565b600060208201905081810360008301526138ed816138b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061392e826129e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139615761396061346b565b5b600182019050919050565b7f6d696e74696e6720686173206e6f742079657420737461727465640000000000600082015250565b60006139a2601b83612a25565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f7175616e74697479206d7573742062652067726561746572207468616e20302060008201527f616e64206e6f2067726561746572207468616e20313000000000000000000000602082015250565b6000613a34603683612a25565b9150613a3f826139d8565b604082019050919050565b60006020820190508181036000830152613a6381613a27565b9050919050565b7f4672616374757265642043656c6c73206d696e74696e672068617320656e646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ac6602183612a25565b9150613ad182613a6a565b604082019050919050565b60006020820190508181036000830152613af581613ab9565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613b32601083612a25565b9150613b3d82613afc565b602082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613b9e601983612a25565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c30602f83612a25565b9150613c3b82613bd4565b604082019050919050565b60006020820190508181036000830152613c5f81613c23565b9050919050565b600081905092915050565b6000613c7c82612a1a565b613c868185613c66565b9350613c96818560208601612a36565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cd8600583613c66565b9150613ce382613ca2565b600582019050919050565b6000613cfa8285613c71565b9150613d068284613c71565b9150613d1182613ccb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d79602683612a25565b9150613d8482613d1d565b604082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e0b602c83612a25565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613e9d602983612a25565b9150613ea882613e41565b604082019050919050565b60006020820190508181036000830152613ecc81613e90565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f2f602483612a25565b9150613f3a82613ed3565b604082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613fc1603283612a25565b9150613fcc82613f65565b604082019050919050565b60006020820190508181036000830152613ff081613fb4565b9050919050565b6000614002826129e6565b915061400d836129e6565b92508261401d5761401c61343c565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061404f82614028565b6140598185614033565b9350614069818560208601612a36565b61407281612a69565b840191505092915050565b60006080820190506140926000830187612b60565b61409f6020830186612b60565b6140ac60408301856129f0565b81810360608301526140be8184614044565b905095945050505050565b6000815190506140d881612957565b92915050565b6000602082840312156140f4576140f3612921565b5b6000614102848285016140c9565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614141602083612a25565b915061414c8261410b565b602082019050919050565b6000602082019050818103600083015261417081614134565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141ad601c83612a25565b91506141b882614177565b602082019050919050565b600060208201905081810360008301526141dc816141a0565b905091905056fea2646970667358221220115c8ee2b54946552680f59168b22ed27a6260c3b7adf55552696721569405f964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000ec2e2d2f3262a2833151f3f2ef3cad010b51f61800000000000000000000000022228f9520aece5f1807868fc035980134528864000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d51366762363737354a4a526f4d43384b584831616d4b776d4638547874463851546532666d6d324b456b67322f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://ipfs.io/ipfs/QmQ6gb6775JJRoMC8KXH1amKwmF8TxtF8QTe2fmm2KEkg2/
Arg [1] : t1Wallet_ (address): 0xEC2E2d2f3262a2833151F3F2EF3CaD010b51f618
Arg [2] : t2Wallet_ (address): 0x22228F9520AEcE5f1807868FC035980134528864
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000ec2e2d2f3262a2833151f3f2ef3cad010b51f618
Arg [2] : 00000000000000000000000022228f9520aece5f1807868fc035980134528864
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f516d51366762363737354a
Arg [5] : 4a526f4d43384b584831616d4b776d4638547874463851546532666d6d324b45
Arg [6] : 6b67322f00000000000000000000000000000000000000000000000000000000
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.