Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,587 DORI
Holders
1,580
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DORILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DoriPunks
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // d8888b. .d88b. d8888b. d888888b d8888b. db db d8b db db dD .d8888. // 88 `8D .8P Y8. 88 `8D `88' 88 `8D 88 88 888o 88 88 ,8P' 88' YP // 88 88 88 88 88oobY' 88 88oodD' 88 88 88V8o 88 88,8P `8bo. // 88 88 88 88 88`8b 88 88~~~ 88 88 88 V8o88 88`8b `Y8b. // 88 .8D `8b d8' 88 `88. .88. 88 88b d88 88 V888 88 `88. db 8D // Y8888D' `Y88P' 88 YD Y888888P 88 ~Y8888P' VP V8P YP YD `8888Y' // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: goblintownai-contract.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } //newerc.sol pragma solidity ^0.8.0; contract DoriPunks is ERC721A, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0.005 ether; uint256 public maxSupply = 1776; uint256 public maxFree = 776; uint256 public maxperAddressFreeLimit = 1; uint256 public maxperAddressPublicMint = 10; uint256 public maxperWallet = 20; bool public revealed = false; string public hiddenMetadataUri; mapping(address => uint256) public addressFreeMintedBalance; constructor() ERC721A("DoriPunks", "DORI") { setBaseURI(""); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintFree(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender]; require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded!"); require(balanceOf(msg.sender) <= 20, "Max per wallet reached!"); require(balanceOf(msg.sender) + _mintAmount <= 20, "Max per wallet reached!"); require(_mintAmount > 0, "Cant mint 0" ); require(s + _mintAmount <= maxFree, "Cant go over supply!" ); for (uint256 i = 0; i < _mintAmount; ++i) { addressFreeMintedBalance[msg.sender]++; } _safeMint(msg.sender, _mintAmount); delete s; delete addressFreeMintedCount; } function mint(uint256 _mintAmount) public payable nonReentrant { uint256 s = totalSupply(); require(_mintAmount > 0, "Cant mint 0"); require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" ); require(balanceOf(msg.sender) <= 20, "Max per wallet reached!"); require(balanceOf(msg.sender) + _mintAmount <= 20, "Max per wallet reached!"); require(s + _mintAmount <= maxSupply, "Cant go over supply"); require(msg.value >= cost * _mintAmount); _safeMint(msg.sender, _mintAmount); delete s; } function gift(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "Provide quantities and recipients" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Too many"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxSupply(uint256 _newMaxSupply) public onlyOwner { require(_newMaxSupply <= maxSupply, "Cannot increase max supply"); maxSupply = _newMaxSupply; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFree = _newMaxFreeSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner { maxperAddressPublicMint = _amount; } function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{ maxperAddressFreeLimit = _amount; } function withdraw() public payable onlyOwner { (bool os, ) = payable(msg.sender).call{value: address(this).balance}(''); require(os); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526611c37937e08000600a556106f0600b55610308600c556001600d55600a600e556014600f556000601060006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600981526020017f446f726950756e6b7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f5249000000000000000000000000000000000000000000000000000000008152508160019081620000d0919062000564565b508060029081620000e2919062000564565b50505062000105620000f96200014e60201b60201c565b6200015660201b60201c565b6000600760146101000a81548160ff021916908315150217905550600160088190555062000148604051806020016040528060008152506200021c60201b60201c565b620006ce565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022c6200014e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000252620002c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a290620006ac565b60405180910390fd5b8060099081620002bc919062000564565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036c57607f821691505b60208210810362000382576200038162000324565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ad565b620003f88683620003ad565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004456200043f620004398462000410565b6200041a565b62000410565b9050919050565b6000819050919050565b620004618362000424565b6200047962000470826200044c565b848454620003ba565b825550505050565b600090565b6200049062000481565b6200049d81848462000456565b505050565b5b81811015620004c557620004b960008262000486565b600181019050620004a3565b5050565b601f8211156200051457620004de8162000388565b620004e9846200039d565b81016020851015620004f9578190505b6200051162000508856200039d565b830182620004a2565b50505b505050565b600082821c905092915050565b6000620005396000198460080262000519565b1980831691505092915050565b600062000554838362000526565b9150826002028217905092915050565b6200056f82620002ea565b67ffffffffffffffff8111156200058b576200058a620002f5565b5b62000597825462000353565b620005a4828285620004c9565b600060209050601f831160018114620005dc5760008415620005c7578287015190505b620005d3858262000546565b86555062000643565b601f198416620005ec8662000388565b60005b828110156200061657848901518255600182019150602085019450602081019050620005ef565b8683101562000636578489015162000632601f89168262000526565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620006946020836200064b565b9150620006a1826200065c565b602082019050919050565b60006020820190508181036000830152620006c78162000685565b9050919050565b61525980620006de6000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a4146733116100b6578063c87b56dd1161007a578063c87b56dd14610875578063d5abeb01146108b2578063dc4e66b5146108dd578063e0a8085314610906578063e985e9c51461092f578063f2fde38b1461096c57610251565b8063a4146733146107b1578063a45ba8e7146107cd578063b88d4fde146107f8578063baac9c4314610821578063bde12d731461084c57610251565b80638da5cb5b116100fd5780638da5cb5b146106ed57806395d89b411461071857806396ea3a4714610743578063a0712d681461076c578063a22cb4651461078857610251565b80636352211e146105f45780636c0360eb1461063157806370a082311461065c578063715018a6146106995780637c6b172d146106b057610251565b806334c8fd75116101d25780634f6ccce7116101965780634f6ccce7146104e45780634fdd43cb14610521578063518302271461054a57806355f804b31461057557806356569a1d1461059e5780635c975abb146105c957610251565b806334c8fd75146104325780633ccfd60b1461045d57806342842e0e1461046757806344a0d68a14610490578063485a68a3146104b957610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063228025e8146103a357806323b872dd146103cc5780632f745c59146103f557610251565b806301ffc9a714610256578063022d67dd1461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613500565b610995565b60405161028a9190613548565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613599565b610adf565b005b3480156102c857600080fd5b506102d1610b65565b6040516102de9190613656565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613599565b610bf7565b60405161031b91906136b9565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613700565b610c7c565b005b34801561035957600080fd5b50610362610d94565b60405161036f919061374f565b60405180910390f35b34801561038457600080fd5b5061038d610d9a565b60405161039a919061374f565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613599565b610da3565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061376a565b610e6e565b005b34801561040157600080fd5b5061041c60048036038101906104179190613700565b610e7e565b604051610429919061374f565b60405180910390f35b34801561043e57600080fd5b5061044761106e565b604051610454919061374f565b60405180910390f35b610465611074565b005b34801561047357600080fd5b5061048e6004803603810190610489919061376a565b611169565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613599565b611189565b005b3480156104c557600080fd5b506104ce61120f565b6040516104db919061374f565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613599565b611215565b604051610518919061374f565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906138f2565b611268565b005b34801561055657600080fd5b5061055f6112f7565b60405161056c9190613548565b60405180910390f35b34801561058157600080fd5b5061059c600480360381019061059791906138f2565b61130a565b005b3480156105aa57600080fd5b506105b3611399565b6040516105c0919061374f565b60405180910390f35b3480156105d557600080fd5b506105de61139f565b6040516105eb9190613548565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613599565b6113b6565b60405161062891906136b9565b60405180910390f35b34801561063d57600080fd5b506106466113cc565b6040516106539190613656565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061393b565b61145a565b604051610690919061374f565b60405180910390f35b3480156106a557600080fd5b506106ae611542565b005b3480156106bc57600080fd5b506106d760048036038101906106d2919061393b565b6115ca565b6040516106e4919061374f565b60405180910390f35b3480156106f957600080fd5b506107026115e2565b60405161070f91906136b9565b60405180910390f35b34801561072457600080fd5b5061072d61160c565b60405161073a9190613656565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190613a1e565b61169e565b005b61078660048036038101906107819190613599565b611880565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613acb565b611a88565b005b6107cb60048036038101906107c69190613599565b611c08565b005b3480156107d957600080fd5b506107e2611ebc565b6040516107ef9190613656565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613bac565b611f4a565b005b34801561082d57600080fd5b50610836611fa6565b604051610843919061374f565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613599565b611fac565b005b34801561088157600080fd5b5061089c60048036038101906108979190613599565b612032565b6040516108a99190613656565b60405180910390f35b3480156108be57600080fd5b506108c7612187565b6040516108d4919061374f565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613599565b61218d565b005b34801561091257600080fd5b5061092d60048036038101906109289190613c2f565b612213565b005b34801561093b57600080fd5b5061095660048036038101906109519190613c5c565b6122ac565b6040516109639190613548565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e919061393b565b612340565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad85750610ad782612437565b5b9050919050565b610ae76124a1565b73ffffffffffffffffffffffffffffffffffffffff16610b056115e2565b73ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290613ce8565b60405180910390fd5b80600e8190555050565b606060018054610b7490613d37565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba090613d37565b8015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b6000610c02826124a9565b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890613dda565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c87826113b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90613e6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d166124a1565b73ffffffffffffffffffffffffffffffffffffffff161480610d455750610d4481610d3f6124a1565b6122ac565b5b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90613efe565b60405180910390fd5b610d8f8383836124b6565b505050565b600a5481565b60008054905090565b610dab6124a1565b73ffffffffffffffffffffffffffffffffffffffff16610dc96115e2565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690613ce8565b60405180910390fd5b600b54811115610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613f6a565b60405180910390fd5b80600b8190555050565b610e79838383612568565b505050565b6000610e898361145a565b8210610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec190613ffc565b60405180910390fd5b6000610ed4610d9a565b905060008060005b8381101561102c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fce57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101e57868403611015578195505050505050611068565b83806001019450505b508080600101915050610edc565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061408e565b60405180910390fd5b92915050565b600e5481565b61107c6124a1565b73ffffffffffffffffffffffffffffffffffffffff1661109a6115e2565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613ce8565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611116906140df565b60006040518083038185875af1925050503d8060008114611153576040519150601f19603f3d011682016040523d82523d6000602084013e611158565b606091505b505090508061116657600080fd5b50565b61118483838360405180602001604052806000815250611f4a565b505050565b6111916124a1565b73ffffffffffffffffffffffffffffffffffffffff166111af6115e2565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613ce8565b60405180910390fd5b80600a8190555050565b600c5481565b600061121f610d9a565b8210611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790614166565b60405180910390fd5b819050919050565b6112706124a1565b73ffffffffffffffffffffffffffffffffffffffff1661128e6115e2565b73ffffffffffffffffffffffffffffffffffffffff16146112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613ce8565b60405180910390fd5b80601190816112f39190614332565b5050565b601060009054906101000a900460ff1681565b6113126124a1565b73ffffffffffffffffffffffffffffffffffffffff166113306115e2565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613ce8565b60405180910390fd5b80600990816113959190614332565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b60006113c182612aa6565b600001519050919050565b600980546113d990613d37565b80601f016020809104026020016040519081016040528092919081815260200182805461140590613d37565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190614476565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61154a6124a1565b73ffffffffffffffffffffffffffffffffffffffff166115686115e2565b73ffffffffffffffffffffffffffffffffffffffff16146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613ce8565b60405180910390fd5b6115c86000612c40565b565b60126020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461161b90613d37565b80601f016020809104026020016040519081016040528092919081815260200182805461164790613d37565b80156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b5050505050905090565b6116a66124a1565b73ffffffffffffffffffffffffffffffffffffffff166116c46115e2565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613ce8565b60405180910390fd5b818190508484905014611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614508565b60405180910390fd5b60008061176d610d9a565b905060005b868690508110156117b5578686828181106117905761178f614528565b5b90506020020135836117a29190614586565b9250806117ae906145ba565b9050611772565b50600b5482826117c59190614586565b1115611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061464e565b60405180910390fd5b6000915060005b848490508110156118735761186285858381811061182e5761182d614528565b5b9050602002016020810190611843919061393b565b88888481811061185657611855614528565b5b90506020020135612d06565b8061186c906145ba565b905061180d565b5060009050505050505050565b6002600854036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906146ba565b60405180910390fd5b600260088190555060006118d7610d9a565b90506000821161191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614726565b60405180910390fd5b600e54821115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614792565b60405180910390fd5b601461196c3361145a565b11156119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a4906147fe565b60405180910390fd5b6014826119b93361145a565b6119c39190614586565b1115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb906147fe565b60405180910390fd5b600b548282611a139190614586565b1115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061486a565b60405180910390fd5b81600a54611a62919061488a565b341015611a6e57600080fd5b611a783383612d06565b6000905050600160088190555050565b611a906124a1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614918565b60405180910390fd5b8060066000611b0a6124a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb76124a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc9190613548565b60405180910390a35050565b600260085403611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c44906146ba565b60405180910390fd5b60026008819055506000611c5f610d9a565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611cb49190614586565b1115611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614984565b60405180910390fd5b6014611d003361145a565b1115611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906147fe565b60405180910390fd5b601483611d4d3361145a565b611d579190614586565b1115611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f906147fe565b60405180910390fd5b60008311611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290614726565b60405180910390fd5b600c548383611dea9190614586565b1115611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e22906149f0565b60405180910390fd5b60005b83811015611e9c57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e86906145ba565b919050555080611e95906145ba565b9050611e2e565b50611ea73384612d06565b60009150600090505050600160088190555050565b60118054611ec990613d37565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef590613d37565b8015611f425780601f10611f1757610100808354040283529160200191611f42565b820191906000526020600020905b815481529060010190602001808311611f2557829003601f168201915b505050505081565b611f55848484612568565b611f6184848484612d24565b611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790614a82565b60405180910390fd5b50505050565b600f5481565b611fb46124a1565b73ffffffffffffffffffffffffffffffffffffffff16611fd26115e2565b73ffffffffffffffffffffffffffffffffffffffff1614612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90613ce8565b60405180910390fd5b80600c8190555050565b606061203d826124a9565b61207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614b14565b60405180910390fd5b60001515601060009054906101000a900460ff1615150361212957601180546120a490613d37565b80601f01602080910402602001604051908101604052809291908181526020018280546120d090613d37565b801561211d5780601f106120f25761010080835404028352916020019161211d565b820191906000526020600020905b81548152906001019060200180831161210057829003601f168201915b50505050509050612182565b6000612133612eab565b90506000815111612153576040518060200160405280600081525061217e565b8061215d84612f3d565b60405160200161216e929190614bbc565b6040516020818303038152906040525b9150505b919050565b600b5481565b6121956124a1565b73ffffffffffffffffffffffffffffffffffffffff166121b36115e2565b73ffffffffffffffffffffffffffffffffffffffff1614612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220090613ce8565b60405180910390fd5b80600d8190555050565b61221b6124a1565b73ffffffffffffffffffffffffffffffffffffffff166122396115e2565b73ffffffffffffffffffffffffffffffffffffffff161461228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690613ce8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123486124a1565b73ffffffffffffffffffffffffffffffffffffffff166123666115e2565b73ffffffffffffffffffffffffffffffffffffffff16146123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390613ce8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290614c5d565b60405180910390fd5b61243481612c40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061257382612aa6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661259a6124a1565b73ffffffffffffffffffffffffffffffffffffffff1614806125f657506125bf6124a1565b73ffffffffffffffffffffffffffffffffffffffff166125de84610bf7565b73ffffffffffffffffffffffffffffffffffffffff16145b806126125750612611826000015161260c6124a1565b6122ac565b5b905080612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90614cef565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614e13565b60405180910390fd5b612742858585600161309d565b61275260008484600001516124b6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a3657612995816124a9565b15612a355782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a9f85858560016130a3565b5050505050565b612aae61345a565b612ab7826124a9565b612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90614ea5565b60405180910390fd5b60008290505b60008110612bff576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bf0578092505050612c3b565b50808060019003915050612afc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290614f37565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d208282604051806020016040528060008152506130a9565b5050565b6000612d458473ffffffffffffffffffffffffffffffffffffffff166130bb565b15612e9e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d6e6124a1565b8786866040518563ffffffff1660e01b8152600401612d909493929190614fac565b6020604051808303816000875af1925050508015612dcc57506040513d601f19601f82011682018060405250810190612dc9919061500d565b60015b612e4e573d8060008114612dfc576040519150601f19603f3d011682016040523d82523d6000602084013e612e01565b606091505b506000815103612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614a82565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea3565b600190505b949350505050565b606060098054612eba90613d37565b80601f0160208091040260200160405190810160405280929190818152602001828054612ee690613d37565b8015612f335780601f10612f0857610100808354040283529160200191612f33565b820191906000526020600020905b815481529060010190602001808311612f1657829003601f168201915b5050505050905090565b606060008203612f84576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613098565b600082905060005b60008214612fb6578080612f9f906145ba565b915050600a82612faf9190615069565b9150612f8c565b60008167ffffffffffffffff811115612fd257612fd16137c7565b5b6040519080825280601f01601f1916602001820160405280156130045781602001600182028036833780820191505090505b5090505b600085146130915760018261301d919061509a565b9150600a8561302c91906150ce565b60306130389190614586565b60f81b81838151811061304e5761304d614528565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561308a9190615069565b9450613008565b8093505050505b919050565b50505050565b50505050565b6130b683838360016130de565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314a90615171565b60405180910390fd5b60008403613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d90615203565b60405180910390fd5b6131a3600086838761309d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561343d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613428576133e86000888488612d24565b613427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341e90614a82565b60405180910390fd5b5b81806001019250508080600101915050613371565b50806000819055505061345360008683876130a3565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134dd816134a8565b81146134e857600080fd5b50565b6000813590506134fa816134d4565b92915050565b6000602082840312156135165761351561349e565b5b6000613524848285016134eb565b91505092915050565b60008115159050919050565b6135428161352d565b82525050565b600060208201905061355d6000830184613539565b92915050565b6000819050919050565b61357681613563565b811461358157600080fd5b50565b6000813590506135938161356d565b92915050565b6000602082840312156135af576135ae61349e565b5b60006135bd84828501613584565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136005780820151818401526020810190506135e5565b60008484015250505050565b6000601f19601f8301169050919050565b6000613628826135c6565b61363281856135d1565b93506136428185602086016135e2565b61364b8161360c565b840191505092915050565b60006020820190508181036000830152613670818461361d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136a382613678565b9050919050565b6136b381613698565b82525050565b60006020820190506136ce60008301846136aa565b92915050565b6136dd81613698565b81146136e857600080fd5b50565b6000813590506136fa816136d4565b92915050565b600080604083850312156137175761371661349e565b5b6000613725858286016136eb565b925050602061373685828601613584565b9150509250929050565b61374981613563565b82525050565b60006020820190506137646000830184613740565b92915050565b6000806000606084860312156137835761378261349e565b5b6000613791868287016136eb565b93505060206137a2868287016136eb565b92505060406137b386828701613584565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137ff8261360c565b810181811067ffffffffffffffff8211171561381e5761381d6137c7565b5b80604052505050565b6000613831613494565b905061383d82826137f6565b919050565b600067ffffffffffffffff82111561385d5761385c6137c7565b5b6138668261360c565b9050602081019050919050565b82818337600083830152505050565b600061389561389084613842565b613827565b9050828152602081018484840111156138b1576138b06137c2565b5b6138bc848285613873565b509392505050565b600082601f8301126138d9576138d86137bd565b5b81356138e9848260208601613882565b91505092915050565b6000602082840312156139085761390761349e565b5b600082013567ffffffffffffffff811115613926576139256134a3565b5b613932848285016138c4565b91505092915050565b6000602082840312156139515761395061349e565b5b600061395f848285016136eb565b91505092915050565b600080fd5b600080fd5b60008083601f840112613988576139876137bd565b5b8235905067ffffffffffffffff8111156139a5576139a4613968565b5b6020830191508360208202830111156139c1576139c061396d565b5b9250929050565b60008083601f8401126139de576139dd6137bd565b5b8235905067ffffffffffffffff8111156139fb576139fa613968565b5b602083019150836020820283011115613a1757613a1661396d565b5b9250929050565b60008060008060408587031215613a3857613a3761349e565b5b600085013567ffffffffffffffff811115613a5657613a556134a3565b5b613a6287828801613972565b9450945050602085013567ffffffffffffffff811115613a8557613a846134a3565b5b613a91878288016139c8565b925092505092959194509250565b613aa88161352d565b8114613ab357600080fd5b50565b600081359050613ac581613a9f565b92915050565b60008060408385031215613ae257613ae161349e565b5b6000613af0858286016136eb565b9250506020613b0185828601613ab6565b9150509250929050565b600067ffffffffffffffff821115613b2657613b256137c7565b5b613b2f8261360c565b9050602081019050919050565b6000613b4f613b4a84613b0b565b613827565b905082815260208101848484011115613b6b57613b6a6137c2565b5b613b76848285613873565b509392505050565b600082601f830112613b9357613b926137bd565b5b8135613ba3848260208601613b3c565b91505092915050565b60008060008060808587031215613bc657613bc561349e565b5b6000613bd4878288016136eb565b9450506020613be5878288016136eb565b9350506040613bf687828801613584565b925050606085013567ffffffffffffffff811115613c1757613c166134a3565b5b613c2387828801613b7e565b91505092959194509250565b600060208284031215613c4557613c4461349e565b5b6000613c5384828501613ab6565b91505092915050565b60008060408385031215613c7357613c7261349e565b5b6000613c81858286016136eb565b9250506020613c92858286016136eb565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cd26020836135d1565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4f57607f821691505b602082108103613d6257613d61613d08565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613dc4602d836135d1565b9150613dcf82613d68565b604082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e566022836135d1565b9150613e6182613dfa565b604082019050919050565b60006020820190508181036000830152613e8581613e49565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613ee86039836135d1565b9150613ef382613e8c565b604082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b6000613f54601a836135d1565b9150613f5f82613f1e565b602082019050919050565b60006020820190508181036000830152613f8381613f47565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fe66022836135d1565b9150613ff182613f8a565b604082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614078602e836135d1565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b600081905092915050565b50565b60006140c96000836140ae565b91506140d4826140b9565b600082019050919050565b60006140ea826140bc565b9150819050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006141506023836135d1565b915061415b826140f4565b604082019050919050565b6000602082019050818103600083015261417f81614143565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141ab565b6141f286836141ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061422f61422a61422584613563565b61420a565b613563565b9050919050565b6000819050919050565b61424983614214565b61425d61425582614236565b8484546141b8565b825550505050565b600090565b614272614265565b61427d818484614240565b505050565b5b818110156142a15761429660008261426a565b600181019050614283565b5050565b601f8211156142e6576142b781614186565b6142c08461419b565b810160208510156142cf578190505b6142e36142db8561419b565b830182614282565b50505b505050565b600082821c905092915050565b6000614309600019846008026142eb565b1980831691505092915050565b600061432283836142f8565b9150826002028217905092915050565b61433b826135c6565b67ffffffffffffffff811115614354576143536137c7565b5b61435e8254613d37565b6143698282856142a5565b600060209050601f83116001811461439c576000841561438a578287015190505b6143948582614316565b8655506143fc565b601f1984166143aa86614186565b60005b828110156143d2578489015182556001820191506020850194506020810190506143ad565b868310156143ef57848901516143eb601f8916826142f8565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614460602b836135d1565b915061446b82614404565b604082019050919050565b6000602082019050818103600083015261448f81614453565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006144f26021836135d1565b91506144fd82614496565b604082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459182613563565b915061459c83613563565b92508282019050808211156145b4576145b3614557565b5b92915050565b60006145c582613563565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145f7576145f6614557565b5b600182019050919050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006146386008836135d1565b915061464382614602565b602082019050919050565b600060208201905081810360008301526146678161462b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006146a4601f836135d1565b91506146af8261466e565b602082019050919050565b600060208201905081810360008301526146d381614697565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b6000614710600b836135d1565b915061471b826146da565b602082019050919050565b6000602082019050818103600083015261473f81614703565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b600061477c601b836135d1565b915061478782614746565b602082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f4d6178207065722077616c6c6574207265616368656421000000000000000000600082015250565b60006147e86017836135d1565b91506147f3826147b2565b602082019050919050565b60006020820190508181036000830152614817816147db565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b60006148546013836135d1565b915061485f8261481e565b602082019050919050565b6000602082019050818103600083015261488381614847565b9050919050565b600061489582613563565b91506148a083613563565b92508282026148ae81613563565b915082820484148315176148c5576148c4614557565b5b5092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614902601a836135d1565b915061490d826148cc565b602082019050919050565b60006020820190508181036000830152614931816148f5565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656421000000600082015250565b600061496e601d836135d1565b915061497982614938565b602082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f43616e7420676f206f76657220737570706c7921000000000000000000000000600082015250565b60006149da6014836135d1565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614a6c6033836135d1565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614afe6021836135d1565b9150614b0982614aa2565b604082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b600081905092915050565b6000614b4a826135c6565b614b548185614b34565b9350614b648185602086016135e2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614ba6600583614b34565b9150614bb182614b70565b600582019050919050565b6000614bc88285614b3f565b9150614bd48284614b3f565b9150614bdf82614b99565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c476026836135d1565b9150614c5282614beb565b604082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614cd96032836135d1565b9150614ce482614c7d565b604082019050919050565b60006020820190508181036000830152614d0881614ccc565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614d6b6026836135d1565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dfd6025836135d1565b9150614e0882614da1565b604082019050919050565b60006020820190508181036000830152614e2c81614df0565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614e8f602a836135d1565b9150614e9a82614e33565b604082019050919050565b60006020820190508181036000830152614ebe81614e82565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614f21602f836135d1565b9150614f2c82614ec5565b604082019050919050565b60006020820190508181036000830152614f5081614f14565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f7e82614f57565b614f888185614f62565b9350614f988185602086016135e2565b614fa18161360c565b840191505092915050565b6000608082019050614fc160008301876136aa565b614fce60208301866136aa565b614fdb6040830185613740565b8181036060830152614fed8184614f73565b905095945050505050565b600081519050615007816134d4565b92915050565b6000602082840312156150235761502261349e565b5b600061503184828501614ff8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061507482613563565b915061507f83613563565b92508261508f5761508e61503a565b5b828204905092915050565b60006150a582613563565b91506150b083613563565b92508282039050818111156150c8576150c7614557565b5b92915050565b60006150d982613563565b91506150e483613563565b9250826150f4576150f361503a565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061515b6021836135d1565b9150615166826150ff565b604082019050919050565b6000602082019050818103600083015261518a8161514e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006151ed6028836135d1565b91506151f882615191565b604082019050919050565b6000602082019050818103600083015261521c816151e0565b905091905056fea264697066735822122099b17e78e3c610b227a781e9f7a5b248e38f827c28bafa065b14449164003e8a64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636352211e11610139578063a4146733116100b6578063c87b56dd1161007a578063c87b56dd14610875578063d5abeb01146108b2578063dc4e66b5146108dd578063e0a8085314610906578063e985e9c51461092f578063f2fde38b1461096c57610251565b8063a4146733146107b1578063a45ba8e7146107cd578063b88d4fde146107f8578063baac9c4314610821578063bde12d731461084c57610251565b80638da5cb5b116100fd5780638da5cb5b146106ed57806395d89b411461071857806396ea3a4714610743578063a0712d681461076c578063a22cb4651461078857610251565b80636352211e146105f45780636c0360eb1461063157806370a082311461065c578063715018a6146106995780637c6b172d146106b057610251565b806334c8fd75116101d25780634f6ccce7116101965780634f6ccce7146104e45780634fdd43cb14610521578063518302271461054a57806355f804b31461057557806356569a1d1461059e5780635c975abb146105c957610251565b806334c8fd75146104325780633ccfd60b1461045d57806342842e0e1461046757806344a0d68a14610490578063485a68a3146104b957610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063228025e8146103a357806323b872dd146103cc5780632f745c59146103f557610251565b806301ffc9a714610256578063022d67dd1461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613500565b610995565b60405161028a9190613548565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613599565b610adf565b005b3480156102c857600080fd5b506102d1610b65565b6040516102de9190613656565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613599565b610bf7565b60405161031b91906136b9565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613700565b610c7c565b005b34801561035957600080fd5b50610362610d94565b60405161036f919061374f565b60405180910390f35b34801561038457600080fd5b5061038d610d9a565b60405161039a919061374f565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613599565b610da3565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061376a565b610e6e565b005b34801561040157600080fd5b5061041c60048036038101906104179190613700565b610e7e565b604051610429919061374f565b60405180910390f35b34801561043e57600080fd5b5061044761106e565b604051610454919061374f565b60405180910390f35b610465611074565b005b34801561047357600080fd5b5061048e6004803603810190610489919061376a565b611169565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613599565b611189565b005b3480156104c557600080fd5b506104ce61120f565b6040516104db919061374f565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190613599565b611215565b604051610518919061374f565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906138f2565b611268565b005b34801561055657600080fd5b5061055f6112f7565b60405161056c9190613548565b60405180910390f35b34801561058157600080fd5b5061059c600480360381019061059791906138f2565b61130a565b005b3480156105aa57600080fd5b506105b3611399565b6040516105c0919061374f565b60405180910390f35b3480156105d557600080fd5b506105de61139f565b6040516105eb9190613548565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613599565b6113b6565b60405161062891906136b9565b60405180910390f35b34801561063d57600080fd5b506106466113cc565b6040516106539190613656565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061393b565b61145a565b604051610690919061374f565b60405180910390f35b3480156106a557600080fd5b506106ae611542565b005b3480156106bc57600080fd5b506106d760048036038101906106d2919061393b565b6115ca565b6040516106e4919061374f565b60405180910390f35b3480156106f957600080fd5b506107026115e2565b60405161070f91906136b9565b60405180910390f35b34801561072457600080fd5b5061072d61160c565b60405161073a9190613656565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190613a1e565b61169e565b005b61078660048036038101906107819190613599565b611880565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613acb565b611a88565b005b6107cb60048036038101906107c69190613599565b611c08565b005b3480156107d957600080fd5b506107e2611ebc565b6040516107ef9190613656565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613bac565b611f4a565b005b34801561082d57600080fd5b50610836611fa6565b604051610843919061374f565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613599565b611fac565b005b34801561088157600080fd5b5061089c60048036038101906108979190613599565b612032565b6040516108a99190613656565b60405180910390f35b3480156108be57600080fd5b506108c7612187565b6040516108d4919061374f565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613599565b61218d565b005b34801561091257600080fd5b5061092d60048036038101906109289190613c2f565b612213565b005b34801561093b57600080fd5b5061095660048036038101906109519190613c5c565b6122ac565b6040516109639190613548565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e919061393b565b612340565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad85750610ad782612437565b5b9050919050565b610ae76124a1565b73ffffffffffffffffffffffffffffffffffffffff16610b056115e2565b73ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290613ce8565b60405180910390fd5b80600e8190555050565b606060018054610b7490613d37565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba090613d37565b8015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b6000610c02826124a9565b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890613dda565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c87826113b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90613e6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d166124a1565b73ffffffffffffffffffffffffffffffffffffffff161480610d455750610d4481610d3f6124a1565b6122ac565b5b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90613efe565b60405180910390fd5b610d8f8383836124b6565b505050565b600a5481565b60008054905090565b610dab6124a1565b73ffffffffffffffffffffffffffffffffffffffff16610dc96115e2565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690613ce8565b60405180910390fd5b600b54811115610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613f6a565b60405180910390fd5b80600b8190555050565b610e79838383612568565b505050565b6000610e898361145a565b8210610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec190613ffc565b60405180910390fd5b6000610ed4610d9a565b905060008060005b8381101561102c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fce57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101e57868403611015578195505050505050611068565b83806001019450505b508080600101915050610edc565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061408e565b60405180910390fd5b92915050565b600e5481565b61107c6124a1565b73ffffffffffffffffffffffffffffffffffffffff1661109a6115e2565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613ce8565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611116906140df565b60006040518083038185875af1925050503d8060008114611153576040519150601f19603f3d011682016040523d82523d6000602084013e611158565b606091505b505090508061116657600080fd5b50565b61118483838360405180602001604052806000815250611f4a565b505050565b6111916124a1565b73ffffffffffffffffffffffffffffffffffffffff166111af6115e2565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613ce8565b60405180910390fd5b80600a8190555050565b600c5481565b600061121f610d9a565b8210611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790614166565b60405180910390fd5b819050919050565b6112706124a1565b73ffffffffffffffffffffffffffffffffffffffff1661128e6115e2565b73ffffffffffffffffffffffffffffffffffffffff16146112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613ce8565b60405180910390fd5b80601190816112f39190614332565b5050565b601060009054906101000a900460ff1681565b6113126124a1565b73ffffffffffffffffffffffffffffffffffffffff166113306115e2565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613ce8565b60405180910390fd5b80600990816113959190614332565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b60006113c182612aa6565b600001519050919050565b600980546113d990613d37565b80601f016020809104026020016040519081016040528092919081815260200182805461140590613d37565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190614476565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61154a6124a1565b73ffffffffffffffffffffffffffffffffffffffff166115686115e2565b73ffffffffffffffffffffffffffffffffffffffff16146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613ce8565b60405180910390fd5b6115c86000612c40565b565b60126020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461161b90613d37565b80601f016020809104026020016040519081016040528092919081815260200182805461164790613d37565b80156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b5050505050905090565b6116a66124a1565b73ffffffffffffffffffffffffffffffffffffffff166116c46115e2565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613ce8565b60405180910390fd5b818190508484905014611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614508565b60405180910390fd5b60008061176d610d9a565b905060005b868690508110156117b5578686828181106117905761178f614528565b5b90506020020135836117a29190614586565b9250806117ae906145ba565b9050611772565b50600b5482826117c59190614586565b1115611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061464e565b60405180910390fd5b6000915060005b848490508110156118735761186285858381811061182e5761182d614528565b5b9050602002016020810190611843919061393b565b88888481811061185657611855614528565b5b90506020020135612d06565b8061186c906145ba565b905061180d565b5060009050505050505050565b6002600854036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906146ba565b60405180910390fd5b600260088190555060006118d7610d9a565b90506000821161191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614726565b60405180910390fd5b600e54821115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614792565b60405180910390fd5b601461196c3361145a565b11156119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a4906147fe565b60405180910390fd5b6014826119b93361145a565b6119c39190614586565b1115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb906147fe565b60405180910390fd5b600b548282611a139190614586565b1115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061486a565b60405180910390fd5b81600a54611a62919061488a565b341015611a6e57600080fd5b611a783383612d06565b6000905050600160088190555050565b611a906124a1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614918565b60405180910390fd5b8060066000611b0a6124a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb76124a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc9190613548565b60405180910390a35050565b600260085403611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c44906146ba565b60405180910390fd5b60026008819055506000611c5f610d9a565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611cb49190614586565b1115611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614984565b60405180910390fd5b6014611d003361145a565b1115611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906147fe565b60405180910390fd5b601483611d4d3361145a565b611d579190614586565b1115611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f906147fe565b60405180910390fd5b60008311611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290614726565b60405180910390fd5b600c548383611dea9190614586565b1115611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e22906149f0565b60405180910390fd5b60005b83811015611e9c57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e86906145ba565b919050555080611e95906145ba565b9050611e2e565b50611ea73384612d06565b60009150600090505050600160088190555050565b60118054611ec990613d37565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef590613d37565b8015611f425780601f10611f1757610100808354040283529160200191611f42565b820191906000526020600020905b815481529060010190602001808311611f2557829003601f168201915b505050505081565b611f55848484612568565b611f6184848484612d24565b611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790614a82565b60405180910390fd5b50505050565b600f5481565b611fb46124a1565b73ffffffffffffffffffffffffffffffffffffffff16611fd26115e2565b73ffffffffffffffffffffffffffffffffffffffff1614612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90613ce8565b60405180910390fd5b80600c8190555050565b606061203d826124a9565b61207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614b14565b60405180910390fd5b60001515601060009054906101000a900460ff1615150361212957601180546120a490613d37565b80601f01602080910402602001604051908101604052809291908181526020018280546120d090613d37565b801561211d5780601f106120f25761010080835404028352916020019161211d565b820191906000526020600020905b81548152906001019060200180831161210057829003601f168201915b50505050509050612182565b6000612133612eab565b90506000815111612153576040518060200160405280600081525061217e565b8061215d84612f3d565b60405160200161216e929190614bbc565b6040516020818303038152906040525b9150505b919050565b600b5481565b6121956124a1565b73ffffffffffffffffffffffffffffffffffffffff166121b36115e2565b73ffffffffffffffffffffffffffffffffffffffff1614612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220090613ce8565b60405180910390fd5b80600d8190555050565b61221b6124a1565b73ffffffffffffffffffffffffffffffffffffffff166122396115e2565b73ffffffffffffffffffffffffffffffffffffffff161461228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690613ce8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123486124a1565b73ffffffffffffffffffffffffffffffffffffffff166123666115e2565b73ffffffffffffffffffffffffffffffffffffffff16146123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390613ce8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290614c5d565b60405180910390fd5b61243481612c40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061257382612aa6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661259a6124a1565b73ffffffffffffffffffffffffffffffffffffffff1614806125f657506125bf6124a1565b73ffffffffffffffffffffffffffffffffffffffff166125de84610bf7565b73ffffffffffffffffffffffffffffffffffffffff16145b806126125750612611826000015161260c6124a1565b6122ac565b5b905080612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90614cef565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90614d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614e13565b60405180910390fd5b612742858585600161309d565b61275260008484600001516124b6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a3657612995816124a9565b15612a355782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a9f85858560016130a3565b5050505050565b612aae61345a565b612ab7826124a9565b612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90614ea5565b60405180910390fd5b60008290505b60008110612bff576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bf0578092505050612c3b565b50808060019003915050612afc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290614f37565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d208282604051806020016040528060008152506130a9565b5050565b6000612d458473ffffffffffffffffffffffffffffffffffffffff166130bb565b15612e9e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d6e6124a1565b8786866040518563ffffffff1660e01b8152600401612d909493929190614fac565b6020604051808303816000875af1925050508015612dcc57506040513d601f19601f82011682018060405250810190612dc9919061500d565b60015b612e4e573d8060008114612dfc576040519150601f19603f3d011682016040523d82523d6000602084013e612e01565b606091505b506000815103612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614a82565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea3565b600190505b949350505050565b606060098054612eba90613d37565b80601f0160208091040260200160405190810160405280929190818152602001828054612ee690613d37565b8015612f335780601f10612f0857610100808354040283529160200191612f33565b820191906000526020600020905b815481529060010190602001808311612f1657829003601f168201915b5050505050905090565b606060008203612f84576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613098565b600082905060005b60008214612fb6578080612f9f906145ba565b915050600a82612faf9190615069565b9150612f8c565b60008167ffffffffffffffff811115612fd257612fd16137c7565b5b6040519080825280601f01601f1916602001820160405280156130045781602001600182028036833780820191505090505b5090505b600085146130915760018261301d919061509a565b9150600a8561302c91906150ce565b60306130389190614586565b60f81b81838151811061304e5761304d614528565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561308a9190615069565b9450613008565b8093505050505b919050565b50505050565b50505050565b6130b683838360016130de565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314a90615171565b60405180910390fd5b60008403613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d90615203565b60405180910390fd5b6131a3600086838761309d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561343d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613428576133e86000888488612d24565b613427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341e90614a82565b60405180910390fd5b5b81806001019250508080600101915050613371565b50806000819055505061345360008683876130a3565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134dd816134a8565b81146134e857600080fd5b50565b6000813590506134fa816134d4565b92915050565b6000602082840312156135165761351561349e565b5b6000613524848285016134eb565b91505092915050565b60008115159050919050565b6135428161352d565b82525050565b600060208201905061355d6000830184613539565b92915050565b6000819050919050565b61357681613563565b811461358157600080fd5b50565b6000813590506135938161356d565b92915050565b6000602082840312156135af576135ae61349e565b5b60006135bd84828501613584565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136005780820151818401526020810190506135e5565b60008484015250505050565b6000601f19601f8301169050919050565b6000613628826135c6565b61363281856135d1565b93506136428185602086016135e2565b61364b8161360c565b840191505092915050565b60006020820190508181036000830152613670818461361d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136a382613678565b9050919050565b6136b381613698565b82525050565b60006020820190506136ce60008301846136aa565b92915050565b6136dd81613698565b81146136e857600080fd5b50565b6000813590506136fa816136d4565b92915050565b600080604083850312156137175761371661349e565b5b6000613725858286016136eb565b925050602061373685828601613584565b9150509250929050565b61374981613563565b82525050565b60006020820190506137646000830184613740565b92915050565b6000806000606084860312156137835761378261349e565b5b6000613791868287016136eb565b93505060206137a2868287016136eb565b92505060406137b386828701613584565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137ff8261360c565b810181811067ffffffffffffffff8211171561381e5761381d6137c7565b5b80604052505050565b6000613831613494565b905061383d82826137f6565b919050565b600067ffffffffffffffff82111561385d5761385c6137c7565b5b6138668261360c565b9050602081019050919050565b82818337600083830152505050565b600061389561389084613842565b613827565b9050828152602081018484840111156138b1576138b06137c2565b5b6138bc848285613873565b509392505050565b600082601f8301126138d9576138d86137bd565b5b81356138e9848260208601613882565b91505092915050565b6000602082840312156139085761390761349e565b5b600082013567ffffffffffffffff811115613926576139256134a3565b5b613932848285016138c4565b91505092915050565b6000602082840312156139515761395061349e565b5b600061395f848285016136eb565b91505092915050565b600080fd5b600080fd5b60008083601f840112613988576139876137bd565b5b8235905067ffffffffffffffff8111156139a5576139a4613968565b5b6020830191508360208202830111156139c1576139c061396d565b5b9250929050565b60008083601f8401126139de576139dd6137bd565b5b8235905067ffffffffffffffff8111156139fb576139fa613968565b5b602083019150836020820283011115613a1757613a1661396d565b5b9250929050565b60008060008060408587031215613a3857613a3761349e565b5b600085013567ffffffffffffffff811115613a5657613a556134a3565b5b613a6287828801613972565b9450945050602085013567ffffffffffffffff811115613a8557613a846134a3565b5b613a91878288016139c8565b925092505092959194509250565b613aa88161352d565b8114613ab357600080fd5b50565b600081359050613ac581613a9f565b92915050565b60008060408385031215613ae257613ae161349e565b5b6000613af0858286016136eb565b9250506020613b0185828601613ab6565b9150509250929050565b600067ffffffffffffffff821115613b2657613b256137c7565b5b613b2f8261360c565b9050602081019050919050565b6000613b4f613b4a84613b0b565b613827565b905082815260208101848484011115613b6b57613b6a6137c2565b5b613b76848285613873565b509392505050565b600082601f830112613b9357613b926137bd565b5b8135613ba3848260208601613b3c565b91505092915050565b60008060008060808587031215613bc657613bc561349e565b5b6000613bd4878288016136eb565b9450506020613be5878288016136eb565b9350506040613bf687828801613584565b925050606085013567ffffffffffffffff811115613c1757613c166134a3565b5b613c2387828801613b7e565b91505092959194509250565b600060208284031215613c4557613c4461349e565b5b6000613c5384828501613ab6565b91505092915050565b60008060408385031215613c7357613c7261349e565b5b6000613c81858286016136eb565b9250506020613c92858286016136eb565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cd26020836135d1565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4f57607f821691505b602082108103613d6257613d61613d08565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613dc4602d836135d1565b9150613dcf82613d68565b604082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e566022836135d1565b9150613e6182613dfa565b604082019050919050565b60006020820190508181036000830152613e8581613e49565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613ee86039836135d1565b9150613ef382613e8c565b604082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b6000613f54601a836135d1565b9150613f5f82613f1e565b602082019050919050565b60006020820190508181036000830152613f8381613f47565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fe66022836135d1565b9150613ff182613f8a565b604082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614078602e836135d1565b91506140838261401c565b604082019050919050565b600060208201905081810360008301526140a78161406b565b9050919050565b600081905092915050565b50565b60006140c96000836140ae565b91506140d4826140b9565b600082019050919050565b60006140ea826140bc565b9150819050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006141506023836135d1565b915061415b826140f4565b604082019050919050565b6000602082019050818103600083015261417f81614143565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141ab565b6141f286836141ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061422f61422a61422584613563565b61420a565b613563565b9050919050565b6000819050919050565b61424983614214565b61425d61425582614236565b8484546141b8565b825550505050565b600090565b614272614265565b61427d818484614240565b505050565b5b818110156142a15761429660008261426a565b600181019050614283565b5050565b601f8211156142e6576142b781614186565b6142c08461419b565b810160208510156142cf578190505b6142e36142db8561419b565b830182614282565b50505b505050565b600082821c905092915050565b6000614309600019846008026142eb565b1980831691505092915050565b600061432283836142f8565b9150826002028217905092915050565b61433b826135c6565b67ffffffffffffffff811115614354576143536137c7565b5b61435e8254613d37565b6143698282856142a5565b600060209050601f83116001811461439c576000841561438a578287015190505b6143948582614316565b8655506143fc565b601f1984166143aa86614186565b60005b828110156143d2578489015182556001820191506020850194506020810190506143ad565b868310156143ef57848901516143eb601f8916826142f8565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614460602b836135d1565b915061446b82614404565b604082019050919050565b6000602082019050818103600083015261448f81614453565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006144f26021836135d1565b91506144fd82614496565b604082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459182613563565b915061459c83613563565b92508282019050808211156145b4576145b3614557565b5b92915050565b60006145c582613563565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145f7576145f6614557565b5b600182019050919050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006146386008836135d1565b915061464382614602565b602082019050919050565b600060208201905081810360008301526146678161462b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006146a4601f836135d1565b91506146af8261466e565b602082019050919050565b600060208201905081810360008301526146d381614697565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b6000614710600b836135d1565b915061471b826146da565b602082019050919050565b6000602082019050818103600083015261473f81614703565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b600061477c601b836135d1565b915061478782614746565b602082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f4d6178207065722077616c6c6574207265616368656421000000000000000000600082015250565b60006147e86017836135d1565b91506147f3826147b2565b602082019050919050565b60006020820190508181036000830152614817816147db565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b60006148546013836135d1565b915061485f8261481e565b602082019050919050565b6000602082019050818103600083015261488381614847565b9050919050565b600061489582613563565b91506148a083613563565b92508282026148ae81613563565b915082820484148315176148c5576148c4614557565b5b5092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614902601a836135d1565b915061490d826148cc565b602082019050919050565b60006020820190508181036000830152614931816148f5565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656421000000600082015250565b600061496e601d836135d1565b915061497982614938565b602082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f43616e7420676f206f76657220737570706c7921000000000000000000000000600082015250565b60006149da6014836135d1565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614a6c6033836135d1565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614afe6021836135d1565b9150614b0982614aa2565b604082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b600081905092915050565b6000614b4a826135c6565b614b548185614b34565b9350614b648185602086016135e2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614ba6600583614b34565b9150614bb182614b70565b600582019050919050565b6000614bc88285614b3f565b9150614bd48284614b3f565b9150614bdf82614b99565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c476026836135d1565b9150614c5282614beb565b604082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614cd96032836135d1565b9150614ce482614c7d565b604082019050919050565b60006020820190508181036000830152614d0881614ccc565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614d6b6026836135d1565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dfd6025836135d1565b9150614e0882614da1565b604082019050919050565b60006020820190508181036000830152614e2c81614df0565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614e8f602a836135d1565b9150614e9a82614e33565b604082019050919050565b60006020820190508181036000830152614ebe81614e82565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614f21602f836135d1565b9150614f2c82614ec5565b604082019050919050565b60006020820190508181036000830152614f5081614f14565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f7e82614f57565b614f888185614f62565b9350614f988185602086016135e2565b614fa18161360c565b840191505092915050565b6000608082019050614fc160008301876136aa565b614fce60208301866136aa565b614fdb6040830185613740565b8181036060830152614fed8184614f73565b905095945050505050565b600081519050615007816134d4565b92915050565b6000602082840312156150235761502261349e565b5b600061503184828501614ff8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061507482613563565b915061507f83613563565b92508261508f5761508e61503a565b5b828204905092915050565b60006150a582613563565b91506150b083613563565b92508282039050818111156150c8576150c7614557565b5b92915050565b60006150d982613563565b91506150e483613563565b9250826150f4576150f361503a565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061515b6021836135d1565b9150615166826150ff565b604082019050919050565b6000602082019050818103600083015261518a8161514e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006151ed6028836135d1565b91506151f882615191565b604082019050919050565b6000602082019050818103600083015261521c816151e0565b905091905056fea264697066735822122099b17e78e3c610b227a781e9f7a5b248e38f827c28bafa065b14449164003e8a64736f6c63430008110033
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.