Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 l4yer
Holders
114
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
11 l4yerLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
l4yer1
Compiler Version
v0.8.18+commit.87f61d96
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/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract l4yer1 is ERC721, Ownable { uint public constant MAX_TOKENS = 6969; uint public CUT_SUPPLY = 6969; uint public numTokensMinted; bool public saleActive; address private constant claim_add = 0x0F6979e74E4aF9aBeD72298D818A2434fE0b95B6; mapping(uint256 => bool) public dgtokenIDClaimed; mapping(uint256 => bool) private tokenIdToFrozen; constructor() ERC721("l4yer#1", "l4yer") {} function freezeMetadata(uint256 tokenId) public { require(_exists(tokenId)); require(ownerOf(tokenId) == msg.sender); tokenIdToFrozen[tokenId] = !tokenIdToFrozen[tokenId]; } function changeCutSupply(uint256 _CutSupply) external onlyOwner { CUT_SUPPLY = _CutSupply; } function mint(uint256[] calldata _tokenIDs) external { uint256 numberOfTokens = _tokenIDs.length; require(saleActive); require(numTokensMinted + numberOfTokens <= MAX_TOKENS); require(numTokensMinted + numberOfTokens <= CUT_SUPPLY); IERC721 ExternalERC721FreeClaimContract = IERC721(claim_add); for (uint256 i = 0; i < numberOfTokens; i++) { require(ExternalERC721FreeClaimContract.ownerOf(_tokenIDs[i]) == msg.sender); require(!dgtokenIDClaimed[_tokenIDs[i]]); dgtokenIDClaimed[_tokenIDs[i]] = true; numTokensMinted = numTokensMinted + 1; _safeMint(msg.sender, _tokenIDs[i]); } } function startSale() external onlyOwner { require(saleActive == false); saleActive = true; } function stopSale() external onlyOwner { require(saleActive == true); saleActive = false; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId)); if (!tokenIdToFrozen[tokenId]) { string memory baseSvg = string(abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="800" height="800" style="background-color:', gRC(tokenId, 69), '" viewBox="0 0 800 800"><animate attributeName="fill" values="', gRC(tokenId, 1618), ';', gRC(tokenId, 161), '" dur="0.4s" repeatCount="indefinite" /><path transform="scale(2)" d="M144 67c-14 16-16 21-14 31 6 26 4 39-7 44-9 4-16 24-21 57-2 22-15 54-21 59-12 7-22 35-14 41l17 14c9 8 28 5 28-5 0-3 4-10 8-15l9-11-3 14-9 40c-7 32-6 44 5 50l10 6c4 5 51 7 55 3 2-2 8-2 15 2 8 3 15 3 35 0 13-3 25-5 26-3 8 7 17-8 17-28 0-16 1-21 5-20 5 2 19-15 46-56 11-18 11-54-1-76-3-7-6-15-6-19 0-3-4-9-8-12s-9-12-10-22c-4-20-5-22-38-31-31-8-36-12-36-27 0-51-55-73-88-36m52-3c10 5 18 22 22 43 3 21 12 27 47 37 24 7 25 7 28 22 2 9 6 19 9 22l6 11c0 4 9 27 16 42 8 14-2 41-27 74l-10 14-12-13c-13-15-24-15-26 0-1 7 2 13 9 20 15 14 15 44-1 44l-26 4c-12 4-17 3-27-3-10-5-14-6-20-2-7 5-50 1-55-5-2-1 0-14 3-29 14-70 3-97-24-60l-13 17-10-7-9-6 13-19c19-28 22-37 27-64 8-53 9-54 17-55 11-1 17-25 13-49-4-27 27-51 50-38m2 68c-4 4-16 11-27 14-35 12-44 54-22 98 23 45 55 28 55-30 0-23 6-48 17-69 9-18-9-29-23-13m-2 39c-4 12-8 32-8 45 0 14-2 26-7 33l-7 11-11-22c-19-38-13-69 13-78 9-3 17-7 18-9 8-11 8 1 2 20m31 28c-18 19-14 27 15 27h24v-18c0-24-20-28-39-9m29 7c0 3-1 6-3 6l-13 3c-10 2-10 2-2-6 8-10 18-12 18-3m14 49c-13 31-1 56 18 39 10-9 15-40 8-48-9-11-19-7-26 9m16 12c-3 10-10 22-10 16 0-4 9-27 10-27v11" stroke="', gRC(tokenId, 235), '" stroke-width="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId))) % 5 + 1) ,'"/><defs><path id="randomPath" d="M50,50 L150,50 L150,250 L50,250 Z"/><path id="zigzag" d="M170,419 L220,150 L270,251 L420,351 L500,153 210,353 L334,455 L220,255 L195,55 Z"/></defs>')); IERC721 otherERC721 = IERC721(claim_add); uint256 balance = otherERC721.balanceOf(ownerOf(tokenId)); for (uint256 i = 1; i < balance+1; i++) { uint rand1 = uint(keccak256(abi.encodePacked(block.number, tokenId, i))) % 100 + 1; string memory gradientId = gRG(tokenId, i); if (rand1 % 4 == 0 || balance == 26) { uint256 i1=i; uint256 tokenId1=tokenId; baseSvg = string(abi.encodePacked(baseSvg, '<defs>', '<radialGradient id="', gradientId, '">', '<stop offset="0%" stop-color="', gRC(tokenId1, i1), '"/>', '<stop offset="100%" stop-color="', gRC(tokenId1, i1 + 49), '"/>', '</radialGradient>', '</defs>', '<circle cx="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i1 + 25))) % 600 + 100), '" cy="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i1 + 5))) % 600 + 100), '" r="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i1 + 10))) % 50 + 5), '" fill="url(#', gradientId, ')" >', '<animate attributeName="opacity" values="0;1;0" dur="', getDur(tokenId1, i1), 's" repeatCount="indefinite" />', '<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="360" to="0 400 400" dur="', getDur(tokenId1, i1), 's" repeatCount="indefinite"/>', '<animateMotion dur="', getDur(tokenId1, i1), 's" repeatCount="indefinite"><mpath href="#zigzag"/></animateMotion>', '</circle>' )); } else if (rand1 % 4 == 1 || balance == 75){ uint tokenId1 = tokenId; baseSvg = string(abi.encodePacked(baseSvg, '<rect width="75" height="75" ><animate attributeName="fill" values="', gRC(tokenId, i), '" dur="0.4s" repeatCount="indefinite" />', '<animate attributeName="opacity" values="0;', getDur(tokenId1, i), ';0" dur="0.1s" repeatCount="indefinite" />', '<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="360" to="0 ', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i + 15))) % 200 + 10), ' ', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i + 50))) % 300 + 10), '" dur="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i))) % 10 + 1), 's" repeatCount="indefinite"/>', '<animateMotion dur="', getDur(tokenId1, i), 's" repeatCount="indefinite"><mpath href="#zigzag"></mpath></animateMotion>', '</rect>' )); } else if (rand1 == 69 || rand1 > 90 || balance == 150){ baseSvg = string(abi.encodePacked(baseSvg, '<path transform="scale(2)" d="m396 372c-1 1-4 5-6 7-1 1-2 2-3 2-3 1-5 5-3 6 0 0 1 0 1 0 0 0 1 0 1 0 1 1 2 1 4 0 2-1 1 0-1 3-4 6-6 8-9 7-2 0-3-1-3-3 0-2-1-1-1 1 0 5 8 5 12 0 3-4 9-14 9-15 0-1-1-1-2 0 0 0-1 1-1 1-1 0-3 2-4 4-2 3-3 3-2 0 3-6 8-12 10-12 1 0 1 0 1-1 0-1-2-1-2.861-.05" stroke="', gRC(tokenId, 168), '"/>' )); } else { uint tokenId1 = tokenId; baseSvg = string(abi.encodePacked(baseSvg, '<defs><linearGradient id="', gradientId, '" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="', gRC(tokenId, i), '"/><stop offset="100%" stop-color="', gRC(tokenId, i+10), '"/></linearGradient></defs>', '<rect x="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i))) % 600 + 100), '" y="', uint2str(uint(keccak256(abi.encodePacked(block.number, tokenId1, i + 5))) % 600 + 100), '" width = "50" height = "50" fill="url(#', gradientId, ')" rx="15">', '<animate attributeName="opacity" values="0;1;0" dur="0.1s" repeatCount="indefinite" /></rect>' )); } } baseSvg = string(abi.encodePacked(baseSvg, '</svg>')); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "NFT #', uint2str(tokenId), '", "description": "An on-chain generated NFT with random shapes and colors, animated!", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(baseSvg)), '", "attributes":[{"trait_type":"numberOfShapes", "value":"', uint2str(balance), '"}]}' )))); return string(abi.encodePacked('data:application/json;base64,', json)); } else{ return super.tokenURI(tokenId); } } function getDur(uint tokenId, uint i) internal view returns (string memory) { uint duration = uint(keccak256(abi.encodePacked(block.number, tokenId, i))) % 10 + 1; return uint2str(duration); } function gRG(uint tokenId, uint index) internal view returns (string memory) { bytes32 hash = keccak256(abi.encodePacked(block.number, tokenId, index)); string memory prefix = "gradient"; string memory suffix = uint2str(uint(hash) % 1000000); return string(abi.encodePacked(prefix, suffix)); } function gRC(uint256 tokenId, uint256 index) internal view returns (string memory) { uint256 rand = uint256(keccak256(abi.encodePacked(block.timestamp, tokenId, index))); uint256 r = rand % 256; uint256 g = (rand / 256) % 256; uint256 b = (rand / 256 / 256) % 256; return string(abi.encodePacked("rgb(", uint2str(r), ",", uint2str(g), ",", uint2str(b), ")")); } function uint2str(uint _i) internal pure returns (string memory str) { if (_i == 0) { return "0"; } uint j = _i; uint length; while (j != 0) { length++; j /= 10; } bytes memory bstr = new bytes(length); uint k = length; while (_i != 0) { bstr[--k] = bytes1(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (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: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); 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 token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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/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.8.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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-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 (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 (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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CUT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_CutSupply","type":"uint256"}],"name":"changeCutSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dgtokenIDClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIDs","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052611b396007553480156200001757600080fd5b506040518060400160405280600781526020017f6c347965722331000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f6c34796572000000000000000000000000000000000000000000000000000000815250816000908162000095919062000418565b508060019081620000a7919062000418565b505050620000ca620000be620000d060201b60201c565b620000d860201b60201c565b620004ff565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022057607f821691505b602082108103620002365762000235620001d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000261565b620002ac868362000261565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f9620002f3620002ed84620002c4565b620002ce565b620002c4565b9050919050565b6000819050919050565b6200031583620002d8565b6200032d620003248262000300565b8484546200026e565b825550505050565b600090565b6200034462000335565b620003518184846200030a565b505050565b5b8181101562000379576200036d6000826200033a565b60018101905062000357565b5050565b601f821115620003c85762000392816200023c565b6200039d8462000251565b81016020851015620003ad578190505b620003c5620003bc8562000251565b83018262000356565b50505b505050565b600082821c905092915050565b6000620003ed60001984600802620003cd565b1980831691505092915050565b6000620004088383620003da565b9150826002028217905092915050565b62000423826200019e565b67ffffffffffffffff8111156200043f576200043e620001a9565b5b6200044b825462000207565b620004588282856200037d565b600060209050601f8311600181146200049057600084156200047b578287015190505b620004878582620003fa565b865550620004f7565b601f198416620004a0866200023c565b60005b82811015620004ca57848901518255600182019150602085019450602081019050620004a3565b86831015620004ea5784890151620004e6601f891682620003da565b8355505b6001600288020188555050505b505050505050565b615f8e806200050f6000396000f3fe60806040526004361061019c5760003560e01c806368428a1b116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c51461057f578063f2fde38b146105bc578063f47c84c5146105e5578063f8e93ef9146106105761019c565b8063b88d4fde14610502578063c87b56dd1461052b578063e36b0b37146105685761019c565b80638da5cb5b116100c65780638da5cb5b1461046c57806395d89b4114610497578063a22cb465146104c2578063b66a0e5d146104eb5761019c565b806368428a1b146103ed57806370a0823114610418578063715018a6146104555761019c565b80632a4871dc1161015957806342842e0e1161013357806342842e0e146103215780634dcf6ad61461034a57806359746cf0146103735780636352211e146103b05761019c565b80632a4871dc146102c35780633ccfd60b146102ec5780634230baee146102f65761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780630e1ed15f1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612cce565b610639565b6040516101d59190612d16565b60405180910390f35b3480156101ea57600080fd5b506101f361071b565b6040516102009190612dc1565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e19565b6107ad565b60405161023d9190612e87565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612ece565b6107f3565b005b34801561027b57600080fd5b5061028461090a565b6040516102919190612f1d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612f38565b610910565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612e19565b610970565b005b6102f4610982565b005b34801561030257600080fd5b5061030b6109da565b6040516103189190612f1d565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612f38565b6109e0565b005b34801561035657600080fd5b50610371600480360381019061036c9190612e19565b610a00565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612e19565b610aa1565b6040516103a79190612d16565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612e19565b610ac1565b6040516103e49190612e87565b60405180910390f35b3480156103f957600080fd5b50610402610b47565b60405161040f9190612d16565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612f8b565b610b5a565b60405161044c9190612f1d565b60405180910390f35b34801561046157600080fd5b5061046a610c11565b005b34801561047857600080fd5b50610481610c25565b60405161048e9190612e87565b60405180910390f35b3480156104a357600080fd5b506104ac610c4f565b6040516104b99190612dc1565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612fe4565b610ce1565b005b3480156104f757600080fd5b50610500610cf7565b005b34801561050e57600080fd5b5061052960048036038101906105249190613159565b610d3c565b005b34801561053757600080fd5b50610552600480360381019061054d9190612e19565b610d9e565b60405161055f9190612dc1565b60405180910390f35b34801561057457600080fd5b5061057d6114b5565b005b34801561058b57600080fd5b506105a660048036038101906105a191906131dc565b6114fa565b6040516105b39190612d16565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612f8b565b61158e565b005b3480156105f157600080fd5b506105fa611611565b6040516106079190612f1d565b60405180910390f35b34801561061c57600080fd5b506106376004803603810190610632919061327c565b611617565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610714575061071382611839565b5b9050919050565b60606000805461072a906132f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610756906132f8565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107b8826118a3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fe82610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108659061339b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088d6118ee565b73ffffffffffffffffffffffffffffffffffffffff1614806108bc57506108bb816108b66118ee565b6114fa565b5b6108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f29061342d565b60405180910390fd5b61090583836118f6565b505050565b60075481565b61092161091b6118ee565b826119af565b610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906134bf565b60405180910390fd5b61096b838383611a44565b505050565b610978611d3d565b8060078190555050565b61098a611d3d565b610992610c25565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109d7573d6000803e3d6000fd5b50565b60085481565b6109fb83838360405180602001604052806000815250610d3c565b505050565b610a0981611dbb565b610a1257600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16610a3282610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610a5257600080fd5b600b600082815260200190815260200160002060009054906101000a900460ff1615600b600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080610acd83611dfc565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b359061352b565b60405180910390fd5b80915050919050565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906135bd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c19611d3d565b610c236000611e39565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c5e906132f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8a906132f8565b8015610cd75780601f10610cac57610100808354040283529160200191610cd7565b820191906000526020600020905b815481529060010190602001808311610cba57829003601f168201915b5050505050905090565b610cf3610cec6118ee565b8383611eff565b5050565b610cff611d3d565b60001515600960009054906101000a900460ff16151514610d1f57600080fd5b6001600960006101000a81548160ff021916908315150217905550565b610d4d610d476118ee565b836119af565b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d83906134bf565b60405180910390fd5b610d988484848461206b565b50505050565b6060610da982611dbb565b610db257600080fd5b600b600083815260200190815260200160002060009054906101000a900460ff166114a4576000610de48360456120c7565b610df0846106526120c7565b610dfb8560a16120c7565b610e068660eb6120c7565b610e5260016005438a604051602001610e209291906135fe565b6040516020818303038152906040528051906020012060001c610e439190613659565b610e4d91906136b9565b61219c565b604051602001610e6695949392919061400a565b60405160208183030381529060405290506000730f6979e74e4af9abed72298d818a2434fe0b95b6905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231610eb787610ac1565b6040518263ffffffff1660e01b8152600401610ed39190612e87565b602060405180830381865afa158015610ef0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1491906140ac565b90506000600190505b600182610f2a91906136b9565b81101561140e57600060016064438985604051602001610f4c939291906140d9565b6040516020818303038152906040528051906020012060001c610f6f9190613659565b610f7991906136b9565b90506000610f8788846122ff565b90506000600483610f989190613659565b1480610fa45750601a84145b1561113657600083905060008990508783610fbf83856120c7565b610fd584603187610fd091906136b9565b6120c7565b6110306064610258438860198b610fec91906136b9565b604051602001610ffe939291906140d9565b6040516020818303038152906040528051906020012060001c6110219190613659565b61102b91906136b9565b61219c565b61108b6064610258438960058c61104791906136b9565b604051602001611059939291906140d9565b6040516020818303038152906040528051906020012060001c61107c9190613659565b61108691906136b9565b61219c565b6110e560056032438a600a8d6110a191906136b9565b6040516020016110b3939291906140d9565b6040516020818303038152906040528051906020012060001c6110d69190613659565b6110e091906136b9565b61219c565b896110f0898b6123b5565b6110fa8a8c6123b5565b6111048b8d6123b5565b60405160200161111e9b9a999897969594939291906147ea565b604051602081830303815290604052975050506113f9565b60016004836111459190613659565b14806111515750604b84145b156112aa576000889050866111668a866120c7565b61117083876123b5565b6111ca600a60c84387600f8c61118691906136b9565b604051602001611198939291906140d9565b6040516020818303038152906040528051906020012060001c6111bb9190613659565b6111c591906136b9565b61219c565b611225600a61012c438860328d6111e191906136b9565b6040516020016111f3939291906140d9565b6040516020818303038152906040528051906020012060001c6112169190613659565b61122091906136b9565b61219c565b6112736001600a43898d604051602001611241939291906140d9565b6040516020818303038152906040528051906020012060001c6112649190613659565b61126e91906136b9565b61219c565b61127d878b6123b5565b6040516020016112939796959493929190614d6c565b6040516020818303038152906040529650506113f8565b60458214806112b95750605a82115b806112c45750609684145b156112fc57856112d58960a86120c7565b6040516020016112e6929190614ff0565b60405160208183030381529060405295506113f7565b6000889050868261130d8b876120c7565b6113238c600a8961131e91906136b9565b6120c7565b611372606461025843888c604051602001611340939291906140d9565b6040516020818303038152906040528051906020012060001c6113639190613659565b61136d91906136b9565b61219c565b6113cd6064610258438960058e61138991906136b9565b60405160200161139b939291906140d9565b6040516020818303038152906040528051906020012060001c6113be9190613659565b6113c891906136b9565b61219c565b876040516020016113e497969594939291906153ba565b6040516020818303038152906040529650505b5b5b5050808061140690615482565b915050610f1d565b50826040516020016114209190615516565b6040516020818303038152906040529250600061147761143f8761219c565b61144886612413565b6114518561219c565b60405160200161146393929190615700565b604051602081830303815290604052612413565b90508060405160200161148a91906157a9565b6040516020818303038152906040529450505050506114b0565b6114ad82612576565b90505b919050565b6114bd611d3d565b60011515600960009054906101000a900460ff161515146114dd57600080fd5b6000600960006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611596611d3d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc9061583d565b60405180910390fd5b61160e81611e39565b50565b611b3981565b6000828290509050600960009054906101000a900460ff1661163857600080fd5b611b398160085461164991906136b9565b111561165457600080fd5b6007548160085461166591906136b9565b111561167057600080fd5b6000730f6979e74e4af9abed72298d818a2434fe0b95b6905060005b82811015611832573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e8787858181106116da576116d961585d565b5b905060200201356040518263ffffffff1660e01b81526004016116fd9190612f1d565b602060405180830381865afa15801561171a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173e91906158a1565b73ffffffffffffffffffffffffffffffffffffffff161461175e57600080fd5b600a60008686848181106117755761177461585d565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16156117a257600080fd5b6001600a60008787858181106117bb576117ba61585d565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008546117f691906136b9565b60088190555061181f338686848181106118135761181261585d565b5b905060200201356125de565b808061182a90615482565b91505061168c565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6118ac81611dbb565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e29061352b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196983610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119bb83610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119fd57506119fc81856114fa565b5b80611a3b57508373ffffffffffffffffffffffffffffffffffffffff16611a23846107ad565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a6482610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190615940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906159d2565b60405180910390fd5b611b3683838360016125fc565b8273ffffffffffffffffffffffffffffffffffffffff16611b5682610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390615940565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d388383836001612602565b505050565b611d456118ee565b73ffffffffffffffffffffffffffffffffffffffff16611d63610c25565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090615a3e565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff16611ddd83611dfc565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490615aaa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205e9190612d16565b60405180910390a3505050565b612076848484611a44565b61208284848484612608565b6120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890615b3c565b60405180910390fd5b50505050565b606060004284846040516020016120e0939291906140d9565b6040516020818303038152906040528051906020012060001c905060006101008261210b9190613659565b90506000610100808461211e9190615b5c565b6121289190613659565b90506000610100806101008661213e9190615b5c565b6121489190615b5c565b6121529190613659565b905061215d8361219c565b6121668361219c565b61216f8361219c565b60405160200161218193929190615c71565b60405160208183030381529060405294505050505092915050565b6060600082036121e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fa565b600082905060005b600082146122155780806121fe90615482565b915050600a8261220e9190615b5c565b91506121eb565b60008167ffffffffffffffff8111156122315761223061302e565b5b6040519080825280601f01601f1916602001820160405280156122635781602001600182028036833780820191505090505b50905060008290505b600086146122f257600a866122819190613659565b603061228d91906136b9565b60f81b828261229b90615cce565b925082815181106122af576122ae61585d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a866122eb9190615b5c565b955061226c565b819450505050505b919050565b60606000438484604051602001612318939291906140d9565b60405160208183030381529060405280519060200120905060006040518060400160405280600881526020017f6772616469656e7400000000000000000000000000000000000000000000000081525090506000612386620f42408460001c6123819190613659565b61219c565b9050818160405160200161239b929190615cf7565b604051602081830303815290604052935050505092915050565b606060006001600a4386866040516020016123d2939291906140d9565b6040516020818303038152906040528051906020012060001c6123f59190613659565b6123ff91906136b9565b905061240a8161219c565b91505092915050565b6060600082510361243557604051806020016040528060008152509050612571565b6000604051806060016040528060408152602001615f19604091399050600060036002855161246491906136b9565b61246e9190615b5c565b600461247a9190615d1b565b67ffffffffffffffff8111156124935761249261302e565b5b6040519080825280601f01601f1916602001820160405280156124c55781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612531576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506124d6565b505060038651066001811461254d576002811461256057612568565b603d6001830353603d6002830353612568565b603d60018303535b50505080925050505b919050565b6060612581826118a3565b600061258b61278f565b905060008151116125ab57604051806020016040528060008152506125d6565b806125b5846127a6565b6040516020016125c6929190615cf7565b6040516020818303038152906040525b915050919050565b6125f8828260405180602001604052806000815250612874565b5050565b50505050565b50505050565b60006126298473ffffffffffffffffffffffffffffffffffffffff166128cf565b15612782578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126526118ee565b8786866040518563ffffffff1660e01b81526004016126749493929190615db2565b6020604051808303816000875af19250505080156126b057506040513d601f19601f820116820180604052508101906126ad9190615e13565b60015b612732573d80600081146126e0576040519150601f19603f3d011682016040523d82523d6000602084013e6126e5565b606091505b50600081510361272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190615b3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612787565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060600060016127b5846128f2565b01905060008167ffffffffffffffff8111156127d4576127d361302e565b5b6040519080825280601f01601f1916602001820160405280156128065781602001600182028036833780820191505090505b509050600082602001820190505b600115612869578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161285d5761285c61362a565b5b04945060008503612814575b819350505050919050565b61287e8383612a45565b61288b6000848484612608565b6128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c190615b3c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612950577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816129465761294561362a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061298d576d04ee2d6d415b85acef810000000083816129835761298261362a565b5b0492506020810190505b662386f26fc1000083106129bc57662386f26fc1000083816129b2576129b161362a565b5b0492506010810190505b6305f5e10083106129e5576305f5e10083816129db576129da61362a565b5b0492506008810190505b6127108310612a0a576127108381612a00576129ff61362a565b5b0492506004810190505b60648310612a2d5760648381612a2357612a2261362a565b5b0492506002810190505b600a8310612a3c576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aab90615e8c565b60405180910390fd5b612abd81611dbb565b15612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490615ef8565b60405180910390fd5b612b0b6000838360016125fc565b612b1481611dbb565b15612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b90615ef8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5e600083836001612602565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cab81612c76565b8114612cb657600080fd5b50565b600081359050612cc881612ca2565b92915050565b600060208284031215612ce457612ce3612c6c565b5b6000612cf284828501612cb9565b91505092915050565b60008115159050919050565b612d1081612cfb565b82525050565b6000602082019050612d2b6000830184612d07565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d6b578082015181840152602081019050612d50565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9382612d31565b612d9d8185612d3c565b9350612dad818560208601612d4d565b612db681612d77565b840191505092915050565b60006020820190508181036000830152612ddb8184612d88565b905092915050565b6000819050919050565b612df681612de3565b8114612e0157600080fd5b50565b600081359050612e1381612ded565b92915050565b600060208284031215612e2f57612e2e612c6c565b5b6000612e3d84828501612e04565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7182612e46565b9050919050565b612e8181612e66565b82525050565b6000602082019050612e9c6000830184612e78565b92915050565b612eab81612e66565b8114612eb657600080fd5b50565b600081359050612ec881612ea2565b92915050565b60008060408385031215612ee557612ee4612c6c565b5b6000612ef385828601612eb9565b9250506020612f0485828601612e04565b9150509250929050565b612f1781612de3565b82525050565b6000602082019050612f326000830184612f0e565b92915050565b600080600060608486031215612f5157612f50612c6c565b5b6000612f5f86828701612eb9565b9350506020612f7086828701612eb9565b9250506040612f8186828701612e04565b9150509250925092565b600060208284031215612fa157612fa0612c6c565b5b6000612faf84828501612eb9565b91505092915050565b612fc181612cfb565b8114612fcc57600080fd5b50565b600081359050612fde81612fb8565b92915050565b60008060408385031215612ffb57612ffa612c6c565b5b600061300985828601612eb9565b925050602061301a85828601612fcf565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61306682612d77565b810181811067ffffffffffffffff821117156130855761308461302e565b5b80604052505050565b6000613098612c62565b90506130a4828261305d565b919050565b600067ffffffffffffffff8211156130c4576130c361302e565b5b6130cd82612d77565b9050602081019050919050565b82818337600083830152505050565b60006130fc6130f7846130a9565b61308e565b90508281526020810184848401111561311857613117613029565b5b6131238482856130da565b509392505050565b600082601f8301126131405761313f613024565b5b81356131508482602086016130e9565b91505092915050565b6000806000806080858703121561317357613172612c6c565b5b600061318187828801612eb9565b945050602061319287828801612eb9565b93505060406131a387828801612e04565b925050606085013567ffffffffffffffff8111156131c4576131c3612c71565b5b6131d08782880161312b565b91505092959194509250565b600080604083850312156131f3576131f2612c6c565b5b600061320185828601612eb9565b925050602061321285828601612eb9565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261323c5761323b613024565b5b8235905067ffffffffffffffff8111156132595761325861321c565b5b60208301915083602082028301111561327557613274613221565b5b9250929050565b6000806020838503121561329357613292612c6c565b5b600083013567ffffffffffffffff8111156132b1576132b0612c71565b5b6132bd85828601613226565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061331057607f821691505b602082108103613323576133226132c9565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613385602183612d3c565b915061339082613329565b604082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613417603d83612d3c565b9150613422826133bb565b604082019050919050565b600060208201905081810360008301526134468161340a565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006134a9602d83612d3c565b91506134b48261344d565b604082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613515601883612d3c565b9150613520826134df565b602082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135a7602983612d3c565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b6000819050919050565b6135f86135f382612de3565b6135dd565b82525050565b600061360a82856135e7565b60208201915061361a82846135e7565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061366482612de3565b915061366f83612de3565b92508261367f5761367e61362a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136c482612de3565b91506136cf83612de3565b92508282019050808211156136e7576136e661368a565b5b92915050565b600081905092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e60208201527f77332e6f72672f313939392f786c696e6b2220786d6c6e733a7376676a733d2260408201527f687474703a2f2f7376676a732e6465762f7376676a73222077696474683d223860608201527f303022206865696768743d2238303022207374796c653d226261636b67726f7560808201527f6e642d636f6c6f723a000000000000000000000000000000000000000000000060a082015250565b60006137ec60a9836136ed565b91506137f7826136f8565b60a982019050919050565b600061380d82612d31565b61381781856136ed565b9350613827818560208601612d4d565b80840191505092915050565b7f222076696577426f783d223020302038303020383030223e3c616e696d61746560008201527f206174747269627574654e616d653d2266696c6c222076616c7565733d220000602082015250565b600061388f603e836136ed565b915061389a82613833565b603e82019050919050565b7f3b00000000000000000000000000000000000000000000000000000000000000600082015250565b60006138db6001836136ed565b91506138e6826138a5565b600182019050919050565b7f22206475723d22302e34732220726570656174436f756e743d22696e6465666960008201527f6e69746522202f3e3c70617468207472616e73666f726d3d227363616c65283260208201527f292220643d224d313434203637632d31342031362d31362032312d313420333160408201527f203620323620342033392d372034342d3920342d31362032342d32312035372d60608201527f322032322d31352035342d32312035392d313220372d32322033352d3134203460808201527f316c31372031346339203820323820352032382d3520302d3320342d3130203860a08201527f2d31356c392d31312d332031342d39203430632d372033322d3620343420352060c08201527f35306c31302036633420352035312037203535203320322d3220382d3220313560e08201527f203220382033203135203320333520302031332d332032352d352032362d33206101008201527f3820372031372d382031372d323820302d313620312d323120352d32302035206101208201527f322031392d31352034362d35362031312d31382031312d35342d312d37362d336101408201527f2d372d362d31352d362d313920302d332d342d392d382d3132732d392d31322d6101608201527f31302d3232632d342d32302d352d32322d33382d33312d33312d382d33362d316101808201527f322d33362d323720302d35312d35352d37332d38382d33366d35322d336331306101a08201527f20352031382032322032322034332033203231203132203237203437203337206101c08201527f32342037203235203720323820323220322039203620313920392032326c36206101e08201527f313163302034203920323720313620343220382031342d322034312d323720376102008201527f346c2d31302031342d31322d3133632d31332d31352d32342d31352d323620306102208201527f2d312037203220313320392032302031352031342031352034342d312034346c6102408201527f2d32362034632d313220342d313720332d32372d332d31302d352d31342d362d6102608201527f32302d322d3720352d353020312d35352d352d322d3120302d313420332d32396102808201527f2031342d373020332d39372d32342d36306c2d31332031372d31302d372d392d6102a08201527f362031332d31396331392d32382032322d33372032372d363420382d353320396102c08201527f2d35342031372d35352031312d312031372d32352031332d34392d342d3237206102e08201527f32372d35312035302d33386d32203638632d3420342d31362031312d323720316103008201527f342d33352031322d34342035342d3232203938203233203435203535203238206103208201527f35352d333020302d323320362d34382031372d363920392d31382d392d32392d6103408201527f32332d31336d2d32203339632d342031322d382033322d3820343520302031346103608201527f2d322032362d372033336c2d372031312d31312d3232632d31392d33382d31336103808201527f2d36392031332d373820392d332031372d372031382d3920382d3131203820316103a08201527f20322032306d3331203238632d31382031392d313420323720313520323768326103c08201527f34762d313863302d32342d32302d32382d33392d396d32392037633020332d316103e08201527f20362d3320366c2d31332033632d313020322d313020322d322d3620382d31306104008201527f2031382d31322031382d336d3134203439632d31332033312d312035362031386104208201527f2033392031302d392031352d343020382d34382d392d31312d31392d372d32366104408201527f20396d3136203132632d332031302d31302032322d313020313620302d3420396104608201527f2d32372031302d323776313122207374726f6b653d220000000000000000000061048082015250565b6000613e9d610496836136ed565b9150613ea8826138f1565b61049682019050919050565b7f22207374726f6b652d77696474683d2200000000000000000000000000000000600082015250565b6000613eea6010836136ed565b9150613ef582613eb4565b601082019050919050565b7f222f3e3c646566733e3c706174682069643d2272616e646f6d5061746822206460008201527f3d224d35302c3530204c3135302c3530204c3135302c323530204c35302c323560208201527f30205a222f3e3c706174682069643d227a69677a61672220643d224d3137302c60408201527f343139204c3232302c313530204c3237302c323531204c3432302c333531204c60608201527f3530302c313533203231302c333533204c3333342c343535204c3232302c323560808201527f35204c3139352c3535205a222f3e3c2f646566733e000000000000000000000060a082015250565b6000613ff460b5836136ed565b9150613fff82613f00565b60b582019050919050565b6000614015826137df565b91506140218288613802565b915061402c82613882565b91506140388287613802565b9150614043826138ce565b915061404f8286613802565b915061405a82613e8f565b91506140668285613802565b915061407182613edd565b915061407d8284613802565b915061408882613fe7565b91508190509695505050505050565b6000815190506140a681612ded565b92915050565b6000602082840312156140c2576140c1612c6c565b5b60006140d084828501614097565b91505092915050565b60006140e582866135e7565b6020820191506140f582856135e7565b60208201915061410582846135e7565b602082019150819050949350505050565b7f3c646566733e0000000000000000000000000000000000000000000000000000600082015250565b600061414c6006836136ed565b915061415782614116565b600682019050919050565b7f3c72616469616c4772616469656e742069643d22000000000000000000000000600082015250565b60006141986014836136ed565b91506141a382614162565b601482019050919050565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b60006141e46002836136ed565b91506141ef826141ae565b600282019050919050565b7f3c73746f70206f66667365743d223025222073746f702d636f6c6f723d220000600082015250565b6000614230601e836136ed565b915061423b826141fa565b601e82019050919050565b7f222f3e0000000000000000000000000000000000000000000000000000000000600082015250565b600061427c6003836136ed565b915061428782614246565b600382019050919050565b7f3c73746f70206f66667365743d2231303025222073746f702d636f6c6f723d22600082015250565b60006142c86020836136ed565b91506142d382614292565b602082019050919050565b7f3c2f72616469616c4772616469656e743e000000000000000000000000000000600082015250565b60006143146011836136ed565b915061431f826142de565b601182019050919050565b7f3c2f646566733e00000000000000000000000000000000000000000000000000600082015250565b60006143606007836136ed565b915061436b8261432a565b600782019050919050565b7f3c636972636c652063783d220000000000000000000000000000000000000000600082015250565b60006143ac600c836136ed565b91506143b782614376565b600c82019050919050565b7f222063793d220000000000000000000000000000000000000000000000000000600082015250565b60006143f86006836136ed565b9150614403826143c2565b600682019050919050565b7f2220723d22000000000000000000000000000000000000000000000000000000600082015250565b60006144446005836136ed565b915061444f8261440e565b600582019050919050565b7f222066696c6c3d2275726c282300000000000000000000000000000000000000600082015250565b6000614490600d836136ed565b915061449b8261445a565b600d82019050919050565b7f2922203e00000000000000000000000000000000000000000000000000000000600082015250565b60006144dc6004836136ed565b91506144e7826144a6565b600482019050919050565b7f3c616e696d617465206174747269627574654e616d653d226f7061636974792260008201527f2076616c7565733d22303b313b3022206475723d220000000000000000000000602082015250565b600061454e6035836136ed565b9150614559826144f2565b603582019050919050565b7f732220726570656174436f756e743d22696e646566696e69746522202f3e0000600082015250565b600061459a601e836136ed565b91506145a582614564565b601e82019050919050565b7f3c616e696d6174655472616e73666f726d20617474726962757465547970653d60008201527f22786d6c22206174747269627574654e616d653d227472616e73666f726d222060208201527f747970653d22726f74617465222066726f6d3d223336302220746f3d2230203460408201527f30302034303022206475723d2200000000000000000000000000000000000000606082015250565b6000614658606d836136ed565b9150614663826145b0565b606d82019050919050565b7f732220726570656174436f756e743d22696e646566696e697465222f3e000000600082015250565b60006146a4601d836136ed565b91506146af8261466e565b601d82019050919050565b7f3c616e696d6174654d6f74696f6e206475723d22000000000000000000000000600082015250565b60006146f06014836136ed565b91506146fb826146ba565b601482019050919050565b7f732220726570656174436f756e743d22696e646566696e697465223e3c6d706160008201527f746820687265663d22237a69677a6167222f3e3c2f616e696d6174654d6f746960208201527f6f6e3e0000000000000000000000000000000000000000000000000000000000604082015250565b60006147886043836136ed565b915061479382614706565b604382019050919050565b7f3c2f636972636c653e0000000000000000000000000000000000000000000000600082015250565b60006147d46009836136ed565b91506147df8261479e565b600982019050919050565b60006147f6828e613802565b91506148018261413f565b915061480c8261418b565b9150614818828d613802565b9150614823826141d7565b915061482e82614223565b915061483a828c613802565b91506148458261426f565b9150614850826142bb565b915061485c828b613802565b91506148678261426f565b915061487282614307565b915061487d82614353565b91506148888261439f565b9150614894828a613802565b915061489f826143eb565b91506148ab8289613802565b91506148b682614437565b91506148c28288613802565b91506148cd82614483565b91506148d98287613802565b91506148e4826144cf565b91506148ef82614541565b91506148fb8286613802565b91506149068261458d565b91506149118261464b565b915061491d8285613802565b915061492882614697565b9150614933826146e3565b915061493f8284613802565b915061494a8261477b565b9150614955826147c7565b91508190509c9b505050505050505050505050565b7f3c726563742077696474683d22373522206865696768743d22373522203e3c6160008201527f6e696d617465206174747269627574654e616d653d2266696c6c222076616c7560208201527f65733d2200000000000000000000000000000000000000000000000000000000604082015250565b60006149ec6044836136ed565b91506149f78261496a565b604482019050919050565b7f22206475723d22302e34732220726570656174436f756e743d22696e6465666960008201527f6e69746522202f3e000000000000000000000000000000000000000000000000602082015250565b6000614a5e6028836136ed565b9150614a6982614a02565b602882019050919050565b7f3c616e696d617465206174747269627574654e616d653d226f7061636974792260008201527f2076616c7565733d22303b000000000000000000000000000000000000000000602082015250565b6000614ad0602b836136ed565b9150614adb82614a74565b602b82019050919050565b7f3b3022206475723d22302e31732220726570656174436f756e743d22696e646560008201527f66696e69746522202f3e00000000000000000000000000000000000000000000602082015250565b6000614b42602a836136ed565b9150614b4d82614ae6565b602a82019050919050565b7f3c616e696d6174655472616e73666f726d20617474726962757465547970653d60008201527f22786d6c22206174747269627574654e616d653d227472616e73666f726d222060208201527f747970653d22726f74617465222066726f6d3d223336302220746f3d22302000604082015250565b6000614bda605f836136ed565b9150614be582614b58565b605f82019050919050565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c266001836136ed565b9150614c3182614bf0565b600182019050919050565b7f22206475723d2200000000000000000000000000000000000000000000000000600082015250565b6000614c726007836136ed565b9150614c7d82614c3c565b600782019050919050565b7f732220726570656174436f756e743d22696e646566696e697465223e3c6d706160008201527f746820687265663d22237a69677a6167223e3c2f6d706174683e3c2f616e696d60208201527f6174654d6f74696f6e3e00000000000000000000000000000000000000000000604082015250565b6000614d0a604a836136ed565b9150614d1582614c88565b604a82019050919050565b7f3c2f726563743e00000000000000000000000000000000000000000000000000600082015250565b6000614d566007836136ed565b9150614d6182614d20565b600782019050919050565b6000614d78828a613802565b9150614d83826149df565b9150614d8f8289613802565b9150614d9a82614a51565b9150614da582614ac3565b9150614db18288613802565b9150614dbc82614b35565b9150614dc782614bcd565b9150614dd38287613802565b9150614dde82614c19565b9150614dea8286613802565b9150614df582614c65565b9150614e018285613802565b9150614e0c82614697565b9150614e17826146e3565b9150614e238284613802565b9150614e2e82614cfd565b9150614e3982614d49565b915081905098975050505050505050565b7f3c70617468207472616e73666f726d3d227363616c652832292220643d226d3360008201527f393620333732632d3120312d3420352d3620372d3120312d3220322d3320322d60208201527f3320312d3520352d33203620302030203120302031203020302030203120302060408201527f31203020312031203220312034203020322d31203120302d3120332d3420362d60608201527f3620382d3920372d3220302d332d312d332d3320302d322d312d312d3120312060808201527f30203520382035203132203020332d3420392d313420392d313520302d312d3160a08201527f2d312d322030203020302d3120312d3120312d3120302d3320322d3420342d3260c08201527f20332d3320332d32203020332d3620382d31322031302d31322031203020312060e08201527f3020312d3120302d312d322d312d322e3836312d2e303522207374726f6b653d6101008201527f220000000000000000000000000000000000000000000000000000000000000061012082015250565b6000614fd9610121836136ed565b9150614fe482614e4a565b61012182019050919050565b6000614ffc8285613802565b915061500782614fcb565b91506150138284613802565b915061501e8261426f565b91508190509392505050565b7f3c646566733e3c6c696e6561724772616469656e742069643d22000000000000600082015250565b6000615060601a836136ed565b915061506b8261502a565b601a82019050919050565b7f222078313d223025222079313d223025222078323d2231303025222079323d2260008201527f31303025223e3c73746f70206f66667365743d223025222073746f702d636f6c60208201527f6f723d2200000000000000000000000000000000000000000000000000000000604082015250565b60006150f86044836136ed565b915061510382615076565b604482019050919050565b7f222f3e3c73746f70206f66667365743d2231303025222073746f702d636f6c6f60008201527f723d220000000000000000000000000000000000000000000000000000000000602082015250565b600061516a6023836136ed565b91506151758261510e565b602382019050919050565b7f222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e0000000000600082015250565b60006151b6601b836136ed565b91506151c182615180565b601b82019050919050565b7f3c7265637420783d220000000000000000000000000000000000000000000000600082015250565b60006152026009836136ed565b915061520d826151cc565b600982019050919050565b7f2220793d22000000000000000000000000000000000000000000000000000000600082015250565b600061524e6005836136ed565b915061525982615218565b600582019050919050565b7f22207769647468203d202235302220686569676874203d20223530222066696c60008201527f6c3d2275726c2823000000000000000000000000000000000000000000000000602082015250565b60006152c06028836136ed565b91506152cb82615264565b602882019050919050565b7f2922202072783d223135223e0000000000000000000000000000000000000000600082015250565b600061530c600c836136ed565b9150615317826152d6565b600c82019050919050565b7f3c616e696d617465206174747269627574654e616d653d226f7061636974792260008201527f2076616c7565733d22303b313b3022206475723d22302e31732220726570656160208201527f74436f756e743d22696e646566696e69746522202f3e3c2f726563743e000000604082015250565b60006153a4605d836136ed565b91506153af82615322565b605d82019050919050565b60006153c6828a613802565b91506153d182615053565b91506153dd8289613802565b91506153e8826150eb565b91506153f48288613802565b91506153ff8261515d565b915061540b8287613802565b9150615416826151a9565b9150615421826151f5565b915061542d8286613802565b915061543882615241565b91506154448285613802565b915061544f826152b3565b915061545b8284613802565b9150615466826152ff565b915061547182615397565b915081905098975050505050505050565b600061548d82612de3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036154bf576154be61368a565b5b600182019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b60006155006006836136ed565b915061550b826154ca565b600682019050919050565b60006155228284613802565b915061552d826154f3565b915081905092915050565b7f7b226e616d65223a20224e465420230000000000000000000000000000000000600082015250565b600061556e600f836136ed565b915061557982615538565b600f82019050919050565b7f222c20226465736372697074696f6e223a2022416e206f6e2d636861696e206760008201527f656e657261746564204e465420776974682072616e646f6d207368617065732060208201527f616e6420636f6c6f72732c20616e696d6174656421222c2022696d616765223a60408201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000606082015250565b600061562c607c836136ed565b915061563782615584565b607c82019050919050565b7f222c202261747472696275746573223a5b7b2274726169745f74797065223a2260008201527f6e756d6265724f66536861706573222c202276616c7565223a22000000000000602082015250565b600061569e603a836136ed565b91506156a982615642565b603a82019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006156ea6004836136ed565b91506156f5826156b4565b600482019050919050565b600061570b82615561565b91506157178286613802565b91506157228261561f565b915061572e8285613802565b915061573982615691565b91506157458284613802565b9150615750826156dd565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615793601d836136ed565b915061579e8261575d565b601d82019050919050565b60006157b482615786565b91506157c08284613802565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615827602683612d3c565b9150615832826157cb565b604082019050919050565b600060208201905081810360008301526158568161581a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061589b81612ea2565b92915050565b6000602082840312156158b7576158b6612c6c565b5b60006158c58482850161588c565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061592a602583612d3c565b9150615935826158ce565b604082019050919050565b600060208201905081810360008301526159598161591d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006159bc602483612d3c565b91506159c782615960565b604082019050919050565b600060208201905081810360008301526159eb816159af565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615a28602083612d3c565b9150615a33826159f2565b602082019050919050565b60006020820190508181036000830152615a5781615a1b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615a94601983612d3c565b9150615a9f82615a5e565b602082019050919050565b60006020820190508181036000830152615ac381615a87565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615b26603283612d3c565b9150615b3182615aca565b604082019050919050565b60006020820190508181036000830152615b5581615b19565b9050919050565b6000615b6782612de3565b9150615b7283612de3565b925082615b8257615b8161362a565b5b828204905092915050565b7f7267622800000000000000000000000000000000000000000000000000000000600082015250565b6000615bc36004836136ed565b9150615bce82615b8d565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615c0f6001836136ed565b9150615c1a82615bd9565b600182019050919050565b7f2900000000000000000000000000000000000000000000000000000000000000600082015250565b6000615c5b6001836136ed565b9150615c6682615c25565b600182019050919050565b6000615c7c82615bb6565b9150615c888286613802565b9150615c9382615c02565b9150615c9f8285613802565b9150615caa82615c02565b9150615cb68284613802565b9150615cc182615c4e565b9150819050949350505050565b6000615cd982612de3565b915060008203615cec57615ceb61368a565b5b600182039050919050565b6000615d038285613802565b9150615d0f8284613802565b91508190509392505050565b6000615d2682612de3565b9150615d3183612de3565b9250828202615d3f81612de3565b91508282048414831517615d5657615d5561368a565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b6000615d8482615d5d565b615d8e8185615d68565b9350615d9e818560208601612d4d565b615da781612d77565b840191505092915050565b6000608082019050615dc76000830187612e78565b615dd46020830186612e78565b615de16040830185612f0e565b8181036060830152615df38184615d79565b905095945050505050565b600081519050615e0d81612ca2565b92915050565b600060208284031215615e2957615e28612c6c565b5b6000615e3784828501615dfe565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e76602083612d3c565b9150615e8182615e40565b602082019050919050565b60006020820190508181036000830152615ea581615e69565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ee2601c83612d3c565b9150615eed82615eac565b602082019050919050565b60006020820190508181036000830152615f1181615ed5565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220eadab41b8edc455292c7e0af94b6ddb928e95690c941e87ecca21df6968f20a864736f6c63430008120033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806368428a1b116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c51461057f578063f2fde38b146105bc578063f47c84c5146105e5578063f8e93ef9146106105761019c565b8063b88d4fde14610502578063c87b56dd1461052b578063e36b0b37146105685761019c565b80638da5cb5b116100c65780638da5cb5b1461046c57806395d89b4114610497578063a22cb465146104c2578063b66a0e5d146104eb5761019c565b806368428a1b146103ed57806370a0823114610418578063715018a6146104555761019c565b80632a4871dc1161015957806342842e0e1161013357806342842e0e146103215780634dcf6ad61461034a57806359746cf0146103735780636352211e146103b05761019c565b80632a4871dc146102c35780633ccfd60b146102ec5780634230baee146102f65761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780630e1ed15f1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612cce565b610639565b6040516101d59190612d16565b60405180910390f35b3480156101ea57600080fd5b506101f361071b565b6040516102009190612dc1565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e19565b6107ad565b60405161023d9190612e87565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612ece565b6107f3565b005b34801561027b57600080fd5b5061028461090a565b6040516102919190612f1d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612f38565b610910565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612e19565b610970565b005b6102f4610982565b005b34801561030257600080fd5b5061030b6109da565b6040516103189190612f1d565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612f38565b6109e0565b005b34801561035657600080fd5b50610371600480360381019061036c9190612e19565b610a00565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612e19565b610aa1565b6040516103a79190612d16565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612e19565b610ac1565b6040516103e49190612e87565b60405180910390f35b3480156103f957600080fd5b50610402610b47565b60405161040f9190612d16565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612f8b565b610b5a565b60405161044c9190612f1d565b60405180910390f35b34801561046157600080fd5b5061046a610c11565b005b34801561047857600080fd5b50610481610c25565b60405161048e9190612e87565b60405180910390f35b3480156104a357600080fd5b506104ac610c4f565b6040516104b99190612dc1565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612fe4565b610ce1565b005b3480156104f757600080fd5b50610500610cf7565b005b34801561050e57600080fd5b5061052960048036038101906105249190613159565b610d3c565b005b34801561053757600080fd5b50610552600480360381019061054d9190612e19565b610d9e565b60405161055f9190612dc1565b60405180910390f35b34801561057457600080fd5b5061057d6114b5565b005b34801561058b57600080fd5b506105a660048036038101906105a191906131dc565b6114fa565b6040516105b39190612d16565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612f8b565b61158e565b005b3480156105f157600080fd5b506105fa611611565b6040516106079190612f1d565b60405180910390f35b34801561061c57600080fd5b506106376004803603810190610632919061327c565b611617565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610714575061071382611839565b5b9050919050565b60606000805461072a906132f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610756906132f8565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107b8826118a3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fe82610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108659061339b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088d6118ee565b73ffffffffffffffffffffffffffffffffffffffff1614806108bc57506108bb816108b66118ee565b6114fa565b5b6108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f29061342d565b60405180910390fd5b61090583836118f6565b505050565b60075481565b61092161091b6118ee565b826119af565b610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906134bf565b60405180910390fd5b61096b838383611a44565b505050565b610978611d3d565b8060078190555050565b61098a611d3d565b610992610c25565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109d7573d6000803e3d6000fd5b50565b60085481565b6109fb83838360405180602001604052806000815250610d3c565b505050565b610a0981611dbb565b610a1257600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16610a3282610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614610a5257600080fd5b600b600082815260200190815260200160002060009054906101000a900460ff1615600b600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080610acd83611dfc565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b359061352b565b60405180910390fd5b80915050919050565b600960009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906135bd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c19611d3d565b610c236000611e39565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c5e906132f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8a906132f8565b8015610cd75780601f10610cac57610100808354040283529160200191610cd7565b820191906000526020600020905b815481529060010190602001808311610cba57829003601f168201915b5050505050905090565b610cf3610cec6118ee565b8383611eff565b5050565b610cff611d3d565b60001515600960009054906101000a900460ff16151514610d1f57600080fd5b6001600960006101000a81548160ff021916908315150217905550565b610d4d610d476118ee565b836119af565b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d83906134bf565b60405180910390fd5b610d988484848461206b565b50505050565b6060610da982611dbb565b610db257600080fd5b600b600083815260200190815260200160002060009054906101000a900460ff166114a4576000610de48360456120c7565b610df0846106526120c7565b610dfb8560a16120c7565b610e068660eb6120c7565b610e5260016005438a604051602001610e209291906135fe565b6040516020818303038152906040528051906020012060001c610e439190613659565b610e4d91906136b9565b61219c565b604051602001610e6695949392919061400a565b60405160208183030381529060405290506000730f6979e74e4af9abed72298d818a2434fe0b95b6905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231610eb787610ac1565b6040518263ffffffff1660e01b8152600401610ed39190612e87565b602060405180830381865afa158015610ef0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1491906140ac565b90506000600190505b600182610f2a91906136b9565b81101561140e57600060016064438985604051602001610f4c939291906140d9565b6040516020818303038152906040528051906020012060001c610f6f9190613659565b610f7991906136b9565b90506000610f8788846122ff565b90506000600483610f989190613659565b1480610fa45750601a84145b1561113657600083905060008990508783610fbf83856120c7565b610fd584603187610fd091906136b9565b6120c7565b6110306064610258438860198b610fec91906136b9565b604051602001610ffe939291906140d9565b6040516020818303038152906040528051906020012060001c6110219190613659565b61102b91906136b9565b61219c565b61108b6064610258438960058c61104791906136b9565b604051602001611059939291906140d9565b6040516020818303038152906040528051906020012060001c61107c9190613659565b61108691906136b9565b61219c565b6110e560056032438a600a8d6110a191906136b9565b6040516020016110b3939291906140d9565b6040516020818303038152906040528051906020012060001c6110d69190613659565b6110e091906136b9565b61219c565b896110f0898b6123b5565b6110fa8a8c6123b5565b6111048b8d6123b5565b60405160200161111e9b9a999897969594939291906147ea565b604051602081830303815290604052975050506113f9565b60016004836111459190613659565b14806111515750604b84145b156112aa576000889050866111668a866120c7565b61117083876123b5565b6111ca600a60c84387600f8c61118691906136b9565b604051602001611198939291906140d9565b6040516020818303038152906040528051906020012060001c6111bb9190613659565b6111c591906136b9565b61219c565b611225600a61012c438860328d6111e191906136b9565b6040516020016111f3939291906140d9565b6040516020818303038152906040528051906020012060001c6112169190613659565b61122091906136b9565b61219c565b6112736001600a43898d604051602001611241939291906140d9565b6040516020818303038152906040528051906020012060001c6112649190613659565b61126e91906136b9565b61219c565b61127d878b6123b5565b6040516020016112939796959493929190614d6c565b6040516020818303038152906040529650506113f8565b60458214806112b95750605a82115b806112c45750609684145b156112fc57856112d58960a86120c7565b6040516020016112e6929190614ff0565b60405160208183030381529060405295506113f7565b6000889050868261130d8b876120c7565b6113238c600a8961131e91906136b9565b6120c7565b611372606461025843888c604051602001611340939291906140d9565b6040516020818303038152906040528051906020012060001c6113639190613659565b61136d91906136b9565b61219c565b6113cd6064610258438960058e61138991906136b9565b60405160200161139b939291906140d9565b6040516020818303038152906040528051906020012060001c6113be9190613659565b6113c891906136b9565b61219c565b876040516020016113e497969594939291906153ba565b6040516020818303038152906040529650505b5b5b5050808061140690615482565b915050610f1d565b50826040516020016114209190615516565b6040516020818303038152906040529250600061147761143f8761219c565b61144886612413565b6114518561219c565b60405160200161146393929190615700565b604051602081830303815290604052612413565b90508060405160200161148a91906157a9565b6040516020818303038152906040529450505050506114b0565b6114ad82612576565b90505b919050565b6114bd611d3d565b60011515600960009054906101000a900460ff161515146114dd57600080fd5b6000600960006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611596611d3d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc9061583d565b60405180910390fd5b61160e81611e39565b50565b611b3981565b6000828290509050600960009054906101000a900460ff1661163857600080fd5b611b398160085461164991906136b9565b111561165457600080fd5b6007548160085461166591906136b9565b111561167057600080fd5b6000730f6979e74e4af9abed72298d818a2434fe0b95b6905060005b82811015611832573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e8787858181106116da576116d961585d565b5b905060200201356040518263ffffffff1660e01b81526004016116fd9190612f1d565b602060405180830381865afa15801561171a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173e91906158a1565b73ffffffffffffffffffffffffffffffffffffffff161461175e57600080fd5b600a60008686848181106117755761177461585d565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16156117a257600080fd5b6001600a60008787858181106117bb576117ba61585d565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008546117f691906136b9565b60088190555061181f338686848181106118135761181261585d565b5b905060200201356125de565b808061182a90615482565b91505061168c565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6118ac81611dbb565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e29061352b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196983610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119bb83610ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119fd57506119fc81856114fa565b5b80611a3b57508373ffffffffffffffffffffffffffffffffffffffff16611a23846107ad565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a6482610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190615940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b20906159d2565b60405180910390fd5b611b3683838360016125fc565b8273ffffffffffffffffffffffffffffffffffffffff16611b5682610ac1565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390615940565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d388383836001612602565b505050565b611d456118ee565b73ffffffffffffffffffffffffffffffffffffffff16611d63610c25565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090615a3e565b60405180910390fd5b565b60008073ffffffffffffffffffffffffffffffffffffffff16611ddd83611dfc565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490615aaa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205e9190612d16565b60405180910390a3505050565b612076848484611a44565b61208284848484612608565b6120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890615b3c565b60405180910390fd5b50505050565b606060004284846040516020016120e0939291906140d9565b6040516020818303038152906040528051906020012060001c905060006101008261210b9190613659565b90506000610100808461211e9190615b5c565b6121289190613659565b90506000610100806101008661213e9190615b5c565b6121489190615b5c565b6121529190613659565b905061215d8361219c565b6121668361219c565b61216f8361219c565b60405160200161218193929190615c71565b60405160208183030381529060405294505050505092915050565b6060600082036121e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fa565b600082905060005b600082146122155780806121fe90615482565b915050600a8261220e9190615b5c565b91506121eb565b60008167ffffffffffffffff8111156122315761223061302e565b5b6040519080825280601f01601f1916602001820160405280156122635781602001600182028036833780820191505090505b50905060008290505b600086146122f257600a866122819190613659565b603061228d91906136b9565b60f81b828261229b90615cce565b925082815181106122af576122ae61585d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a866122eb9190615b5c565b955061226c565b819450505050505b919050565b60606000438484604051602001612318939291906140d9565b60405160208183030381529060405280519060200120905060006040518060400160405280600881526020017f6772616469656e7400000000000000000000000000000000000000000000000081525090506000612386620f42408460001c6123819190613659565b61219c565b9050818160405160200161239b929190615cf7565b604051602081830303815290604052935050505092915050565b606060006001600a4386866040516020016123d2939291906140d9565b6040516020818303038152906040528051906020012060001c6123f59190613659565b6123ff91906136b9565b905061240a8161219c565b91505092915050565b6060600082510361243557604051806020016040528060008152509050612571565b6000604051806060016040528060408152602001615f19604091399050600060036002855161246491906136b9565b61246e9190615b5c565b600461247a9190615d1b565b67ffffffffffffffff8111156124935761249261302e565b5b6040519080825280601f01601f1916602001820160405280156124c55781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612531576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506124d6565b505060038651066001811461254d576002811461256057612568565b603d6001830353603d6002830353612568565b603d60018303535b50505080925050505b919050565b6060612581826118a3565b600061258b61278f565b905060008151116125ab57604051806020016040528060008152506125d6565b806125b5846127a6565b6040516020016125c6929190615cf7565b6040516020818303038152906040525b915050919050565b6125f8828260405180602001604052806000815250612874565b5050565b50505050565b50505050565b60006126298473ffffffffffffffffffffffffffffffffffffffff166128cf565b15612782578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126526118ee565b8786866040518563ffffffff1660e01b81526004016126749493929190615db2565b6020604051808303816000875af19250505080156126b057506040513d601f19601f820116820180604052508101906126ad9190615e13565b60015b612732573d80600081146126e0576040519150601f19603f3d011682016040523d82523d6000602084013e6126e5565b606091505b50600081510361272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190615b3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612787565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060600060016127b5846128f2565b01905060008167ffffffffffffffff8111156127d4576127d361302e565b5b6040519080825280601f01601f1916602001820160405280156128065781602001600182028036833780820191505090505b509050600082602001820190505b600115612869578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161285d5761285c61362a565b5b04945060008503612814575b819350505050919050565b61287e8383612a45565b61288b6000848484612608565b6128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c190615b3c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612950577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816129465761294561362a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061298d576d04ee2d6d415b85acef810000000083816129835761298261362a565b5b0492506020810190505b662386f26fc1000083106129bc57662386f26fc1000083816129b2576129b161362a565b5b0492506010810190505b6305f5e10083106129e5576305f5e10083816129db576129da61362a565b5b0492506008810190505b6127108310612a0a576127108381612a00576129ff61362a565b5b0492506004810190505b60648310612a2d5760648381612a2357612a2261362a565b5b0492506002810190505b600a8310612a3c576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aab90615e8c565b60405180910390fd5b612abd81611dbb565b15612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490615ef8565b60405180910390fd5b612b0b6000838360016125fc565b612b1481611dbb565b15612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b90615ef8565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5e600083836001612602565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cab81612c76565b8114612cb657600080fd5b50565b600081359050612cc881612ca2565b92915050565b600060208284031215612ce457612ce3612c6c565b5b6000612cf284828501612cb9565b91505092915050565b60008115159050919050565b612d1081612cfb565b82525050565b6000602082019050612d2b6000830184612d07565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d6b578082015181840152602081019050612d50565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9382612d31565b612d9d8185612d3c565b9350612dad818560208601612d4d565b612db681612d77565b840191505092915050565b60006020820190508181036000830152612ddb8184612d88565b905092915050565b6000819050919050565b612df681612de3565b8114612e0157600080fd5b50565b600081359050612e1381612ded565b92915050565b600060208284031215612e2f57612e2e612c6c565b5b6000612e3d84828501612e04565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7182612e46565b9050919050565b612e8181612e66565b82525050565b6000602082019050612e9c6000830184612e78565b92915050565b612eab81612e66565b8114612eb657600080fd5b50565b600081359050612ec881612ea2565b92915050565b60008060408385031215612ee557612ee4612c6c565b5b6000612ef385828601612eb9565b9250506020612f0485828601612e04565b9150509250929050565b612f1781612de3565b82525050565b6000602082019050612f326000830184612f0e565b92915050565b600080600060608486031215612f5157612f50612c6c565b5b6000612f5f86828701612eb9565b9350506020612f7086828701612eb9565b9250506040612f8186828701612e04565b9150509250925092565b600060208284031215612fa157612fa0612c6c565b5b6000612faf84828501612eb9565b91505092915050565b612fc181612cfb565b8114612fcc57600080fd5b50565b600081359050612fde81612fb8565b92915050565b60008060408385031215612ffb57612ffa612c6c565b5b600061300985828601612eb9565b925050602061301a85828601612fcf565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61306682612d77565b810181811067ffffffffffffffff821117156130855761308461302e565b5b80604052505050565b6000613098612c62565b90506130a4828261305d565b919050565b600067ffffffffffffffff8211156130c4576130c361302e565b5b6130cd82612d77565b9050602081019050919050565b82818337600083830152505050565b60006130fc6130f7846130a9565b61308e565b90508281526020810184848401111561311857613117613029565b5b6131238482856130da565b509392505050565b600082601f8301126131405761313f613024565b5b81356131508482602086016130e9565b91505092915050565b6000806000806080858703121561317357613172612c6c565b5b600061318187828801612eb9565b945050602061319287828801612eb9565b93505060406131a387828801612e04565b925050606085013567ffffffffffffffff8111156131c4576131c3612c71565b5b6131d08782880161312b565b91505092959194509250565b600080604083850312156131f3576131f2612c6c565b5b600061320185828601612eb9565b925050602061321285828601612eb9565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261323c5761323b613024565b5b8235905067ffffffffffffffff8111156132595761325861321c565b5b60208301915083602082028301111561327557613274613221565b5b9250929050565b6000806020838503121561329357613292612c6c565b5b600083013567ffffffffffffffff8111156132b1576132b0612c71565b5b6132bd85828601613226565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061331057607f821691505b602082108103613323576133226132c9565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613385602183612d3c565b915061339082613329565b604082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613417603d83612d3c565b9150613422826133bb565b604082019050919050565b600060208201905081810360008301526134468161340a565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006134a9602d83612d3c565b91506134b48261344d565b604082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613515601883612d3c565b9150613520826134df565b602082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135a7602983612d3c565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b6000819050919050565b6135f86135f382612de3565b6135dd565b82525050565b600061360a82856135e7565b60208201915061361a82846135e7565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061366482612de3565b915061366f83612de3565b92508261367f5761367e61362a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136c482612de3565b91506136cf83612de3565b92508282019050808211156136e7576136e661368a565b5b92915050565b600081905092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e60208201527f77332e6f72672f313939392f786c696e6b2220786d6c6e733a7376676a733d2260408201527f687474703a2f2f7376676a732e6465762f7376676a73222077696474683d223860608201527f303022206865696768743d2238303022207374796c653d226261636b67726f7560808201527f6e642d636f6c6f723a000000000000000000000000000000000000000000000060a082015250565b60006137ec60a9836136ed565b91506137f7826136f8565b60a982019050919050565b600061380d82612d31565b61381781856136ed565b9350613827818560208601612d4d565b80840191505092915050565b7f222076696577426f783d223020302038303020383030223e3c616e696d61746560008201527f206174747269627574654e616d653d2266696c6c222076616c7565733d220000602082015250565b600061388f603e836136ed565b915061389a82613833565b603e82019050919050565b7f3b00000000000000000000000000000000000000000000000000000000000000600082015250565b60006138db6001836136ed565b91506138e6826138a5565b600182019050919050565b7f22206475723d22302e34732220726570656174436f756e743d22696e6465666960008201527f6e69746522202f3e3c70617468207472616e73666f726d3d227363616c65283260208201527f292220643d224d313434203637632d31342031362d31362032312d313420333160408201527f203620323620342033392d372034342d3920342d31362032342d32312035372d60608201527f322032322d31352035342d32312035392d313220372d32322033352d3134203460808201527f316c31372031346339203820323820352032382d3520302d3320342d3130203860a08201527f2d31356c392d31312d332031342d39203430632d372033322d3620343420352060c08201527f35306c31302036633420352035312037203535203320322d3220382d3220313560e08201527f203220382033203135203320333520302031332d332032352d352032362d33206101008201527f3820372031372d382031372d323820302d313620312d323120352d32302035206101208201527f322031392d31352034362d35362031312d31382031312d35342d312d37362d336101408201527f2d372d362d31352d362d313920302d332d342d392d382d3132732d392d31322d6101608201527f31302d3232632d342d32302d352d32322d33382d33312d33312d382d33362d316101808201527f322d33362d323720302d35312d35352d37332d38382d33366d35322d336331306101a08201527f20352031382032322032322034332033203231203132203237203437203337206101c08201527f32342037203235203720323820323220322039203620313920392032326c36206101e08201527f313163302034203920323720313620343220382031342d322034312d323720376102008201527f346c2d31302031342d31322d3133632d31332d31352d32342d31352d323620306102208201527f2d312037203220313320392032302031352031342031352034342d312034346c6102408201527f2d32362034632d313220342d313720332d32372d332d31302d352d31342d362d6102608201527f32302d322d3720352d353020312d35352d352d322d3120302d313420332d32396102808201527f2031342d373020332d39372d32342d36306c2d31332031372d31302d372d392d6102a08201527f362031332d31396331392d32382032322d33372032372d363420382d353320396102c08201527f2d35342031372d35352031312d312031372d32352031332d34392d342d3237206102e08201527f32372d35312035302d33386d32203638632d3420342d31362031312d323720316103008201527f342d33352031322d34342035342d3232203938203233203435203535203238206103208201527f35352d333020302d323320362d34382031372d363920392d31382d392d32392d6103408201527f32332d31336d2d32203339632d342031322d382033322d3820343520302031346103608201527f2d322032362d372033336c2d372031312d31312d3232632d31392d33382d31336103808201527f2d36392031332d373820392d332031372d372031382d3920382d3131203820316103a08201527f20322032306d3331203238632d31382031392d313420323720313520323768326103c08201527f34762d313863302d32342d32302d32382d33392d396d32392037633020332d316103e08201527f20362d3320366c2d31332033632d313020322d313020322d322d3620382d31306104008201527f2031382d31322031382d336d3134203439632d31332033312d312035362031386104208201527f2033392031302d392031352d343020382d34382d392d31312d31392d372d32366104408201527f20396d3136203132632d332031302d31302032322d313020313620302d3420396104608201527f2d32372031302d323776313122207374726f6b653d220000000000000000000061048082015250565b6000613e9d610496836136ed565b9150613ea8826138f1565b61049682019050919050565b7f22207374726f6b652d77696474683d2200000000000000000000000000000000600082015250565b6000613eea6010836136ed565b9150613ef582613eb4565b601082019050919050565b7f222f3e3c646566733e3c706174682069643d2272616e646f6d5061746822206460008201527f3d224d35302c3530204c3135302c3530204c3135302c323530204c35302c323560208201527f30205a222f3e3c706174682069643d227a69677a61672220643d224d3137302c60408201527f343139204c3232302c313530204c3237302c323531204c3432302c333531204c60608201527f3530302c313533203231302c333533204c3333342c343535204c3232302c323560808201527f35204c3139352c3535205a222f3e3c2f646566733e000000000000000000000060a082015250565b6000613ff460b5836136ed565b9150613fff82613f00565b60b582019050919050565b6000614015826137df565b91506140218288613802565b915061402c82613882565b91506140388287613802565b9150614043826138ce565b915061404f8286613802565b915061405a82613e8f565b91506140668285613802565b915061407182613edd565b915061407d8284613802565b915061408882613fe7565b91508190509695505050505050565b6000815190506140a681612ded565b92915050565b6000602082840312156140c2576140c1612c6c565b5b60006140d084828501614097565b91505092915050565b60006140e582866135e7565b6020820191506140f582856135e7565b60208201915061410582846135e7565b602082019150819050949350505050565b7f3c646566733e0000000000000000000000000000000000000000000000000000600082015250565b600061414c6006836136ed565b915061415782614116565b600682019050919050565b7f3c72616469616c4772616469656e742069643d22000000000000000000000000600082015250565b60006141986014836136ed565b91506141a382614162565b601482019050919050565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b60006141e46002836136ed565b91506141ef826141ae565b600282019050919050565b7f3c73746f70206f66667365743d223025222073746f702d636f6c6f723d220000600082015250565b6000614230601e836136ed565b915061423b826141fa565b601e82019050919050565b7f222f3e0000000000000000000000000000000000000000000000000000000000600082015250565b600061427c6003836136ed565b915061428782614246565b600382019050919050565b7f3c73746f70206f66667365743d2231303025222073746f702d636f6c6f723d22600082015250565b60006142c86020836136ed565b91506142d382614292565b602082019050919050565b7f3c2f72616469616c4772616469656e743e000000000000000000000000000000600082015250565b60006143146011836136ed565b915061431f826142de565b601182019050919050565b7f3c2f646566733e00000000000000000000000000000000000000000000000000600082015250565b60006143606007836136ed565b915061436b8261432a565b600782019050919050565b7f3c636972636c652063783d220000000000000000000000000000000000000000600082015250565b60006143ac600c836136ed565b91506143b782614376565b600c82019050919050565b7f222063793d220000000000000000000000000000000000000000000000000000600082015250565b60006143f86006836136ed565b9150614403826143c2565b600682019050919050565b7f2220723d22000000000000000000000000000000000000000000000000000000600082015250565b60006144446005836136ed565b915061444f8261440e565b600582019050919050565b7f222066696c6c3d2275726c282300000000000000000000000000000000000000600082015250565b6000614490600d836136ed565b915061449b8261445a565b600d82019050919050565b7f2922203e00000000000000000000000000000000000000000000000000000000600082015250565b60006144dc6004836136ed565b91506144e7826144a6565b600482019050919050565b7f3c616e696d617465206174747269627574654e616d653d226f7061636974792260008201527f2076616c7565733d22303b313b3022206475723d220000000000000000000000602082015250565b600061454e6035836136ed565b9150614559826144f2565b603582019050919050565b7f732220726570656174436f756e743d22696e646566696e69746522202f3e0000600082015250565b600061459a601e836136ed565b91506145a582614564565b601e82019050919050565b7f3c616e696d6174655472616e73666f726d20617474726962757465547970653d60008201527f22786d6c22206174747269627574654e616d653d227472616e73666f726d222060208201527f747970653d22726f74617465222066726f6d3d223336302220746f3d2230203460408201527f30302034303022206475723d2200000000000000000000000000000000000000606082015250565b6000614658606d836136ed565b9150614663826145b0565b606d82019050919050565b7f732220726570656174436f756e743d22696e646566696e697465222f3e000000600082015250565b60006146a4601d836136ed565b91506146af8261466e565b601d82019050919050565b7f3c616e696d6174654d6f74696f6e206475723d22000000000000000000000000600082015250565b60006146f06014836136ed565b91506146fb826146ba565b601482019050919050565b7f732220726570656174436f756e743d22696e646566696e697465223e3c6d706160008201527f746820687265663d22237a69677a6167222f3e3c2f616e696d6174654d6f746960208201527f6f6e3e0000000000000000000000000000000000000000000000000000000000604082015250565b60006147886043836136ed565b915061479382614706565b604382019050919050565b7f3c2f636972636c653e0000000000000000000000000000000000000000000000600082015250565b60006147d46009836136ed565b91506147df8261479e565b600982019050919050565b60006147f6828e613802565b91506148018261413f565b915061480c8261418b565b9150614818828d613802565b9150614823826141d7565b915061482e82614223565b915061483a828c613802565b91506148458261426f565b9150614850826142bb565b915061485c828b613802565b91506148678261426f565b915061487282614307565b915061487d82614353565b91506148888261439f565b9150614894828a613802565b915061489f826143eb565b91506148ab8289613802565b91506148b682614437565b91506148c28288613802565b91506148cd82614483565b91506148d98287613802565b91506148e4826144cf565b91506148ef82614541565b91506148fb8286613802565b91506149068261458d565b91506149118261464b565b915061491d8285613802565b915061492882614697565b9150614933826146e3565b915061493f8284613802565b915061494a8261477b565b9150614955826147c7565b91508190509c9b505050505050505050505050565b7f3c726563742077696474683d22373522206865696768743d22373522203e3c6160008201527f6e696d617465206174747269627574654e616d653d2266696c6c222076616c7560208201527f65733d2200000000000000000000000000000000000000000000000000000000604082015250565b60006149ec6044836136ed565b91506149f78261496a565b604482019050919050565b7f22206475723d22302e34732220726570656174436f756e743d22696e6465666960008201527f6e69746522202f3e000000000000000000000000000000000000000000000000602082015250565b6000614a5e6028836136ed565b9150614a6982614a02565b602882019050919050565b7f3c616e696d617465206174747269627574654e616d653d226f7061636974792260008201527f2076616c7565733d22303b000000000000000000000000000000000000000000602082015250565b6000614ad0602b836136ed565b9150614adb82614a74565b602b82019050919050565b7f3b3022206475723d22302e31732220726570656174436f756e743d22696e646560008201527f66696e69746522202f3e00000000000000000000000000000000000000000000602082015250565b6000614b42602a836136ed565b9150614b4d82614ae6565b602a82019050919050565b7f3c616e696d6174655472616e73666f726d20617474726962757465547970653d60008201527f22786d6c22206174747269627574654e616d653d227472616e73666f726d222060208201527f747970653d22726f74617465222066726f6d3d223336302220746f3d22302000604082015250565b6000614bda605f836136ed565b9150614be582614b58565b605f82019050919050565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c266001836136ed565b9150614c3182614bf0565b600182019050919050565b7f22206475723d2200000000000000000000000000000000000000000000000000600082015250565b6000614c726007836136ed565b9150614c7d82614c3c565b600782019050919050565b7f732220726570656174436f756e743d22696e646566696e697465223e3c6d706160008201527f746820687265663d22237a69677a6167223e3c2f6d706174683e3c2f616e696d60208201527f6174654d6f74696f6e3e00000000000000000000000000000000000000000000604082015250565b6000614d0a604a836136ed565b9150614d1582614c88565b604a82019050919050565b7f3c2f726563743e00000000000000000000000000000000000000000000000000600082015250565b6000614d566007836136ed565b9150614d6182614d20565b600782019050919050565b6000614d78828a613802565b9150614d83826149df565b9150614d8f8289613802565b9150614d9a82614a51565b9150614da582614ac3565b9150614db18288613802565b9150614dbc82614b35565b9150614dc782614bcd565b9150614dd38287613802565b9150614dde82614c19565b9150614dea8286613802565b9150614df582614c65565b9150614e018285613802565b9150614e0c82614697565b9150614e17826146e3565b9150614e238284613802565b9150614e2e82614cfd565b9150614e3982614d49565b915081905098975050505050505050565b7f3c70617468207472616e73666f726d3d227363616c652832292220643d226d3360008201527f393620333732632d3120312d3420352d3620372d3120312d3220322d3320322d60208201527f3320312d3520352d33203620302030203120302031203020302030203120302060408201527f31203020312031203220312034203020322d31203120302d3120332d3420362d60608201527f3620382d3920372d3220302d332d312d332d3320302d322d312d312d3120312060808201527f30203520382035203132203020332d3420392d313420392d313520302d312d3160a08201527f2d312d322030203020302d3120312d3120312d3120302d3320322d3420342d3260c08201527f20332d3320332d32203020332d3620382d31322031302d31322031203020312060e08201527f3020312d3120302d312d322d312d322e3836312d2e303522207374726f6b653d6101008201527f220000000000000000000000000000000000000000000000000000000000000061012082015250565b6000614fd9610121836136ed565b9150614fe482614e4a565b61012182019050919050565b6000614ffc8285613802565b915061500782614fcb565b91506150138284613802565b915061501e8261426f565b91508190509392505050565b7f3c646566733e3c6c696e6561724772616469656e742069643d22000000000000600082015250565b6000615060601a836136ed565b915061506b8261502a565b601a82019050919050565b7f222078313d223025222079313d223025222078323d2231303025222079323d2260008201527f31303025223e3c73746f70206f66667365743d223025222073746f702d636f6c60208201527f6f723d2200000000000000000000000000000000000000000000000000000000604082015250565b60006150f86044836136ed565b915061510382615076565b604482019050919050565b7f222f3e3c73746f70206f66667365743d2231303025222073746f702d636f6c6f60008201527f723d220000000000000000000000000000000000000000000000000000000000602082015250565b600061516a6023836136ed565b91506151758261510e565b602382019050919050565b7f222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e0000000000600082015250565b60006151b6601b836136ed565b91506151c182615180565b601b82019050919050565b7f3c7265637420783d220000000000000000000000000000000000000000000000600082015250565b60006152026009836136ed565b915061520d826151cc565b600982019050919050565b7f2220793d22000000000000000000000000000000000000000000000000000000600082015250565b600061524e6005836136ed565b915061525982615218565b600582019050919050565b7f22207769647468203d202235302220686569676874203d20223530222066696c60008201527f6c3d2275726c2823000000000000000000000000000000000000000000000000602082015250565b60006152c06028836136ed565b91506152cb82615264565b602882019050919050565b7f2922202072783d223135223e0000000000000000000000000000000000000000600082015250565b600061530c600c836136ed565b9150615317826152d6565b600c82019050919050565b7f3c616e696d617465206174747269627574654e616d653d226f7061636974792260008201527f2076616c7565733d22303b313b3022206475723d22302e31732220726570656160208201527f74436f756e743d22696e646566696e69746522202f3e3c2f726563743e000000604082015250565b60006153a4605d836136ed565b91506153af82615322565b605d82019050919050565b60006153c6828a613802565b91506153d182615053565b91506153dd8289613802565b91506153e8826150eb565b91506153f48288613802565b91506153ff8261515d565b915061540b8287613802565b9150615416826151a9565b9150615421826151f5565b915061542d8286613802565b915061543882615241565b91506154448285613802565b915061544f826152b3565b915061545b8284613802565b9150615466826152ff565b915061547182615397565b915081905098975050505050505050565b600061548d82612de3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036154bf576154be61368a565b5b600182019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b60006155006006836136ed565b915061550b826154ca565b600682019050919050565b60006155228284613802565b915061552d826154f3565b915081905092915050565b7f7b226e616d65223a20224e465420230000000000000000000000000000000000600082015250565b600061556e600f836136ed565b915061557982615538565b600f82019050919050565b7f222c20226465736372697074696f6e223a2022416e206f6e2d636861696e206760008201527f656e657261746564204e465420776974682072616e646f6d207368617065732060208201527f616e6420636f6c6f72732c20616e696d6174656421222c2022696d616765223a60408201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000606082015250565b600061562c607c836136ed565b915061563782615584565b607c82019050919050565b7f222c202261747472696275746573223a5b7b2274726169745f74797065223a2260008201527f6e756d6265724f66536861706573222c202276616c7565223a22000000000000602082015250565b600061569e603a836136ed565b91506156a982615642565b603a82019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006156ea6004836136ed565b91506156f5826156b4565b600482019050919050565b600061570b82615561565b91506157178286613802565b91506157228261561f565b915061572e8285613802565b915061573982615691565b91506157458284613802565b9150615750826156dd565b9150819050949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615793601d836136ed565b915061579e8261575d565b601d82019050919050565b60006157b482615786565b91506157c08284613802565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615827602683612d3c565b9150615832826157cb565b604082019050919050565b600060208201905081810360008301526158568161581a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061589b81612ea2565b92915050565b6000602082840312156158b7576158b6612c6c565b5b60006158c58482850161588c565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061592a602583612d3c565b9150615935826158ce565b604082019050919050565b600060208201905081810360008301526159598161591d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006159bc602483612d3c565b91506159c782615960565b604082019050919050565b600060208201905081810360008301526159eb816159af565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615a28602083612d3c565b9150615a33826159f2565b602082019050919050565b60006020820190508181036000830152615a5781615a1b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615a94601983612d3c565b9150615a9f82615a5e565b602082019050919050565b60006020820190508181036000830152615ac381615a87565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615b26603283612d3c565b9150615b3182615aca565b604082019050919050565b60006020820190508181036000830152615b5581615b19565b9050919050565b6000615b6782612de3565b9150615b7283612de3565b925082615b8257615b8161362a565b5b828204905092915050565b7f7267622800000000000000000000000000000000000000000000000000000000600082015250565b6000615bc36004836136ed565b9150615bce82615b8d565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615c0f6001836136ed565b9150615c1a82615bd9565b600182019050919050565b7f2900000000000000000000000000000000000000000000000000000000000000600082015250565b6000615c5b6001836136ed565b9150615c6682615c25565b600182019050919050565b6000615c7c82615bb6565b9150615c888286613802565b9150615c9382615c02565b9150615c9f8285613802565b9150615caa82615c02565b9150615cb68284613802565b9150615cc182615c4e565b9150819050949350505050565b6000615cd982612de3565b915060008203615cec57615ceb61368a565b5b600182039050919050565b6000615d038285613802565b9150615d0f8284613802565b91508190509392505050565b6000615d2682612de3565b9150615d3183612de3565b9250828202615d3f81612de3565b91508282048414831517615d5657615d5561368a565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b6000615d8482615d5d565b615d8e8185615d68565b9350615d9e818560208601612d4d565b615da781612d77565b840191505092915050565b6000608082019050615dc76000830187612e78565b615dd46020830186612e78565b615de16040830185612f0e565b8181036060830152615df38184615d79565b905095945050505050565b600081519050615e0d81612ca2565b92915050565b600060208284031215615e2957615e28612c6c565b5b6000615e3784828501615dfe565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e76602083612d3c565b9150615e8182615e40565b602082019050919050565b60006020820190508181036000830152615ea581615e69565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ee2601c83612d3c565b9150615eed82615eac565b602082019050919050565b60006020820190508181036000830152615f1181615ed5565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220eadab41b8edc455292c7e0af94b6ddb928e95690c941e87ecca21df6968f20a864736f6c63430008120033
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.