ERC-721
Overview
Max Total Supply
0 TW
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TopWolves
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract TopWolves is ERC721, ReentrancyGuard, AccessControl { using SafeMath for uint256; using SafeMath for uint16; using SafeMath for uint8; uint16 private _tokenId; address teamWalletAddress = 0x07aBadB22E5D4E32f64f3c1d04FC9fA2CAB29ED7; address withdrawAddress = 0x1f5e243deEF97C2f7EF8b5E1D0857f021CFabcFB; uint16 public GiveawayLimit = 200; uint16 public totalLimit = 911; /** * Mint Step flag * 0: freeMint (for giveaway and promotion), * 1: preSale - 3 hours * 2: publicSale, * 3: paused * 4: not started */ uint8 public mintStep = 4; bool public revealStatus = false; bytes32 private merkleRoot; bytes32 public constant ADMIN = keccak256("ADMIN"); uint public mintPriceDiscount = 0.1 ether; // 0.1 uint public mintPrice = 0.12 ether; // 0.12 string private realBaseURI = "https://topwolves.mypinata.cloud/ipfs/QmdbmQnqXoBdFaoLj99bwNagZ3b93bbuvT5QjUJ5JZzh3W/"; string private virtualURI = "https://topwolves.mypinata.cloud/ipfs/"; uint8 private MAX_PER_MINT = 3; uint8 private MAX_PRESALE_PER_WALLET = 3; uint8 public MAX_PER_WALLET = 20; uint256 presaleTime = 3600 * 16; uint256 public presaleStartTime = block.timestamp; mapping (address => uint8) adressPresaleCountMap; // Up to 1 mapping (address => uint8) addressPublicSaleCountMap; // Up to Unlimited modifier onlyAdmin() { require((hasRole(ADMIN, _msgSender()) || hasRole(0x00, _msgSender())), "not allowed"); _; } constructor() ERC721("TopWolves NFT Genesis", "TW") { for (uint16 i = 0; i < GiveawayLimit; i++) { _tokenId++; _safeMint(teamWalletAddress, _tokenId); } totalLimit -= GiveawayLimit; _grantRole(ADMIN, _msgSender()); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } event Mint (address indexed _from, uint8 _mintStep, uint _tokenId, uint _mintPrice, uint8 _mintCount, uint8 _freeMintCount, uint8 _publicSaleCount); event Setting ( uint8 _mintStep, uint256 _mintPrice, uint256 _mintPriceDiscount, uint16 _totalLimit, uint8 _MAX_PER_MINT); function _baseURI() internal view override returns (string memory) { if(revealStatus) { return realBaseURI; } else { return virtualURI; } } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "Token does not exist"); if(revealStatus) { return string(abi.encodePacked(_baseURI(), Strings.toString(tokenId), ".json")); } else { return string(abi.encodePacked(_baseURI(), "QmaKudWifFp5N2Q3Y3rHAbGTgDA92efGB6fLjvvY2Fbzph")); } } function _leaf(address account) private pure returns (bytes32) { return keccak256(abi.encodePacked(account)); } function _verifyWhitelist(bytes32 leaf, bytes32[] memory _merkleProof) private view returns (bool){ return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function setPresaleStart() external onlyAdmin returns (uint256) { presaleStartTime = block.timestamp; mintStep = 1; return presaleStartTime; } function isWhiteListMember(address account, bytes32[] memory _proof) external view returns (bool) { return _verifyWhitelist(_leaf(account), _proof); } function mintPresale(uint8 _mintCount, bytes32[] memory _proof) external payable nonReentrant returns (uint256) { require(_verifyWhitelist(_leaf(msg.sender), _proof) == true); require(_mintCount > 0); require(msg.sender != address(0)); require(mintStep == 1); require(block.timestamp > presaleStartTime + presaleTime || (block.timestamp <= presaleStartTime + presaleTime && _mintCount <= MAX_PER_MINT)); require(msg.value == (mintPriceDiscount * _mintCount)); require(adressPresaleCountMap[msg.sender] + _mintCount <= MAX_PRESALE_PER_WALLET); for (uint8 i = 0; i < _mintCount; i++) { _tokenId++; _safeMint(msg.sender, _tokenId); } adressPresaleCountMap[msg.sender] += _mintCount; totalLimit -= _mintCount; emit Mint(msg.sender, mintStep, _tokenId, mintPrice, _mintCount, adressPresaleCountMap[msg.sender], addressPublicSaleCountMap[msg.sender]); return _tokenId; } function mintPublic(uint8 _mintCount) external payable nonReentrant returns (uint256) { require(mintStep == 2 && _mintCount > 0, "Not Public Mint Step"); require(msg.sender != address(0)); require(msg.value == (mintPrice * _mintCount),"Incorrect the send price"); require(_mintCount <= totalLimit); require(_mintCount <= MAX_PER_MINT); require(_mintCount + adressPresaleCountMap[msg.sender] + addressPublicSaleCountMap[msg.sender] <= MAX_PER_WALLET); for (uint8 i = 0; i < _mintCount; i++) { _tokenId++; _safeMint(msg.sender, _tokenId); } addressPublicSaleCountMap[msg.sender] += _mintCount; totalLimit -= _mintCount; emit Mint(msg.sender, mintStep, _tokenId, mintPrice, _mintCount, adressPresaleCountMap[msg.sender], addressPublicSaleCountMap[msg.sender]); return _tokenId; } function setMintStep(uint8 _mintStep) external onlyAdmin returns (uint8) { require(_mintStep >= 0 && _mintStep <= 4); mintStep = _mintStep; emit Setting(mintStep, mintPrice, mintPriceDiscount, totalLimit, MAX_PER_MINT); return mintStep; } function getBalance() external view returns (uint256) { return address(this).balance; } function withdraw(bool _check) external onlyAdmin { require(address(this).balance != 0, "withdrawFunds: must have funds to withdraw"); uint256 balance = address(this).balance; if(_check) { payable(withdrawAddress).transfer(balance); } else { payable(_msgSender()).transfer(balance); } } function setRealBaseURI(string memory _realBaseURI) external onlyAdmin returns (string memory) { realBaseURI = _realBaseURI; return realBaseURI; } function setMerkleRoot(bytes32 _merkleRoot) external onlyAdmin returns (bytes32) { merkleRoot = _merkleRoot; return merkleRoot; } function getTokenList(address account) external view returns (uint256[] memory) { require(account != address(0)); uint256 count = balanceOf(account); uint256[] memory tokenIdList = new uint256[](count); if (count == 0) return tokenIdList; uint256 cnt = 0; for (uint256 i = 1; i < (_tokenId + 1); i++) { if (_exists(i) && (ownerOf(i) == account)) { tokenIdList[cnt++] = i; } if (cnt == count) break; } return tokenIdList; } function getSetting() external view returns (uint256[] memory) { uint256[] memory setting = new uint256[](5); setting[0] = mintStep; setting[1] = mintPrice; setting[2] = mintPriceDiscount; setting[3] = totalLimit; setting[4] = MAX_PER_MINT; return setting; } function getAccountStatus(address account) external view returns (uint8[] memory) { require(account != address(0)); uint8[] memory status = new uint8[](2); if(balanceOf(account) == 0) return status; status[0] = adressPresaleCountMap[account]; status[1] = addressPublicSaleCountMap[account]; return status; } function grantRole(bytes32 _role, address _user) public override onlyAdmin { _grantRole(_role, _user); } function revokeRole(bytes32 _role, address _user) public override onlyAdmin { _revokeRole(_role, _user); } function setRevealStatus(bool _status) public onlyAdmin { revealStatus = _status; } function burn(uint256 tokenId) public onlyAdmin { _burn(tokenId); } function changePresaleMintPrice(uint _price) public onlyAdmin { mintPriceDiscount = _price; } function changePublicMintPrice(uint _price) public onlyAdmin { mintPrice = _price; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"_from","type":"address"},{"indexed":false,"internalType":"uint8","name":"_mintStep","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"_mintCount","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_freeMintCount","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_publicSaleCount","type":"uint8"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"_mintStep","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_mintPriceDiscount","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"_totalLimit","type":"uint16"},{"indexed":false,"internalType":"uint8","name":"_MAX_PER_MINT","type":"uint8"}],"name":"Setting","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GiveawayLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePresaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountStatus","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSetting","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTokenList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_role","type":"bytes32"},{"internalType":"address","name":"_user","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhiteListMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintCount","type":"uint8"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceDiscount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintCount","type":"uint8"}],"name":"mintPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStep","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_role","type":"bytes32"},{"internalType":"address","name":"_user","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintStep","type":"uint8"}],"name":"setMintStep","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_realBaseURI","type":"string"}],"name":"setRealBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setRevealStatus","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"bool","name":"_check","type":"bool"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527307abadb22e5d4e32f64f3c1d04fc9fa2cab29ed7600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731f5e243deef97c2f7ef8b5e1d0857f021cfabcfb600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c8600960146101000a81548161ffff021916908361ffff16021790555061038f600960166101000a81548161ffff021916908361ffff1602179055506004600960186101000a81548160ff021916908360ff1602179055506000600960196101000a81548160ff02191690831515021790555067016345785d8a0000600b556701aa535d3d0c0000600c556040518060800160405280605581526020016200695f60559139600d90805190602001906200016b92919062000a3a565b50604051806060016040528060268152602001620069b460269139600e90805190602001906200019d92919062000a3a565b506003600f60006101000a81548160ff021916908360ff1602179055506003600f60016101000a81548160ff021916908360ff1602179055506014600f60026101000a81548160ff021916908360ff16021790555061e100601055426011553480156200020957600080fd5b506040518060400160405280601581526020017f546f70576f6c766573204e46542047656e6573697300000000000000000000008152506040518060400160405280600281526020017f545700000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200028e92919062000a3a565b508060019080519060200190620002a792919062000a3a565b505050600160068190555060005b600960149054906101000a900461ffff1661ffff168161ffff16101562000371576008600081819054906101000a900461ffff1680929190620002f89062000b27565b91906101000a81548161ffff021916908361ffff160217905550506200035b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900461ffff1661ffff166200040460201b60201c565b8080620003689062000b27565b915050620002b5565b50600960149054906101000a900461ffff16600960168282829054906101000a900461ffff16620003a3919062000b57565b92506101000a81548161ffff021916908361ffff160217905550620003fe7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42620003f26200042a60201b60201c565b6200043260201b60201c565b62000fcd565b620004268282604051806020016040528060008152506200052460201b60201c565b5050565b600033905090565b6200044482826200059260201b60201c565b620005205760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004c56200042a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620005368383620005fd60201b60201c565b6200054b6000848484620007f760201b60201c565b6200058d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005849062000c19565b60405180910390fd5b505050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006679062000c8b565b60405180910390fd5b6200068181620009a160201b60201c565b15620006c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006bb9062000cfd565b60405180910390fd5b620006d86000838362000a0d60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200072a919062000d29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007f36000838362000a1260201b60201c565b5050565b6000620008258473ffffffffffffffffffffffffffffffffffffffff1662000a1760201b6200295f1760201c565b1562000994578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008576200042a60201b60201c565b8786866040518563ffffffff1660e01b81526004016200087b949392919062000e80565b6020604051808303816000875af1925050508015620008ba57506040513d601f19601f82011682018060405250810190620008b7919062000f36565b60015b62000943573d8060008114620008ed576040519150601f19603f3d011682016040523d82523d6000602084013e620008f2565b606091505b506000815114156200093b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009329062000c19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000999565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000a489062000f97565b90600052602060002090601f01602090048101928262000a6c576000855562000ab8565b82601f1062000a8757805160ff191683800117855562000ab8565b8280016001018555821562000ab8579182015b8281111562000ab757825182559160200191906001019062000a9a565b5b50905062000ac7919062000acb565b5090565b5b8082111562000ae657600081600090555060010162000acc565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff82169050919050565b600062000b348262000b19565b915061ffff82141562000b4c5762000b4b62000aea565b5b600182019050919050565b600062000b648262000b19565b915062000b718362000b19565b92508282101562000b875762000b8662000aea565b5b828203905092915050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000c0160328362000b92565b915062000c0e8262000ba3565b604082019050919050565b6000602082019050818103600083015262000c348162000bf2565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000c7360208362000b92565b915062000c808262000c3b565b602082019050919050565b6000602082019050818103600083015262000ca68162000c64565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000ce5601c8362000b92565b915062000cf28262000cad565b602082019050919050565b6000602082019050818103600083015262000d188162000cd6565b9050919050565b6000819050919050565b600062000d368262000d1f565b915062000d438362000d1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d7b5762000d7a62000aea565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000db38262000d86565b9050919050565b62000dc58162000da6565b82525050565b62000dd68162000d1f565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000e1857808201518184015260208101905062000dfb565b8381111562000e28576000848401525b50505050565b6000601f19601f8301169050919050565b600062000e4c8262000ddc565b62000e58818562000de7565b935062000e6a81856020860162000df8565b62000e758162000e2e565b840191505092915050565b600060808201905062000e97600083018762000dba565b62000ea6602083018662000dba565b62000eb5604083018562000dcb565b818103606083015262000ec9818462000e3f565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f108162000ed9565b811462000f1c57600080fd5b50565b60008151905062000f308162000f05565b92915050565b60006020828403121562000f4f5762000f4e62000ed4565b5b600062000f5f8482850162000f1f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fb057607f821691505b6020821081141562000fc75762000fc662000f68565b5b50919050565b6159828062000fdd6000396000f3fe6080604052600436106102675760003560e01c806384c99fb411610144578063b88d4fde116100b6578063e0e316391161007a578063e0e3163914610995578063e598eb18146109c5578063e985e9c5146109f0578063edd6ac8414610a2d578063f3b0d1cc14610a56578063fd4fa05a14610a7f57610267565b8063b88d4fde1461089e578063c87b56dd146108c7578063d547741f14610904578063d8a307321461092d578063daf707041461096a57610267565b8063a22cb46511610108578063a22cb4651461078e578063a2542568146107b7578063a36298c7146107e2578063a810a54c1461080d578063a82524b214610836578063b6d5caf01461086157610267565b806384c99fb4146106a75780638faeb78f146106d057806391d14854146106fb57806395d89b4114610738578063a217fddf1461076357610267565b806330d3256f116101dd5780636352211e116101a15780636352211e1461055857806367dce1ed146105955780636817c76c146105c557806370a08231146105f05780637370b13f1461062d5780637cb647591461066a57610267565b806330d3256f1461047557806336568abe146104b257806342842e0e146104db57806342966c68146105045780635056b3091461052d57610267565b806312065fe01161022f57806312065fe01461036557806323b872dd14610390578063248a9ca3146103b9578063263e4f5e146103f65780632a0acc6a146104215780632f2ff15d1461044c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f2cdd6c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613cdc565b610abc565b6040516102a09190613d24565b60405180910390f35b3480156102b557600080fd5b506102be610ace565b6040516102cb9190613dd8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613e30565b610b60565b6040516103089190613e9e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613ee5565b610be5565b005b34801561034657600080fd5b5061034f610cfd565b60405161035c9190613f41565b60405180910390f35b34801561037157600080fd5b5061037a610d10565b6040516103879190613f6b565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613f86565b610d18565b005b3480156103c557600080fd5b506103e060048036038101906103db919061400f565b610d78565b6040516103ed919061404b565b60405180910390f35b34801561040257600080fd5b5061040b610d98565b6040516104189190613d24565b60405180910390f35b34801561042d57600080fd5b50610436610dab565b604051610443919061404b565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190614066565b610dcf565b005b34801561048157600080fd5b5061049c600480360381019061049791906141ee565b610e68565b6040516104a99190613d24565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190614066565b610e84565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613f86565b610f07565b005b34801561051057600080fd5b5061052b60048036038101906105269190613e30565b610f27565b005b34801561053957600080fd5b50610542610fbe565b60405161054f9190614308565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613e30565b6110f6565b60405161058c9190613e9e565b60405180910390f35b6105af60048036038101906105aa9190614356565b6111a8565b6040516105bc9190613f6b565b60405180910390f35b3480156105d157600080fd5b506105da611660565b6040516105e79190613f6b565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190614383565b611666565b6040516106249190613f6b565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190614465565b61171e565b6040516106619190613dd8565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061400f565b611854565b60405161069e919061404b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c991906144da565b6118f2565b005b3480156106dc57600080fd5b506106e561199a565b6040516106f29190613f41565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190614066565b6119ad565b60405161072f9190613d24565b60405180910390f35b34801561074457600080fd5b5061074d611a18565b60405161075a9190613dd8565b60405180910390f35b34801561076f57600080fd5b50610778611aaa565b604051610785919061404b565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190614507565b611ab1565b005b3480156107c357600080fd5b506107cc611ac7565b6040516107d99190613f6b565b60405180910390f35b3480156107ee57600080fd5b506107f7611acd565b6040516108049190614564565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906144da565b611ae1565b005b34801561084257600080fd5b5061084b611c7c565b6040516108589190613f6b565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614356565b611c82565b6040516108959190613f41565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190614620565b611dd3565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613e30565b611e35565b6040516108fb9190613dd8565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190614066565b611efb565b005b34801561093957600080fd5b50610954600480360381019061094f9190614383565b611f94565b6040516109619190614308565b60405180910390f35b34801561097657600080fd5b5061097f612114565b60405161098c9190614564565b60405180910390f35b6109af60048036038101906109aa91906146a3565b612128565b6040516109bc9190613f6b565b60405180910390f35b3480156109d157600080fd5b506109da612551565b6040516109e79190613f6b565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a1291906146ff565b612609565b604051610a249190613d24565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f9190613e30565b61269d565b005b348015610a6257600080fd5b50610a7d6004803603810190610a789190613e30565b612732565b005b348015610a8b57600080fd5b50610aa66004803603810190610aa19190614383565b6127c7565b604051610ab391906147fd565b60405180910390f35b6000610ac782612982565b9050919050565b606060008054610add9061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b099061484e565b8015610b565780601f10610b2b57610100808354040283529160200191610b56565b820191906000526020600020905b815481529060010190602001808311610b3957829003601f168201915b5050505050905090565b6000610b6b826129fc565b610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906148f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf0826110f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890614984565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c80612a68565b73ffffffffffffffffffffffffffffffffffffffff161480610caf5750610cae81610ca9612a68565b612609565b5b610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590614a16565b60405180910390fd5b610cf88383612a70565b505050565b600f60029054906101000a900460ff1681565b600047905090565b610d29610d23612a68565b82612b29565b610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90614aa8565b60405180910390fd5b610d73838383612c07565b505050565b600060076000838152602001908152602001600020600101549050919050565b600960199054906101000a900460ff1681565b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b610e007fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42610dfb612a68565b6119ad565b80610e1b5750610e1a6000801b610e15612a68565b6119ad565b5b610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190614b14565b60405180910390fd5b610e648282612e6e565b5050565b6000610e7c610e7684612f4f565b83612f7f565b905092915050565b610e8c612a68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090614ba6565b60405180910390fd5b610f038282612f96565b5050565b610f2283838360405180602001604052806000815250611dd3565b505050565b610f587fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42610f53612a68565b6119ad565b80610f735750610f726000801b610f6d612a68565b6119ad565b5b610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990614b14565b60405180910390fd5b610fbb81613078565b50565b60606000600567ffffffffffffffff811115610fdd57610fdc6140ab565b5b60405190808252806020026020018201604052801561100b5781602001602082028036833780820191505090505b509050600960189054906101000a900460ff1660ff168160008151811061103557611034614bc6565b5b602002602001018181525050600c548160018151811061105857611057614bc6565b5b602002602001018181525050600b548160028151811061107b5761107a614bc6565b5b602002602001018181525050600960169054906101000a900461ffff1661ffff16816003815181106110b0576110af614bc6565b5b602002602001018181525050600f60009054906101000a900460ff1660ff16816004815181106110e3576110e2614bc6565b5b6020026020010181815250508091505090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690614c67565b60405180910390fd5b80915050919050565b6000600260065414156111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790614cd3565b60405180910390fd5b60026006819055506002600960189054906101000a900460ff1660ff1614801561121d575060008260ff16115b61125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561129657600080fd5b8160ff16600c546112a79190614d8e565b34146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90614e34565b60405180910390fd5b600960169054906101000a900461ffff1661ffff168260ff16111561130c57600080fd5b600f60009054906101000a900460ff1660ff168260ff16111561132e57600080fd5b600f60029054906101000a900460ff1660ff16601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16846113e69190614e54565b6113f09190614e54565b60ff1611156113fe57600080fd5b60005b8260ff168160ff16101561147b576008600081819054906101000a900461ffff168092919061142f90614e8b565b91906101000a81548161ffff021916908361ffff1602179055505061146833600860009054906101000a900461ffff1661ffff16613195565b808061147390614eb6565b915050611401565b5081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166114d79190614e54565b92506101000a81548160ff021916908360ff1602179055508160ff16600960168282829054906101000a900461ffff166115119190614ee0565b92506101000a81548161ffff021916908361ffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fb02a303d525c87e1b896b4c7f50e29105063d0201467d5e30bb21f98b34f511e600960189054906101000a900460ff16600860009054906101000a900461ffff16600c5486601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660405161163496959493929190614f4f565b60405180910390a2600860009054906101000a900461ffff1661ffff1690506001600681905550919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90615022565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606117517fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261174c612a68565b6119ad565b8061176c575061176b6000801b611766612a68565b6119ad565b5b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290614b14565b60405180910390fd5b81600d90805190602001906117c1929190613bcd565b50600d80546117cf9061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546117fb9061484e565b80156118485780601f1061181d57610100808354040283529160200191611848565b820191906000526020600020905b81548152906001019060200180831161182b57829003601f168201915b50505050509050919050565b60006118877fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611882612a68565b6119ad565b806118a257506118a16000801b61189c612a68565b6119ad565b5b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890614b14565b60405180910390fd5b81600a81905550600a549050919050565b6119237fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261191e612a68565b6119ad565b8061193e575061193d6000801b611938612a68565b6119ad565b5b61197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614b14565b60405180910390fd5b80600960196101000a81548160ff02191690831515021790555050565b600960189054906101000a900460ff1681565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611a279061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a539061484e565b8015611aa05780601f10611a7557610100808354040283529160200191611aa0565b820191906000526020600020905b815481529060010190602001808311611a8357829003601f168201915b5050505050905090565b6000801b81565b611ac3611abc612a68565b83836131b3565b5050565b600b5481565b600960169054906101000a900461ffff1681565b611b127fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611b0d612a68565b6119ad565b80611b2d5750611b2c6000801b611b27612a68565b6119ad565b5b611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614b14565b60405180910390fd5b6000471415611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906150b4565b60405180910390fd5b60004790508115611c2957600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611c23573d6000803e3d6000fd5b50611c78565b611c31612a68565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611c76573d6000803e3d6000fd5b505b5050565b60115481565b6000611cb57fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611cb0612a68565b6119ad565b80611cd05750611ccf6000801b611cca612a68565b6119ad565b5b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690614b14565b60405180910390fd5b60008260ff1610158015611d27575060048260ff1611155b611d3057600080fd5b81600960186101000a81548160ff021916908360ff1602179055507fd88f50cfec4b7e82105b718357612e30193264650e08332afca4350c420123c6600960189054906101000a900460ff16600c54600b54600960169054906101000a900461ffff16600f60009054906101000a900460ff16604051611db49594939291906150d4565b60405180910390a1600960189054906101000a900460ff169050919050565b611de4611dde612a68565b83612b29565b611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90614aa8565b60405180910390fd5b611e2f84848484613320565b50505050565b6060611e40826129fc565b611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690615173565b60405180910390fd5b600960199054906101000a900460ff1615611ecc57611e9c61337c565b611ea5836134b6565b604051602001611eb692919061521b565b6040516020818303038152906040529050611ef6565b611ed461337c565b604051602001611ee491906152bc565b60405160208183030381529060405290505b919050565b611f2c7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611f27612a68565b6119ad565b80611f475750611f466000801b611f41612a68565b6119ad565b5b611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614b14565b60405180910390fd5b611f908282612f96565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd057600080fd5b6000611fdb83611666565b905060008167ffffffffffffffff811115611ff957611ff86140ab565b5b6040519080825280602002602001820160405280156120275781602001602082028036833780820191505090505b509050600082141561203d57809250505061210f565b600080600190505b6001600860009054906101000a900461ffff1661206291906152de565b61ffff1681101561210757612076816129fc565b80156120b557508573ffffffffffffffffffffffffffffffffffffffff1661209d826110f6565b73ffffffffffffffffffffffffffffffffffffffff16145b156120e757808383806120c790615316565b9450815181106120da576120d9614bc6565b5b6020026020010181815250505b838214156120f457612107565b80806120ff90615316565b915050612045565b508193505050505b919050565b600960149054906101000a900461ffff1681565b600060026006541415612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790614cd3565b60405180910390fd5b60026006819055506001151561218e61218833612f4f565b84612f7f565b15151461219a57600080fd5b60008360ff16116121aa57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156121e457600080fd5b6001600960189054906101000a900460ff1660ff161461220357600080fd5b601054601154612213919061535f565b421180612250575060105460115461222b919061535f565b421115801561224f5750600f60009054906101000a900460ff1660ff168360ff1611155b5b61225957600080fd5b8260ff16600b5461226a9190614d8e565b341461227557600080fd5b600f60019054906101000a900460ff1660ff1683601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122e09190614e54565b60ff1611156122ee57600080fd5b60005b8360ff168160ff16101561236b576008600081819054906101000a900461ffff168092919061231f90614e8b565b91906101000a81548161ffff021916908361ffff1602179055505061235833600860009054906101000a900461ffff1661ffff16613195565b808061236390614eb6565b9150506122f1565b5082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166123c79190614e54565b92506101000a81548160ff021916908360ff1602179055508260ff16600960168282829054906101000a900461ffff166124019190614ee0565b92506101000a81548161ffff021916908361ffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fb02a303d525c87e1b896b4c7f50e29105063d0201467d5e30bb21f98b34f511e600960189054906101000a900460ff16600860009054906101000a900461ffff16600c5487601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660405161252496959493929190614f4f565b60405180910390a2600860009054906101000a900461ffff1661ffff169050600160068190555092915050565b60006125847fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261257f612a68565b6119ad565b8061259f575061259e6000801b612599612a68565b6119ad565b5b6125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614b14565b60405180910390fd5b426011819055506001600960186101000a81548160ff021916908360ff160217905550601154905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126ce7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec426126c9612a68565b6119ad565b806126e957506126e86000801b6126e3612a68565b6119ad565b5b612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f90614b14565b60405180910390fd5b80600b8190555050565b6127637fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261275e612a68565b6119ad565b8061277e575061277d6000801b612778612a68565b6119ad565b5b6127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b490614b14565b60405180910390fd5b80600c8190555050565b6060600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280357600080fd5b6000600267ffffffffffffffff8111156128205761281f6140ab565b5b60405190808252806020026020018201604052801561284e5781602001602082028036833780820191505090505b509050600061285c84611666565b141561286b578091505061295a565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16816000815181106128cc576128cb614bc6565b5b602002602001019060ff16908160ff1681525050601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168160018151811061294157612940614bc6565b5b602002602001019060ff16908160ff1681525050809150505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129f557506129f482613617565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ae3836110f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b34826129fc565b612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a90615427565b60405180910390fd5b6000612b7e836110f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bc05750612bbf8185612609565b5b80612bfe57508373ffffffffffffffffffffffffffffffffffffffff16612be684610b60565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c27826110f6565b73ffffffffffffffffffffffffffffffffffffffff1614612c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c74906154b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce49061554b565b60405180910390fd5b612cf88383836136f9565b612d03600082612a70565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d53919061556b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612daa919061535f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e698383836136fe565b505050565b612e7882826119ad565b612f4b5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ef0612a68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600081604051602001612f6291906155e7565b604051602081830303815290604052805190602001209050919050565b6000612f8e82600a5485613703565b905092915050565b612fa082826119ad565b156130745760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613019612a68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613083826110f6565b9050613091816000846136f9565b61309c600083612a70565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ec919061556b565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613191816000846136fe565b5050565b6131af82826040518060200160405280600081525061371a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132199061564e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133139190613d24565b60405180910390a3505050565b61332b848484612c07565b61333784848484613775565b613376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336d906156e0565b60405180910390fd5b50505050565b6060600960199054906101000a900460ff161561342557600d80546133a09061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546133cc9061484e565b80156134195780601f106133ee57610100808354040283529160200191613419565b820191906000526020600020905b8154815290600101906020018083116133fc57829003601f168201915b505050505090506134b3565b600e80546134329061484e565b80601f016020809104026020016040519081016040528092919081815260200182805461345e9061484e565b80156134ab5780601f10613480576101008083540402835291602001916134ab565b820191906000526020600020905b81548152906001019060200180831161348e57829003601f168201915b505050505090505b90565b606060008214156134fe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613612565b600082905060005b6000821461353057808061351990615316565b915050600a82613529919061572f565b9150613506565b60008167ffffffffffffffff81111561354c5761354b6140ab565b5b6040519080825280601f01601f19166020018201604052801561357e5781602001600182028036833780820191505090505b5090505b6000851461360b57600182613597919061556b565b9150600a856135a69190615760565b60306135b2919061535f565b60f81b8183815181106135c8576135c7614bc6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613604919061572f565b9450613582565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806136f257506136f1826138fd565b5b9050919050565b505050565b505050565b6000826137108584613967565b1490509392505050565b61372483836139dc565b6137316000848484613775565b613770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613767906156e0565b60405180910390fd5b505050565b60006137968473ffffffffffffffffffffffffffffffffffffffff1661295f565b156138f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137bf612a68565b8786866040518563ffffffff1660e01b81526004016137e194939291906157e6565b6020604051808303816000875af192505050801561381d57506040513d601f19601f8201168201806040525081019061381a9190615847565b60015b6138a0573d806000811461384d576040519150601f19603f3d011682016040523d82523d6000602084013e613852565b606091505b50600081511415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f906156e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138f5565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b84518110156139d157600085828151811061398e5761398d614bc6565b5b602002602001015190508083116139b0576139a98382613bb6565b92506139bd565b6139ba8184613bb6565b92505b5080806139c990615316565b915050613970565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a43906158c0565b60405180910390fd5b613a55816129fc565b15613a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8c9061592c565b60405180910390fd5b613aa1600083836136f9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613af1919061535f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bb2600083836136fe565b5050565b600082600052816020526040600020905092915050565b828054613bd99061484e565b90600052602060002090601f016020900481019282613bfb5760008555613c42565b82601f10613c1457805160ff1916838001178555613c42565b82800160010185558215613c42579182015b82811115613c41578251825591602001919060010190613c26565b5b509050613c4f9190613c53565b5090565b5b80821115613c6c576000816000905550600101613c54565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613cb981613c84565b8114613cc457600080fd5b50565b600081359050613cd681613cb0565b92915050565b600060208284031215613cf257613cf1613c7a565b5b6000613d0084828501613cc7565b91505092915050565b60008115159050919050565b613d1e81613d09565b82525050565b6000602082019050613d396000830184613d15565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d79578082015181840152602081019050613d5e565b83811115613d88576000848401525b50505050565b6000601f19601f8301169050919050565b6000613daa82613d3f565b613db48185613d4a565b9350613dc4818560208601613d5b565b613dcd81613d8e565b840191505092915050565b60006020820190508181036000830152613df28184613d9f565b905092915050565b6000819050919050565b613e0d81613dfa565b8114613e1857600080fd5b50565b600081359050613e2a81613e04565b92915050565b600060208284031215613e4657613e45613c7a565b5b6000613e5484828501613e1b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8882613e5d565b9050919050565b613e9881613e7d565b82525050565b6000602082019050613eb36000830184613e8f565b92915050565b613ec281613e7d565b8114613ecd57600080fd5b50565b600081359050613edf81613eb9565b92915050565b60008060408385031215613efc57613efb613c7a565b5b6000613f0a85828601613ed0565b9250506020613f1b85828601613e1b565b9150509250929050565b600060ff82169050919050565b613f3b81613f25565b82525050565b6000602082019050613f566000830184613f32565b92915050565b613f6581613dfa565b82525050565b6000602082019050613f806000830184613f5c565b92915050565b600080600060608486031215613f9f57613f9e613c7a565b5b6000613fad86828701613ed0565b9350506020613fbe86828701613ed0565b9250506040613fcf86828701613e1b565b9150509250925092565b6000819050919050565b613fec81613fd9565b8114613ff757600080fd5b50565b60008135905061400981613fe3565b92915050565b60006020828403121561402557614024613c7a565b5b600061403384828501613ffa565b91505092915050565b61404581613fd9565b82525050565b6000602082019050614060600083018461403c565b92915050565b6000806040838503121561407d5761407c613c7a565b5b600061408b85828601613ffa565b925050602061409c85828601613ed0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140e382613d8e565b810181811067ffffffffffffffff82111715614102576141016140ab565b5b80604052505050565b6000614115613c70565b905061412182826140da565b919050565b600067ffffffffffffffff821115614141576141406140ab565b5b602082029050602081019050919050565b600080fd5b600061416a61416584614126565b61410b565b9050808382526020820190506020840283018581111561418d5761418c614152565b5b835b818110156141b657806141a28882613ffa565b84526020840193505060208101905061418f565b5050509392505050565b600082601f8301126141d5576141d46140a6565b5b81356141e5848260208601614157565b91505092915050565b6000806040838503121561420557614204613c7a565b5b600061421385828601613ed0565b925050602083013567ffffffffffffffff81111561423457614233613c7f565b5b614240858286016141c0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61427f81613dfa565b82525050565b60006142918383614276565b60208301905092915050565b6000602082019050919050565b60006142b58261424a565b6142bf8185614255565b93506142ca83614266565b8060005b838110156142fb5781516142e28882614285565b97506142ed8361429d565b9250506001810190506142ce565b5085935050505092915050565b6000602082019050818103600083015261432281846142aa565b905092915050565b61433381613f25565b811461433e57600080fd5b50565b6000813590506143508161432a565b92915050565b60006020828403121561436c5761436b613c7a565b5b600061437a84828501614341565b91505092915050565b60006020828403121561439957614398613c7a565b5b60006143a784828501613ed0565b91505092915050565b600080fd5b600067ffffffffffffffff8211156143d0576143cf6140ab565b5b6143d982613d8e565b9050602081019050919050565b82818337600083830152505050565b6000614408614403846143b5565b61410b565b905082815260208101848484011115614424576144236143b0565b5b61442f8482856143e6565b509392505050565b600082601f83011261444c5761444b6140a6565b5b813561445c8482602086016143f5565b91505092915050565b60006020828403121561447b5761447a613c7a565b5b600082013567ffffffffffffffff81111561449957614498613c7f565b5b6144a584828501614437565b91505092915050565b6144b781613d09565b81146144c257600080fd5b50565b6000813590506144d4816144ae565b92915050565b6000602082840312156144f0576144ef613c7a565b5b60006144fe848285016144c5565b91505092915050565b6000806040838503121561451e5761451d613c7a565b5b600061452c85828601613ed0565b925050602061453d858286016144c5565b9150509250929050565b600061ffff82169050919050565b61455e81614547565b82525050565b60006020820190506145796000830184614555565b92915050565b600067ffffffffffffffff82111561459a576145996140ab565b5b6145a382613d8e565b9050602081019050919050565b60006145c36145be8461457f565b61410b565b9050828152602081018484840111156145df576145de6143b0565b5b6145ea8482856143e6565b509392505050565b600082601f830112614607576146066140a6565b5b81356146178482602086016145b0565b91505092915050565b6000806000806080858703121561463a57614639613c7a565b5b600061464887828801613ed0565b945050602061465987828801613ed0565b935050604061466a87828801613e1b565b925050606085013567ffffffffffffffff81111561468b5761468a613c7f565b5b614697878288016145f2565b91505092959194509250565b600080604083850312156146ba576146b9613c7a565b5b60006146c885828601614341565b925050602083013567ffffffffffffffff8111156146e9576146e8613c7f565b5b6146f5858286016141c0565b9150509250929050565b6000806040838503121561471657614715613c7a565b5b600061472485828601613ed0565b925050602061473585828601613ed0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61477481613f25565b82525050565b6000614786838361476b565b60208301905092915050565b6000602082019050919050565b60006147aa8261473f565b6147b4818561474a565b93506147bf8361475b565b8060005b838110156147f05781516147d7888261477a565b97506147e283614792565b9250506001810190506147c3565b5085935050505092915050565b60006020820190508181036000830152614817818461479f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061486657607f821691505b6020821081141561487a5761487961481f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148dc602c83613d4a565b91506148e782614880565b604082019050919050565b6000602082019050818103600083015261490b816148cf565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061496e602183613d4a565b915061497982614912565b604082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614a00603883613d4a565b9150614a0b826149a4565b604082019050919050565b60006020820190508181036000830152614a2f816149f3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a92603183613d4a565b9150614a9d82614a36565b604082019050919050565b60006020820190508181036000830152614ac181614a85565b9050919050565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b6000614afe600b83613d4a565b9150614b0982614ac8565b602082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614b90602f83613d4a565b9150614b9b82614b34565b604082019050919050565b60006020820190508181036000830152614bbf81614b83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614c51602983613d4a565b9150614c5c82614bf5565b604082019050919050565b60006020820190508181036000830152614c8081614c44565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614cbd601f83613d4a565b9150614cc882614c87565b602082019050919050565b60006020820190508181036000830152614cec81614cb0565b9050919050565b7f4e6f74205075626c6963204d696e742053746570000000000000000000000000600082015250565b6000614d29601483613d4a565b9150614d3482614cf3565b602082019050919050565b60006020820190508181036000830152614d5881614d1c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d9982613dfa565b9150614da483613dfa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ddd57614ddc614d5f565b5b828202905092915050565b7f496e636f7272656374207468652073656e642070726963650000000000000000600082015250565b6000614e1e601883613d4a565b9150614e2982614de8565b602082019050919050565b60006020820190508181036000830152614e4d81614e11565b9050919050565b6000614e5f82613f25565b9150614e6a83613f25565b92508260ff03821115614e8057614e7f614d5f565b5b828201905092915050565b6000614e9682614547565b915061ffff821415614eab57614eaa614d5f565b5b600182019050919050565b6000614ec182613f25565b915060ff821415614ed557614ed4614d5f565b5b600182019050919050565b6000614eeb82614547565b9150614ef683614547565b925082821015614f0957614f08614d5f565b5b828203905092915050565b6000819050919050565b6000614f39614f34614f2f84614547565b614f14565b613dfa565b9050919050565b614f4981614f1e565b82525050565b600060c082019050614f646000830189613f32565b614f716020830188614f40565b614f7e6040830187613f5c565b614f8b6060830186613f32565b614f986080830185613f32565b614fa560a0830184613f32565b979650505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061500c602a83613d4a565b915061501782614fb0565b604082019050919050565b6000602082019050818103600083015261503b81614fff565b9050919050565b7f776974686472617746756e64733a206d75737420686176652066756e6473207460008201527f6f20776974686472617700000000000000000000000000000000000000000000602082015250565b600061509e602a83613d4a565b91506150a982615042565b604082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b600060a0820190506150e96000830188613f32565b6150f66020830187613f5c565b6151036040830186613f5c565b6151106060830185614555565b61511d6080830184613f32565b9695505050505050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b600061515d601483613d4a565b915061516882615127565b602082019050919050565b6000602082019050818103600083015261518c81615150565b9050919050565b600081905092915050565b60006151a982613d3f565b6151b38185615193565b93506151c3818560208601613d5b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615205600583615193565b9150615210826151cf565b600582019050919050565b6000615227828561519e565b9150615233828461519e565b915061523e826151f8565b91508190509392505050565b7f516d614b75645769664670354e3251335933724841624754674441393265664760008201527f4236664c6a7676593246627a7068000000000000000000000000000000000000602082015250565b60006152a6602e83615193565b91506152b18261524a565b602e82019050919050565b60006152c8828461519e565b91506152d382615299565b915081905092915050565b60006152e982614547565b91506152f483614547565b92508261ffff0382111561530b5761530a614d5f565b5b828201905092915050565b600061532182613dfa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561535457615353614d5f565b5b600182019050919050565b600061536a82613dfa565b915061537583613dfa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153aa576153a9614d5f565b5b828201905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615411602c83613d4a565b915061541c826153b5565b604082019050919050565b6000602082019050818103600083015261544081615404565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006154a3602583613d4a565b91506154ae82615447565b604082019050919050565b600060208201905081810360008301526154d281615496565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615535602483613d4a565b9150615540826154d9565b604082019050919050565b6000602082019050818103600083015261556481615528565b9050919050565b600061557682613dfa565b915061558183613dfa565b92508282101561559457615593614d5f565b5b828203905092915050565b60008160601b9050919050565b60006155b78261559f565b9050919050565b60006155c9826155ac565b9050919050565b6155e16155dc82613e7d565b6155be565b82525050565b60006155f382846155d0565b60148201915081905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615638601983613d4a565b915061564382615602565b602082019050919050565b600060208201905081810360008301526156678161562b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006156ca603283613d4a565b91506156d58261566e565b604082019050919050565b600060208201905081810360008301526156f9816156bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061573a82613dfa565b915061574583613dfa565b92508261575557615754615700565b5b828204905092915050565b600061576b82613dfa565b915061577683613dfa565b92508261578657615785615700565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006157b882615791565b6157c2818561579c565b93506157d2818560208601613d5b565b6157db81613d8e565b840191505092915050565b60006080820190506157fb6000830187613e8f565b6158086020830186613e8f565b6158156040830185613f5c565b818103606083015261582781846157ad565b905095945050505050565b60008151905061584181613cb0565b92915050565b60006020828403121561585d5761585c613c7a565b5b600061586b84828501615832565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158aa602083613d4a565b91506158b582615874565b602082019050919050565b600060208201905081810360008301526158d98161589d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615916601c83613d4a565b9150615921826158e0565b602082019050919050565b6000602082019050818103600083015261594581615909565b905091905056fea2646970667358221220fafd1ce77d949938cfe8d74525b84f6f028416b0df4b39f4ca6080a377ef68a164736f6c634300080c003368747470733a2f2f746f70776f6c7665732e6d7970696e6174612e636c6f75642f697066732f516d64626d516e71586f426446616f4c6a393962774e61675a33623933626275765435516a554a354a5a7a6833572f68747470733a2f2f746f70776f6c7665732e6d7970696e6174612e636c6f75642f697066732f
Deployed Bytecode
0x6080604052600436106102675760003560e01c806384c99fb411610144578063b88d4fde116100b6578063e0e316391161007a578063e0e3163914610995578063e598eb18146109c5578063e985e9c5146109f0578063edd6ac8414610a2d578063f3b0d1cc14610a56578063fd4fa05a14610a7f57610267565b8063b88d4fde1461089e578063c87b56dd146108c7578063d547741f14610904578063d8a307321461092d578063daf707041461096a57610267565b8063a22cb46511610108578063a22cb4651461078e578063a2542568146107b7578063a36298c7146107e2578063a810a54c1461080d578063a82524b214610836578063b6d5caf01461086157610267565b806384c99fb4146106a75780638faeb78f146106d057806391d14854146106fb57806395d89b4114610738578063a217fddf1461076357610267565b806330d3256f116101dd5780636352211e116101a15780636352211e1461055857806367dce1ed146105955780636817c76c146105c557806370a08231146105f05780637370b13f1461062d5780637cb647591461066a57610267565b806330d3256f1461047557806336568abe146104b257806342842e0e146104db57806342966c68146105045780635056b3091461052d57610267565b806312065fe01161022f57806312065fe01461036557806323b872dd14610390578063248a9ca3146103b9578063263e4f5e146103f65780632a0acc6a146104215780632f2ff15d1461044c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f2cdd6c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613cdc565b610abc565b6040516102a09190613d24565b60405180910390f35b3480156102b557600080fd5b506102be610ace565b6040516102cb9190613dd8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613e30565b610b60565b6040516103089190613e9e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613ee5565b610be5565b005b34801561034657600080fd5b5061034f610cfd565b60405161035c9190613f41565b60405180910390f35b34801561037157600080fd5b5061037a610d10565b6040516103879190613f6b565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613f86565b610d18565b005b3480156103c557600080fd5b506103e060048036038101906103db919061400f565b610d78565b6040516103ed919061404b565b60405180910390f35b34801561040257600080fd5b5061040b610d98565b6040516104189190613d24565b60405180910390f35b34801561042d57600080fd5b50610436610dab565b604051610443919061404b565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190614066565b610dcf565b005b34801561048157600080fd5b5061049c600480360381019061049791906141ee565b610e68565b6040516104a99190613d24565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190614066565b610e84565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613f86565b610f07565b005b34801561051057600080fd5b5061052b60048036038101906105269190613e30565b610f27565b005b34801561053957600080fd5b50610542610fbe565b60405161054f9190614308565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613e30565b6110f6565b60405161058c9190613e9e565b60405180910390f35b6105af60048036038101906105aa9190614356565b6111a8565b6040516105bc9190613f6b565b60405180910390f35b3480156105d157600080fd5b506105da611660565b6040516105e79190613f6b565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190614383565b611666565b6040516106249190613f6b565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190614465565b61171e565b6040516106619190613dd8565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061400f565b611854565b60405161069e919061404b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c991906144da565b6118f2565b005b3480156106dc57600080fd5b506106e561199a565b6040516106f29190613f41565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190614066565b6119ad565b60405161072f9190613d24565b60405180910390f35b34801561074457600080fd5b5061074d611a18565b60405161075a9190613dd8565b60405180910390f35b34801561076f57600080fd5b50610778611aaa565b604051610785919061404b565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190614507565b611ab1565b005b3480156107c357600080fd5b506107cc611ac7565b6040516107d99190613f6b565b60405180910390f35b3480156107ee57600080fd5b506107f7611acd565b6040516108049190614564565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906144da565b611ae1565b005b34801561084257600080fd5b5061084b611c7c565b6040516108589190613f6b565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614356565b611c82565b6040516108959190613f41565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190614620565b611dd3565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613e30565b611e35565b6040516108fb9190613dd8565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190614066565b611efb565b005b34801561093957600080fd5b50610954600480360381019061094f9190614383565b611f94565b6040516109619190614308565b60405180910390f35b34801561097657600080fd5b5061097f612114565b60405161098c9190614564565b60405180910390f35b6109af60048036038101906109aa91906146a3565b612128565b6040516109bc9190613f6b565b60405180910390f35b3480156109d157600080fd5b506109da612551565b6040516109e79190613f6b565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a1291906146ff565b612609565b604051610a249190613d24565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f9190613e30565b61269d565b005b348015610a6257600080fd5b50610a7d6004803603810190610a789190613e30565b612732565b005b348015610a8b57600080fd5b50610aa66004803603810190610aa19190614383565b6127c7565b604051610ab391906147fd565b60405180910390f35b6000610ac782612982565b9050919050565b606060008054610add9061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b099061484e565b8015610b565780601f10610b2b57610100808354040283529160200191610b56565b820191906000526020600020905b815481529060010190602001808311610b3957829003601f168201915b5050505050905090565b6000610b6b826129fc565b610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906148f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf0826110f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890614984565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c80612a68565b73ffffffffffffffffffffffffffffffffffffffff161480610caf5750610cae81610ca9612a68565b612609565b5b610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590614a16565b60405180910390fd5b610cf88383612a70565b505050565b600f60029054906101000a900460ff1681565b600047905090565b610d29610d23612a68565b82612b29565b610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90614aa8565b60405180910390fd5b610d73838383612c07565b505050565b600060076000838152602001908152602001600020600101549050919050565b600960199054906101000a900460ff1681565b7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b610e007fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42610dfb612a68565b6119ad565b80610e1b5750610e1a6000801b610e15612a68565b6119ad565b5b610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190614b14565b60405180910390fd5b610e648282612e6e565b5050565b6000610e7c610e7684612f4f565b83612f7f565b905092915050565b610e8c612a68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090614ba6565b60405180910390fd5b610f038282612f96565b5050565b610f2283838360405180602001604052806000815250611dd3565b505050565b610f587fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42610f53612a68565b6119ad565b80610f735750610f726000801b610f6d612a68565b6119ad565b5b610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990614b14565b60405180910390fd5b610fbb81613078565b50565b60606000600567ffffffffffffffff811115610fdd57610fdc6140ab565b5b60405190808252806020026020018201604052801561100b5781602001602082028036833780820191505090505b509050600960189054906101000a900460ff1660ff168160008151811061103557611034614bc6565b5b602002602001018181525050600c548160018151811061105857611057614bc6565b5b602002602001018181525050600b548160028151811061107b5761107a614bc6565b5b602002602001018181525050600960169054906101000a900461ffff1661ffff16816003815181106110b0576110af614bc6565b5b602002602001018181525050600f60009054906101000a900460ff1660ff16816004815181106110e3576110e2614bc6565b5b6020026020010181815250508091505090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690614c67565b60405180910390fd5b80915050919050565b6000600260065414156111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790614cd3565b60405180910390fd5b60026006819055506002600960189054906101000a900460ff1660ff1614801561121d575060008260ff16115b61125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561129657600080fd5b8160ff16600c546112a79190614d8e565b34146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90614e34565b60405180910390fd5b600960169054906101000a900461ffff1661ffff168260ff16111561130c57600080fd5b600f60009054906101000a900460ff1660ff168260ff16111561132e57600080fd5b600f60029054906101000a900460ff1660ff16601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16846113e69190614e54565b6113f09190614e54565b60ff1611156113fe57600080fd5b60005b8260ff168160ff16101561147b576008600081819054906101000a900461ffff168092919061142f90614e8b565b91906101000a81548161ffff021916908361ffff1602179055505061146833600860009054906101000a900461ffff1661ffff16613195565b808061147390614eb6565b915050611401565b5081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166114d79190614e54565b92506101000a81548160ff021916908360ff1602179055508160ff16600960168282829054906101000a900461ffff166115119190614ee0565b92506101000a81548161ffff021916908361ffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fb02a303d525c87e1b896b4c7f50e29105063d0201467d5e30bb21f98b34f511e600960189054906101000a900460ff16600860009054906101000a900461ffff16600c5486601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660405161163496959493929190614f4f565b60405180910390a2600860009054906101000a900461ffff1661ffff1690506001600681905550919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90615022565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606117517fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261174c612a68565b6119ad565b8061176c575061176b6000801b611766612a68565b6119ad565b5b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290614b14565b60405180910390fd5b81600d90805190602001906117c1929190613bcd565b50600d80546117cf9061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546117fb9061484e565b80156118485780601f1061181d57610100808354040283529160200191611848565b820191906000526020600020905b81548152906001019060200180831161182b57829003601f168201915b50505050509050919050565b60006118877fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611882612a68565b6119ad565b806118a257506118a16000801b61189c612a68565b6119ad565b5b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890614b14565b60405180910390fd5b81600a81905550600a549050919050565b6119237fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261191e612a68565b6119ad565b8061193e575061193d6000801b611938612a68565b6119ad565b5b61197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614b14565b60405180910390fd5b80600960196101000a81548160ff02191690831515021790555050565b600960189054906101000a900460ff1681565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611a279061484e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a539061484e565b8015611aa05780601f10611a7557610100808354040283529160200191611aa0565b820191906000526020600020905b815481529060010190602001808311611a8357829003601f168201915b5050505050905090565b6000801b81565b611ac3611abc612a68565b83836131b3565b5050565b600b5481565b600960169054906101000a900461ffff1681565b611b127fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611b0d612a68565b6119ad565b80611b2d5750611b2c6000801b611b27612a68565b6119ad565b5b611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390614b14565b60405180910390fd5b6000471415611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906150b4565b60405180910390fd5b60004790508115611c2957600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611c23573d6000803e3d6000fd5b50611c78565b611c31612a68565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611c76573d6000803e3d6000fd5b505b5050565b60115481565b6000611cb57fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611cb0612a68565b6119ad565b80611cd05750611ccf6000801b611cca612a68565b6119ad565b5b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690614b14565b60405180910390fd5b60008260ff1610158015611d27575060048260ff1611155b611d3057600080fd5b81600960186101000a81548160ff021916908360ff1602179055507fd88f50cfec4b7e82105b718357612e30193264650e08332afca4350c420123c6600960189054906101000a900460ff16600c54600b54600960169054906101000a900461ffff16600f60009054906101000a900460ff16604051611db49594939291906150d4565b60405180910390a1600960189054906101000a900460ff169050919050565b611de4611dde612a68565b83612b29565b611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90614aa8565b60405180910390fd5b611e2f84848484613320565b50505050565b6060611e40826129fc565b611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690615173565b60405180910390fd5b600960199054906101000a900460ff1615611ecc57611e9c61337c565b611ea5836134b6565b604051602001611eb692919061521b565b6040516020818303038152906040529050611ef6565b611ed461337c565b604051602001611ee491906152bc565b60405160208183030381529060405290505b919050565b611f2c7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42611f27612a68565b6119ad565b80611f475750611f466000801b611f41612a68565b6119ad565b5b611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614b14565b60405180910390fd5b611f908282612f96565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd057600080fd5b6000611fdb83611666565b905060008167ffffffffffffffff811115611ff957611ff86140ab565b5b6040519080825280602002602001820160405280156120275781602001602082028036833780820191505090505b509050600082141561203d57809250505061210f565b600080600190505b6001600860009054906101000a900461ffff1661206291906152de565b61ffff1681101561210757612076816129fc565b80156120b557508573ffffffffffffffffffffffffffffffffffffffff1661209d826110f6565b73ffffffffffffffffffffffffffffffffffffffff16145b156120e757808383806120c790615316565b9450815181106120da576120d9614bc6565b5b6020026020010181815250505b838214156120f457612107565b80806120ff90615316565b915050612045565b508193505050505b919050565b600960149054906101000a900461ffff1681565b600060026006541415612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790614cd3565b60405180910390fd5b60026006819055506001151561218e61218833612f4f565b84612f7f565b15151461219a57600080fd5b60008360ff16116121aa57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156121e457600080fd5b6001600960189054906101000a900460ff1660ff161461220357600080fd5b601054601154612213919061535f565b421180612250575060105460115461222b919061535f565b421115801561224f5750600f60009054906101000a900460ff1660ff168360ff1611155b5b61225957600080fd5b8260ff16600b5461226a9190614d8e565b341461227557600080fd5b600f60019054906101000a900460ff1660ff1683601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122e09190614e54565b60ff1611156122ee57600080fd5b60005b8360ff168160ff16101561236b576008600081819054906101000a900461ffff168092919061231f90614e8b565b91906101000a81548161ffff021916908361ffff1602179055505061235833600860009054906101000a900461ffff1661ffff16613195565b808061236390614eb6565b9150506122f1565b5082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166123c79190614e54565b92506101000a81548160ff021916908360ff1602179055508260ff16600960168282829054906101000a900461ffff166124019190614ee0565b92506101000a81548161ffff021916908361ffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fb02a303d525c87e1b896b4c7f50e29105063d0201467d5e30bb21f98b34f511e600960189054906101000a900460ff16600860009054906101000a900461ffff16600c5487601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660405161252496959493929190614f4f565b60405180910390a2600860009054906101000a900461ffff1661ffff169050600160068190555092915050565b60006125847fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261257f612a68565b6119ad565b8061259f575061259e6000801b612599612a68565b6119ad565b5b6125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614b14565b60405180910390fd5b426011819055506001600960186101000a81548160ff021916908360ff160217905550601154905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126ce7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec426126c9612a68565b6119ad565b806126e957506126e86000801b6126e3612a68565b6119ad565b5b612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f90614b14565b60405180910390fd5b80600b8190555050565b6127637fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4261275e612a68565b6119ad565b8061277e575061277d6000801b612778612a68565b6119ad565b5b6127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b490614b14565b60405180910390fd5b80600c8190555050565b6060600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280357600080fd5b6000600267ffffffffffffffff8111156128205761281f6140ab565b5b60405190808252806020026020018201604052801561284e5781602001602082028036833780820191505090505b509050600061285c84611666565b141561286b578091505061295a565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16816000815181106128cc576128cb614bc6565b5b602002602001019060ff16908160ff1681525050601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168160018151811061294157612940614bc6565b5b602002602001019060ff16908160ff1681525050809150505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129f557506129f482613617565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ae3836110f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b34826129fc565b612b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a90615427565b60405180910390fd5b6000612b7e836110f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bc05750612bbf8185612609565b5b80612bfe57508373ffffffffffffffffffffffffffffffffffffffff16612be684610b60565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c27826110f6565b73ffffffffffffffffffffffffffffffffffffffff1614612c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c74906154b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce49061554b565b60405180910390fd5b612cf88383836136f9565b612d03600082612a70565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d53919061556b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612daa919061535f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e698383836136fe565b505050565b612e7882826119ad565b612f4b5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ef0612a68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600081604051602001612f6291906155e7565b604051602081830303815290604052805190602001209050919050565b6000612f8e82600a5485613703565b905092915050565b612fa082826119ad565b156130745760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613019612a68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613083826110f6565b9050613091816000846136f9565b61309c600083612a70565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ec919061556b565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613191816000846136fe565b5050565b6131af82826040518060200160405280600081525061371a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132199061564e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133139190613d24565b60405180910390a3505050565b61332b848484612c07565b61333784848484613775565b613376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336d906156e0565b60405180910390fd5b50505050565b6060600960199054906101000a900460ff161561342557600d80546133a09061484e565b80601f01602080910402602001604051908101604052809291908181526020018280546133cc9061484e565b80156134195780601f106133ee57610100808354040283529160200191613419565b820191906000526020600020905b8154815290600101906020018083116133fc57829003601f168201915b505050505090506134b3565b600e80546134329061484e565b80601f016020809104026020016040519081016040528092919081815260200182805461345e9061484e565b80156134ab5780601f10613480576101008083540402835291602001916134ab565b820191906000526020600020905b81548152906001019060200180831161348e57829003601f168201915b505050505090505b90565b606060008214156134fe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613612565b600082905060005b6000821461353057808061351990615316565b915050600a82613529919061572f565b9150613506565b60008167ffffffffffffffff81111561354c5761354b6140ab565b5b6040519080825280601f01601f19166020018201604052801561357e5781602001600182028036833780820191505090505b5090505b6000851461360b57600182613597919061556b565b9150600a856135a69190615760565b60306135b2919061535f565b60f81b8183815181106135c8576135c7614bc6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613604919061572f565b9450613582565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806136f257506136f1826138fd565b5b9050919050565b505050565b505050565b6000826137108584613967565b1490509392505050565b61372483836139dc565b6137316000848484613775565b613770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613767906156e0565b60405180910390fd5b505050565b60006137968473ffffffffffffffffffffffffffffffffffffffff1661295f565b156138f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137bf612a68565b8786866040518563ffffffff1660e01b81526004016137e194939291906157e6565b6020604051808303816000875af192505050801561381d57506040513d601f19601f8201168201806040525081019061381a9190615847565b60015b6138a0573d806000811461384d576040519150601f19603f3d011682016040523d82523d6000602084013e613852565b606091505b50600081511415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f906156e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138f5565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b84518110156139d157600085828151811061398e5761398d614bc6565b5b602002602001015190508083116139b0576139a98382613bb6565b92506139bd565b6139ba8184613bb6565b92505b5080806139c990615316565b915050613970565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a43906158c0565b60405180910390fd5b613a55816129fc565b15613a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8c9061592c565b60405180910390fd5b613aa1600083836136f9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613af1919061535f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bb2600083836136fe565b5050565b600082600052816020526040600020905092915050565b828054613bd99061484e565b90600052602060002090601f016020900481019282613bfb5760008555613c42565b82601f10613c1457805160ff1916838001178555613c42565b82800160010185558215613c42579182015b82811115613c41578251825591602001919060010190613c26565b5b509050613c4f9190613c53565b5090565b5b80821115613c6c576000816000905550600101613c54565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613cb981613c84565b8114613cc457600080fd5b50565b600081359050613cd681613cb0565b92915050565b600060208284031215613cf257613cf1613c7a565b5b6000613d0084828501613cc7565b91505092915050565b60008115159050919050565b613d1e81613d09565b82525050565b6000602082019050613d396000830184613d15565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d79578082015181840152602081019050613d5e565b83811115613d88576000848401525b50505050565b6000601f19601f8301169050919050565b6000613daa82613d3f565b613db48185613d4a565b9350613dc4818560208601613d5b565b613dcd81613d8e565b840191505092915050565b60006020820190508181036000830152613df28184613d9f565b905092915050565b6000819050919050565b613e0d81613dfa565b8114613e1857600080fd5b50565b600081359050613e2a81613e04565b92915050565b600060208284031215613e4657613e45613c7a565b5b6000613e5484828501613e1b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8882613e5d565b9050919050565b613e9881613e7d565b82525050565b6000602082019050613eb36000830184613e8f565b92915050565b613ec281613e7d565b8114613ecd57600080fd5b50565b600081359050613edf81613eb9565b92915050565b60008060408385031215613efc57613efb613c7a565b5b6000613f0a85828601613ed0565b9250506020613f1b85828601613e1b565b9150509250929050565b600060ff82169050919050565b613f3b81613f25565b82525050565b6000602082019050613f566000830184613f32565b92915050565b613f6581613dfa565b82525050565b6000602082019050613f806000830184613f5c565b92915050565b600080600060608486031215613f9f57613f9e613c7a565b5b6000613fad86828701613ed0565b9350506020613fbe86828701613ed0565b9250506040613fcf86828701613e1b565b9150509250925092565b6000819050919050565b613fec81613fd9565b8114613ff757600080fd5b50565b60008135905061400981613fe3565b92915050565b60006020828403121561402557614024613c7a565b5b600061403384828501613ffa565b91505092915050565b61404581613fd9565b82525050565b6000602082019050614060600083018461403c565b92915050565b6000806040838503121561407d5761407c613c7a565b5b600061408b85828601613ffa565b925050602061409c85828601613ed0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140e382613d8e565b810181811067ffffffffffffffff82111715614102576141016140ab565b5b80604052505050565b6000614115613c70565b905061412182826140da565b919050565b600067ffffffffffffffff821115614141576141406140ab565b5b602082029050602081019050919050565b600080fd5b600061416a61416584614126565b61410b565b9050808382526020820190506020840283018581111561418d5761418c614152565b5b835b818110156141b657806141a28882613ffa565b84526020840193505060208101905061418f565b5050509392505050565b600082601f8301126141d5576141d46140a6565b5b81356141e5848260208601614157565b91505092915050565b6000806040838503121561420557614204613c7a565b5b600061421385828601613ed0565b925050602083013567ffffffffffffffff81111561423457614233613c7f565b5b614240858286016141c0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61427f81613dfa565b82525050565b60006142918383614276565b60208301905092915050565b6000602082019050919050565b60006142b58261424a565b6142bf8185614255565b93506142ca83614266565b8060005b838110156142fb5781516142e28882614285565b97506142ed8361429d565b9250506001810190506142ce565b5085935050505092915050565b6000602082019050818103600083015261432281846142aa565b905092915050565b61433381613f25565b811461433e57600080fd5b50565b6000813590506143508161432a565b92915050565b60006020828403121561436c5761436b613c7a565b5b600061437a84828501614341565b91505092915050565b60006020828403121561439957614398613c7a565b5b60006143a784828501613ed0565b91505092915050565b600080fd5b600067ffffffffffffffff8211156143d0576143cf6140ab565b5b6143d982613d8e565b9050602081019050919050565b82818337600083830152505050565b6000614408614403846143b5565b61410b565b905082815260208101848484011115614424576144236143b0565b5b61442f8482856143e6565b509392505050565b600082601f83011261444c5761444b6140a6565b5b813561445c8482602086016143f5565b91505092915050565b60006020828403121561447b5761447a613c7a565b5b600082013567ffffffffffffffff81111561449957614498613c7f565b5b6144a584828501614437565b91505092915050565b6144b781613d09565b81146144c257600080fd5b50565b6000813590506144d4816144ae565b92915050565b6000602082840312156144f0576144ef613c7a565b5b60006144fe848285016144c5565b91505092915050565b6000806040838503121561451e5761451d613c7a565b5b600061452c85828601613ed0565b925050602061453d858286016144c5565b9150509250929050565b600061ffff82169050919050565b61455e81614547565b82525050565b60006020820190506145796000830184614555565b92915050565b600067ffffffffffffffff82111561459a576145996140ab565b5b6145a382613d8e565b9050602081019050919050565b60006145c36145be8461457f565b61410b565b9050828152602081018484840111156145df576145de6143b0565b5b6145ea8482856143e6565b509392505050565b600082601f830112614607576146066140a6565b5b81356146178482602086016145b0565b91505092915050565b6000806000806080858703121561463a57614639613c7a565b5b600061464887828801613ed0565b945050602061465987828801613ed0565b935050604061466a87828801613e1b565b925050606085013567ffffffffffffffff81111561468b5761468a613c7f565b5b614697878288016145f2565b91505092959194509250565b600080604083850312156146ba576146b9613c7a565b5b60006146c885828601614341565b925050602083013567ffffffffffffffff8111156146e9576146e8613c7f565b5b6146f5858286016141c0565b9150509250929050565b6000806040838503121561471657614715613c7a565b5b600061472485828601613ed0565b925050602061473585828601613ed0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61477481613f25565b82525050565b6000614786838361476b565b60208301905092915050565b6000602082019050919050565b60006147aa8261473f565b6147b4818561474a565b93506147bf8361475b565b8060005b838110156147f05781516147d7888261477a565b97506147e283614792565b9250506001810190506147c3565b5085935050505092915050565b60006020820190508181036000830152614817818461479f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061486657607f821691505b6020821081141561487a5761487961481f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148dc602c83613d4a565b91506148e782614880565b604082019050919050565b6000602082019050818103600083015261490b816148cf565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061496e602183613d4a565b915061497982614912565b604082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614a00603883613d4a565b9150614a0b826149a4565b604082019050919050565b60006020820190508181036000830152614a2f816149f3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a92603183613d4a565b9150614a9d82614a36565b604082019050919050565b60006020820190508181036000830152614ac181614a85565b9050919050565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b6000614afe600b83613d4a565b9150614b0982614ac8565b602082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614b90602f83613d4a565b9150614b9b82614b34565b604082019050919050565b60006020820190508181036000830152614bbf81614b83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614c51602983613d4a565b9150614c5c82614bf5565b604082019050919050565b60006020820190508181036000830152614c8081614c44565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614cbd601f83613d4a565b9150614cc882614c87565b602082019050919050565b60006020820190508181036000830152614cec81614cb0565b9050919050565b7f4e6f74205075626c6963204d696e742053746570000000000000000000000000600082015250565b6000614d29601483613d4a565b9150614d3482614cf3565b602082019050919050565b60006020820190508181036000830152614d5881614d1c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d9982613dfa565b9150614da483613dfa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ddd57614ddc614d5f565b5b828202905092915050565b7f496e636f7272656374207468652073656e642070726963650000000000000000600082015250565b6000614e1e601883613d4a565b9150614e2982614de8565b602082019050919050565b60006020820190508181036000830152614e4d81614e11565b9050919050565b6000614e5f82613f25565b9150614e6a83613f25565b92508260ff03821115614e8057614e7f614d5f565b5b828201905092915050565b6000614e9682614547565b915061ffff821415614eab57614eaa614d5f565b5b600182019050919050565b6000614ec182613f25565b915060ff821415614ed557614ed4614d5f565b5b600182019050919050565b6000614eeb82614547565b9150614ef683614547565b925082821015614f0957614f08614d5f565b5b828203905092915050565b6000819050919050565b6000614f39614f34614f2f84614547565b614f14565b613dfa565b9050919050565b614f4981614f1e565b82525050565b600060c082019050614f646000830189613f32565b614f716020830188614f40565b614f7e6040830187613f5c565b614f8b6060830186613f32565b614f986080830185613f32565b614fa560a0830184613f32565b979650505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061500c602a83613d4a565b915061501782614fb0565b604082019050919050565b6000602082019050818103600083015261503b81614fff565b9050919050565b7f776974686472617746756e64733a206d75737420686176652066756e6473207460008201527f6f20776974686472617700000000000000000000000000000000000000000000602082015250565b600061509e602a83613d4a565b91506150a982615042565b604082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b600060a0820190506150e96000830188613f32565b6150f66020830187613f5c565b6151036040830186613f5c565b6151106060830185614555565b61511d6080830184613f32565b9695505050505050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b600061515d601483613d4a565b915061516882615127565b602082019050919050565b6000602082019050818103600083015261518c81615150565b9050919050565b600081905092915050565b60006151a982613d3f565b6151b38185615193565b93506151c3818560208601613d5b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615205600583615193565b9150615210826151cf565b600582019050919050565b6000615227828561519e565b9150615233828461519e565b915061523e826151f8565b91508190509392505050565b7f516d614b75645769664670354e3251335933724841624754674441393265664760008201527f4236664c6a7676593246627a7068000000000000000000000000000000000000602082015250565b60006152a6602e83615193565b91506152b18261524a565b602e82019050919050565b60006152c8828461519e565b91506152d382615299565b915081905092915050565b60006152e982614547565b91506152f483614547565b92508261ffff0382111561530b5761530a614d5f565b5b828201905092915050565b600061532182613dfa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561535457615353614d5f565b5b600182019050919050565b600061536a82613dfa565b915061537583613dfa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153aa576153a9614d5f565b5b828201905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615411602c83613d4a565b915061541c826153b5565b604082019050919050565b6000602082019050818103600083015261544081615404565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006154a3602583613d4a565b91506154ae82615447565b604082019050919050565b600060208201905081810360008301526154d281615496565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615535602483613d4a565b9150615540826154d9565b604082019050919050565b6000602082019050818103600083015261556481615528565b9050919050565b600061557682613dfa565b915061558183613dfa565b92508282101561559457615593614d5f565b5b828203905092915050565b60008160601b9050919050565b60006155b78261559f565b9050919050565b60006155c9826155ac565b9050919050565b6155e16155dc82613e7d565b6155be565b82525050565b60006155f382846155d0565b60148201915081905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615638601983613d4a565b915061564382615602565b602082019050919050565b600060208201905081810360008301526156678161562b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006156ca603283613d4a565b91506156d58261566e565b604082019050919050565b600060208201905081810360008301526156f9816156bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061573a82613dfa565b915061574583613dfa565b92508261575557615754615700565b5b828204905092915050565b600061576b82613dfa565b915061577683613dfa565b92508261578657615785615700565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006157b882615791565b6157c2818561579c565b93506157d2818560208601613d5b565b6157db81613d8e565b840191505092915050565b60006080820190506157fb6000830187613e8f565b6158086020830186613e8f565b6158156040830185613f5c565b818103606083015261582781846157ad565b905095945050505050565b60008151905061584181613cb0565b92915050565b60006020828403121561585d5761585c613c7a565b5b600061586b84828501615832565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158aa602083613d4a565b91506158b582615874565b602082019050919050565b600060208201905081810360008301526158d98161589d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615916601c83613d4a565b9150615921826158e0565b602082019050919050565b6000602082019050818103600083015261594581615909565b905091905056fea2646970667358221220fafd1ce77d949938cfe8d74525b84f6f028416b0df4b39f4ca6080a377ef68a164736f6c634300080c0033
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.