ERC-721
Overview
Max Total Supply
46 SK8LOOT
Holders
25
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SK8LOOTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Sk8Loot
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)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Sk8Loot is ERC721Enumerable, ReentrancyGuard, Ownable { string[] private bearings = ["Very Very Fast", "Very Fast", "Fast", "Slow"]; string[] private bushings = ["Hella Hard", "Hard", "Soft", "Super Soft"]; string[] private decks = [ "Punk", "Old School", "Longboard", "Cruiser", "Popsicle" ]; string[] private colors = [ "Pitch Black", "Mirror Chrome", "Rainbow", "Hot Pink", "Slime Green", "Tie-dye", "Dusty Brown", "Neon Blue", "Radical Red", "Banana Yellow" ]; string[] private patterns = [ "Zebra Print", "Caution Tape", "Marble Pattern", "Camo", "Checkered", "Stripes", "Zig Zag" ]; string[] private icons = [ "a Skull", "a Mushroom", "a Twisted Dragon", "a Plant Leaf", "a Snake", "a Fishbone", "Clouds", "a UFO", "the Eye of Ra", "a Middle Finger", "Flames", "a Pizza Slice" ]; string[] private griptape = [ "Marble", "Caution", "Zig Zag", "Stripe", "Worn", "Black" ]; string[] private hardware = ["Gold", "Solid", "Decent", "Cheap"]; string[] private trucks = ["Platinum", "Gold", "Steel", "Metal", "Plastic"]; string[] private wheels = ["Diamond", "Marble", "Polyurethane", "Clay"]; function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getBearings(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "BEARINGS", bearings); } function getBushings(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "BUSHINGS", bushings); } function getDeck(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "DECK", decks); } function getDesign(uint256 tokenId) public view returns (string memory) { string memory color = pluck(tokenId, "COLORS", colors); string memory pattern = pluck(tokenId, "PATTERNS", patterns); string memory icon = pluck(tokenId, "ICONS", icons); return string(abi.encodePacked(color, " ", pattern, " with ", icon)); } function getGriptape(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "GRIPTAPE", griptape); } function getHardware(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "HARDWARE", hardware); } function getTrucks(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "TRUCKS", trucks); } function getWheels(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "WHEELS", wheels); } function pluck( uint256 tokenId, string memory keyPrefix, string[] memory sourceArray ) internal pure returns (string memory) { uint256 rand = random( string(abi.encodePacked(keyPrefix, toString(tokenId))) ); return sourceArray[rand % sourceArray.length]; } function tokenURI(uint256 tokenId) public view override returns (string memory) { string[17] memory parts; parts[ 0 ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">'; parts[1] = getBearings(tokenId); parts[2] = ' Bearings</text><text x="10" y="40" class="base">'; parts[3] = getBushings(tokenId); parts[4] = ' Bushings</text><text x="10" y="60" class="base">'; parts[5] = getDeck(tokenId); parts[6] = ' Deck</text><text x="10" y="80" class="base">'; parts[7] = getGriptape(tokenId); parts[8] = ' Griptape</text><text x="10" y="100" class="base">'; parts[9] = getHardware(tokenId); parts[10] = ' Hardware</text><text x="10" y="120" class="base">'; parts[11] = getTrucks(tokenId); parts[12] = ' Trucks</text><text x="10" y="140" class="base">'; parts[13] = getWheels(tokenId); parts[14] = ' Wheels</text><text x="10" y="160" class="base">'; parts[15] = getDesign(tokenId); parts[16] = "</text></svg>"; string memory output = string( abi.encodePacked( parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8] ) ); output = string( abi.encodePacked( output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16] ) ); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"name": "Board #', toString(tokenId), '", "description": "skate or die.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}' ) ) ) ); output = string( abi.encodePacked("data:application/json;base64,", json) ); return output; } function claim(uint256 tokenId) public nonReentrant { require(tokenId > 0 && tokenId < 7778, "Token ID invalid"); _safeMint(_msgSender(), tokenId); } function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner { require(tokenId > 7777 && tokenId < 8001, "Token ID invalid"); _safeMint(owner(), tokenId); } 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); } constructor() ERC721("Sk8Loot", "SK8LOOT") Ownable() {} } /// [MIT License] /// @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; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// 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; 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; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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 Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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
Contract ABI
API[{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","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"}],"name":"getBearings","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBushings","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getDeck","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getDesign","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGriptape","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHardware","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTrucks","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWheels","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180608001604052806040518060400160405280600e81526020017f566572792056657279204661737400000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f566572792046617374000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f466173740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f536c6f7700000000000000000000000000000000000000000000000000000000815250815250600c9060046200010b929190620010d7565b5060405180608001604052806040518060400160405280600a81526020017f48656c6c6120486172640000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f486172640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f536f66740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f537570657220536f667400000000000000000000000000000000000000000000815250815250600d90600462000213929190620010d7565b506040518060a001604052806040518060400160405280600481526020017f50756e6b0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4f6c64205363686f6f6c0000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4c6f6e67626f617264000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f437275697365720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f506f707369636c65000000000000000000000000000000000000000000000000815250815250600e906005620003569291906200113e565b506040518061014001604052806040518060400160405280600b81526020017f506974636820426c61636b00000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4d6972726f72204368726f6d650000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5261696e626f770000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f486f742050696e6b00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f536c696d6520477265656e00000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5469652d6479650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f44757374792042726f776e00000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4e656f6e20426c7565000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f5261646963616c2052656400000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f42616e616e612059656c6c6f7700000000000000000000000000000000000000815250815250600f90600a620005c1929190620011a5565b506040518060e001604052806040518060400160405280600b81526020017f5a65627261205072696e7400000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f43617574696f6e2054617065000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4d6172626c65205061747465726e00000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f43616d6f0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f436865636b65726564000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f537472697065730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5a6967205a61670000000000000000000000000000000000000000000000000081525081525060109060076200077a9291906200120c565b506040518061018001604052806040518060400160405280600781526020017f6120536b756c6c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f61204d757368726f6f6d0000000000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f61205477697374656420447261676f6e0000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f6120506c616e74204c656166000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f6120536e616b650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f612046697368626f6e650000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f436c6f756473000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f612055464f00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f74686520457965206f662052610000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f61204d6964646c652046696e676572000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f466c616d6573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f612050697a7a6120536c69636500000000000000000000000000000000000000815250815250601190600c62000a5b92919062001273565b506040518060c001604052806040518060400160405280600681526020017f4d6172626c65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f43617574696f6e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5a6967205a61670000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f537472697065000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f576f726e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426c61636b000000000000000000000000000000000000000000000000000000815250815250601290600662000bd9929190620012da565b5060405180608001604052806040518060400160405280600481526020017f476f6c640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536f6c696400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f446563656e74000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4368656170000000000000000000000000000000000000000000000000000000815250815250601390600462000ce1929190620010d7565b506040518060a001604052806040518060400160405280600881526020017f506c6174696e756d00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f476f6c640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f537465656c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4d6574616c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f506c617374696300000000000000000000000000000000000000000000000000815250815250601490600562000e249291906200113e565b5060405180608001604052806040518060400160405280600781526020017f4469616d6f6e640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d6172626c65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f506f6c797572657468616e65000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436c617900000000000000000000000000000000000000000000000000000000815250815250601590600462000f2c929190620010d7565b5034801562000f3a57600080fd5b506040518060400160405280600781526020017f536b384c6f6f74000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f534b384c4f4f5400000000000000000000000000000000000000000000000000815250816000908051906020019062000fbf92919062001341565b50806001908051906020019062000fd892919062001341565b5050506001600a819055506200100362000ff76200100960201b60201c565b6200101160201b60201c565b620014c4565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200112b579160200282015b828111156200112a5782518290805190602001906200111992919062001341565b5091602001919060010190620010f8565b5b5090506200113a9190620013d2565b5090565b82805482825590600052602060002090810192821562001192579160200282015b82811115620011915782518290805190602001906200118092919062001341565b50916020019190600101906200115f565b5b509050620011a19190620013d2565b5090565b828054828255906000526020600020908101928215620011f9579160200282015b82811115620011f8578251829080519060200190620011e792919062001341565b5091602001919060010190620011c6565b5b509050620012089190620013d2565b5090565b82805482825590600052602060002090810192821562001260579160200282015b828111156200125f5782518290805190602001906200124e92919062001341565b50916020019190600101906200122d565b5b5090506200126f9190620013d2565b5090565b828054828255906000526020600020908101928215620012c7579160200282015b82811115620012c6578251829080519060200190620012b592919062001341565b509160200191906001019062001294565b5b509050620012d69190620013d2565b5090565b8280548282559060005260206000209081019282156200132e579160200282015b828111156200132d5782518290805190602001906200131c92919062001341565b5091602001919060010190620012fb565b5b5090506200133d9190620013d2565b5090565b8280546200134f906200145f565b90600052602060002090601f016020900481019282620013735760008555620013bf565b82601f106200138e57805160ff1916838001178555620013bf565b82800160010185558215620013bf579182015b82811115620013be578251825591602001919060010190620013a1565b5b509050620013ce9190620013fa565b5090565b5b80821115620013f65760008181620013ec919062001419565b50600101620013d3565b5090565b5b8082111562001415576000816000905550600101620013fb565b5090565b50805462001427906200145f565b6000825580601f106200143b57506200145c565b601f0160209004906000526020600020908101906200145b9190620013fa565b5b50565b600060028204905060018216806200147857607f821691505b602082108114156200148f576200148e62001495565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61554980620014d46000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a080e8f4116100a2578063c89a224d11610071578063c89a224d1461058a578063de750152146105ba578063e985e9c5146105ea578063f2fde38b1461061a576101cf565b8063a080e8f4146104f2578063a22cb46514610522578063b88d4fde1461053e578063c87b56dd1461055a576101cf565b80638efa7bdc116100de5780638efa7bdc1461044457806395d89b41146104745780639971b98d146104925780639a20e3a8146104c2576101cf565b806370a08231146103ec578063715018a61461041c5780638da5cb5b14610426576101cf565b80632f745c5911610171578063434f48c41161014b578063434f48c4146103405780634f6ccce71461035c5780635947c2631461038c5780636352211e146103bc576101cf565b80632f745c59146102d8578063379607f51461030857806342842e0e14610324576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c5780632a51fb3a146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190613ea1565b610636565b6040516101fb9190614526565b60405180910390f35b61020c6106b0565b6040516102199190614541565b60405180910390f35b61023c60048036038101906102379190613ef3565b610742565b60405161024991906144bf565b60405180910390f35b61026c60048036038101906102679190613e65565b6107c7565b005b6102766108df565b60405161028391906147c3565b60405180910390f35b6102a660048036038101906102a19190613d5f565b6108ec565b005b6102c260048036038101906102bd9190613ef3565b61094c565b6040516102cf9190614541565b60405180910390f35b6102f260048036038101906102ed9190613e65565b610a66565b6040516102ff91906147c3565b60405180910390f35b610322600480360381019061031d9190613ef3565b610b0b565b005b61033e60048036038101906103399190613d5f565b610bc5565b005b61035a60048036038101906103559190613ef3565b610be5565b005b61037660048036038101906103719190613ef3565b610d1c565b60405161038391906147c3565b60405180910390f35b6103a660048036038101906103a19190613ef3565b610db3565b6040516103b39190614541565b60405180910390f35b6103d660048036038101906103d19190613ef3565b610ecd565b6040516103e391906144bf565b60405180910390f35b61040660048036038101906104019190613cfa565b610f7f565b60405161041391906147c3565b60405180910390f35b610424611037565b005b61042e6110bf565b60405161043b91906144bf565b60405180910390f35b61045e60048036038101906104599190613ef3565b6110e9565b60405161046b9190614541565b60405180910390f35b61047c611203565b6040516104899190614541565b60405180910390f35b6104ac60048036038101906104a79190613ef3565b611295565b6040516104b99190614541565b60405180910390f35b6104dc60048036038101906104d79190613ef3565b611604565b6040516104e99190614541565b60405180910390f35b61050c60048036038101906105079190613ef3565b61171e565b6040516105199190614541565b60405180910390f35b61053c60048036038101906105379190613e29565b611838565b005b61055860048036038101906105539190613dae565b6119b9565b005b610574600480360381019061056f9190613ef3565b611a1b565b6040516105819190614541565b60405180910390f35b6105a4600480360381019061059f9190613ef3565b6124bd565b6040516105b19190614541565b60405180910390f35b6105d460048036038101906105cf9190613ef3565b6125d7565b6040516105e19190614541565b60405180910390f35b61060460048036038101906105ff9190613d23565b6126f1565b6040516106119190614526565b60405180910390f35b610634600480360381019061062f9190613cfa565b612785565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a957506106a88261287d565b5b9050919050565b6060600080546106bf90614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546106eb90614a42565b80156107385780601f1061070d57610100808354040283529160200191610738565b820191906000526020600020905b81548152906001019060200180831161071b57829003601f168201915b5050505050905090565b600061074d8261295f565b61078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610783906146c3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d282610ecd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90614743565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108626129cb565b73ffffffffffffffffffffffffffffffffffffffff16148061089157506108908161088b6129cb565b6126f1565b5b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790614643565b60405180910390fd5b6108da83836129d3565b505050565b6000600880549050905090565b6108fd6108f76129cb565b82612a8c565b61093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390614763565b60405180910390fd5b610947838383612b6a565b505050565b6060610a5f826040518060400160405280600481526020017f4445434b00000000000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610a565783829060005260206000200180546109c990614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590614a42565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050815260200190600101906109aa565b50505050612dc6565b9050919050565b6000610a7183610f7f565b8210610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990614563565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b48906147a3565b60405180910390fd5b6002600a81905550600081118015610b6a5750611e6281105b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090614703565b60405180910390fd5b610bba610bb46129cb565b82612e55565b6001600a8190555050565b610be0838383604051806020016040528060008152506119b9565b505050565b6002600a541415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c22906147a3565b60405180910390fd5b6002600a81905550610c3b6129cb565b73ffffffffffffffffffffffffffffffffffffffff16610c596110bf565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca6906146e3565b60405180910390fd5b611e6181118015610cc15750611f4181105b610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790614703565b60405180910390fd5b610d11610d0b6110bf565b82612e55565b6001600a8190555050565b6000610d266108df565b8210610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90614783565b60405180910390fd5b60088281548110610da1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6060610ec6826040518060400160405280600881526020017f42454152494e4753000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610ebd578382906000526020600020018054610e3090614a42565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5c90614a42565b8015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b820191906000526020600020905b815481529060010190602001808311610e8c57829003601f168201915b505050505081526020019060010190610e11565b50505050612dc6565b9050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614683565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790614663565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103f6129cb565b73ffffffffffffffffffffffffffffffffffffffff1661105d6110bf565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906146e3565b60405180910390fd5b6110bd6000612e73565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606111fc826040518060400160405280600881526020017f42555348494e4753000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b828210156111f357838290600052602060002001805461116690614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461119290614a42565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b505050505081526020019060010190611147565b50505050612dc6565b9050919050565b60606001805461121290614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461123e90614a42565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b5050505050905090565b606060006113aa836040518060400160405280600681526020017f434f4c4f52530000000000000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b828210156113a157838290600052602060002001805461131490614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461134090614a42565b801561138d5780601f106113625761010080835404028352916020019161138d565b820191906000526020600020905b81548152906001019060200180831161137057829003601f168201915b5050505050815260200190600101906112f5565b50505050612dc6565b905060006114bf846040518060400160405280600881526020017f5041545445524e530000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156114b657838290600052602060002001805461142990614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461145590614a42565b80156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b50505050508152602001906001019061140a565b50505050612dc6565b905060006115d4856040518060400160405280600581526020017f49434f4e530000000000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156115cb57838290600052602060002001805461153e90614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461156a90614a42565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b50505050508152602001906001019061151f565b50505050612dc6565b90508282826040516020016115eb93929190614411565b6040516020818303038152906040529350505050919050565b6060611717826040518060400160405280600881526020017f48415244574152450000000000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b8282101561170e57838290600052602060002001805461168190614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90614a42565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b505050505081526020019060010190611662565b50505050612dc6565b9050919050565b6060611831826040518060400160405280600881526020017f47524950544150450000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b8282101561182857838290600052602060002001805461179b90614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546117c790614a42565b80156118145780601f106117e957610100808354040283529160200191611814565b820191906000526020600020905b8154815290600101906020018083116117f757829003601f168201915b50505050508152602001906001019061177c565b50505050612dc6565b9050919050565b6118406129cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590614603565b60405180910390fd5b80600560006118bb6129cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119686129cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ad9190614526565b60405180910390a35050565b6119ca6119c46129cb565b83612a8c565b611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614763565b60405180910390fd5b611a1584848484612f39565b50505050565b6060611a25613c01565b60405180610120016040528060fd815260200161537460fd913981600060118110611a79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611a8a83610db3565b81600160118110611ac4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603181526020016152b16031913981600260118110611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611b30836110e9565b81600360118110611b6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603181526020016154e36031913981600460118110611bc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611bd68361094c565b81600560118110611c10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602d8152602001615284602d913981600660118110611c6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c7c8361171e565b81600760118110611cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603281526020016152e26032913981600860118110611d11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d2283611604565b81600960118110611d5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603281526020016154b16032913981600a60118110611db7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611dc8836124bd565b81600b60118110611e02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603081526020016153446030913981600c60118110611e5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611e6e836125d7565b81600d60118110611ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603081526020016153146030913981600e60118110611f03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611f1483611295565b81600f60118110611f4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081601060118110611fc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060008160006011811061200a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600160118110612049577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260118110612088577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151846003601181106120c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600460118110612106577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600560118110612145577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600660118110612184577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886007601181106121c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189600860118110612202577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161221f99989796959493929190614392565b6040516020818303038152906040529050808260096011811061226b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a601181106122aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b601181106122e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c60118110612328577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d60118110612367577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e601181106123a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600f601181106123e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189601060118110612424577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161244199989796959493929190614392565b6040516020818303038152906040529050600061248e61246086612f95565b61246984613142565b60405160200161247a929190614458565b604051602081830303815290604052613142565b9050806040516020016124a1919061449d565b6040516020818303038152906040529150819350505050919050565b60606125d0826040518060400160405280600681526020017f545255434b5300000000000000000000000000000000000000000000000000008152506014805480602002602001604051908101604052809291908181526020016000905b828210156125c757838290600052602060002001805461253a90614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461256690614a42565b80156125b35780601f10612588576101008083540402835291602001916125b3565b820191906000526020600020905b81548152906001019060200180831161259657829003601f168201915b50505050508152602001906001019061251b565b50505050612dc6565b9050919050565b60606126ea826040518060400160405280600681526020017f574845454c5300000000000000000000000000000000000000000000000000008152506015805480602002602001604051908101604052809291908181526020016000905b828210156126e157838290600052602060002001805461265490614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461268090614a42565b80156126cd5780601f106126a2576101008083540402835291602001916126cd565b820191906000526020600020905b8154815290600101906020018083116126b057829003601f168201915b505050505081526020019060010190612635565b50505050612dc6565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61278d6129cb565b73ffffffffffffffffffffffffffffffffffffffff166127ab6110bf565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906146e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612871576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612868906145a3565b60405180910390fd5b61287a81612e73565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061294857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612958575061295782613300565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a4683610ecd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a978261295f565b612ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acd90614623565b60405180910390fd5b6000612ae183610ecd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b5057508373ffffffffffffffffffffffffffffffffffffffff16612b3884610742565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b615750612b6081856126f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b8a82610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd790614723565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c47906145e3565b60405180910390fd5b612c5b83838361336a565b612c666000826129d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cb69190614958565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0d9190614877565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000612dfc84612dd787612f95565b604051602001612de892919061436e565b60405160208183030381529060405261347e565b905082835182612e0c9190614aee565b81518110612e43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150509392505050565b612e6f8282604051806020016040528060008152506134b1565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f44848484612b6a565b612f508484848461350c565b612f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8690614583565b60405180910390fd5b50505050565b60606000821415612fdd576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061313d565b600082905060005b6000821461300f578080612ff890614aa5565b915050600a8261300891906148cd565b9150612fe5565b60008167ffffffffffffffff811115613051577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130835781602001600182028036833780820191505090505b5090505b600085146131365760018261309c9190614958565b9150600a856130ab9190614aee565b60306130b79190614877565b60f81b8183815181106130f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561312f91906148cd565b9450613087565b8093505050505b919050565b6060600082519050600081141561316b57604051806020016040528060008152509150506132fb565b6000600360028361317c9190614877565b61318691906148cd565b600461319291906148fe565b905060006020826131a39190614877565b67ffffffffffffffff8111156131e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132145781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615471604091399050600181016020830160005b868110156132b85760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505061323f565b5060038606600181146132d257600281146132e2576132ed565b613d3d60f01b60028303526132ed565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133758383836136a3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b8576133b3816136a8565b6133f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133f6576133f583826136f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343a576134358161385e565b613479565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134785761347782826139a1565b5b5b505050565b6000816040516020016134919190614357565b6040516020818303038152906040528051906020012060001c9050919050565b6134bb8383613a20565b6134c8600084848461350c565b613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe90614583565b60405180910390fd5b505050565b600061352d8473ffffffffffffffffffffffffffffffffffffffff16613bee565b15613696578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135566129cb565b8786866040518563ffffffff1660e01b815260040161357894939291906144da565b602060405180830381600087803b15801561359257600080fd5b505af19250505080156135c357506040513d601f19601f820116820180604052508101906135c09190613eca565b60015b613646573d80600081146135f3576040519150601f19603f3d011682016040523d82523d6000602084013e6135f8565b606091505b5060008151141561363e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363590614583565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061369b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136fe84610f7f565b6137089190614958565b90506000600760008481526020019081526020016000205490508181146137ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138729190614958565b90506000600960008481526020019081526020016000205490506000600883815481106138c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613910577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613985577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139ac83610f7f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a87906146a3565b60405180910390fd5b613a998161295f565b15613ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad0906145c3565b60405180910390fd5b613ae56000838361336a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b359190614877565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081613c115790505090565b6000613c3c613c3784614803565b6147de565b905082815260208101848484011115613c5457600080fd5b613c5f848285614a00565b509392505050565b600081359050613c7681615227565b92915050565b600081359050613c8b8161523e565b92915050565b600081359050613ca081615255565b92915050565b600081519050613cb581615255565b92915050565b600082601f830112613ccc57600080fd5b8135613cdc848260208601613c29565b91505092915050565b600081359050613cf48161526c565b92915050565b600060208284031215613d0c57600080fd5b6000613d1a84828501613c67565b91505092915050565b60008060408385031215613d3657600080fd5b6000613d4485828601613c67565b9250506020613d5585828601613c67565b9150509250929050565b600080600060608486031215613d7457600080fd5b6000613d8286828701613c67565b9350506020613d9386828701613c67565b9250506040613da486828701613ce5565b9150509250925092565b60008060008060808587031215613dc457600080fd5b6000613dd287828801613c67565b9450506020613de387828801613c67565b9350506040613df487828801613ce5565b925050606085013567ffffffffffffffff811115613e1157600080fd5b613e1d87828801613cbb565b91505092959194509250565b60008060408385031215613e3c57600080fd5b6000613e4a85828601613c67565b9250506020613e5b85828601613c7c565b9150509250929050565b60008060408385031215613e7857600080fd5b6000613e8685828601613c67565b9250506020613e9785828601613ce5565b9150509250929050565b600060208284031215613eb357600080fd5b6000613ec184828501613c91565b91505092915050565b600060208284031215613edc57600080fd5b6000613eea84828501613ca6565b91505092915050565b600060208284031215613f0557600080fd5b6000613f1384828501613ce5565b91505092915050565b613f258161498c565b82525050565b613f348161499e565b82525050565b6000613f4582614834565b613f4f818561484a565b9350613f5f818560208601614a0f565b613f6881614bdb565b840191505092915050565b6000613f7e8261483f565b613f88818561485b565b9350613f98818560208601614a0f565b613fa181614bdb565b840191505092915050565b6000613fb78261483f565b613fc1818561486c565b9350613fd1818560208601614a0f565b80840191505092915050565b6000613fea60118361486c565b9150613ff582614bec565b601182019050919050565b600061400d602b8361485b565b915061401882614c15565b604082019050919050565b600061403060328361485b565b915061403b82614c64565b604082019050919050565b600061405360268361485b565b915061405e82614cb3565b604082019050919050565b6000614076601c8361485b565b915061408182614d02565b602082019050919050565b600061409960248361485b565b91506140a482614d2b565b604082019050919050565b60006140bc60198361485b565b91506140c782614d7a565b602082019050919050565b60006140df602c8361485b565b91506140ea82614da3565b604082019050919050565b600061410260018361486c565b915061410d82614df2565b600182019050919050565b600061412560388361485b565b915061413082614e1b565b604082019050919050565b6000614148602a8361485b565b915061415382614e6a565b604082019050919050565b600061416b60298361485b565b915061417682614eb9565b604082019050919050565b600061418e60028361486c565b915061419982614f08565b600282019050919050565b60006141b160208361485b565b91506141bc82614f31565b602082019050919050565b60006141d4602c8361485b565b91506141df82614f5a565b604082019050919050565b60006141f760208361485b565b915061420282614fa9565b602082019050919050565b600061421a60108361485b565b915061422582614fd2565b602082019050919050565b600061423d60298361485b565b915061424882614ffb565b604082019050919050565b600061426060068361486c565b915061426b8261504a565b600682019050919050565b600061428360218361485b565b915061428e82615073565b604082019050919050565b60006142a660478361486c565b91506142b1826150c2565b604782019050919050565b60006142c9601d8361486c565b91506142d482615137565b601d82019050919050565b60006142ec60318361485b565b91506142f782615160565b604082019050919050565b600061430f602c8361485b565b915061431a826151af565b604082019050919050565b6000614332601f8361485b565b915061433d826151fe565b602082019050919050565b614351816149f6565b82525050565b60006143638284613fac565b915081905092915050565b600061437a8285613fac565b91506143868284613fac565b91508190509392505050565b600061439e828c613fac565b91506143aa828b613fac565b91506143b6828a613fac565b91506143c28289613fac565b91506143ce8288613fac565b91506143da8287613fac565b91506143e68286613fac565b91506143f28285613fac565b91506143fe8284613fac565b91508190509a9950505050505050505050565b600061441d8286613fac565b9150614428826140f5565b91506144348285613fac565b915061443f82614253565b915061444b8284613fac565b9150819050949350505050565b600061446382613fdd565b915061446f8285613fac565b915061447a82614299565b91506144868284613fac565b915061449182614181565b91508190509392505050565b60006144a8826142bc565b91506144b48284613fac565b915081905092915050565b60006020820190506144d46000830184613f1c565b92915050565b60006080820190506144ef6000830187613f1c565b6144fc6020830186613f1c565b6145096040830185614348565b818103606083015261451b8184613f3a565b905095945050505050565b600060208201905061453b6000830184613f2b565b92915050565b6000602082019050818103600083015261455b8184613f73565b905092915050565b6000602082019050818103600083015261457c81614000565b9050919050565b6000602082019050818103600083015261459c81614023565b9050919050565b600060208201905081810360008301526145bc81614046565b9050919050565b600060208201905081810360008301526145dc81614069565b9050919050565b600060208201905081810360008301526145fc8161408c565b9050919050565b6000602082019050818103600083015261461c816140af565b9050919050565b6000602082019050818103600083015261463c816140d2565b9050919050565b6000602082019050818103600083015261465c81614118565b9050919050565b6000602082019050818103600083015261467c8161413b565b9050919050565b6000602082019050818103600083015261469c8161415e565b9050919050565b600060208201905081810360008301526146bc816141a4565b9050919050565b600060208201905081810360008301526146dc816141c7565b9050919050565b600060208201905081810360008301526146fc816141ea565b9050919050565b6000602082019050818103600083015261471c8161420d565b9050919050565b6000602082019050818103600083015261473c81614230565b9050919050565b6000602082019050818103600083015261475c81614276565b9050919050565b6000602082019050818103600083015261477c816142df565b9050919050565b6000602082019050818103600083015261479c81614302565b9050919050565b600060208201905081810360008301526147bc81614325565b9050919050565b60006020820190506147d86000830184614348565b92915050565b60006147e86147f9565b90506147f48282614a74565b919050565b6000604051905090565b600067ffffffffffffffff82111561481e5761481d614bac565b5b61482782614bdb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614882826149f6565b915061488d836149f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c2576148c1614b1f565b5b828201905092915050565b60006148d8826149f6565b91506148e3836149f6565b9250826148f3576148f2614b4e565b5b828204905092915050565b6000614909826149f6565b9150614914836149f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494d5761494c614b1f565b5b828202905092915050565b6000614963826149f6565b915061496e836149f6565b92508282101561498157614980614b1f565b5b828203905092915050565b6000614997826149d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a2d578082015181840152602081019050614a12565b83811115614a3c576000848401525b50505050565b60006002820490506001821680614a5a57607f821691505b60208210811415614a6e57614a6d614b7d565b5b50919050565b614a7d82614bdb565b810181811067ffffffffffffffff82111715614a9c57614a9b614bac565b5b80604052505050565b6000614ab0826149f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ae357614ae2614b1f565b5b600182019050919050565b6000614af9826149f6565b9150614b04836149f6565b925082614b1457614b13614b4e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a2022426f6172642023000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f2077697468200000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a2022736b617465206f72206469652e60008201527f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60208201527f6261736536342c00000000000000000000000000000000000000000000000000604082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6152308161498c565b811461523b57600080fd5b50565b6152478161499e565b811461525257600080fd5b50565b61525e816149aa565b811461526957600080fd5b50565b615275816149f6565b811461528057600080fd5b5056fe204465636b3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e2042656172696e67733c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e2047726970746170653c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e20576865656c733c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e20547275636b733c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2048617264776172653c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e2042757368696e67733c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223ea2646970667358221220b15fa1d72207ae31ea8a11b6dc564f631be7a9e763a91f35f74c93639c559ab164736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a080e8f4116100a2578063c89a224d11610071578063c89a224d1461058a578063de750152146105ba578063e985e9c5146105ea578063f2fde38b1461061a576101cf565b8063a080e8f4146104f2578063a22cb46514610522578063b88d4fde1461053e578063c87b56dd1461055a576101cf565b80638efa7bdc116100de5780638efa7bdc1461044457806395d89b41146104745780639971b98d146104925780639a20e3a8146104c2576101cf565b806370a08231146103ec578063715018a61461041c5780638da5cb5b14610426576101cf565b80632f745c5911610171578063434f48c41161014b578063434f48c4146103405780634f6ccce71461035c5780635947c2631461038c5780636352211e146103bc576101cf565b80632f745c59146102d8578063379607f51461030857806342842e0e14610324576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c5780632a51fb3a146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190613ea1565b610636565b6040516101fb9190614526565b60405180910390f35b61020c6106b0565b6040516102199190614541565b60405180910390f35b61023c60048036038101906102379190613ef3565b610742565b60405161024991906144bf565b60405180910390f35b61026c60048036038101906102679190613e65565b6107c7565b005b6102766108df565b60405161028391906147c3565b60405180910390f35b6102a660048036038101906102a19190613d5f565b6108ec565b005b6102c260048036038101906102bd9190613ef3565b61094c565b6040516102cf9190614541565b60405180910390f35b6102f260048036038101906102ed9190613e65565b610a66565b6040516102ff91906147c3565b60405180910390f35b610322600480360381019061031d9190613ef3565b610b0b565b005b61033e60048036038101906103399190613d5f565b610bc5565b005b61035a60048036038101906103559190613ef3565b610be5565b005b61037660048036038101906103719190613ef3565b610d1c565b60405161038391906147c3565b60405180910390f35b6103a660048036038101906103a19190613ef3565b610db3565b6040516103b39190614541565b60405180910390f35b6103d660048036038101906103d19190613ef3565b610ecd565b6040516103e391906144bf565b60405180910390f35b61040660048036038101906104019190613cfa565b610f7f565b60405161041391906147c3565b60405180910390f35b610424611037565b005b61042e6110bf565b60405161043b91906144bf565b60405180910390f35b61045e60048036038101906104599190613ef3565b6110e9565b60405161046b9190614541565b60405180910390f35b61047c611203565b6040516104899190614541565b60405180910390f35b6104ac60048036038101906104a79190613ef3565b611295565b6040516104b99190614541565b60405180910390f35b6104dc60048036038101906104d79190613ef3565b611604565b6040516104e99190614541565b60405180910390f35b61050c60048036038101906105079190613ef3565b61171e565b6040516105199190614541565b60405180910390f35b61053c60048036038101906105379190613e29565b611838565b005b61055860048036038101906105539190613dae565b6119b9565b005b610574600480360381019061056f9190613ef3565b611a1b565b6040516105819190614541565b60405180910390f35b6105a4600480360381019061059f9190613ef3565b6124bd565b6040516105b19190614541565b60405180910390f35b6105d460048036038101906105cf9190613ef3565b6125d7565b6040516105e19190614541565b60405180910390f35b61060460048036038101906105ff9190613d23565b6126f1565b6040516106119190614526565b60405180910390f35b610634600480360381019061062f9190613cfa565b612785565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a957506106a88261287d565b5b9050919050565b6060600080546106bf90614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546106eb90614a42565b80156107385780601f1061070d57610100808354040283529160200191610738565b820191906000526020600020905b81548152906001019060200180831161071b57829003601f168201915b5050505050905090565b600061074d8261295f565b61078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610783906146c3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d282610ecd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90614743565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108626129cb565b73ffffffffffffffffffffffffffffffffffffffff16148061089157506108908161088b6129cb565b6126f1565b5b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790614643565b60405180910390fd5b6108da83836129d3565b505050565b6000600880549050905090565b6108fd6108f76129cb565b82612a8c565b61093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390614763565b60405180910390fd5b610947838383612b6a565b505050565b6060610a5f826040518060400160405280600481526020017f4445434b00000000000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610a565783829060005260206000200180546109c990614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590614a42565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050815260200190600101906109aa565b50505050612dc6565b9050919050565b6000610a7183610f7f565b8210610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990614563565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b48906147a3565b60405180910390fd5b6002600a81905550600081118015610b6a5750611e6281105b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090614703565b60405180910390fd5b610bba610bb46129cb565b82612e55565b6001600a8190555050565b610be0838383604051806020016040528060008152506119b9565b505050565b6002600a541415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c22906147a3565b60405180910390fd5b6002600a81905550610c3b6129cb565b73ffffffffffffffffffffffffffffffffffffffff16610c596110bf565b73ffffffffffffffffffffffffffffffffffffffff1614610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca6906146e3565b60405180910390fd5b611e6181118015610cc15750611f4181105b610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790614703565b60405180910390fd5b610d11610d0b6110bf565b82612e55565b6001600a8190555050565b6000610d266108df565b8210610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90614783565b60405180910390fd5b60088281548110610da1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6060610ec6826040518060400160405280600881526020017f42454152494e4753000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610ebd578382906000526020600020018054610e3090614a42565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5c90614a42565b8015610ea95780601f10610e7e57610100808354040283529160200191610ea9565b820191906000526020600020905b815481529060010190602001808311610e8c57829003601f168201915b505050505081526020019060010190610e11565b50505050612dc6565b9050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614683565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790614663565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103f6129cb565b73ffffffffffffffffffffffffffffffffffffffff1661105d6110bf565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906146e3565b60405180910390fd5b6110bd6000612e73565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606111fc826040518060400160405280600881526020017f42555348494e4753000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b828210156111f357838290600052602060002001805461116690614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461119290614a42565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b505050505081526020019060010190611147565b50505050612dc6565b9050919050565b60606001805461121290614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461123e90614a42565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b5050505050905090565b606060006113aa836040518060400160405280600681526020017f434f4c4f52530000000000000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b828210156113a157838290600052602060002001805461131490614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461134090614a42565b801561138d5780601f106113625761010080835404028352916020019161138d565b820191906000526020600020905b81548152906001019060200180831161137057829003601f168201915b5050505050815260200190600101906112f5565b50505050612dc6565b905060006114bf846040518060400160405280600881526020017f5041545445524e530000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156114b657838290600052602060002001805461142990614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461145590614a42565b80156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b50505050508152602001906001019061140a565b50505050612dc6565b905060006115d4856040518060400160405280600581526020017f49434f4e530000000000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156115cb57838290600052602060002001805461153e90614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461156a90614a42565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b50505050508152602001906001019061151f565b50505050612dc6565b90508282826040516020016115eb93929190614411565b6040516020818303038152906040529350505050919050565b6060611717826040518060400160405280600881526020017f48415244574152450000000000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b8282101561170e57838290600052602060002001805461168190614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90614a42565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b505050505081526020019060010190611662565b50505050612dc6565b9050919050565b6060611831826040518060400160405280600881526020017f47524950544150450000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b8282101561182857838290600052602060002001805461179b90614a42565b80601f01602080910402602001604051908101604052809291908181526020018280546117c790614a42565b80156118145780601f106117e957610100808354040283529160200191611814565b820191906000526020600020905b8154815290600101906020018083116117f757829003601f168201915b50505050508152602001906001019061177c565b50505050612dc6565b9050919050565b6118406129cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590614603565b60405180910390fd5b80600560006118bb6129cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119686129cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ad9190614526565b60405180910390a35050565b6119ca6119c46129cb565b83612a8c565b611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614763565b60405180910390fd5b611a1584848484612f39565b50505050565b6060611a25613c01565b60405180610120016040528060fd815260200161537460fd913981600060118110611a79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611a8a83610db3565b81600160118110611ac4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603181526020016152b16031913981600260118110611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611b30836110e9565b81600360118110611b6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603181526020016154e36031913981600460118110611bc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611bd68361094c565b81600560118110611c10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602d8152602001615284602d913981600660118110611c6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c7c8361171e565b81600760118110611cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603281526020016152e26032913981600860118110611d11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d2283611604565b81600960118110611d5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603281526020016154b16032913981600a60118110611db7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611dc8836124bd565b81600b60118110611e02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603081526020016153446030913981600c60118110611e5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611e6e836125d7565b81600d60118110611ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280603081526020016153146030913981600e60118110611f03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611f1483611295565b81600f60118110611f4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081601060118110611fc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060008160006011811061200a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600160118110612049577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260118110612088577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151846003601181106120c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600460118110612106577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600560118110612145577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600660118110612184577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886007601181106121c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189600860118110612202577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161221f99989796959493929190614392565b6040516020818303038152906040529050808260096011811061226b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a601181106122aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b601181106122e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c60118110612328577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d60118110612367577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e601181106123a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600f601181106123e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189601060118110612424577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161244199989796959493929190614392565b6040516020818303038152906040529050600061248e61246086612f95565b61246984613142565b60405160200161247a929190614458565b604051602081830303815290604052613142565b9050806040516020016124a1919061449d565b6040516020818303038152906040529150819350505050919050565b60606125d0826040518060400160405280600681526020017f545255434b5300000000000000000000000000000000000000000000000000008152506014805480602002602001604051908101604052809291908181526020016000905b828210156125c757838290600052602060002001805461253a90614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461256690614a42565b80156125b35780601f10612588576101008083540402835291602001916125b3565b820191906000526020600020905b81548152906001019060200180831161259657829003601f168201915b50505050508152602001906001019061251b565b50505050612dc6565b9050919050565b60606126ea826040518060400160405280600681526020017f574845454c5300000000000000000000000000000000000000000000000000008152506015805480602002602001604051908101604052809291908181526020016000905b828210156126e157838290600052602060002001805461265490614a42565b80601f016020809104026020016040519081016040528092919081815260200182805461268090614a42565b80156126cd5780601f106126a2576101008083540402835291602001916126cd565b820191906000526020600020905b8154815290600101906020018083116126b057829003601f168201915b505050505081526020019060010190612635565b50505050612dc6565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61278d6129cb565b73ffffffffffffffffffffffffffffffffffffffff166127ab6110bf565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906146e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612871576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612868906145a3565b60405180910390fd5b61287a81612e73565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061294857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612958575061295782613300565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a4683610ecd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a978261295f565b612ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acd90614623565b60405180910390fd5b6000612ae183610ecd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b5057508373ffffffffffffffffffffffffffffffffffffffff16612b3884610742565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b615750612b6081856126f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b8a82610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd790614723565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c47906145e3565b60405180910390fd5b612c5b83838361336a565b612c666000826129d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cb69190614958565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0d9190614877565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000612dfc84612dd787612f95565b604051602001612de892919061436e565b60405160208183030381529060405261347e565b905082835182612e0c9190614aee565b81518110612e43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150509392505050565b612e6f8282604051806020016040528060008152506134b1565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f44848484612b6a565b612f508484848461350c565b612f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8690614583565b60405180910390fd5b50505050565b60606000821415612fdd576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061313d565b600082905060005b6000821461300f578080612ff890614aa5565b915050600a8261300891906148cd565b9150612fe5565b60008167ffffffffffffffff811115613051577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130835781602001600182028036833780820191505090505b5090505b600085146131365760018261309c9190614958565b9150600a856130ab9190614aee565b60306130b79190614877565b60f81b8183815181106130f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561312f91906148cd565b9450613087565b8093505050505b919050565b6060600082519050600081141561316b57604051806020016040528060008152509150506132fb565b6000600360028361317c9190614877565b61318691906148cd565b600461319291906148fe565b905060006020826131a39190614877565b67ffffffffffffffff8111156131e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132145781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615471604091399050600181016020830160005b868110156132b85760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505061323f565b5060038606600181146132d257600281146132e2576132ed565b613d3d60f01b60028303526132ed565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133758383836136a3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b8576133b3816136a8565b6133f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133f6576133f583826136f1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343a576134358161385e565b613479565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134785761347782826139a1565b5b5b505050565b6000816040516020016134919190614357565b6040516020818303038152906040528051906020012060001c9050919050565b6134bb8383613a20565b6134c8600084848461350c565b613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe90614583565b60405180910390fd5b505050565b600061352d8473ffffffffffffffffffffffffffffffffffffffff16613bee565b15613696578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135566129cb565b8786866040518563ffffffff1660e01b815260040161357894939291906144da565b602060405180830381600087803b15801561359257600080fd5b505af19250505080156135c357506040513d601f19601f820116820180604052508101906135c09190613eca565b60015b613646573d80600081146135f3576040519150601f19603f3d011682016040523d82523d6000602084013e6135f8565b606091505b5060008151141561363e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363590614583565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061369b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136fe84610f7f565b6137089190614958565b90506000600760008481526020019081526020016000205490508181146137ed576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138729190614958565b90506000600960008481526020019081526020016000205490506000600883815481106138c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613910577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613985577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139ac83610f7f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a87906146a3565b60405180910390fd5b613a998161295f565b15613ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad0906145c3565b60405180910390fd5b613ae56000838361336a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b359190614877565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081613c115790505090565b6000613c3c613c3784614803565b6147de565b905082815260208101848484011115613c5457600080fd5b613c5f848285614a00565b509392505050565b600081359050613c7681615227565b92915050565b600081359050613c8b8161523e565b92915050565b600081359050613ca081615255565b92915050565b600081519050613cb581615255565b92915050565b600082601f830112613ccc57600080fd5b8135613cdc848260208601613c29565b91505092915050565b600081359050613cf48161526c565b92915050565b600060208284031215613d0c57600080fd5b6000613d1a84828501613c67565b91505092915050565b60008060408385031215613d3657600080fd5b6000613d4485828601613c67565b9250506020613d5585828601613c67565b9150509250929050565b600080600060608486031215613d7457600080fd5b6000613d8286828701613c67565b9350506020613d9386828701613c67565b9250506040613da486828701613ce5565b9150509250925092565b60008060008060808587031215613dc457600080fd5b6000613dd287828801613c67565b9450506020613de387828801613c67565b9350506040613df487828801613ce5565b925050606085013567ffffffffffffffff811115613e1157600080fd5b613e1d87828801613cbb565b91505092959194509250565b60008060408385031215613e3c57600080fd5b6000613e4a85828601613c67565b9250506020613e5b85828601613c7c565b9150509250929050565b60008060408385031215613e7857600080fd5b6000613e8685828601613c67565b9250506020613e9785828601613ce5565b9150509250929050565b600060208284031215613eb357600080fd5b6000613ec184828501613c91565b91505092915050565b600060208284031215613edc57600080fd5b6000613eea84828501613ca6565b91505092915050565b600060208284031215613f0557600080fd5b6000613f1384828501613ce5565b91505092915050565b613f258161498c565b82525050565b613f348161499e565b82525050565b6000613f4582614834565b613f4f818561484a565b9350613f5f818560208601614a0f565b613f6881614bdb565b840191505092915050565b6000613f7e8261483f565b613f88818561485b565b9350613f98818560208601614a0f565b613fa181614bdb565b840191505092915050565b6000613fb78261483f565b613fc1818561486c565b9350613fd1818560208601614a0f565b80840191505092915050565b6000613fea60118361486c565b9150613ff582614bec565b601182019050919050565b600061400d602b8361485b565b915061401882614c15565b604082019050919050565b600061403060328361485b565b915061403b82614c64565b604082019050919050565b600061405360268361485b565b915061405e82614cb3565b604082019050919050565b6000614076601c8361485b565b915061408182614d02565b602082019050919050565b600061409960248361485b565b91506140a482614d2b565b604082019050919050565b60006140bc60198361485b565b91506140c782614d7a565b602082019050919050565b60006140df602c8361485b565b91506140ea82614da3565b604082019050919050565b600061410260018361486c565b915061410d82614df2565b600182019050919050565b600061412560388361485b565b915061413082614e1b565b604082019050919050565b6000614148602a8361485b565b915061415382614e6a565b604082019050919050565b600061416b60298361485b565b915061417682614eb9565b604082019050919050565b600061418e60028361486c565b915061419982614f08565b600282019050919050565b60006141b160208361485b565b91506141bc82614f31565b602082019050919050565b60006141d4602c8361485b565b91506141df82614f5a565b604082019050919050565b60006141f760208361485b565b915061420282614fa9565b602082019050919050565b600061421a60108361485b565b915061422582614fd2565b602082019050919050565b600061423d60298361485b565b915061424882614ffb565b604082019050919050565b600061426060068361486c565b915061426b8261504a565b600682019050919050565b600061428360218361485b565b915061428e82615073565b604082019050919050565b60006142a660478361486c565b91506142b1826150c2565b604782019050919050565b60006142c9601d8361486c565b91506142d482615137565b601d82019050919050565b60006142ec60318361485b565b91506142f782615160565b604082019050919050565b600061430f602c8361485b565b915061431a826151af565b604082019050919050565b6000614332601f8361485b565b915061433d826151fe565b602082019050919050565b614351816149f6565b82525050565b60006143638284613fac565b915081905092915050565b600061437a8285613fac565b91506143868284613fac565b91508190509392505050565b600061439e828c613fac565b91506143aa828b613fac565b91506143b6828a613fac565b91506143c28289613fac565b91506143ce8288613fac565b91506143da8287613fac565b91506143e68286613fac565b91506143f28285613fac565b91506143fe8284613fac565b91508190509a9950505050505050505050565b600061441d8286613fac565b9150614428826140f5565b91506144348285613fac565b915061443f82614253565b915061444b8284613fac565b9150819050949350505050565b600061446382613fdd565b915061446f8285613fac565b915061447a82614299565b91506144868284613fac565b915061449182614181565b91508190509392505050565b60006144a8826142bc565b91506144b48284613fac565b915081905092915050565b60006020820190506144d46000830184613f1c565b92915050565b60006080820190506144ef6000830187613f1c565b6144fc6020830186613f1c565b6145096040830185614348565b818103606083015261451b8184613f3a565b905095945050505050565b600060208201905061453b6000830184613f2b565b92915050565b6000602082019050818103600083015261455b8184613f73565b905092915050565b6000602082019050818103600083015261457c81614000565b9050919050565b6000602082019050818103600083015261459c81614023565b9050919050565b600060208201905081810360008301526145bc81614046565b9050919050565b600060208201905081810360008301526145dc81614069565b9050919050565b600060208201905081810360008301526145fc8161408c565b9050919050565b6000602082019050818103600083015261461c816140af565b9050919050565b6000602082019050818103600083015261463c816140d2565b9050919050565b6000602082019050818103600083015261465c81614118565b9050919050565b6000602082019050818103600083015261467c8161413b565b9050919050565b6000602082019050818103600083015261469c8161415e565b9050919050565b600060208201905081810360008301526146bc816141a4565b9050919050565b600060208201905081810360008301526146dc816141c7565b9050919050565b600060208201905081810360008301526146fc816141ea565b9050919050565b6000602082019050818103600083015261471c8161420d565b9050919050565b6000602082019050818103600083015261473c81614230565b9050919050565b6000602082019050818103600083015261475c81614276565b9050919050565b6000602082019050818103600083015261477c816142df565b9050919050565b6000602082019050818103600083015261479c81614302565b9050919050565b600060208201905081810360008301526147bc81614325565b9050919050565b60006020820190506147d86000830184614348565b92915050565b60006147e86147f9565b90506147f48282614a74565b919050565b6000604051905090565b600067ffffffffffffffff82111561481e5761481d614bac565b5b61482782614bdb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614882826149f6565b915061488d836149f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c2576148c1614b1f565b5b828201905092915050565b60006148d8826149f6565b91506148e3836149f6565b9250826148f3576148f2614b4e565b5b828204905092915050565b6000614909826149f6565b9150614914836149f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494d5761494c614b1f565b5b828202905092915050565b6000614963826149f6565b915061496e836149f6565b92508282101561498157614980614b1f565b5b828203905092915050565b6000614997826149d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a2d578082015181840152602081019050614a12565b83811115614a3c576000848401525b50505050565b60006002820490506001821680614a5a57607f821691505b60208210811415614a6e57614a6d614b7d565b5b50919050565b614a7d82614bdb565b810181811067ffffffffffffffff82111715614a9c57614a9b614bac565b5b80604052505050565b6000614ab0826149f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ae357614ae2614b1f565b5b600182019050919050565b6000614af9826149f6565b9150614b04836149f6565b925082614b1457614b13614b4e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a2022426f6172642023000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f2077697468200000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a2022736b617465206f72206469652e60008201527f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60208201527f6261736536342c00000000000000000000000000000000000000000000000000604082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6152308161498c565b811461523b57600080fd5b50565b6152478161499e565b811461525257600080fd5b50565b61525e816149aa565b811461526957600080fd5b50565b615275816149f6565b811461528057600080fd5b5056fe204465636b3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e2042656172696e67733c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e2047726970746170653c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e20576865656c733c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e20547275636b733c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2048617264776172653c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e2042757368696e67733c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223ea2646970667358221220b15fa1d72207ae31ea8a11b6dc564f631be7a9e763a91f35f74c93639c559ab164736f6c63430008040033
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.