Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
274 ALNDSCPS
Holders
100
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 ALNDSCPSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ArtLootLandscapes
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ArtLoot is where abstract Art is stored on-chain and has API for everybody to use. This is the first collection of Abstract Landscapes. Feel free to use those landscapes in any way you wish. */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./Base64.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract ArtLootLandscapes is ERC721, ReentrancyGuard, Ownable { uint internal _presaleSupply = 0; uint internal _saleSupply = 0; uint internal alPrice = 20000000000000000; //0.02 eth uint internal maxPurchase = 10; bool public publicSale = false; bool public preSale = false; uint internal _maxPresale = 222; uint internal _maxSale = 2000; using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 public MIN_COLORS = 2; uint256 public DELTA = 5; mapping (uint256 => uint256) colorsSubstr; mapping (uint256 => uint256) colorsAdd; mapping(address => bool) private accessList; string[] private hexNums = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"]; // Access modifier onlyAccess() { require(accessList[_msgSender()] == true, "Access not permitted"); _; } function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getColorsNum(uint256 tokenId, address checkAddr) public view returns (uint256) { require(_exists(tokenId), "!Token"); uint256 numColors = random(string(abi.encodePacked("COLOR", toString(tokenId), checkAddr))) % DELTA + MIN_COLORS - colorsSubstr[tokenId] + colorsAdd[tokenId]; if (numColors < 2) { return 2; } else if (numColors > 7) { return 7; } else { return numColors; } } function getOneColor(uint256 tokenId, uint256 salt, address checkAddr) public view returns (uint256[] memory color) { require(_exists(tokenId), "!Token"); color = new uint256[](6); uint256 rand = random(string(abi.encodePacked(salt, toString(tokenId), checkAddr))); for (uint256 i = 0; i < 6; i++) { color[i] = uint256(keccak256(abi.encode(rand, i))) % 16; } return color; } function getColors(uint256 tokenId, address checkAddr) public view returns (uint256[][] memory colors) { require(_exists(tokenId), "!Token"); uint256 colorsNum = getColorsNum(tokenId, checkAddr); colors = new uint256[][](colorsNum); for (uint256 i = 0; i < colorsNum; i++) { colors[i] = getOneColor(tokenId, i, checkAddr); } return colors; } function getColorsString(uint256 tokenId, address checkAddr) public view returns (string[] memory colorsString) { uint256 colorsNum = getColorsNum(tokenId, checkAddr); colorsString = new string[](colorsNum); for (uint256 i = 0; i < colorsNum; i++) { colorsString[i] = getOneColorString(getOneColor(tokenId, i, checkAddr)); } return colorsString; } function getOneColorString(uint256[] memory color) public view returns (string memory colorString) { colorString = "#"; for (uint256 i = 0; i < color.length; i++) { colorString = string(abi.encodePacked(colorString, hexNums[color[i]])); } return colorString; } function getColorSizes(uint256 tokenId, address checkAddr) public view returns (uint256[] memory sizes) { uint256 colorsNum = getColorsNum(tokenId, checkAddr); uint256 totalSize = 0; for (uint256 i = 0; i < colorsNum; i++) { totalSize += sumArray(getOneColor(tokenId, i, checkAddr)); } sizes = new uint[](colorsNum); for (uint256 i = 0; i < colorsNum; i++) { sizes[i] = sumArray(getOneColor(tokenId, i, checkAddr)) * 1000 / totalSize; } return sizes; } function invertColor(uint256[] memory color) public pure returns (uint256[] memory invColor) { invColor = new uint256[](color.length); for (uint256 i = 0; i < color.length; i++) { invColor[i] = 15 - color[i]; } } function sumArray(uint256[] memory array) internal pure returns (uint256) { uint256 sum = 0; for (uint256 i = 0; i < array.length; i++) { sum += array[i]; } return sum; } function tokenURIFor(uint256 tokenId, address checkAddr) public view returns (string memory) { string memory svg = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1000 1000"> <rect width="100%" height="100%" fill="black" /> <style>.base { font-family: monospace; font-size: 30px;}</style>'; uint256 colorsNum = getColorsNum(tokenId, checkAddr); uint256 yStart = 0; uint256[] memory sizes = getColorSizes(tokenId, checkAddr); string[] memory colorsString = getColorsString(tokenId, checkAddr); for (uint256 i = 0; i < colorsNum; i++) { uint256 size = sizes[i]; if (i==(colorsNum-1)) { size = 1000 - yStart; } string memory rect = string(abi.encodePacked(' <rect x="0" y="', toString(yStart) ,'" width="100%" height="', toString(size) ,'" fill="', colorsString[i],'"/>')); yStart += size; svg = string(abi.encodePacked(svg, rect)); } svg = string(abi.encodePacked(svg, '</svg>')); string memory json = string(abi.encodePacked('{"name": "ArtLoot Landscape #', toString(tokenId), '", "description": "ArtLoot is where abstract Art is stored on-chain", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(svg)), '",')); string memory json_attr1 = string(abi.encodePacked(json, '"attributes": [{"trait_type": "Colors", "value": "',toString(getColorsNum(tokenId, checkAddr)), '"}')); string memory json_attr2; for (uint i=1; i <= colorsNum; i++) { json_attr2 = string(abi.encodePacked(json_attr2, ', {"trait_type": "Color #', toString(i),'", "value": "',colorsString[i-1], '"}')); } string memory json_attr_b64 = Base64.encode(bytes(string(abi.encodePacked(json_attr1, json_attr2, ']}')))); string memory output = string(abi.encodePacked('data:application/json;base64,', json_attr_b64)); return output; } function tokenURI(uint256 tokenId) override public view returns (string memory) { return tokenURIFor(tokenId, ownerOf(tokenId)); } function freeClaim() public nonReentrant { require(preSale, "presale not started"); require(_presaleSupply + 1 <= _maxPresale, "presaleover"); _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_msgSender(), newItemId); _presaleSupply++; } function claim(uint256 _alQty) public payable nonReentrant { require(publicSale, "Sale not started"); require(_alQty <= maxPurchase, "MaxPurch"); require(_saleSupply + _alQty <= _maxSale, "MaxSupply"); uint256 salePrice = _alQty*alPrice; require(msg.value >= salePrice, "low eth"); for (uint256 i = 0; i < _alQty; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_msgSender(), newItemId); _saleSupply++; } } function adminClaim(uint256 _alQty, address _to) onlyOwner public { require(_saleSupply + _alQty <= _maxSale, "MaxSupply"); for (uint256 i = 0; i < _alQty; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(_to, newItemId); _saleSupply++; } } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } function tokensOfOwner(address _owner) external view returns(uint256[] memory ownerTokens) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalNFTs = totalSupply(); uint256 resultIndex = 0; uint256 NFTId; for (NFTId = 1; NFTId <= totalNFTs; NFTId++) { if (ownerOf(NFTId) == _owner) { result[resultIndex] = NFTId; resultIndex++; } } return result; } } function switchSale() external onlyOwner { publicSale = !publicSale; } function switchPresale() external onlyOwner { preSale = !preSale; } function grantAccess(address _newAccesser) public onlyOwner { accessList[_newAccesser] = true; } function addColor(uint256 tokenId) public onlyAccess { colorsAdd[tokenId] += 1; } function substrColor(uint256 tokenId) public onlyAccess { colorsSubstr[tokenId] += 1; } // Get total Supply function totalSupply() public view returns (uint) { return _presaleSupply + _saleSupply; } // Get current price function getPrice() public view returns (uint) { return alPrice; } // Get maximum allowance function getMax() public view returns (uint) { return maxPurchase; } // Set price function setPrice(uint _newPrice) public onlyOwner { alPrice = _newPrice; } // Set max function setMaxPurch(uint _newMax) public onlyOwner { maxPurchase = _newMax; } // Set presale amount function setMaxPresale(uint _newMax) public onlyOwner { _maxPresale = _newMax; } // Set sale amount function setMaxSale(uint _newMax) public onlyOwner { _maxSale = _newMax; } //withdraw function withdraw(uint256 amt) public onlyOwner { payable(msg.sender).transfer(amt); } constructor() ERC721("AL Landscapes", "ALNDSCPS") Ownable() {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_COLORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"addColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alQty","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"adminClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alQty","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeClaim","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"checkAddr","type":"address"}],"name":"getColorSizes","outputs":[{"internalType":"uint256[]","name":"sizes","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"checkAddr","type":"address"}],"name":"getColors","outputs":[{"internalType":"uint256[][]","name":"colors","type":"uint256[][]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"checkAddr","type":"address"}],"name":"getColorsNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"checkAddr","type":"address"}],"name":"getColorsString","outputs":[{"internalType":"string[]","name":"colorsString","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"address","name":"checkAddr","type":"address"}],"name":"getOneColor","outputs":[{"internalType":"uint256[]","name":"color","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"color","type":"uint256[]"}],"name":"getOneColorString","outputs":[{"internalType":"string","name":"colorString","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAccesser","type":"address"}],"name":"grantAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"color","type":"uint256[]"}],"name":"invertColor","outputs":[{"internalType":"uint256[]","name":"invColor","type":"uint256[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPurch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"substrColor","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":"switchPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchSale","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"checkAddr","type":"address"}],"name":"tokenURIFor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600855600060095566470de4df820000600a55600a600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff02191690831515021790555060de600d556107d0600e55600260105560056011556040518061020001604052806040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f370000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f390000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f610000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f620000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f630000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f640000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f650000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f6600000000000000000000000000000000000000000000000000000000000000815250815250601590601062000435929190620005e0565b503480156200044357600080fd5b506040518060400160405280600d81526020017f414c204c616e64736361706573000000000000000000000000000000000000008152506040518060400160405280600881526020017f414c4e44534350530000000000000000000000000000000000000000000000008152508160009080519060200190620004c892919062000647565b508060019080519060200190620004e192919062000647565b50505060016006819055506200050c620005006200051260201b60201c565b6200051a60201b60201c565b620007ca565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000634579160200282015b82811115620006335782518290805190602001906200062292919062000647565b509160200191906001019062000601565b5b509050620006439190620006d8565b5090565b828054620006559062000765565b90600052602060002090601f016020900481019282620006795760008555620006c5565b82601f106200069457805160ff1916838001178555620006c5565b82800160010185558215620006c5579182015b82811115620006c4578251825591602001919060010190620006a7565b5b509050620006d4919062000700565b5090565b5b80821115620006fc5760008181620006f291906200071f565b50600101620006d9565b5090565b5b808211156200071b57600081600090555060010162000701565b5090565b5080546200072d9062000765565b6000825580601f1062000741575062000762565b601f01602090049060005260206000209081019062000761919062000700565b5b50565b600060028204905060018216806200077e57607f821691505b602082108114156200079557620007946200079b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615eb180620007da6000396000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063ac3f32e0116100c1578063c87b56dd1161007a578063c87b56dd14610975578063d5c69831146109b2578063e88d3b3e146109ef578063e985e9c514610a06578063ecb5fff614610a43578063f2fde38b14610a6e57610272565b8063ac3f32e014610869578063ad7ce58a14610892578063b79182bb146108cf578063b88d4fde1461090c578063c29ad3ff14610935578063c6e670e41461094c57610272565b806391b7f5ed1161011357806391b7f5ed1461075b57806395d89b411461078457806398d5fdca146107af5780639c354b24146107da578063a22cb46514610817578063a2fd9ec01461084057610272565b8063715018a6146106625780638462151c146106795780638be3be60146106b65780638ceb8fbe146106f35780638da5cb5b1461073057610272565b80633075f552116101e857806346e2387a116101ac57806346e2387a1461052c5780635322f9d11461056957806359991fdd146105805780635a7adf7f146105bd5780636352211e146105e857806370a082311461062557610272565b80633075f5521461046857806333bc1c5c14610493578063379607f5146104be57806342842e0e146104da5780634321f9ff1461050357610272565b80630ae5e7391161023a5780630ae5e7391461036e57806311d4d71c1461039757806318160ddd146103c25780631bbc1afa146103ed57806323b872dd146104165780632e1a7d4d1461043f57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df57806308290dc51461031c578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613e79565b610a97565b6040516102ab9190614bb8565b60405180910390f35b3480156102c057600080fd5b506102c9610b79565b6040516102d69190614bd3565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613ecb565b610c0b565b6040516103139190614aeb565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613ecb565b610c90565b005b34801561035157600080fd5b5061036c60048036038101906103679190613dfc565b610d16565b005b34801561037a57600080fd5b5061039560048036038101906103909190613c91565b610e2e565b005b3480156103a357600080fd5b506103ac610f05565b6040516103b99190614ef5565b60405180910390f35b3480156103ce57600080fd5b506103d7610f0b565b6040516103e49190614ef5565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190613ecb565b610f22565b005b34801561042257600080fd5b5061043d60048036038101906104389190613cf6565b610fa8565b005b34801561044b57600080fd5b5061046660048036038101906104619190613ecb565b611008565b005b34801561047457600080fd5b5061047d6110ce565b60405161048a9190614ef5565b60405180910390f35b34801561049f57600080fd5b506104a86110d8565b6040516104b59190614bb8565b60405180910390f35b6104d860048036038101906104d39190613ecb565b6110eb565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613cf6565b6112e1565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613ecb565b611301565b005b34801561053857600080fd5b50610553600480360381019061054e9190613f30565b6113c9565b6040516105609190614b96565b60405180910390f35b34801561057557600080fd5b5061057e611562565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613ef4565b61160a565b6040516105b49190614b96565b60405180910390f35b3480156105c957600080fd5b506105d2611762565b6040516105df9190614bb8565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613ecb565b611775565b60405161061c9190614aeb565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613c91565b611827565b6040516106599190614ef5565b60405180910390f35b34801561066e57600080fd5b506106776118df565b005b34801561068557600080fd5b506106a0600480360381019061069b9190613c91565b611967565b6040516106ad9190614b96565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190613e38565b611b37565b6040516106ea9190614b96565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613ef4565b611c62565b6040516107279190614bd3565b60405180910390f35b34801561073c57600080fd5b50610745611f74565b6040516107529190614aeb565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190613ecb565b611f9e565b005b34801561079057600080fd5b50610799612024565b6040516107a69190614bd3565b60405180910390f35b3480156107bb57600080fd5b506107c46120b6565b6040516107d19190614ef5565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc9190613ef4565b6120c0565b60405161080e9190614ef5565b60405180910390f35b34801561082357600080fd5b5061083e60048036038101906108399190613dc0565b6121c7565b005b34801561084c57600080fd5b5061086760048036038101906108629190613ecb565b612348565b005b34801561087557600080fd5b50610890600480360381019061088b9190613ef4565b612410565b005b34801561089e57600080fd5b506108b960048036038101906108b49190613e38565b61253c565b6040516108c69190614bd3565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190613ef4565b612642565b6040516109039190614b52565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613d45565b612785565b005b34801561094157600080fd5b5061094a6127e7565b005b34801561095857600080fd5b50610973600480360381019061096e9190613ecb565b61288f565b005b34801561098157600080fd5b5061099c60048036038101906109979190613ecb565b612915565b6040516109a99190614bd3565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d49190613ef4565b612930565b6040516109e69190614b74565b60405180910390f35b3480156109fb57600080fd5b50610a04612a33565b005b348015610a1257600080fd5b50610a2d6004803603810190610a289190613cba565b612b6f565b604051610a3a9190614bb8565b60405180910390f35b348015610a4f57600080fd5b50610a58612c03565b604051610a659190614ef5565b60405180910390f35b348015610a7a57600080fd5b50610a956004803603810190610a909190613c91565b612c09565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b725750610b7182612d01565b5b9050919050565b606060008054610b88906152ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb4906152ab565b8015610c015780601f10610bd657610100808354040283529160200191610c01565b820191906000526020600020905b815481529060010190602001808311610be457829003601f168201915b5050505050905090565b6000610c1682612d6b565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90614dd5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c98612dd7565b73ffffffffffffffffffffffffffffffffffffffff16610cb6611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390614df5565b60405180910390fd5b80600e8190555050565b6000610d2182611775565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990614e75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db1612dd7565b73ffffffffffffffffffffffffffffffffffffffff161480610de05750610ddf81610dda612dd7565b612b6f565b5b610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690614d55565b60405180910390fd5b610e298383612ddf565b505050565b610e36612dd7565b73ffffffffffffffffffffffffffffffffffffffff16610e54611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614df5565b60405180910390fd5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60105481565b6000600954600854610f1d91906150e0565b905090565b610f2a612dd7565b73ffffffffffffffffffffffffffffffffffffffff16610f48611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590614df5565b60405180910390fd5b80600d8190555050565b610fb9610fb3612dd7565b82612e98565b610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90614e95565b60405180910390fd5b611003838383612f76565b505050565b611010612dd7565b73ffffffffffffffffffffffffffffffffffffffff1661102e611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90614df5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110ca573d6000803e3d6000fd5b5050565b6000600b54905090565b600c60009054906101000a900460ff1681565b60026006541415611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890614eb5565b60405180910390fd5b6002600681905550600c60009054906101000a900460ff16611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614d35565b60405180910390fd5b600b548111156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490614e35565b60405180910390fd5b600e54816009546111de91906150e0565b111561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690614bf5565b60405180910390fd5b6000600a548261122f9190615167565b905080341015611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90614ed5565b60405180910390fd5b60005b828110156112d457611289600f6131d2565b6000611295600f6131e8565b90506112a86112a2612dd7565b826131f6565b600960008154809291906112bb9061530e565b91905055505080806112cc9061530e565b915050611277565b5050600160068190555050565b6112fc83838360405180602001604052806000815250612785565b505050565b6001151560146000611311612dd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290614c15565b60405180910390fd5b60016012600083815260200190815260200160002060008282546113bf91906150e0565b9250508190555050565b60606113d484612d6b565b611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90614c95565b60405180910390fd5b600667ffffffffffffffff811115611454577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114825781602001602082028036833780820191505090505b50905060006114bb8461149487613214565b856040516020016114a793929190614ab2565b6040516020818303038152906040526133c1565b905060005b600681101561155957601082826040516020016114de929190614f10565b6040516020818303038152906040528051906020012060001c6115019190615385565b83828151811061153a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115519061530e565b9150506114c0565b50509392505050565b61156a612dd7565b73ffffffffffffffffffffffffffffffffffffffff16611588611f74565b73ffffffffffffffffffffffffffffffffffffffff16146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590614df5565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600061161884846120c0565b90506000805b82811015611659576116396116348783886113c9565b6133f4565b8261164491906150e0565b915080806116519061530e565b91505061161e565b508167ffffffffffffffff81111561169a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116c85781602001602082028036833780820191505090505b50925060005b8281101561175957816103e86116ed6116e889858a6113c9565b6133f4565b6116f79190615167565b6117019190615136565b84828151811061173a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117519061530e565b9150506116ce565b50505092915050565b600c60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614d95565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90614d75565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118e7612dd7565b73ffffffffffffffffffffffffffffffffffffffff16611905611f74565b73ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614df5565b60405180910390fd5b6119656000613472565b565b6060600061197483611827565b905060008114156119f757600067ffffffffffffffff8111156119c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119ee5781602001602082028036833780820191505090505b50915050611b32565b60008167ffffffffffffffff811115611a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a675781602001602082028036833780820191505090505b5090506000611a74610f0b565b9050600080600190505b828111611b29578673ffffffffffffffffffffffffffffffffffffffff16611aa582611775565b73ffffffffffffffffffffffffffffffffffffffff161415611b165780848381518110611afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180611b129061530e565b9250505b8080611b219061530e565b915050611a7e565b83955050505050505b919050565b6060815167ffffffffffffffff811115611b7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ba85781602001602082028036833780820191505090505b50905060005b8251811015611c5c57828181518110611bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f611c0491906151c1565b828281518110611c3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611c549061530e565b915050611bae565b50919050565b6060600060405180610100016040528060d68152602001615da660d6913990506000611c8e85856120c0565b9050600080611c9d878761160a565b90506000611cab8888612930565b905060005b84811015611de1576000838281518110611cf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600186611d0a91906151c1565b821415611d2257846103e8611d1f91906151c1565b90505b6000611d2d86613214565b611d3683613214565b858581518110611d6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151604051602001611d8993929190614a22565b60405160208183030381529060405290508186611da691906150e0565b95508781604051602001611dbb929190614896565b604051602081830303815290604052975050508080611dd99061530e565b915050611cb0565b5084604051602001611df39190614999565b60405160208183030381529060405294506000611e0f89613214565b611e1887613538565b604051602001611e299291906149bb565b6040516020818303038152906040529050600081611e4f611e4a8c8c6120c0565b613214565b604051602001611e6092919061490d565b604051602081830303815290604052905060606000600190505b878111611f0e5781611e8b82613214565b86600184611e9991906151c1565b81518110611ed0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151604051602001611eea93929190614947565b60405160208183030381529060405291508080611f069061530e565b915050611e7a565b506000611f3b8383604051602001611f279291906148ba565b604051602081830303815290604052613538565b9050600081604051602001611f509190614a00565b6040516020818303038152906040529050809a505050505050505050505092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa6612dd7565b73ffffffffffffffffffffffffffffffffffffffff16611fc4611f74565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190614df5565b60405180910390fd5b80600a8190555050565b606060018054612033906152ab565b80601f016020809104026020016040519081016040528092919081815260200182805461205f906152ab565b80156120ac5780601f10612081576101008083540402835291602001916120ac565b820191906000526020600020905b81548152906001019060200180831161208f57829003601f168201915b5050505050905090565b6000600a54905090565b60006120cb83612d6b565b61210a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210190614c95565b60405180910390fd5b60006013600085815260200190815260200160002054601260008681526020019081526020016000205460105460115461216c61214689613214565b88604051602001612158929190614a7f565b6040516020818303038152906040526133c1565b6121769190615385565b61218091906150e0565b61218a91906151c1565b61219491906150e0565b905060028110156121a95760029150506121c1565b60078111156121bc5760079150506121c1565b809150505b92915050565b6121cf612dd7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490614cd5565b60405180910390fd5b806005600061224a612dd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122f7612dd7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161233c9190614bb8565b60405180910390a35050565b6001151560146000612358612dd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990614c15565b60405180910390fd5b600160136000838152602001908152602001600020600082825461240691906150e0565b9250508190555050565b612418612dd7565b73ffffffffffffffffffffffffffffffffffffffff16612436611f74565b73ffffffffffffffffffffffffffffffffffffffff161461248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614df5565b60405180910390fd5b600e548260095461249d91906150e0565b11156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590614bf5565b60405180910390fd5b60005b82811015612537576124f3600f6131d2565b60006124ff600f6131e8565b905061250b83826131f6565b6009600081548092919061251e9061530e565b919050555050808061252f9061530e565b9150506124e1565b505050565b60606040518060400160405280600181526020017f2300000000000000000000000000000000000000000000000000000000000000815250905060005b825181101561263c578160158483815181106125be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815481106125fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040516020016126189291906148e9565b604051602081830303815290604052915080806126349061530e565b915050612579565b50919050565b606061264d83612d6b565b61268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390614c95565b60405180910390fd5b600061269884846120c0565b90508067ffffffffffffffff8111156126da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561270d57816020015b60608152602001906001900390816126f85790505b50915060005b8181101561277d576127268582866113c9565b83828151811061275f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018190525080806127759061530e565b915050612713565b505092915050565b612796612790612dd7565b83612e98565b6127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614e95565b60405180910390fd5b6127e1848484846136f6565b50505050565b6127ef612dd7565b73ffffffffffffffffffffffffffffffffffffffff1661280d611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90614df5565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b612897612dd7565b73ffffffffffffffffffffffffffffffffffffffff166128b5611f74565b73ffffffffffffffffffffffffffffffffffffffff161461290b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290290614df5565b60405180910390fd5b80600b8190555050565b60606129298261292484611775565b611c62565b9050919050565b6060600061293e84846120c0565b90508067ffffffffffffffff811115612980577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129b357816020015b606081526020019060019003908161299e5790505b50915060005b81811015612a2b576129d46129cf8683876113c9565b61253c565b838281518110612a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080612a239061530e565b9150506129b9565b505092915050565b60026006541415612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090614eb5565b60405180910390fd5b6002600681905550600c60019054906101000a900460ff16612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790614d15565b60405180910390fd5b600d546001600854612ae291906150e0565b1115612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90614e55565b60405180910390fd5b612b2d600f6131d2565b6000612b39600f6131e8565b9050612b4c612b46612dd7565b826131f6565b60086000815480929190612b5f9061530e565b9190505550506001600681905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b612c11612dd7565b73ffffffffffffffffffffffffffffffffffffffff16612c2f611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cec90614c55565b60405180910390fd5b612cfe81613472565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e5283611775565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ea382612d6b565b612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614cf5565b60405180910390fd5b6000612eed83611775565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f5c57508373ffffffffffffffffffffffffffffffffffffffff16612f4484610c0b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f6d5750612f6c8185612b6f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f9682611775565b73ffffffffffffffffffffffffffffffffffffffff1614612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe390614e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561305c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305390614cb5565b60405180910390fd5b613067838383613752565b613072600082612ddf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c291906151c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311991906150e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b613210828260405180602001604052806000815250613757565b5050565b6060600082141561325c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133bc565b600082905060005b6000821461328e5780806132779061530e565b915050600a826132879190615136565b9150613264565b60008167ffffffffffffffff8111156132d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133025781602001600182028036833780820191505090505b5090505b600085146133b55760018261331b91906151c1565b9150600a8561332a9190615385565b603061333691906150e0565b60f81b818381518110613372577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133ae9190615136565b9450613306565b8093505050505b919050565b6000816040516020016133d4919061487f565b6040516020818303038152906040528051906020012060001c9050919050565b6000806000905060005b835181101561346857838181518110613440577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518261345391906150e0565b915080806134609061530e565b9150506133fe565b5080915050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6060600082519050600081141561356157604051806020016040528060008152509150506136f1565b6000600360028361357291906150e0565b61357c9190615136565b60046135889190615167565b9050600060208261359991906150e0565b67ffffffffffffffff8111156135d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561360a5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615d66604091399050600181016020830160005b868110156136ae5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613635565b5060038606600181146136c857600281146136d8576136e3565b613d3d60f01b60028303526136e3565b603d60f81b60018303525b508484525050819450505050505b919050565b613701848484612f76565b61370d848484846137b2565b61374c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374390614c35565b60405180910390fd5b50505050565b505050565b6137618383613949565b61376e60008484846137b2565b6137ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a490614c35565b60405180910390fd5b505050565b60006137d38473ffffffffffffffffffffffffffffffffffffffff16613b17565b1561393c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137fc612dd7565b8786866040518563ffffffff1660e01b815260040161381e9493929190614b06565b602060405180830381600087803b15801561383857600080fd5b505af192505050801561386957506040513d601f19601f820116820180604052508101906138669190613ea2565b60015b6138ec573d8060008114613899576040519150601f19603f3d011682016040523d82523d6000602084013e61389e565b606091505b506000815114156138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138db90614c35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613941565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b090614db5565b60405180910390fd5b6139c281612d6b565b15613a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f990614c75565b60405180910390fd5b613a0e60008383613752565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a5e91906150e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000613b3d613b3884614f5e565b614f39565b90508083825260208201905082856020860282011115613b5c57600080fd5b60005b85811015613b8c5781613b728882613c7c565b845260208401935060208301925050600181019050613b5f565b5050509392505050565b6000613ba9613ba484614f8a565b614f39565b905082815260208101848484011115613bc157600080fd5b613bcc848285615269565b509392505050565b600081359050613be381615d09565b92915050565b600082601f830112613bfa57600080fd5b8135613c0a848260208601613b2a565b91505092915050565b600081359050613c2281615d20565b92915050565b600081359050613c3781615d37565b92915050565b600081519050613c4c81615d37565b92915050565b600082601f830112613c6357600080fd5b8135613c73848260208601613b96565b91505092915050565b600081359050613c8b81615d4e565b92915050565b600060208284031215613ca357600080fd5b6000613cb184828501613bd4565b91505092915050565b60008060408385031215613ccd57600080fd5b6000613cdb85828601613bd4565b9250506020613cec85828601613bd4565b9150509250929050565b600080600060608486031215613d0b57600080fd5b6000613d1986828701613bd4565b9350506020613d2a86828701613bd4565b9250506040613d3b86828701613c7c565b9150509250925092565b60008060008060808587031215613d5b57600080fd5b6000613d6987828801613bd4565b9450506020613d7a87828801613bd4565b9350506040613d8b87828801613c7c565b925050606085013567ffffffffffffffff811115613da857600080fd5b613db487828801613c52565b91505092959194509250565b60008060408385031215613dd357600080fd5b6000613de185828601613bd4565b9250506020613df285828601613c13565b9150509250929050565b60008060408385031215613e0f57600080fd5b6000613e1d85828601613bd4565b9250506020613e2e85828601613c7c565b9150509250929050565b600060208284031215613e4a57600080fd5b600082013567ffffffffffffffff811115613e6457600080fd5b613e7084828501613be9565b91505092915050565b600060208284031215613e8b57600080fd5b6000613e9984828501613c28565b91505092915050565b600060208284031215613eb457600080fd5b6000613ec284828501613c3d565b91505092915050565b600060208284031215613edd57600080fd5b6000613eeb84828501613c7c565b91505092915050565b60008060408385031215613f0757600080fd5b6000613f1585828601613c7c565b9250506020613f2685828601613bd4565b9150509250929050565b600080600060608486031215613f4557600080fd5b6000613f5386828701613c7c565b9350506020613f6486828701613c7c565b9250506040613f7586828701613bd4565b9150509250925092565b6000613f8b83836140cf565b905092915050565b6000613f9f83836141d3565b905092915050565b6000613fb3838361484a565b60208301905092915050565b613fc8816151f5565b82525050565b613fdf613fda826151f5565b615357565b82525050565b6000613ff082615000565b613ffa818561505e565b93508360208202850161400c85614fbb565b8060005b8581101561404857848403895281516140298582613f7f565b945061403483615037565b925060208a01995050600181019050614010565b50829750879550505050505092915050565b60006140658261500b565b61406f818561506f565b93508360208202850161408185614fcb565b8060005b858110156140bd578484038952815161409e8582613f93565b94506140a983615044565b925060208a01995050600181019050614085565b50829750879550505050505092915050565b60006140da82615016565b6140e48185615080565b93506140ef83614fdb565b8060005b838110156141205781516141078882613fa7565b975061411283615051565b9250506001810190506140f3565b5085935050505092915050565b600061413882615016565b6141428185615091565b935061414d83614fdb565b8060005b8381101561417e5781516141658882613fa7565b975061417083615051565b925050600181019050614151565b5085935050505092915050565b61419481615207565b82525050565b60006141a582615021565b6141af81856150a2565b93506141bf818560208601615278565b6141c881615472565b840191505092915050565b60006141de8261502c565b6141e881856150b3565b93506141f8818560208601615278565b61420181615472565b840191505092915050565b60006142178261502c565b61422181856150c4565b9350614231818560208601615278565b61423a81615472565b840191505092915050565b60006142508261502c565b61425a81856150d5565b935061426a818560208601615278565b80840191505092915050565b60008154614283816152ab565b61428d81866150d5565b945060018216600081146142a857600181146142b9576142ec565b60ff198316865281860193506142ec565b6142c285614feb565b60005b838110156142e4578154818901526001820191506020810190506142c5565b838801955050505b50505092915050565b60006143026009836150c4565b915061430d82615490565b602082019050919050565b60006143256032836150d5565b9150614330826154b9565b603282019050919050565b60006143486014836150c4565b915061435382615508565b602082019050919050565b600061436b6032836150c4565b915061437682615531565b604082019050919050565b600061438e6026836150c4565b915061439982615580565b604082019050919050565b60006143b16002836150d5565b91506143bc826155cf565b600282019050919050565b60006143d4601c836150c4565b91506143df826155f8565b602082019050919050565b60006143f76006836150c4565b915061440282615621565b602082019050919050565b600061441a601d836150d5565b91506144258261564a565b601d82019050919050565b600061443d600d836150d5565b915061444882615673565b600d82019050919050565b60006144606024836150c4565b915061446b8261569c565b604082019050919050565b60006144836019836150c4565b915061448e826156eb565b602082019050919050565b60006144a6602c836150c4565b91506144b182615714565b604082019050919050565b60006144c96013836150c4565b91506144d482615763565b602082019050919050565b60006144ec6017836150d5565b91506144f78261578c565b601782019050919050565b600061450f6010836150c4565b915061451a826157b5565b602082019050919050565b60006145326038836150c4565b915061453d826157de565b604082019050919050565b6000614555602a836150c4565b91506145608261582d565b604082019050919050565b60006145786029836150c4565b91506145838261587c565b604082019050919050565b600061459b6002836150d5565b91506145a6826158cb565b600282019050919050565b60006145be6020836150c4565b91506145c9826158f4565b602082019050919050565b60006145e1602c836150c4565b91506145ec8261591d565b604082019050919050565b60006146046020836150c4565b915061460f8261596c565b602082019050919050565b60006146276019836150d5565b915061463282615995565b601982019050919050565b600061464a6029836150c4565b9150614655826159be565b604082019050919050565b600061466d6002836150d5565b915061467882615a0d565b600282019050919050565b60006146906008836150c4565b915061469b82615a36565b602082019050919050565b60006146b3600b836150c4565b91506146be82615a5f565b602082019050919050565b60006146d66003836150d5565b91506146e182615a88565b600382019050919050565b60006146f96021836150c4565b915061470482615ab1565b604082019050919050565b600061471c601d836150d5565b915061472782615b00565b601d82019050919050565b600061473f6008836150d5565b915061474a82615b29565b600882019050919050565b60006147626031836150c4565b915061476d82615b52565b604082019050919050565b60006147856010836150d5565b915061479082615ba1565b601082019050919050565b60006147a86005836150d5565b91506147b382615bca565b600582019050919050565b60006147cb601f836150c4565b91506147d682615bf3565b602082019050919050565b60006147ee606a836150d5565b91506147f982615c1c565b606a82019050919050565b60006148116006836150d5565b915061481c82615cb7565b600682019050919050565b60006148346007836150c4565b915061483f82615ce0565b602082019050919050565b6148538161525f565b82525050565b6148628161525f565b82525050565b6148796148748261525f565b61537b565b82525050565b600061488b8284614245565b915081905092915050565b60006148a28285614245565b91506148ae8284614245565b91508190509392505050565b60006148c68285614245565b91506148d28284614245565b91506148dd82614660565b91508190509392505050565b60006148f58285614245565b91506149018284614276565b91508190509392505050565b60006149198285614245565b915061492482614318565b91506149308284614245565b915061493b8261458e565b91508190509392505050565b60006149538286614245565b915061495e8261461a565b915061496a8285614245565b915061497582614430565b91506149818284614245565b915061498c8261458e565b9150819050949350505050565b60006149a58284614245565b91506149b082614804565b915081905092915050565b60006149c68261440d565b91506149d28285614245565b91506149dd826147e1565b91506149e98284614245565b91506149f4826143a4565b91508190509392505050565b6000614a0b8261470f565b9150614a178284614245565b915081905092915050565b6000614a2d82614778565b9150614a398286614245565b9150614a44826144df565b9150614a508285614245565b9150614a5b82614732565b9150614a678284614245565b9150614a72826146c9565b9150819050949350505050565b6000614a8a8261479b565b9150614a968285614245565b9150614aa28284613fce565b6014820191508190509392505050565b6000614abe8286614868565b602082019150614ace8285614245565b9150614ada8284613fce565b601482019150819050949350505050565b6000602082019050614b006000830184613fbf565b92915050565b6000608082019050614b1b6000830187613fbf565b614b286020830186613fbf565b614b356040830185614859565b8181036060830152614b47818461419a565b905095945050505050565b60006020820190508181036000830152614b6c8184613fe5565b905092915050565b60006020820190508181036000830152614b8e818461405a565b905092915050565b60006020820190508181036000830152614bb0818461412d565b905092915050565b6000602082019050614bcd600083018461418b565b92915050565b60006020820190508181036000830152614bed818461420c565b905092915050565b60006020820190508181036000830152614c0e816142f5565b9050919050565b60006020820190508181036000830152614c2e8161433b565b9050919050565b60006020820190508181036000830152614c4e8161435e565b9050919050565b60006020820190508181036000830152614c6e81614381565b9050919050565b60006020820190508181036000830152614c8e816143c7565b9050919050565b60006020820190508181036000830152614cae816143ea565b9050919050565b60006020820190508181036000830152614cce81614453565b9050919050565b60006020820190508181036000830152614cee81614476565b9050919050565b60006020820190508181036000830152614d0e81614499565b9050919050565b60006020820190508181036000830152614d2e816144bc565b9050919050565b60006020820190508181036000830152614d4e81614502565b9050919050565b60006020820190508181036000830152614d6e81614525565b9050919050565b60006020820190508181036000830152614d8e81614548565b9050919050565b60006020820190508181036000830152614dae8161456b565b9050919050565b60006020820190508181036000830152614dce816145b1565b9050919050565b60006020820190508181036000830152614dee816145d4565b9050919050565b60006020820190508181036000830152614e0e816145f7565b9050919050565b60006020820190508181036000830152614e2e8161463d565b9050919050565b60006020820190508181036000830152614e4e81614683565b9050919050565b60006020820190508181036000830152614e6e816146a6565b9050919050565b60006020820190508181036000830152614e8e816146ec565b9050919050565b60006020820190508181036000830152614eae81614755565b9050919050565b60006020820190508181036000830152614ece816147be565b9050919050565b60006020820190508181036000830152614eee81614827565b9050919050565b6000602082019050614f0a6000830184614859565b92915050565b6000604082019050614f256000830185614859565b614f326020830184614859565b9392505050565b6000614f43614f54565b9050614f4f82826152dd565b919050565b6000604051905090565b600067ffffffffffffffff821115614f7957614f78615443565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614fa557614fa4615443565b5b614fae82615472565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150eb8261525f565b91506150f68361525f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561512b5761512a6153b6565b5b828201905092915050565b60006151418261525f565b915061514c8361525f565b92508261515c5761515b6153e5565b5b828204905092915050565b60006151728261525f565b915061517d8361525f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151b6576151b56153b6565b5b828202905092915050565b60006151cc8261525f565b91506151d78361525f565b9250828210156151ea576151e96153b6565b5b828203905092915050565b60006152008261523f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561529657808201518184015260208101905061527b565b838111156152a5576000848401525b50505050565b600060028204905060018216806152c357607f821691505b602082108114156152d7576152d6615414565b5b50919050565b6152e682615472565b810181811067ffffffffffffffff8211171561530557615304615443565b5b80604052505050565b60006153198261525f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561534c5761534b6153b6565b5b600182019050919050565b600061536282615369565b9050919050565b600061537482615483565b9050919050565b6000819050919050565b60006153908261525f565b915061539b8361525f565b9250826153ab576153aa6153e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d6178537570706c790000000000000000000000000000000000000000000000600082015250565b7f2261747472696275746573223a205b7b2274726169745f74797065223a20224360008201527f6f6c6f7273222c202276616c7565223a20220000000000000000000000000000602082015250565b7f416363657373206e6f74207065726d6974746564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f21546f6b656e0000000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a20224172744c6f6f74204c616e6473636170652023000000600082015250565b7f222c202276616c7565223a202200000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f70726573616c65206e6f74207374617274656400000000000000000000000000600082015250565b7f222077696474683d223130302522206865696768743d22000000000000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2c207b2274726169745f74797065223a2022436f6c6f72202300000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4d61785075726368000000000000000000000000000000000000000000000000600082015250565b7f70726573616c656f766572000000000000000000000000000000000000000000600082015250565b7f222f3e0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f222066696c6c3d22000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f203c7265637420783d22302220793d2200000000000000000000000000000000600082015250565b7f434f4c4f52000000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f222c20226465736372697074696f6e223a20224172744c6f6f7420697320776860008201527f657265206162737472616374204172742069732073746f726564206f6e2d636860208201527f61696e222c2022696d616765223a2022646174613a696d6167652f7376672b7860408201527f6d6c3b6261736536342c00000000000000000000000000000000000000000000606082015250565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b7f6c6f772065746800000000000000000000000000000000000000000000000000600082015250565b615d12816151f5565b8114615d1d57600080fd5b50565b615d2981615207565b8114615d3457600080fd5b50565b615d4081615213565b8114615d4b57600080fd5b50565b615d578161525f565b8114615d6257600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d2230203020313030302031303030223e203c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e203c7374796c653e2e62617365207b20666f6e742d66616d696c793a206d6f6e6f73706163653b20666f6e742d73697a653a20333070783b7d3c2f7374796c653ea2646970667358221220703a1356aaff227f908190d18a26055047bd0a6f3d64989e862fa2f1f5808e5164736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102725760003560e01c8063715018a61161014f578063ac3f32e0116100c1578063c87b56dd1161007a578063c87b56dd14610975578063d5c69831146109b2578063e88d3b3e146109ef578063e985e9c514610a06578063ecb5fff614610a43578063f2fde38b14610a6e57610272565b8063ac3f32e014610869578063ad7ce58a14610892578063b79182bb146108cf578063b88d4fde1461090c578063c29ad3ff14610935578063c6e670e41461094c57610272565b806391b7f5ed1161011357806391b7f5ed1461075b57806395d89b411461078457806398d5fdca146107af5780639c354b24146107da578063a22cb46514610817578063a2fd9ec01461084057610272565b8063715018a6146106625780638462151c146106795780638be3be60146106b65780638ceb8fbe146106f35780638da5cb5b1461073057610272565b80633075f552116101e857806346e2387a116101ac57806346e2387a1461052c5780635322f9d11461056957806359991fdd146105805780635a7adf7f146105bd5780636352211e146105e857806370a082311461062557610272565b80633075f5521461046857806333bc1c5c14610493578063379607f5146104be57806342842e0e146104da5780634321f9ff1461050357610272565b80630ae5e7391161023a5780630ae5e7391461036e57806311d4d71c1461039757806318160ddd146103c25780631bbc1afa146103ed57806323b872dd146104165780632e1a7d4d1461043f57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df57806308290dc51461031c578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613e79565b610a97565b6040516102ab9190614bb8565b60405180910390f35b3480156102c057600080fd5b506102c9610b79565b6040516102d69190614bd3565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613ecb565b610c0b565b6040516103139190614aeb565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613ecb565b610c90565b005b34801561035157600080fd5b5061036c60048036038101906103679190613dfc565b610d16565b005b34801561037a57600080fd5b5061039560048036038101906103909190613c91565b610e2e565b005b3480156103a357600080fd5b506103ac610f05565b6040516103b99190614ef5565b60405180910390f35b3480156103ce57600080fd5b506103d7610f0b565b6040516103e49190614ef5565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190613ecb565b610f22565b005b34801561042257600080fd5b5061043d60048036038101906104389190613cf6565b610fa8565b005b34801561044b57600080fd5b5061046660048036038101906104619190613ecb565b611008565b005b34801561047457600080fd5b5061047d6110ce565b60405161048a9190614ef5565b60405180910390f35b34801561049f57600080fd5b506104a86110d8565b6040516104b59190614bb8565b60405180910390f35b6104d860048036038101906104d39190613ecb565b6110eb565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613cf6565b6112e1565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613ecb565b611301565b005b34801561053857600080fd5b50610553600480360381019061054e9190613f30565b6113c9565b6040516105609190614b96565b60405180910390f35b34801561057557600080fd5b5061057e611562565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613ef4565b61160a565b6040516105b49190614b96565b60405180910390f35b3480156105c957600080fd5b506105d2611762565b6040516105df9190614bb8565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613ecb565b611775565b60405161061c9190614aeb565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613c91565b611827565b6040516106599190614ef5565b60405180910390f35b34801561066e57600080fd5b506106776118df565b005b34801561068557600080fd5b506106a0600480360381019061069b9190613c91565b611967565b6040516106ad9190614b96565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190613e38565b611b37565b6040516106ea9190614b96565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613ef4565b611c62565b6040516107279190614bd3565b60405180910390f35b34801561073c57600080fd5b50610745611f74565b6040516107529190614aeb565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190613ecb565b611f9e565b005b34801561079057600080fd5b50610799612024565b6040516107a69190614bd3565b60405180910390f35b3480156107bb57600080fd5b506107c46120b6565b6040516107d19190614ef5565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc9190613ef4565b6120c0565b60405161080e9190614ef5565b60405180910390f35b34801561082357600080fd5b5061083e60048036038101906108399190613dc0565b6121c7565b005b34801561084c57600080fd5b5061086760048036038101906108629190613ecb565b612348565b005b34801561087557600080fd5b50610890600480360381019061088b9190613ef4565b612410565b005b34801561089e57600080fd5b506108b960048036038101906108b49190613e38565b61253c565b6040516108c69190614bd3565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190613ef4565b612642565b6040516109039190614b52565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613d45565b612785565b005b34801561094157600080fd5b5061094a6127e7565b005b34801561095857600080fd5b50610973600480360381019061096e9190613ecb565b61288f565b005b34801561098157600080fd5b5061099c60048036038101906109979190613ecb565b612915565b6040516109a99190614bd3565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d49190613ef4565b612930565b6040516109e69190614b74565b60405180910390f35b3480156109fb57600080fd5b50610a04612a33565b005b348015610a1257600080fd5b50610a2d6004803603810190610a289190613cba565b612b6f565b604051610a3a9190614bb8565b60405180910390f35b348015610a4f57600080fd5b50610a58612c03565b604051610a659190614ef5565b60405180910390f35b348015610a7a57600080fd5b50610a956004803603810190610a909190613c91565b612c09565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b725750610b7182612d01565b5b9050919050565b606060008054610b88906152ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb4906152ab565b8015610c015780601f10610bd657610100808354040283529160200191610c01565b820191906000526020600020905b815481529060010190602001808311610be457829003601f168201915b5050505050905090565b6000610c1682612d6b565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90614dd5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c98612dd7565b73ffffffffffffffffffffffffffffffffffffffff16610cb6611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390614df5565b60405180910390fd5b80600e8190555050565b6000610d2182611775565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990614e75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db1612dd7565b73ffffffffffffffffffffffffffffffffffffffff161480610de05750610ddf81610dda612dd7565b612b6f565b5b610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690614d55565b60405180910390fd5b610e298383612ddf565b505050565b610e36612dd7565b73ffffffffffffffffffffffffffffffffffffffff16610e54611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614df5565b60405180910390fd5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60105481565b6000600954600854610f1d91906150e0565b905090565b610f2a612dd7565b73ffffffffffffffffffffffffffffffffffffffff16610f48611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590614df5565b60405180910390fd5b80600d8190555050565b610fb9610fb3612dd7565b82612e98565b610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90614e95565b60405180910390fd5b611003838383612f76565b505050565b611010612dd7565b73ffffffffffffffffffffffffffffffffffffffff1661102e611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90614df5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110ca573d6000803e3d6000fd5b5050565b6000600b54905090565b600c60009054906101000a900460ff1681565b60026006541415611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890614eb5565b60405180910390fd5b6002600681905550600c60009054906101000a900460ff16611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614d35565b60405180910390fd5b600b548111156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490614e35565b60405180910390fd5b600e54816009546111de91906150e0565b111561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690614bf5565b60405180910390fd5b6000600a548261122f9190615167565b905080341015611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90614ed5565b60405180910390fd5b60005b828110156112d457611289600f6131d2565b6000611295600f6131e8565b90506112a86112a2612dd7565b826131f6565b600960008154809291906112bb9061530e565b91905055505080806112cc9061530e565b915050611277565b5050600160068190555050565b6112fc83838360405180602001604052806000815250612785565b505050565b6001151560146000611311612dd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290614c15565b60405180910390fd5b60016012600083815260200190815260200160002060008282546113bf91906150e0565b9250508190555050565b60606113d484612d6b565b611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90614c95565b60405180910390fd5b600667ffffffffffffffff811115611454577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114825781602001602082028036833780820191505090505b50905060006114bb8461149487613214565b856040516020016114a793929190614ab2565b6040516020818303038152906040526133c1565b905060005b600681101561155957601082826040516020016114de929190614f10565b6040516020818303038152906040528051906020012060001c6115019190615385565b83828151811061153a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115519061530e565b9150506114c0565b50509392505050565b61156a612dd7565b73ffffffffffffffffffffffffffffffffffffffff16611588611f74565b73ffffffffffffffffffffffffffffffffffffffff16146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590614df5565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600061161884846120c0565b90506000805b82811015611659576116396116348783886113c9565b6133f4565b8261164491906150e0565b915080806116519061530e565b91505061161e565b508167ffffffffffffffff81111561169a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116c85781602001602082028036833780820191505090505b50925060005b8281101561175957816103e86116ed6116e889858a6113c9565b6133f4565b6116f79190615167565b6117019190615136565b84828151811061173a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117519061530e565b9150506116ce565b50505092915050565b600c60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614d95565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90614d75565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118e7612dd7565b73ffffffffffffffffffffffffffffffffffffffff16611905611f74565b73ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614df5565b60405180910390fd5b6119656000613472565b565b6060600061197483611827565b905060008114156119f757600067ffffffffffffffff8111156119c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119ee5781602001602082028036833780820191505090505b50915050611b32565b60008167ffffffffffffffff811115611a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a675781602001602082028036833780820191505090505b5090506000611a74610f0b565b9050600080600190505b828111611b29578673ffffffffffffffffffffffffffffffffffffffff16611aa582611775565b73ffffffffffffffffffffffffffffffffffffffff161415611b165780848381518110611afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180611b129061530e565b9250505b8080611b219061530e565b915050611a7e565b83955050505050505b919050565b6060815167ffffffffffffffff811115611b7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ba85781602001602082028036833780820191505090505b50905060005b8251811015611c5c57828181518110611bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f611c0491906151c1565b828281518110611c3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611c549061530e565b915050611bae565b50919050565b6060600060405180610100016040528060d68152602001615da660d6913990506000611c8e85856120c0565b9050600080611c9d878761160a565b90506000611cab8888612930565b905060005b84811015611de1576000838281518110611cf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600186611d0a91906151c1565b821415611d2257846103e8611d1f91906151c1565b90505b6000611d2d86613214565b611d3683613214565b858581518110611d6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151604051602001611d8993929190614a22565b60405160208183030381529060405290508186611da691906150e0565b95508781604051602001611dbb929190614896565b604051602081830303815290604052975050508080611dd99061530e565b915050611cb0565b5084604051602001611df39190614999565b60405160208183030381529060405294506000611e0f89613214565b611e1887613538565b604051602001611e299291906149bb565b6040516020818303038152906040529050600081611e4f611e4a8c8c6120c0565b613214565b604051602001611e6092919061490d565b604051602081830303815290604052905060606000600190505b878111611f0e5781611e8b82613214565b86600184611e9991906151c1565b81518110611ed0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151604051602001611eea93929190614947565b60405160208183030381529060405291508080611f069061530e565b915050611e7a565b506000611f3b8383604051602001611f279291906148ba565b604051602081830303815290604052613538565b9050600081604051602001611f509190614a00565b6040516020818303038152906040529050809a505050505050505050505092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa6612dd7565b73ffffffffffffffffffffffffffffffffffffffff16611fc4611f74565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190614df5565b60405180910390fd5b80600a8190555050565b606060018054612033906152ab565b80601f016020809104026020016040519081016040528092919081815260200182805461205f906152ab565b80156120ac5780601f10612081576101008083540402835291602001916120ac565b820191906000526020600020905b81548152906001019060200180831161208f57829003601f168201915b5050505050905090565b6000600a54905090565b60006120cb83612d6b565b61210a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210190614c95565b60405180910390fd5b60006013600085815260200190815260200160002054601260008681526020019081526020016000205460105460115461216c61214689613214565b88604051602001612158929190614a7f565b6040516020818303038152906040526133c1565b6121769190615385565b61218091906150e0565b61218a91906151c1565b61219491906150e0565b905060028110156121a95760029150506121c1565b60078111156121bc5760079150506121c1565b809150505b92915050565b6121cf612dd7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490614cd5565b60405180910390fd5b806005600061224a612dd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122f7612dd7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161233c9190614bb8565b60405180910390a35050565b6001151560146000612358612dd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990614c15565b60405180910390fd5b600160136000838152602001908152602001600020600082825461240691906150e0565b9250508190555050565b612418612dd7565b73ffffffffffffffffffffffffffffffffffffffff16612436611f74565b73ffffffffffffffffffffffffffffffffffffffff161461248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614df5565b60405180910390fd5b600e548260095461249d91906150e0565b11156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590614bf5565b60405180910390fd5b60005b82811015612537576124f3600f6131d2565b60006124ff600f6131e8565b905061250b83826131f6565b6009600081548092919061251e9061530e565b919050555050808061252f9061530e565b9150506124e1565b505050565b60606040518060400160405280600181526020017f2300000000000000000000000000000000000000000000000000000000000000815250905060005b825181101561263c578160158483815181106125be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815481106125fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040516020016126189291906148e9565b604051602081830303815290604052915080806126349061530e565b915050612579565b50919050565b606061264d83612d6b565b61268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390614c95565b60405180910390fd5b600061269884846120c0565b90508067ffffffffffffffff8111156126da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561270d57816020015b60608152602001906001900390816126f85790505b50915060005b8181101561277d576127268582866113c9565b83828151811061275f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018190525080806127759061530e565b915050612713565b505092915050565b612796612790612dd7565b83612e98565b6127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614e95565b60405180910390fd5b6127e1848484846136f6565b50505050565b6127ef612dd7565b73ffffffffffffffffffffffffffffffffffffffff1661280d611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90614df5565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b612897612dd7565b73ffffffffffffffffffffffffffffffffffffffff166128b5611f74565b73ffffffffffffffffffffffffffffffffffffffff161461290b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290290614df5565b60405180910390fd5b80600b8190555050565b60606129298261292484611775565b611c62565b9050919050565b6060600061293e84846120c0565b90508067ffffffffffffffff811115612980577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129b357816020015b606081526020019060019003908161299e5790505b50915060005b81811015612a2b576129d46129cf8683876113c9565b61253c565b838281518110612a0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080612a239061530e565b9150506129b9565b505092915050565b60026006541415612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090614eb5565b60405180910390fd5b6002600681905550600c60019054906101000a900460ff16612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790614d15565b60405180910390fd5b600d546001600854612ae291906150e0565b1115612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90614e55565b60405180910390fd5b612b2d600f6131d2565b6000612b39600f6131e8565b9050612b4c612b46612dd7565b826131f6565b60086000815480929190612b5f9061530e565b9190505550506001600681905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b612c11612dd7565b73ffffffffffffffffffffffffffffffffffffffff16612c2f611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cec90614c55565b60405180910390fd5b612cfe81613472565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e5283611775565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ea382612d6b565b612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614cf5565b60405180910390fd5b6000612eed83611775565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f5c57508373ffffffffffffffffffffffffffffffffffffffff16612f4484610c0b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f6d5750612f6c8185612b6f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f9682611775565b73ffffffffffffffffffffffffffffffffffffffff1614612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe390614e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561305c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305390614cb5565b60405180910390fd5b613067838383613752565b613072600082612ddf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c291906151c1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311991906150e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b613210828260405180602001604052806000815250613757565b5050565b6060600082141561325c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133bc565b600082905060005b6000821461328e5780806132779061530e565b915050600a826132879190615136565b9150613264565b60008167ffffffffffffffff8111156132d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133025781602001600182028036833780820191505090505b5090505b600085146133b55760018261331b91906151c1565b9150600a8561332a9190615385565b603061333691906150e0565b60f81b818381518110613372577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133ae9190615136565b9450613306565b8093505050505b919050565b6000816040516020016133d4919061487f565b6040516020818303038152906040528051906020012060001c9050919050565b6000806000905060005b835181101561346857838181518110613440577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518261345391906150e0565b915080806134609061530e565b9150506133fe565b5080915050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6060600082519050600081141561356157604051806020016040528060008152509150506136f1565b6000600360028361357291906150e0565b61357c9190615136565b60046135889190615167565b9050600060208261359991906150e0565b67ffffffffffffffff8111156135d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561360a5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615d66604091399050600181016020830160005b868110156136ae5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613635565b5060038606600181146136c857600281146136d8576136e3565b613d3d60f01b60028303526136e3565b603d60f81b60018303525b508484525050819450505050505b919050565b613701848484612f76565b61370d848484846137b2565b61374c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374390614c35565b60405180910390fd5b50505050565b505050565b6137618383613949565b61376e60008484846137b2565b6137ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a490614c35565b60405180910390fd5b505050565b60006137d38473ffffffffffffffffffffffffffffffffffffffff16613b17565b1561393c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137fc612dd7565b8786866040518563ffffffff1660e01b815260040161381e9493929190614b06565b602060405180830381600087803b15801561383857600080fd5b505af192505050801561386957506040513d601f19601f820116820180604052508101906138669190613ea2565b60015b6138ec573d8060008114613899576040519150601f19603f3d011682016040523d82523d6000602084013e61389e565b606091505b506000815114156138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138db90614c35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613941565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b090614db5565b60405180910390fd5b6139c281612d6b565b15613a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f990614c75565b60405180910390fd5b613a0e60008383613752565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a5e91906150e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000613b3d613b3884614f5e565b614f39565b90508083825260208201905082856020860282011115613b5c57600080fd5b60005b85811015613b8c5781613b728882613c7c565b845260208401935060208301925050600181019050613b5f565b5050509392505050565b6000613ba9613ba484614f8a565b614f39565b905082815260208101848484011115613bc157600080fd5b613bcc848285615269565b509392505050565b600081359050613be381615d09565b92915050565b600082601f830112613bfa57600080fd5b8135613c0a848260208601613b2a565b91505092915050565b600081359050613c2281615d20565b92915050565b600081359050613c3781615d37565b92915050565b600081519050613c4c81615d37565b92915050565b600082601f830112613c6357600080fd5b8135613c73848260208601613b96565b91505092915050565b600081359050613c8b81615d4e565b92915050565b600060208284031215613ca357600080fd5b6000613cb184828501613bd4565b91505092915050565b60008060408385031215613ccd57600080fd5b6000613cdb85828601613bd4565b9250506020613cec85828601613bd4565b9150509250929050565b600080600060608486031215613d0b57600080fd5b6000613d1986828701613bd4565b9350506020613d2a86828701613bd4565b9250506040613d3b86828701613c7c565b9150509250925092565b60008060008060808587031215613d5b57600080fd5b6000613d6987828801613bd4565b9450506020613d7a87828801613bd4565b9350506040613d8b87828801613c7c565b925050606085013567ffffffffffffffff811115613da857600080fd5b613db487828801613c52565b91505092959194509250565b60008060408385031215613dd357600080fd5b6000613de185828601613bd4565b9250506020613df285828601613c13565b9150509250929050565b60008060408385031215613e0f57600080fd5b6000613e1d85828601613bd4565b9250506020613e2e85828601613c7c565b9150509250929050565b600060208284031215613e4a57600080fd5b600082013567ffffffffffffffff811115613e6457600080fd5b613e7084828501613be9565b91505092915050565b600060208284031215613e8b57600080fd5b6000613e9984828501613c28565b91505092915050565b600060208284031215613eb457600080fd5b6000613ec284828501613c3d565b91505092915050565b600060208284031215613edd57600080fd5b6000613eeb84828501613c7c565b91505092915050565b60008060408385031215613f0757600080fd5b6000613f1585828601613c7c565b9250506020613f2685828601613bd4565b9150509250929050565b600080600060608486031215613f4557600080fd5b6000613f5386828701613c7c565b9350506020613f6486828701613c7c565b9250506040613f7586828701613bd4565b9150509250925092565b6000613f8b83836140cf565b905092915050565b6000613f9f83836141d3565b905092915050565b6000613fb3838361484a565b60208301905092915050565b613fc8816151f5565b82525050565b613fdf613fda826151f5565b615357565b82525050565b6000613ff082615000565b613ffa818561505e565b93508360208202850161400c85614fbb565b8060005b8581101561404857848403895281516140298582613f7f565b945061403483615037565b925060208a01995050600181019050614010565b50829750879550505050505092915050565b60006140658261500b565b61406f818561506f565b93508360208202850161408185614fcb565b8060005b858110156140bd578484038952815161409e8582613f93565b94506140a983615044565b925060208a01995050600181019050614085565b50829750879550505050505092915050565b60006140da82615016565b6140e48185615080565b93506140ef83614fdb565b8060005b838110156141205781516141078882613fa7565b975061411283615051565b9250506001810190506140f3565b5085935050505092915050565b600061413882615016565b6141428185615091565b935061414d83614fdb565b8060005b8381101561417e5781516141658882613fa7565b975061417083615051565b925050600181019050614151565b5085935050505092915050565b61419481615207565b82525050565b60006141a582615021565b6141af81856150a2565b93506141bf818560208601615278565b6141c881615472565b840191505092915050565b60006141de8261502c565b6141e881856150b3565b93506141f8818560208601615278565b61420181615472565b840191505092915050565b60006142178261502c565b61422181856150c4565b9350614231818560208601615278565b61423a81615472565b840191505092915050565b60006142508261502c565b61425a81856150d5565b935061426a818560208601615278565b80840191505092915050565b60008154614283816152ab565b61428d81866150d5565b945060018216600081146142a857600181146142b9576142ec565b60ff198316865281860193506142ec565b6142c285614feb565b60005b838110156142e4578154818901526001820191506020810190506142c5565b838801955050505b50505092915050565b60006143026009836150c4565b915061430d82615490565b602082019050919050565b60006143256032836150d5565b9150614330826154b9565b603282019050919050565b60006143486014836150c4565b915061435382615508565b602082019050919050565b600061436b6032836150c4565b915061437682615531565b604082019050919050565b600061438e6026836150c4565b915061439982615580565b604082019050919050565b60006143b16002836150d5565b91506143bc826155cf565b600282019050919050565b60006143d4601c836150c4565b91506143df826155f8565b602082019050919050565b60006143f76006836150c4565b915061440282615621565b602082019050919050565b600061441a601d836150d5565b91506144258261564a565b601d82019050919050565b600061443d600d836150d5565b915061444882615673565b600d82019050919050565b60006144606024836150c4565b915061446b8261569c565b604082019050919050565b60006144836019836150c4565b915061448e826156eb565b602082019050919050565b60006144a6602c836150c4565b91506144b182615714565b604082019050919050565b60006144c96013836150c4565b91506144d482615763565b602082019050919050565b60006144ec6017836150d5565b91506144f78261578c565b601782019050919050565b600061450f6010836150c4565b915061451a826157b5565b602082019050919050565b60006145326038836150c4565b915061453d826157de565b604082019050919050565b6000614555602a836150c4565b91506145608261582d565b604082019050919050565b60006145786029836150c4565b91506145838261587c565b604082019050919050565b600061459b6002836150d5565b91506145a6826158cb565b600282019050919050565b60006145be6020836150c4565b91506145c9826158f4565b602082019050919050565b60006145e1602c836150c4565b91506145ec8261591d565b604082019050919050565b60006146046020836150c4565b915061460f8261596c565b602082019050919050565b60006146276019836150d5565b915061463282615995565b601982019050919050565b600061464a6029836150c4565b9150614655826159be565b604082019050919050565b600061466d6002836150d5565b915061467882615a0d565b600282019050919050565b60006146906008836150c4565b915061469b82615a36565b602082019050919050565b60006146b3600b836150c4565b91506146be82615a5f565b602082019050919050565b60006146d66003836150d5565b91506146e182615a88565b600382019050919050565b60006146f96021836150c4565b915061470482615ab1565b604082019050919050565b600061471c601d836150d5565b915061472782615b00565b601d82019050919050565b600061473f6008836150d5565b915061474a82615b29565b600882019050919050565b60006147626031836150c4565b915061476d82615b52565b604082019050919050565b60006147856010836150d5565b915061479082615ba1565b601082019050919050565b60006147a86005836150d5565b91506147b382615bca565b600582019050919050565b60006147cb601f836150c4565b91506147d682615bf3565b602082019050919050565b60006147ee606a836150d5565b91506147f982615c1c565b606a82019050919050565b60006148116006836150d5565b915061481c82615cb7565b600682019050919050565b60006148346007836150c4565b915061483f82615ce0565b602082019050919050565b6148538161525f565b82525050565b6148628161525f565b82525050565b6148796148748261525f565b61537b565b82525050565b600061488b8284614245565b915081905092915050565b60006148a28285614245565b91506148ae8284614245565b91508190509392505050565b60006148c68285614245565b91506148d28284614245565b91506148dd82614660565b91508190509392505050565b60006148f58285614245565b91506149018284614276565b91508190509392505050565b60006149198285614245565b915061492482614318565b91506149308284614245565b915061493b8261458e565b91508190509392505050565b60006149538286614245565b915061495e8261461a565b915061496a8285614245565b915061497582614430565b91506149818284614245565b915061498c8261458e565b9150819050949350505050565b60006149a58284614245565b91506149b082614804565b915081905092915050565b60006149c68261440d565b91506149d28285614245565b91506149dd826147e1565b91506149e98284614245565b91506149f4826143a4565b91508190509392505050565b6000614a0b8261470f565b9150614a178284614245565b915081905092915050565b6000614a2d82614778565b9150614a398286614245565b9150614a44826144df565b9150614a508285614245565b9150614a5b82614732565b9150614a678284614245565b9150614a72826146c9565b9150819050949350505050565b6000614a8a8261479b565b9150614a968285614245565b9150614aa28284613fce565b6014820191508190509392505050565b6000614abe8286614868565b602082019150614ace8285614245565b9150614ada8284613fce565b601482019150819050949350505050565b6000602082019050614b006000830184613fbf565b92915050565b6000608082019050614b1b6000830187613fbf565b614b286020830186613fbf565b614b356040830185614859565b8181036060830152614b47818461419a565b905095945050505050565b60006020820190508181036000830152614b6c8184613fe5565b905092915050565b60006020820190508181036000830152614b8e818461405a565b905092915050565b60006020820190508181036000830152614bb0818461412d565b905092915050565b6000602082019050614bcd600083018461418b565b92915050565b60006020820190508181036000830152614bed818461420c565b905092915050565b60006020820190508181036000830152614c0e816142f5565b9050919050565b60006020820190508181036000830152614c2e8161433b565b9050919050565b60006020820190508181036000830152614c4e8161435e565b9050919050565b60006020820190508181036000830152614c6e81614381565b9050919050565b60006020820190508181036000830152614c8e816143c7565b9050919050565b60006020820190508181036000830152614cae816143ea565b9050919050565b60006020820190508181036000830152614cce81614453565b9050919050565b60006020820190508181036000830152614cee81614476565b9050919050565b60006020820190508181036000830152614d0e81614499565b9050919050565b60006020820190508181036000830152614d2e816144bc565b9050919050565b60006020820190508181036000830152614d4e81614502565b9050919050565b60006020820190508181036000830152614d6e81614525565b9050919050565b60006020820190508181036000830152614d8e81614548565b9050919050565b60006020820190508181036000830152614dae8161456b565b9050919050565b60006020820190508181036000830152614dce816145b1565b9050919050565b60006020820190508181036000830152614dee816145d4565b9050919050565b60006020820190508181036000830152614e0e816145f7565b9050919050565b60006020820190508181036000830152614e2e8161463d565b9050919050565b60006020820190508181036000830152614e4e81614683565b9050919050565b60006020820190508181036000830152614e6e816146a6565b9050919050565b60006020820190508181036000830152614e8e816146ec565b9050919050565b60006020820190508181036000830152614eae81614755565b9050919050565b60006020820190508181036000830152614ece816147be565b9050919050565b60006020820190508181036000830152614eee81614827565b9050919050565b6000602082019050614f0a6000830184614859565b92915050565b6000604082019050614f256000830185614859565b614f326020830184614859565b9392505050565b6000614f43614f54565b9050614f4f82826152dd565b919050565b6000604051905090565b600067ffffffffffffffff821115614f7957614f78615443565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614fa557614fa4615443565b5b614fae82615472565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150eb8261525f565b91506150f68361525f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561512b5761512a6153b6565b5b828201905092915050565b60006151418261525f565b915061514c8361525f565b92508261515c5761515b6153e5565b5b828204905092915050565b60006151728261525f565b915061517d8361525f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151b6576151b56153b6565b5b828202905092915050565b60006151cc8261525f565b91506151d78361525f565b9250828210156151ea576151e96153b6565b5b828203905092915050565b60006152008261523f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561529657808201518184015260208101905061527b565b838111156152a5576000848401525b50505050565b600060028204905060018216806152c357607f821691505b602082108114156152d7576152d6615414565b5b50919050565b6152e682615472565b810181811067ffffffffffffffff8211171561530557615304615443565b5b80604052505050565b60006153198261525f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561534c5761534b6153b6565b5b600182019050919050565b600061536282615369565b9050919050565b600061537482615483565b9050919050565b6000819050919050565b60006153908261525f565b915061539b8361525f565b9250826153ab576153aa6153e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d6178537570706c790000000000000000000000000000000000000000000000600082015250565b7f2261747472696275746573223a205b7b2274726169745f74797065223a20224360008201527f6f6c6f7273222c202276616c7565223a20220000000000000000000000000000602082015250565b7f416363657373206e6f74207065726d6974746564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f21546f6b656e0000000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a20224172744c6f6f74204c616e6473636170652023000000600082015250565b7f222c202276616c7565223a202200000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f70726573616c65206e6f74207374617274656400000000000000000000000000600082015250565b7f222077696474683d223130302522206865696768743d22000000000000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2c207b2274726169745f74797065223a2022436f6c6f72202300000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5d7d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4d61785075726368000000000000000000000000000000000000000000000000600082015250565b7f70726573616c656f766572000000000000000000000000000000000000000000600082015250565b7f222f3e0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f222066696c6c3d22000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f203c7265637420783d22302220793d2200000000000000000000000000000000600082015250565b7f434f4c4f52000000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f222c20226465736372697074696f6e223a20224172744c6f6f7420697320776860008201527f657265206162737472616374204172742069732073746f726564206f6e2d636860208201527f61696e222c2022696d616765223a2022646174613a696d6167652f7376672b7860408201527f6d6c3b6261736536342c00000000000000000000000000000000000000000000606082015250565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b7f6c6f772065746800000000000000000000000000000000000000000000000000600082015250565b615d12816151f5565b8114615d1d57600080fd5b50565b615d2981615207565b8114615d3457600080fd5b50565b615d4081615213565b8114615d4b57600080fd5b50565b615d578161525f565b8114615d6257600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d2230203020313030302031303030223e203c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e203c7374796c653e2e62617365207b20666f6e742d66616d696c793a206d6f6e6f73706163653b20666f6e742d73697a653a20333070783b7d3c2f7374796c653ea2646970667358221220703a1356aaff227f908190d18a26055047bd0a6f3d64989e862fa2f1f5808e5164736f6c63430008040033
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.