ERC-721
Overview
Max Total Supply
55 MM
Holders
28
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MagicMarbles
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./ERC721Pausable.sol"; contract MagicMarbles is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint256 public constant MAX_ELEMENTS_L1 = 4444; uint256 public constant MAX_ELEMENTS_L2 = 2222; uint256 public constant MAX_ELEMENTS_L3 = 1111; uint256 public constant MAX_ELEMENTS_L4 = 777; uint256 public constant MAX_ELEMENTS_L5 = 334; uint256 public constant MAX_ELEMENTS = MAX_ELEMENTS_L1 + MAX_ELEMENTS_L2 + MAX_ELEMENTS_L3 + MAX_ELEMENTS_L4 + MAX_ELEMENTS_L5; uint256 public constant MAX_PRESALE = 200; uint256 public constant PRICE = 888 * 10**14; uint256 public constant MAX_BY_MINT = 20; address public constant TRESURY_ADDRESS = 0xCC4d8114DF84AdE1FA63900aA524C4346c123857; uint256 public SMELT_FEE = 100 * 10**14; string public baseTokenURI; bool public isPresale = false; struct Ancestors { uint256 fireAncestor; uint256 waterAncestor; } uint256[] public levelsCount; mapping(address => bool) public PRESALE_LIST; mapping (uint256 => Ancestors) public ancestors; mapping (uint256 => uint256) public levels; mapping (uint256 => bytes32) public magicSalt; event CreateMarble(uint256 indexed id); constructor(string memory baseURI) ERC721("MagicMarbles", "MM") { levelsCount.push(0); levelsCount.push(0); levelsCount.push(0); levelsCount.push(0); levelsCount.push(0); levelsCount.push(0); setBaseURI(baseURI); pause(true); isPresale = true; } modifier saleIsOpen { require(totalMinted() <= MAX_ELEMENTS, "Sale end"); if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); require(!isPresale, "Cannot mint while presale is ongoing"); } _; } modifier presaleIsOpen { if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); require(isPresale, "Presale is not running"); } _; } function _totalSupply() internal view returns (uint256) { return _tokenIdTracker.current(); } function getMaxPerLevel(uint256 level) private pure returns (uint256) { if (level == 1) { return MAX_ELEMENTS_L1; } if (level == 2) { return MAX_ELEMENTS_L2; } if (level == 3) { return MAX_ELEMENTS_L3; } if (level == 4) { return MAX_ELEMENTS_L4; } if (level == 5) { return MAX_ELEMENTS_L5; } return 0; } function totalMint() public view returns (uint256) { return _totalSupply(); } function totalMintedPerLevel(uint256 level) public view returns (uint256) { return levelsCount[level]; } function totalMinted() public view returns (uint256) { return levelsCount[1] + levelsCount[2] + levelsCount[3] + levelsCount[4] + levelsCount[5]; } function price(uint256 _count) public pure returns (uint256) { return PRICE.mul(_count); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setSmeltFee(uint256 fee) public onlyOwner { SMELT_FEE = fee; } function setPresale(bool presale) public onlyOwner { isPresale = presale; } function smelt(uint256 item1, uint256 item2) public payable { require( _exists(item1) && _exists(item2) && ownerOf(item1) == msg.sender && ownerOf(item2) == msg.sender, "You don't own these tokens" ); require(msg.value >= SMELT_FEE, "Value below price"); uint256 newLevel = Math.max(levels[item1], levels[item2]) + 1; if (newLevel > 5) { newLevel = 5; } uint256 total = totalMintedPerLevel(newLevel); require(total + 1 <= getMaxPerLevel(newLevel), "Max limit for this Level"); _burnItem(item1); _burnItem(item2); uint256 newItem = _mintItem(msg.sender, newLevel); Ancestors memory ancest = Ancestors({fireAncestor: item1, waterAncestor: item2}); ancestors[newItem] = ancest; } function mint(address _to, uint256 _count) public payable saleIsOpen { uint256 total = totalMintedPerLevel(1); require(total <= MAX_ELEMENTS); require(total + _count <= getMaxPerLevel(1), "Max limit for L1"); require(_count <= MAX_BY_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintItem(_to, 1); } } function presaleMint(address _to, uint256 _count) public payable presaleIsOpen { uint256 total = totalMintedPerLevel(1); require(PRESALE_LIST[msg.sender], "Not qualified for presale"); require(total <= MAX_PRESALE, "Max presale items limit"); require(_count <= MAX_BY_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintItem(_to, 1); } } function _burnItem(uint256 id) private { _burn(id); uint level = levels[id]; levelsCount[level] = levelsCount[level] - 1; } function _mintItem(address _to, uint256 level) private returns (uint256) { uint id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); bytes32 ms = keccak256(abi.encodePacked(msg.sender, block.difficulty, block.timestamp, id)); magicSalt[id] = ms; levels[id] = level; levelsCount[level] = levelsCount[level] + 1; emit CreateMarble(id); return id; } function ownerGrant(address[] calldata recipients) public onlyOwner { for (uint256 i = 0; i < recipients.length; i++) { _mintItem(recipients[i], 1); } } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function pause(bool val) public onlyOwner { if (val == true) { _pause(); return; } _unpause(); } function withdrawAll() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(TRESURY_ADDRESS, address(this).balance); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success); } function addToPresaleList(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; PRESALE_LIST[entry] = true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// 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; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Ownable, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (_msgSender() != owner()) { require(!paused(), "ERC721Pausable: token transfer while paused"); } } }
// 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}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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 { } }
// 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateMarble","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS_L1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS_L2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS_L3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS_L4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS_L5","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PRESALE_LIST","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMELT_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRESURY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ancestors","outputs":[{"internalType":"uint256","name":"fireAncestor","type":"uint256"},{"internalType":"uint256","name":"waterAncestor","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"levels","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"levelsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"magicSalt","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"ownerGrant","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"presale","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setSmeltFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"item1","type":"uint256"},{"internalType":"uint256","name":"item2","type":"uint256"}],"name":"smelt","outputs":[],"stateMutability":"payable","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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"totalMintedPerLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052662386f26fc10000600c556000600e60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040516200698c3803806200698c83398181016040528101906200005d919062000756565b6040518060400160405280600c81526020017f4d616769634d6172626c657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d4d0000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e192919062000634565b508060019080519060200190620000fa92919062000634565b50505060006200010f6200030a60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600a60146101000a81548160ff021916908315150217905550600f60009080600181540180825580915050600190039060005260206000200160009091909190915055600f60009080600181540180825580915050600190039060005260206000200160009091909190915055600f60009080600181540180825580915050600190039060005260206000200160009091909190915055600f60009080600181540180825580915050600190039060005260206000200160009091909190915055600f60009080600181540180825580915050600190039060005260206000200160009091909190915055600f60009080600181540180825580915050600190039060005260206000200160009091909190915055620002d6816200031260201b60201c565b620002e86001620003bd60201b60201c565b6001600e60006101000a81548160ff0219169083151502179055505062000a6b565b600033905090565b620003226200030a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003486200048460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039890620008d3565b60405180910390fd5b80600d9080519060200190620003b992919062000634565b5050565b620003cd6200030a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f36200048460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200044c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044390620008d3565b60405180910390fd5b60011515811515141562000470576200046a620004ae60201b60201c565b62000481565b620004806200056660201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004be6200061d60201b60201c565b1562000501576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f890620008b1565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200054d6200030a60201b60201c565b6040516200055c919062000872565b60405180910390a1565b620005766200061d60201b60201c565b620005b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005af906200088f565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620006046200030a60201b60201c565b60405162000613919062000872565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b8280546200064290620009d7565b90600052602060002090601f016020900481019282620006665760008555620006b2565b82601f106200068157805160ff1916838001178555620006b2565b82800160010185558215620006b2579182015b82811115620006b157825182559160200191906001019062000694565b5b509050620006c19190620006c5565b5090565b5b80821115620006e0576000816000905550600101620006c6565b5090565b6000620006fb620006f58462000929565b620008f5565b9050828152602081018484840111156200071457600080fd5b62000721848285620009a1565b509392505050565b600082601f8301126200073b57600080fd5b81516200074d848260208601620006e4565b91505092915050565b6000602082840312156200076957600080fd5b600082015167ffffffffffffffff8111156200078457600080fd5b620007928482850162000729565b91505092915050565b620007a6816200096d565b82525050565b6000620007bb6014836200095c565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000620007fd6010836200095c565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006200083f6020836200095c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190506200088960008301846200079b565b92915050565b60006020820190508181036000830152620008aa81620007ac565b9050919050565b60006020820190508181036000830152620008cc81620007ee565b9050919050565b60006020820190508181036000830152620008ee8162000830565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200091f576200091e62000a3c565b5b8060405250919050565b600067ffffffffffffffff82111562000947576200094662000a3c565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200097a8262000981565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620009c1578082015181840152602081019050620009a4565b83811115620009d1576000848401525b50505050565b60006002820490506001821680620009f057607f821691505b6020821081141562000a075762000a0662000a0d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615f118062000a7b6000396000f3fe6080604052600436106103355760003560e01c8063715018a6116101ab578063a0680aae116100f7578063c6bfd74211610095578063d547cfb71161006f578063d547cfb714610c37578063e985e9c514610c62578063ec2cdbdf14610c9f578063f2fde38b14610cc857610335565b8063c6bfd74214610ba1578063c87b56dd14610bde578063cc4f188614610c1b57610335565b8063b2596a67116100d1578063b2596a6714610ae7578063b64c860d14610b24578063b88d4fde14610b4f578063c54e73e314610b7857610335565b8063a0680aae14610a55578063a22cb46514610a93578063a2309ff814610abc57610335565b80638b88bf991161016457806395364a841161013e57806395364a84146109a657806395d89b41146109d1578063976f71e5146109fc5780639b6a670914610a3957610335565b80638b88bf99146109255780638d859f3e146109505780638da5cb5b1461097b57610335565b8063715018a61461084a5780637204a3c91461086157806375d907cf1461088a578063853828b6146108c757806386e8e3f4146108d15780638ad5de28146108fa57610335565b806340c10f1911610285578063581ade39116102235780635c975abb116101fd5780635c975abb1461077a5780636352211e146107a557806365381154146107e257806370a082311461080d57610335565b8063581ade39146106f957806359a7715a146107245780635c0fe6c31461074f57610335565b8063438b63001161025f578063438b63001461062b5780634d4c4e99146106685780634f6ccce71461069357806355f804b3146106d057610335565b806340c10f19146105bd57806342842e0e146105d957806342966c681461060257610335565b8063159edd16116102f257806326a49e37116102cc57806326a49e37146104ed5780632f745c591461052a57806330b79265146105675780633502a7161461059257610335565b8063159edd161461045c57806318160ddd1461049957806323b872dd146104c457610335565b806301ffc9a71461033a57806302329a291461037757806306fdde03146103a0578063081812fc146103cb578063095ea7b31461040857806311c0d98e14610431575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614708565b610cf1565b60405161036e9190615542565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906146df565b610d03565b005b3480156103ac57600080fd5b506103b5610da5565b6040516103c29190615578565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed919061479b565b610e37565b6040516103ff91906154b9565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061465e565b610ebc565b005b34801561043d57600080fd5b50610446610fd4565b604051610453919061599a565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061479b565b610fda565b604051610490919061599a565b60405180910390f35b3480156104a557600080fd5b506104ae611028565b6040516104bb919061599a565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190614558565b611035565b005b3480156104f957600080fd5b50610514600480360381019061050f919061479b565b611095565b604051610521919061599a565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061465e565b6110b9565b60405161055e919061599a565b60405180910390f35b34801561057357600080fd5b5061057c61115e565b604051610589919061599a565b60405180910390f35b34801561059e57600080fd5b506105a7611164565b6040516105b4919061599a565b60405180910390f35b6105d760048036038101906105d2919061465e565b61119e565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190614558565b61145f565b005b34801561060e57600080fd5b506106296004803603810190610624919061479b565b61147f565b005b34801561063757600080fd5b50610652600480360381019061064d91906144f3565b6114db565b60405161065f9190615520565b60405180910390f35b34801561067457600080fd5b5061067d6115d5565b60405161068a919061599a565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b5919061479b565b6115da565b6040516106c7919061599a565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f2919061475a565b611671565b005b34801561070557600080fd5b5061070e611707565b60405161071b919061599a565b60405180910390f35b34801561073057600080fd5b5061073961170d565b604051610746919061599a565b60405180910390f35b34801561075b57600080fd5b5061076461171c565b604051610771919061599a565b60405180910390f35b34801561078657600080fd5b5061078f611722565b60405161079c9190615542565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c7919061479b565b611739565b6040516107d991906154b9565b60405180910390f35b3480156107ee57600080fd5b506107f76117eb565b60405161080491906154b9565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906144f3565b611803565b604051610841919061599a565b60405180910390f35b34801561085657600080fd5b5061085f6118bb565b005b34801561086d57600080fd5b506108886004803603810190610883919061469a565b6119f8565b005b34801561089657600080fd5b506108b160048036038101906108ac91906144f3565b611b45565b6040516108be9190615542565b60405180910390f35b6108cf611b65565b005b3480156108dd57600080fd5b506108f860048036038101906108f3919061469a565b611c14565b005b34801561090657600080fd5b5061090f611d0f565b60405161091c919061599a565b60405180910390f35b34801561093157600080fd5b5061093a611d14565b604051610947919061599a565b60405180910390f35b34801561095c57600080fd5b50610965611d1a565b604051610972919061599a565b60405180910390f35b34801561098757600080fd5b50610990611d26565b60405161099d91906154b9565b60405180910390f35b3480156109b257600080fd5b506109bb611d50565b6040516109c89190615542565b60405180910390f35b3480156109dd57600080fd5b506109e6611d63565b6040516109f39190615578565b60405180910390f35b348015610a0857600080fd5b50610a236004803603810190610a1e919061479b565b611df5565b604051610a30919061599a565b60405180910390f35b610a536004803603810190610a4e919061465e565b611e19565b005b348015610a6157600080fd5b50610a7c6004803603810190610a77919061479b565b61208f565b604051610a8a9291906159b5565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab59190614622565b6120b3565b005b348015610ac857600080fd5b50610ad1612234565b604051610ade919061599a565b60405180910390f35b348015610af357600080fd5b50610b0e6004803603810190610b09919061479b565b6123c1565b604051610b1b919061599a565b60405180910390f35b348015610b3057600080fd5b50610b396123d9565b604051610b46919061599a565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b7191906145a7565b6123df565b005b348015610b8457600080fd5b50610b9f6004803603810190610b9a91906146df565b612441565b005b348015610bad57600080fd5b50610bc86004803603810190610bc3919061479b565b6124da565b604051610bd5919061555d565b60405180910390f35b348015610bea57600080fd5b50610c056004803603810190610c00919061479b565b6124f2565b604051610c129190615578565b60405180910390f35b610c356004803603810190610c3091906147c4565b612599565b005b348015610c4357600080fd5b50610c4c6127d3565b604051610c599190615578565b60405180910390f35b348015610c6e57600080fd5b50610c896004803603810190610c84919061451c565b612861565b604051610c969190615542565b60405180910390f35b348015610cab57600080fd5b50610cc66004803603810190610cc1919061479b565b6128f5565b005b348015610cd457600080fd5b50610cef6004803603810190610cea91906144f3565b61297b565b005b6000610cfc82612b27565b9050919050565b610d0b612ba1565b73ffffffffffffffffffffffffffffffffffffffff16610d29611d26565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d769061585a565b60405180910390fd5b600115158115151415610d9957610d94612ba9565b610da2565b610da1612c4c565b5b50565b606060008054610db490615ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054610de090615ccb565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b5050505050905090565b6000610e4282612cee565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061583a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec782611739565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906158fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f57612ba1565b73ffffffffffffffffffffffffffffffffffffffff161480610f865750610f8581610f80612ba1565b612861565b5b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061577a565b60405180910390fd5b610fcf8383612d5a565b505050565b6108ae81565b6000600f8281548110611016577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600880549050905090565b611046611040612ba1565b82612e13565b611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c9061591a565b60405180910390fd5b611090838383612ef1565b505050565b60006110b28267013b7b21280e000061314d90919063ffffffff16565b9050919050565b60006110c483611803565b8210611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906155fa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61045781565b61014e6103096104576108ae61115c61117d9190615af6565b6111879190615af6565b6111919190615af6565b61119b9190615af6565b81565b61014e6103096104576108ae61115c6111b79190615af6565b6111c19190615af6565b6111cb9190615af6565b6111d59190615af6565b6111dd612234565b111561121e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112159061581a565b60405180910390fd5b611226611d26565b73ffffffffffffffffffffffffffffffffffffffff16611244612ba1565b73ffffffffffffffffffffffffffffffffffffffff16146112f857611267611722565b156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e9061573a565b60405180910390fd5b600e60009054906101000a900460ff16156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906158da565b60405180910390fd5b5b60006113046001610fda565b905061014e6103096104576108ae61115c61131f9190615af6565b6113299190615af6565b6113339190615af6565b61133d9190615af6565b81111561134957600080fd5b6113536001613163565b828261135f9190615af6565b11156113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113979061575a565b60405180910390fd5b60148211156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906155da565b60405180910390fd5b6113ed82611095565b34101561142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906158ba565b60405180910390fd5b60005b82811015611459576114458460016131ce565b50808061145190615cfd565b915050611432565b50505050565b61147a838383604051806020016040528060008152506123df565b505050565b61149061148a612ba1565b82612e13565b6114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061597a565b60405180910390fd5b6114d881613321565b50565b606060006114e883611803565b905060008167ffffffffffffffff81111561152c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561155a5781602001602082028036833780820191505090505b50905060005b828110156115ca5761157285826110b9565b8282815181106115ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115c290615cfd565b915050611560565b508092505050919050565b60c881565b60006115e4611028565b8210611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c9061593a565b60405180910390fd5b6008828154811061165f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611679612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611697611d26565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e49061585a565b60405180910390fd5b80600d90805190602001906117039291906142cd565b5050565b61030981565b6000611717613432565b905090565b61115c81565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d9906157ba565b60405180910390fd5b80915050919050565b73cc4d8114df84ade1fa63900aa524c4346c12385781565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b9061579a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c3612ba1565b73ffffffffffffffffffffffffffffffffffffffff166118e1611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9061585a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a00612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611a1e611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b9061585a565b60405180910390fd5b60005b82829050811015611b40576000838383818110611abd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ad291906144f3565b90506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611b3890615cfd565b915050611a77565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b611b6d612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611b8b611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061585a565b60405180910390fd5b600047905060008111611bf357600080fd5b611c1173cc4d8114df84ade1fa63900aa524c4346c12385747613443565b50565b611c1c612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611c3a611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c879061585a565b60405180910390fd5b60005b82829050811015611d0a57611cf6838383818110611cda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611cef91906144f3565b60016131ce565b508080611d0290615cfd565b915050611c93565b505050565b601481565b61014e81565b67013b7b21280e000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60009054906101000a900460ff1681565b606060018054611d7290615ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9e90615ccb565b8015611deb5780601f10611dc057610100808354040283529160200191611deb565b820191906000526020600020905b815481529060010190602001808311611dce57829003601f168201915b5050505050905090565b600f8181548110611e0557600080fd5b906000526020600020016000915090505481565b611e21611d26565b73ffffffffffffffffffffffffffffffffffffffff16611e3f612ba1565b73ffffffffffffffffffffffffffffffffffffffff1614611ef257611e62611722565b15611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e999061573a565b60405180910390fd5b600e60009054906101000a900460ff16611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee89061567a565b60405180910390fd5b5b6000611efe6001610fda565b9050601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906157da565b60405180910390fd5b60c8811115611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc79061595a565b60405180910390fd5b6014821115612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b906155da565b60405180910390fd5b61201d82611095565b34101561205f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612056906158ba565b60405180910390fd5b60005b82811015612089576120758460016131ce565b50808061208190615cfd565b915050612062565b50505050565b60116020528060005260406000206000915090508060000154908060010154905082565b6120bb612ba1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612120906156da565b60405180910390fd5b8060056000612136612ba1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121e3612ba1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122289190615542565b60405180910390a35050565b6000600f600581548110612271577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f6004815481106122b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f6003815481106122fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f600281548110612343577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f600181548110612389577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015461239e9190615af6565b6123a89190615af6565b6123b29190615af6565b6123bc9190615af6565b905090565b60126020528060005260406000206000915090505481565b600c5481565b6123f06123ea612ba1565b83612e13565b61242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124269061591a565b60405180910390fd5b61243b848484846134be565b50505050565b612449612ba1565b73ffffffffffffffffffffffffffffffffffffffff16612467611d26565b73ffffffffffffffffffffffffffffffffffffffff16146124bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b49061585a565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915090505481565b60606124fd82612cee565b61253c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125339061589a565b60405180910390fd5b600061254661351a565b905060008151116125665760405180602001604052806000815250612591565b80612570846135ac565b604051602001612581929190615480565b6040516020818303038152906040525b915050919050565b6125a282612cee565b80156125b357506125b281612cee565b5b80156125f257503373ffffffffffffffffffffffffffffffffffffffff166125da83611739565b73ffffffffffffffffffffffffffffffffffffffff16145b801561263157503373ffffffffffffffffffffffffffffffffffffffff1661261982611739565b73ffffffffffffffffffffffffffffffffffffffff16145b612670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612667906156fa565b60405180910390fd5b600c543410156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906158ba565b60405180910390fd5b600060016126e960126000868152602001908152602001600020546012600086815260200190815260200160002054613759565b6126f39190615af6565b9050600581111561270357600590505b600061270e82610fda565b905061271982613163565b6001826127269190615af6565b1115612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e9061569a565b60405180910390fd5b61277084613773565b61277983613773565b600061278533846131ce565b90506000604051806040016040528087815260200186815250905080601160008481526020019081526020016000206000820151816000015560208201518160010155905050505050505050565b600d80546127e090615ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461280c90615ccb565b80156128595780601f1061282e57610100808354040283529160200191612859565b820191906000526020600020905b81548152906001019060200180831161283c57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128fd612ba1565b73ffffffffffffffffffffffffffffffffffffffff1661291b611d26565b73ffffffffffffffffffffffffffffffffffffffff1614612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061585a565b60405180910390fd5b80600c8190555050565b612983612ba1565b73ffffffffffffffffffffffffffffffffffffffff166129a1611d26565b73ffffffffffffffffffffffffffffffffffffffff16146129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee9061585a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e9061563a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b9a5750612b9982613831565b5b9050919050565b600033905090565b612bb1611722565b15612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be89061573a565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c35612ba1565b604051612c4291906154b9565b60405180910390a1565b612c54611722565b612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a906155ba565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612cd7612ba1565b604051612ce491906154b9565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dcd83611739565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e1e82612cee565b612e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e549061571a565b60405180910390fd5b6000612e6883611739565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ed757508373ffffffffffffffffffffffffffffffffffffffff16612ebf84610e37565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ee85750612ee78185612861565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f1182611739565b73ffffffffffffffffffffffffffffffffffffffff1614612f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5e9061587a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fce906156ba565b60405180910390fd5b612fe2838383613913565b612fed600082612d5a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461303d9190615bd7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130949190615af6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361315b9190615b7d565b905092915050565b600060018214156131785761115c90506131c9565b600282141561318b576108ae90506131c9565b600382141561319e5761045790506131c9565b60048214156131b15761030990506131c9565b60058214156131c45761014e90506131c9565b600090505b919050565b6000806131d9613432565b90506131e5600b613923565b6131ef8482613939565b6000334442846040516020016132089493929190615432565b6040516020818303038152906040528051906020012090508060136000848152602001908152602001600020819055508360126000848152602001908152602001600020819055506001600f858154811061328c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546132a19190615af6565b600f85815481106132db577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550817f9c01c25b2dd0f6ba28f537fd82ddad4ec8ee268ac02b8685a75038ab94bc06d560405160405180910390a2819250505092915050565b600061332c82611739565b905061333a81600084613913565b613345600083612d5a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133959190615bd7565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061343e600b613957565b905090565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051613469906154a4565b60006040518083038185875af1925050503d80600081146134a6576040519150601f19603f3d011682016040523d82523d6000602084013e6134ab565b606091505b50509050806134b957600080fd5b505050565b6134c9848484612ef1565b6134d584848484613965565b613514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350b9061561a565b60405180910390fd5b50505050565b6060600d805461352990615ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461355590615ccb565b80156135a25780601f10613577576101008083540402835291602001916135a2565b820191906000526020600020905b81548152906001019060200180831161358557829003601f168201915b5050505050905090565b606060008214156135f4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613754565b600082905060005b6000821461362657808061360f90615cfd565b915050600a8261361f9190615b4c565b91506135fc565b60008167ffffffffffffffff811115613668577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561369a5781602001600182028036833780820191505090505b5090505b6000851461374d576001826136b39190615bd7565b9150600a856136c29190615d74565b60306136ce9190615af6565b60f81b81838151811061370a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137469190615b4c565b945061369e565b8093505050505b919050565b600081831015613769578161376b565b825b905092915050565b61377c81613321565b6000601260008381526020019081526020016000205490506001600f82815481106137d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546137e59190615bd7565b600f828154811061381f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806138fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061390c575061390b82613afc565b5b9050919050565b61391e838383613b66565b505050565b6001816000016000828254019250508190555050565b613953828260405180602001604052806000815250613c00565b5050565b600081600001549050919050565b60006139868473ffffffffffffffffffffffffffffffffffffffff16613c5b565b15613aef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139af612ba1565b8786866040518563ffffffff1660e01b81526004016139d194939291906154d4565b602060405180830381600087803b1580156139eb57600080fd5b505af1925050508015613a1c57506040513d601f19601f82011682018060405250810190613a199190614731565b60015b613a9f573d8060008114613a4c576040519150601f19603f3d011682016040523d82523d6000602084013e613a51565b606091505b50600081511415613a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8e9061561a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613af4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613b71838383613c6e565b613b79611d26565b73ffffffffffffffffffffffffffffffffffffffff16613b97612ba1565b73ffffffffffffffffffffffffffffffffffffffff1614613bfb57613bba611722565b15613bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf19061559a565b60405180910390fd5b5b505050565b613c0a8383613d82565b613c176000848484613965565b613c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4d9061561a565b60405180910390fd5b505050565b600080823b905060008111915050919050565b613c79838383613f50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613cbc57613cb781613f55565b613cfb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613cfa57613cf98382613f9e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d3e57613d398161410b565b613d7d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613d7c57613d7b828261424e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613de9906157fa565b60405180910390fd5b613dfb81612cee565b15613e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e329061565a565b60405180910390fd5b613e4760008383613913565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e979190615af6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613fab84611803565b613fb59190615bd7565b905060006007600084815260200190815260200160002054905081811461409a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061411f9190615bd7565b9050600060096000848152602001908152602001600020549050600060088381548110614175577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106141bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480614232577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061425983611803565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546142d990615ccb565b90600052602060002090601f0160209004810192826142fb5760008555614342565b82601f1061431457805160ff1916838001178555614342565b82800160010185558215614342579182015b82811115614341578251825591602001919060010190614326565b5b50905061434f9190614353565b5090565b5b8082111561436c576000816000905550600101614354565b5090565b600061438361437e84615a0f565b6159de565b90508281526020810184848401111561439b57600080fd5b6143a6848285615c89565b509392505050565b60006143c16143bc84615a3f565b6159de565b9050828152602081018484840111156143d957600080fd5b6143e4848285615c89565b509392505050565b6000813590506143fb81615e7f565b92915050565b60008083601f84011261441357600080fd5b8235905067ffffffffffffffff81111561442c57600080fd5b60208301915083602082028301111561444457600080fd5b9250929050565b60008135905061445a81615e96565b92915050565b60008135905061446f81615ead565b92915050565b60008151905061448481615ead565b92915050565b600082601f83011261449b57600080fd5b81356144ab848260208601614370565b91505092915050565b600082601f8301126144c557600080fd5b81356144d58482602086016143ae565b91505092915050565b6000813590506144ed81615ec4565b92915050565b60006020828403121561450557600080fd5b6000614513848285016143ec565b91505092915050565b6000806040838503121561452f57600080fd5b600061453d858286016143ec565b925050602061454e858286016143ec565b9150509250929050565b60008060006060848603121561456d57600080fd5b600061457b868287016143ec565b935050602061458c868287016143ec565b925050604061459d868287016144de565b9150509250925092565b600080600080608085870312156145bd57600080fd5b60006145cb878288016143ec565b94505060206145dc878288016143ec565b93505060406145ed878288016144de565b925050606085013567ffffffffffffffff81111561460a57600080fd5b6146168782880161448a565b91505092959194509250565b6000806040838503121561463557600080fd5b6000614643858286016143ec565b92505060206146548582860161444b565b9150509250929050565b6000806040838503121561467157600080fd5b600061467f858286016143ec565b9250506020614690858286016144de565b9150509250929050565b600080602083850312156146ad57600080fd5b600083013567ffffffffffffffff8111156146c757600080fd5b6146d385828601614401565b92509250509250929050565b6000602082840312156146f157600080fd5b60006146ff8482850161444b565b91505092915050565b60006020828403121561471a57600080fd5b600061472884828501614460565b91505092915050565b60006020828403121561474357600080fd5b600061475184828501614475565b91505092915050565b60006020828403121561476c57600080fd5b600082013567ffffffffffffffff81111561478657600080fd5b614792848285016144b4565b91505092915050565b6000602082840312156147ad57600080fd5b60006147bb848285016144de565b91505092915050565b600080604083850312156147d757600080fd5b60006147e5858286016144de565b92505060206147f6858286016144de565b9150509250929050565b600061480c83836153fd565b60208301905092915050565b61482181615c0b565b82525050565b61483861483382615c0b565b615d46565b82525050565b600061484982615a7f565b6148538185615aad565b935061485e83615a6f565b8060005b8381101561488f5781516148768882614800565b975061488183615aa0565b925050600181019050614862565b5085935050505092915050565b6148a581615c1d565b82525050565b6148b481615c29565b82525050565b60006148c582615a8a565b6148cf8185615abe565b93506148df818560208601615c98565b6148e881615e61565b840191505092915050565b60006148fe82615a95565b6149088185615ada565b9350614918818560208601615c98565b61492181615e61565b840191505092915050565b600061493782615a95565b6149418185615aeb565b9350614951818560208601615c98565b80840191505092915050565b600061496a602b83615ada565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b60006149d0601483615ada565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614a10600e83615ada565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b6000614a50602b83615ada565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614ab6603283615ada565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614b1c602683615ada565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b82601c83615ada565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614bc2601683615ada565b91507f50726573616c65206973206e6f742072756e6e696e67000000000000000000006000830152602082019050919050565b6000614c02601883615ada565b91507f4d6178206c696d697420666f722074686973204c6576656c00000000000000006000830152602082019050919050565b6000614c42602483615ada565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ca8601983615ada565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614ce8601a83615ada565b91507f596f7520646f6e2774206f776e20746865736520746f6b656e730000000000006000830152602082019050919050565b6000614d28602c83615ada565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d8e601083615ada565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614dce601083615ada565b91507f4d6178206c696d697420666f72204c31000000000000000000000000000000006000830152602082019050919050565b6000614e0e603883615ada565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614e74602a83615ada565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eda602983615ada565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f40601983615ada565b91507f4e6f74207175616c696669656420666f722070726573616c65000000000000006000830152602082019050919050565b6000614f80602083615ada565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614fc0600883615ada565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b6000615000602c83615ada565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000615066602083615ada565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006150a6602983615ada565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061510c602f83615ada565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000615172601183615ada565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b60006151b2602483615ada565b91507f43616e6e6f74206d696e74207768696c652070726573616c65206973206f6e6760008301527f6f696e67000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615218602183615ada565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061527e600083615acf565b9150600082019050919050565b6000615298603183615ada565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006152fe602c83615ada565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615364601783615ada565b91507f4d61782070726573616c65206974656d73206c696d69740000000000000000006000830152602082019050919050565b60006153a4603083615ada565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b61540681615c7f565b82525050565b61541581615c7f565b82525050565b61542c61542782615c7f565b615d6a565b82525050565b600061543e8287614827565b60148201915061544e828661541b565b60208201915061545e828561541b565b60208201915061546e828461541b565b60208201915081905095945050505050565b600061548c828561492c565b9150615498828461492c565b91508190509392505050565b60006154af82615271565b9150819050919050565b60006020820190506154ce6000830184614818565b92915050565b60006080820190506154e96000830187614818565b6154f66020830186614818565b615503604083018561540c565b818103606083015261551581846148ba565b905095945050505050565b6000602082019050818103600083015261553a818461483e565b905092915050565b6000602082019050615557600083018461489c565b92915050565b600060208201905061557260008301846148ab565b92915050565b6000602082019050818103600083015261559281846148f3565b905092915050565b600060208201905081810360008301526155b38161495d565b9050919050565b600060208201905081810360008301526155d3816149c3565b9050919050565b600060208201905081810360008301526155f381614a03565b9050919050565b6000602082019050818103600083015261561381614a43565b9050919050565b6000602082019050818103600083015261563381614aa9565b9050919050565b6000602082019050818103600083015261565381614b0f565b9050919050565b6000602082019050818103600083015261567381614b75565b9050919050565b6000602082019050818103600083015261569381614bb5565b9050919050565b600060208201905081810360008301526156b381614bf5565b9050919050565b600060208201905081810360008301526156d381614c35565b9050919050565b600060208201905081810360008301526156f381614c9b565b9050919050565b6000602082019050818103600083015261571381614cdb565b9050919050565b6000602082019050818103600083015261573381614d1b565b9050919050565b6000602082019050818103600083015261575381614d81565b9050919050565b6000602082019050818103600083015261577381614dc1565b9050919050565b6000602082019050818103600083015261579381614e01565b9050919050565b600060208201905081810360008301526157b381614e67565b9050919050565b600060208201905081810360008301526157d381614ecd565b9050919050565b600060208201905081810360008301526157f381614f33565b9050919050565b6000602082019050818103600083015261581381614f73565b9050919050565b6000602082019050818103600083015261583381614fb3565b9050919050565b6000602082019050818103600083015261585381614ff3565b9050919050565b6000602082019050818103600083015261587381615059565b9050919050565b6000602082019050818103600083015261589381615099565b9050919050565b600060208201905081810360008301526158b3816150ff565b9050919050565b600060208201905081810360008301526158d381615165565b9050919050565b600060208201905081810360008301526158f3816151a5565b9050919050565b600060208201905081810360008301526159138161520b565b9050919050565b600060208201905081810360008301526159338161528b565b9050919050565b60006020820190508181036000830152615953816152f1565b9050919050565b6000602082019050818103600083015261597381615357565b9050919050565b6000602082019050818103600083015261599381615397565b9050919050565b60006020820190506159af600083018461540c565b92915050565b60006040820190506159ca600083018561540c565b6159d7602083018461540c565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715615a0557615a04615e32565b5b8060405250919050565b600067ffffffffffffffff821115615a2a57615a29615e32565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615a5a57615a59615e32565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b0182615c7f565b9150615b0c83615c7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b4157615b40615da5565b5b828201905092915050565b6000615b5782615c7f565b9150615b6283615c7f565b925082615b7257615b71615dd4565b5b828204905092915050565b6000615b8882615c7f565b9150615b9383615c7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bcc57615bcb615da5565b5b828202905092915050565b6000615be282615c7f565b9150615bed83615c7f565b925082821015615c0057615bff615da5565b5b828203905092915050565b6000615c1682615c5f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615cb6578082015181840152602081019050615c9b565b83811115615cc5576000848401525b50505050565b60006002820490506001821680615ce357607f821691505b60208210811415615cf757615cf6615e03565b5b50919050565b6000615d0882615c7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d3b57615d3a615da5565b5b600182019050919050565b6000615d5182615d58565b9050919050565b6000615d6382615e72565b9050919050565b6000819050919050565b6000615d7f82615c7f565b9150615d8a83615c7f565b925082615d9a57615d99615dd4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615e8881615c0b565b8114615e9357600080fd5b50565b615e9f81615c1d565b8114615eaa57600080fd5b50565b615eb681615c33565b8114615ec157600080fd5b50565b615ecd81615c7f565b8114615ed857600080fd5b5056fea26469706673582212201b1a7de888d1afb332bb76148379082e4cd94ee98435bdc6d5780f30b0991f5c64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f616363696f2e6d616769636d6172626c65732e696f2f6d6172626c652f000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103355760003560e01c8063715018a6116101ab578063a0680aae116100f7578063c6bfd74211610095578063d547cfb71161006f578063d547cfb714610c37578063e985e9c514610c62578063ec2cdbdf14610c9f578063f2fde38b14610cc857610335565b8063c6bfd74214610ba1578063c87b56dd14610bde578063cc4f188614610c1b57610335565b8063b2596a67116100d1578063b2596a6714610ae7578063b64c860d14610b24578063b88d4fde14610b4f578063c54e73e314610b7857610335565b8063a0680aae14610a55578063a22cb46514610a93578063a2309ff814610abc57610335565b80638b88bf991161016457806395364a841161013e57806395364a84146109a657806395d89b41146109d1578063976f71e5146109fc5780639b6a670914610a3957610335565b80638b88bf99146109255780638d859f3e146109505780638da5cb5b1461097b57610335565b8063715018a61461084a5780637204a3c91461086157806375d907cf1461088a578063853828b6146108c757806386e8e3f4146108d15780638ad5de28146108fa57610335565b806340c10f1911610285578063581ade39116102235780635c975abb116101fd5780635c975abb1461077a5780636352211e146107a557806365381154146107e257806370a082311461080d57610335565b8063581ade39146106f957806359a7715a146107245780635c0fe6c31461074f57610335565b8063438b63001161025f578063438b63001461062b5780634d4c4e99146106685780634f6ccce71461069357806355f804b3146106d057610335565b806340c10f19146105bd57806342842e0e146105d957806342966c681461060257610335565b8063159edd16116102f257806326a49e37116102cc57806326a49e37146104ed5780632f745c591461052a57806330b79265146105675780633502a7161461059257610335565b8063159edd161461045c57806318160ddd1461049957806323b872dd146104c457610335565b806301ffc9a71461033a57806302329a291461037757806306fdde03146103a0578063081812fc146103cb578063095ea7b31461040857806311c0d98e14610431575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614708565b610cf1565b60405161036e9190615542565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906146df565b610d03565b005b3480156103ac57600080fd5b506103b5610da5565b6040516103c29190615578565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed919061479b565b610e37565b6040516103ff91906154b9565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061465e565b610ebc565b005b34801561043d57600080fd5b50610446610fd4565b604051610453919061599a565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061479b565b610fda565b604051610490919061599a565b60405180910390f35b3480156104a557600080fd5b506104ae611028565b6040516104bb919061599a565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190614558565b611035565b005b3480156104f957600080fd5b50610514600480360381019061050f919061479b565b611095565b604051610521919061599a565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061465e565b6110b9565b60405161055e919061599a565b60405180910390f35b34801561057357600080fd5b5061057c61115e565b604051610589919061599a565b60405180910390f35b34801561059e57600080fd5b506105a7611164565b6040516105b4919061599a565b60405180910390f35b6105d760048036038101906105d2919061465e565b61119e565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190614558565b61145f565b005b34801561060e57600080fd5b506106296004803603810190610624919061479b565b61147f565b005b34801561063757600080fd5b50610652600480360381019061064d91906144f3565b6114db565b60405161065f9190615520565b60405180910390f35b34801561067457600080fd5b5061067d6115d5565b60405161068a919061599a565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b5919061479b565b6115da565b6040516106c7919061599a565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f2919061475a565b611671565b005b34801561070557600080fd5b5061070e611707565b60405161071b919061599a565b60405180910390f35b34801561073057600080fd5b5061073961170d565b604051610746919061599a565b60405180910390f35b34801561075b57600080fd5b5061076461171c565b604051610771919061599a565b60405180910390f35b34801561078657600080fd5b5061078f611722565b60405161079c9190615542565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c7919061479b565b611739565b6040516107d991906154b9565b60405180910390f35b3480156107ee57600080fd5b506107f76117eb565b60405161080491906154b9565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906144f3565b611803565b604051610841919061599a565b60405180910390f35b34801561085657600080fd5b5061085f6118bb565b005b34801561086d57600080fd5b506108886004803603810190610883919061469a565b6119f8565b005b34801561089657600080fd5b506108b160048036038101906108ac91906144f3565b611b45565b6040516108be9190615542565b60405180910390f35b6108cf611b65565b005b3480156108dd57600080fd5b506108f860048036038101906108f3919061469a565b611c14565b005b34801561090657600080fd5b5061090f611d0f565b60405161091c919061599a565b60405180910390f35b34801561093157600080fd5b5061093a611d14565b604051610947919061599a565b60405180910390f35b34801561095c57600080fd5b50610965611d1a565b604051610972919061599a565b60405180910390f35b34801561098757600080fd5b50610990611d26565b60405161099d91906154b9565b60405180910390f35b3480156109b257600080fd5b506109bb611d50565b6040516109c89190615542565b60405180910390f35b3480156109dd57600080fd5b506109e6611d63565b6040516109f39190615578565b60405180910390f35b348015610a0857600080fd5b50610a236004803603810190610a1e919061479b565b611df5565b604051610a30919061599a565b60405180910390f35b610a536004803603810190610a4e919061465e565b611e19565b005b348015610a6157600080fd5b50610a7c6004803603810190610a77919061479b565b61208f565b604051610a8a9291906159b5565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab59190614622565b6120b3565b005b348015610ac857600080fd5b50610ad1612234565b604051610ade919061599a565b60405180910390f35b348015610af357600080fd5b50610b0e6004803603810190610b09919061479b565b6123c1565b604051610b1b919061599a565b60405180910390f35b348015610b3057600080fd5b50610b396123d9565b604051610b46919061599a565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b7191906145a7565b6123df565b005b348015610b8457600080fd5b50610b9f6004803603810190610b9a91906146df565b612441565b005b348015610bad57600080fd5b50610bc86004803603810190610bc3919061479b565b6124da565b604051610bd5919061555d565b60405180910390f35b348015610bea57600080fd5b50610c056004803603810190610c00919061479b565b6124f2565b604051610c129190615578565b60405180910390f35b610c356004803603810190610c3091906147c4565b612599565b005b348015610c4357600080fd5b50610c4c6127d3565b604051610c599190615578565b60405180910390f35b348015610c6e57600080fd5b50610c896004803603810190610c84919061451c565b612861565b604051610c969190615542565b60405180910390f35b348015610cab57600080fd5b50610cc66004803603810190610cc1919061479b565b6128f5565b005b348015610cd457600080fd5b50610cef6004803603810190610cea91906144f3565b61297b565b005b6000610cfc82612b27565b9050919050565b610d0b612ba1565b73ffffffffffffffffffffffffffffffffffffffff16610d29611d26565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d769061585a565b60405180910390fd5b600115158115151415610d9957610d94612ba9565b610da2565b610da1612c4c565b5b50565b606060008054610db490615ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054610de090615ccb565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b5050505050905090565b6000610e4282612cee565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061583a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec782611739565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906158fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f57612ba1565b73ffffffffffffffffffffffffffffffffffffffff161480610f865750610f8581610f80612ba1565b612861565b5b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061577a565b60405180910390fd5b610fcf8383612d5a565b505050565b6108ae81565b6000600f8281548110611016577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600880549050905090565b611046611040612ba1565b82612e13565b611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c9061591a565b60405180910390fd5b611090838383612ef1565b505050565b60006110b28267013b7b21280e000061314d90919063ffffffff16565b9050919050565b60006110c483611803565b8210611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906155fa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61045781565b61014e6103096104576108ae61115c61117d9190615af6565b6111879190615af6565b6111919190615af6565b61119b9190615af6565b81565b61014e6103096104576108ae61115c6111b79190615af6565b6111c19190615af6565b6111cb9190615af6565b6111d59190615af6565b6111dd612234565b111561121e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112159061581a565b60405180910390fd5b611226611d26565b73ffffffffffffffffffffffffffffffffffffffff16611244612ba1565b73ffffffffffffffffffffffffffffffffffffffff16146112f857611267611722565b156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e9061573a565b60405180910390fd5b600e60009054906101000a900460ff16156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906158da565b60405180910390fd5b5b60006113046001610fda565b905061014e6103096104576108ae61115c61131f9190615af6565b6113299190615af6565b6113339190615af6565b61133d9190615af6565b81111561134957600080fd5b6113536001613163565b828261135f9190615af6565b11156113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113979061575a565b60405180910390fd5b60148211156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906155da565b60405180910390fd5b6113ed82611095565b34101561142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906158ba565b60405180910390fd5b60005b82811015611459576114458460016131ce565b50808061145190615cfd565b915050611432565b50505050565b61147a838383604051806020016040528060008152506123df565b505050565b61149061148a612ba1565b82612e13565b6114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061597a565b60405180910390fd5b6114d881613321565b50565b606060006114e883611803565b905060008167ffffffffffffffff81111561152c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561155a5781602001602082028036833780820191505090505b50905060005b828110156115ca5761157285826110b9565b8282815181106115ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115c290615cfd565b915050611560565b508092505050919050565b60c881565b60006115e4611028565b8210611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c9061593a565b60405180910390fd5b6008828154811061165f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611679612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611697611d26565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e49061585a565b60405180910390fd5b80600d90805190602001906117039291906142cd565b5050565b61030981565b6000611717613432565b905090565b61115c81565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d9906157ba565b60405180910390fd5b80915050919050565b73cc4d8114df84ade1fa63900aa524c4346c12385781565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b9061579a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c3612ba1565b73ffffffffffffffffffffffffffffffffffffffff166118e1611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9061585a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a00612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611a1e611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b9061585a565b60405180910390fd5b60005b82829050811015611b40576000838383818110611abd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ad291906144f3565b90506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611b3890615cfd565b915050611a77565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b611b6d612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611b8b611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061585a565b60405180910390fd5b600047905060008111611bf357600080fd5b611c1173cc4d8114df84ade1fa63900aa524c4346c12385747613443565b50565b611c1c612ba1565b73ffffffffffffffffffffffffffffffffffffffff16611c3a611d26565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c879061585a565b60405180910390fd5b60005b82829050811015611d0a57611cf6838383818110611cda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611cef91906144f3565b60016131ce565b508080611d0290615cfd565b915050611c93565b505050565b601481565b61014e81565b67013b7b21280e000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60009054906101000a900460ff1681565b606060018054611d7290615ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9e90615ccb565b8015611deb5780601f10611dc057610100808354040283529160200191611deb565b820191906000526020600020905b815481529060010190602001808311611dce57829003601f168201915b5050505050905090565b600f8181548110611e0557600080fd5b906000526020600020016000915090505481565b611e21611d26565b73ffffffffffffffffffffffffffffffffffffffff16611e3f612ba1565b73ffffffffffffffffffffffffffffffffffffffff1614611ef257611e62611722565b15611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e999061573a565b60405180910390fd5b600e60009054906101000a900460ff16611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee89061567a565b60405180910390fd5b5b6000611efe6001610fda565b9050601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906157da565b60405180910390fd5b60c8811115611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc79061595a565b60405180910390fd5b6014821115612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b906155da565b60405180910390fd5b61201d82611095565b34101561205f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612056906158ba565b60405180910390fd5b60005b82811015612089576120758460016131ce565b50808061208190615cfd565b915050612062565b50505050565b60116020528060005260406000206000915090508060000154908060010154905082565b6120bb612ba1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612129576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612120906156da565b60405180910390fd5b8060056000612136612ba1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121e3612ba1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122289190615542565b60405180910390a35050565b6000600f600581548110612271577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f6004815481106122b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f6003815481106122fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f600281548110612343577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600f600181548110612389577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015461239e9190615af6565b6123a89190615af6565b6123b29190615af6565b6123bc9190615af6565b905090565b60126020528060005260406000206000915090505481565b600c5481565b6123f06123ea612ba1565b83612e13565b61242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124269061591a565b60405180910390fd5b61243b848484846134be565b50505050565b612449612ba1565b73ffffffffffffffffffffffffffffffffffffffff16612467611d26565b73ffffffffffffffffffffffffffffffffffffffff16146124bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b49061585a565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915090505481565b60606124fd82612cee565b61253c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125339061589a565b60405180910390fd5b600061254661351a565b905060008151116125665760405180602001604052806000815250612591565b80612570846135ac565b604051602001612581929190615480565b6040516020818303038152906040525b915050919050565b6125a282612cee565b80156125b357506125b281612cee565b5b80156125f257503373ffffffffffffffffffffffffffffffffffffffff166125da83611739565b73ffffffffffffffffffffffffffffffffffffffff16145b801561263157503373ffffffffffffffffffffffffffffffffffffffff1661261982611739565b73ffffffffffffffffffffffffffffffffffffffff16145b612670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612667906156fa565b60405180910390fd5b600c543410156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906158ba565b60405180910390fd5b600060016126e960126000868152602001908152602001600020546012600086815260200190815260200160002054613759565b6126f39190615af6565b9050600581111561270357600590505b600061270e82610fda565b905061271982613163565b6001826127269190615af6565b1115612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e9061569a565b60405180910390fd5b61277084613773565b61277983613773565b600061278533846131ce565b90506000604051806040016040528087815260200186815250905080601160008481526020019081526020016000206000820151816000015560208201518160010155905050505050505050565b600d80546127e090615ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461280c90615ccb565b80156128595780601f1061282e57610100808354040283529160200191612859565b820191906000526020600020905b81548152906001019060200180831161283c57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128fd612ba1565b73ffffffffffffffffffffffffffffffffffffffff1661291b611d26565b73ffffffffffffffffffffffffffffffffffffffff1614612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061585a565b60405180910390fd5b80600c8190555050565b612983612ba1565b73ffffffffffffffffffffffffffffffffffffffff166129a1611d26565b73ffffffffffffffffffffffffffffffffffffffff16146129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee9061585a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e9061563a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b9a5750612b9982613831565b5b9050919050565b600033905090565b612bb1611722565b15612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be89061573a565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c35612ba1565b604051612c4291906154b9565b60405180910390a1565b612c54611722565b612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a906155ba565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612cd7612ba1565b604051612ce491906154b9565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dcd83611739565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e1e82612cee565b612e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e549061571a565b60405180910390fd5b6000612e6883611739565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ed757508373ffffffffffffffffffffffffffffffffffffffff16612ebf84610e37565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ee85750612ee78185612861565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f1182611739565b73ffffffffffffffffffffffffffffffffffffffff1614612f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5e9061587a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fce906156ba565b60405180910390fd5b612fe2838383613913565b612fed600082612d5a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461303d9190615bd7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130949190615af6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361315b9190615b7d565b905092915050565b600060018214156131785761115c90506131c9565b600282141561318b576108ae90506131c9565b600382141561319e5761045790506131c9565b60048214156131b15761030990506131c9565b60058214156131c45761014e90506131c9565b600090505b919050565b6000806131d9613432565b90506131e5600b613923565b6131ef8482613939565b6000334442846040516020016132089493929190615432565b6040516020818303038152906040528051906020012090508060136000848152602001908152602001600020819055508360126000848152602001908152602001600020819055506001600f858154811061328c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546132a19190615af6565b600f85815481106132db577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550817f9c01c25b2dd0f6ba28f537fd82ddad4ec8ee268ac02b8685a75038ab94bc06d560405160405180910390a2819250505092915050565b600061332c82611739565b905061333a81600084613913565b613345600083612d5a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133959190615bd7565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061343e600b613957565b905090565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051613469906154a4565b60006040518083038185875af1925050503d80600081146134a6576040519150601f19603f3d011682016040523d82523d6000602084013e6134ab565b606091505b50509050806134b957600080fd5b505050565b6134c9848484612ef1565b6134d584848484613965565b613514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350b9061561a565b60405180910390fd5b50505050565b6060600d805461352990615ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461355590615ccb565b80156135a25780601f10613577576101008083540402835291602001916135a2565b820191906000526020600020905b81548152906001019060200180831161358557829003601f168201915b5050505050905090565b606060008214156135f4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613754565b600082905060005b6000821461362657808061360f90615cfd565b915050600a8261361f9190615b4c565b91506135fc565b60008167ffffffffffffffff811115613668577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561369a5781602001600182028036833780820191505090505b5090505b6000851461374d576001826136b39190615bd7565b9150600a856136c29190615d74565b60306136ce9190615af6565b60f81b81838151811061370a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137469190615b4c565b945061369e565b8093505050505b919050565b600081831015613769578161376b565b825b905092915050565b61377c81613321565b6000601260008381526020019081526020016000205490506001600f82815481106137d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001546137e59190615bd7565b600f828154811061381f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806138fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061390c575061390b82613afc565b5b9050919050565b61391e838383613b66565b505050565b6001816000016000828254019250508190555050565b613953828260405180602001604052806000815250613c00565b5050565b600081600001549050919050565b60006139868473ffffffffffffffffffffffffffffffffffffffff16613c5b565b15613aef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139af612ba1565b8786866040518563ffffffff1660e01b81526004016139d194939291906154d4565b602060405180830381600087803b1580156139eb57600080fd5b505af1925050508015613a1c57506040513d601f19601f82011682018060405250810190613a199190614731565b60015b613a9f573d8060008114613a4c576040519150601f19603f3d011682016040523d82523d6000602084013e613a51565b606091505b50600081511415613a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8e9061561a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613af4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613b71838383613c6e565b613b79611d26565b73ffffffffffffffffffffffffffffffffffffffff16613b97612ba1565b73ffffffffffffffffffffffffffffffffffffffff1614613bfb57613bba611722565b15613bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf19061559a565b60405180910390fd5b5b505050565b613c0a8383613d82565b613c176000848484613965565b613c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4d9061561a565b60405180910390fd5b505050565b600080823b905060008111915050919050565b613c79838383613f50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613cbc57613cb781613f55565b613cfb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613cfa57613cf98382613f9e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d3e57613d398161410b565b613d7d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613d7c57613d7b828261424e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613de9906157fa565b60405180910390fd5b613dfb81612cee565b15613e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e329061565a565b60405180910390fd5b613e4760008383613913565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e979190615af6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613fab84611803565b613fb59190615bd7565b905060006007600084815260200190815260200160002054905081811461409a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061411f9190615bd7565b9050600060096000848152602001908152602001600020549050600060088381548110614175577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106141bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480614232577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061425983611803565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546142d990615ccb565b90600052602060002090601f0160209004810192826142fb5760008555614342565b82601f1061431457805160ff1916838001178555614342565b82800160010185558215614342579182015b82811115614341578251825591602001919060010190614326565b5b50905061434f9190614353565b5090565b5b8082111561436c576000816000905550600101614354565b5090565b600061438361437e84615a0f565b6159de565b90508281526020810184848401111561439b57600080fd5b6143a6848285615c89565b509392505050565b60006143c16143bc84615a3f565b6159de565b9050828152602081018484840111156143d957600080fd5b6143e4848285615c89565b509392505050565b6000813590506143fb81615e7f565b92915050565b60008083601f84011261441357600080fd5b8235905067ffffffffffffffff81111561442c57600080fd5b60208301915083602082028301111561444457600080fd5b9250929050565b60008135905061445a81615e96565b92915050565b60008135905061446f81615ead565b92915050565b60008151905061448481615ead565b92915050565b600082601f83011261449b57600080fd5b81356144ab848260208601614370565b91505092915050565b600082601f8301126144c557600080fd5b81356144d58482602086016143ae565b91505092915050565b6000813590506144ed81615ec4565b92915050565b60006020828403121561450557600080fd5b6000614513848285016143ec565b91505092915050565b6000806040838503121561452f57600080fd5b600061453d858286016143ec565b925050602061454e858286016143ec565b9150509250929050565b60008060006060848603121561456d57600080fd5b600061457b868287016143ec565b935050602061458c868287016143ec565b925050604061459d868287016144de565b9150509250925092565b600080600080608085870312156145bd57600080fd5b60006145cb878288016143ec565b94505060206145dc878288016143ec565b93505060406145ed878288016144de565b925050606085013567ffffffffffffffff81111561460a57600080fd5b6146168782880161448a565b91505092959194509250565b6000806040838503121561463557600080fd5b6000614643858286016143ec565b92505060206146548582860161444b565b9150509250929050565b6000806040838503121561467157600080fd5b600061467f858286016143ec565b9250506020614690858286016144de565b9150509250929050565b600080602083850312156146ad57600080fd5b600083013567ffffffffffffffff8111156146c757600080fd5b6146d385828601614401565b92509250509250929050565b6000602082840312156146f157600080fd5b60006146ff8482850161444b565b91505092915050565b60006020828403121561471a57600080fd5b600061472884828501614460565b91505092915050565b60006020828403121561474357600080fd5b600061475184828501614475565b91505092915050565b60006020828403121561476c57600080fd5b600082013567ffffffffffffffff81111561478657600080fd5b614792848285016144b4565b91505092915050565b6000602082840312156147ad57600080fd5b60006147bb848285016144de565b91505092915050565b600080604083850312156147d757600080fd5b60006147e5858286016144de565b92505060206147f6858286016144de565b9150509250929050565b600061480c83836153fd565b60208301905092915050565b61482181615c0b565b82525050565b61483861483382615c0b565b615d46565b82525050565b600061484982615a7f565b6148538185615aad565b935061485e83615a6f565b8060005b8381101561488f5781516148768882614800565b975061488183615aa0565b925050600181019050614862565b5085935050505092915050565b6148a581615c1d565b82525050565b6148b481615c29565b82525050565b60006148c582615a8a565b6148cf8185615abe565b93506148df818560208601615c98565b6148e881615e61565b840191505092915050565b60006148fe82615a95565b6149088185615ada565b9350614918818560208601615c98565b61492181615e61565b840191505092915050565b600061493782615a95565b6149418185615aeb565b9350614951818560208601615c98565b80840191505092915050565b600061496a602b83615ada565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b60006149d0601483615ada565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614a10600e83615ada565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b6000614a50602b83615ada565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614ab6603283615ada565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614b1c602683615ada565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b82601c83615ada565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614bc2601683615ada565b91507f50726573616c65206973206e6f742072756e6e696e67000000000000000000006000830152602082019050919050565b6000614c02601883615ada565b91507f4d6178206c696d697420666f722074686973204c6576656c00000000000000006000830152602082019050919050565b6000614c42602483615ada565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ca8601983615ada565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614ce8601a83615ada565b91507f596f7520646f6e2774206f776e20746865736520746f6b656e730000000000006000830152602082019050919050565b6000614d28602c83615ada565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d8e601083615ada565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614dce601083615ada565b91507f4d6178206c696d697420666f72204c31000000000000000000000000000000006000830152602082019050919050565b6000614e0e603883615ada565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614e74602a83615ada565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eda602983615ada565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f40601983615ada565b91507f4e6f74207175616c696669656420666f722070726573616c65000000000000006000830152602082019050919050565b6000614f80602083615ada565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614fc0600883615ada565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b6000615000602c83615ada565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000615066602083615ada565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006150a6602983615ada565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061510c602f83615ada565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000615172601183615ada565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b60006151b2602483615ada565b91507f43616e6e6f74206d696e74207768696c652070726573616c65206973206f6e6760008301527f6f696e67000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615218602183615ada565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061527e600083615acf565b9150600082019050919050565b6000615298603183615ada565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006152fe602c83615ada565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615364601783615ada565b91507f4d61782070726573616c65206974656d73206c696d69740000000000000000006000830152602082019050919050565b60006153a4603083615ada565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b61540681615c7f565b82525050565b61541581615c7f565b82525050565b61542c61542782615c7f565b615d6a565b82525050565b600061543e8287614827565b60148201915061544e828661541b565b60208201915061545e828561541b565b60208201915061546e828461541b565b60208201915081905095945050505050565b600061548c828561492c565b9150615498828461492c565b91508190509392505050565b60006154af82615271565b9150819050919050565b60006020820190506154ce6000830184614818565b92915050565b60006080820190506154e96000830187614818565b6154f66020830186614818565b615503604083018561540c565b818103606083015261551581846148ba565b905095945050505050565b6000602082019050818103600083015261553a818461483e565b905092915050565b6000602082019050615557600083018461489c565b92915050565b600060208201905061557260008301846148ab565b92915050565b6000602082019050818103600083015261559281846148f3565b905092915050565b600060208201905081810360008301526155b38161495d565b9050919050565b600060208201905081810360008301526155d3816149c3565b9050919050565b600060208201905081810360008301526155f381614a03565b9050919050565b6000602082019050818103600083015261561381614a43565b9050919050565b6000602082019050818103600083015261563381614aa9565b9050919050565b6000602082019050818103600083015261565381614b0f565b9050919050565b6000602082019050818103600083015261567381614b75565b9050919050565b6000602082019050818103600083015261569381614bb5565b9050919050565b600060208201905081810360008301526156b381614bf5565b9050919050565b600060208201905081810360008301526156d381614c35565b9050919050565b600060208201905081810360008301526156f381614c9b565b9050919050565b6000602082019050818103600083015261571381614cdb565b9050919050565b6000602082019050818103600083015261573381614d1b565b9050919050565b6000602082019050818103600083015261575381614d81565b9050919050565b6000602082019050818103600083015261577381614dc1565b9050919050565b6000602082019050818103600083015261579381614e01565b9050919050565b600060208201905081810360008301526157b381614e67565b9050919050565b600060208201905081810360008301526157d381614ecd565b9050919050565b600060208201905081810360008301526157f381614f33565b9050919050565b6000602082019050818103600083015261581381614f73565b9050919050565b6000602082019050818103600083015261583381614fb3565b9050919050565b6000602082019050818103600083015261585381614ff3565b9050919050565b6000602082019050818103600083015261587381615059565b9050919050565b6000602082019050818103600083015261589381615099565b9050919050565b600060208201905081810360008301526158b3816150ff565b9050919050565b600060208201905081810360008301526158d381615165565b9050919050565b600060208201905081810360008301526158f3816151a5565b9050919050565b600060208201905081810360008301526159138161520b565b9050919050565b600060208201905081810360008301526159338161528b565b9050919050565b60006020820190508181036000830152615953816152f1565b9050919050565b6000602082019050818103600083015261597381615357565b9050919050565b6000602082019050818103600083015261599381615397565b9050919050565b60006020820190506159af600083018461540c565b92915050565b60006040820190506159ca600083018561540c565b6159d7602083018461540c565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715615a0557615a04615e32565b5b8060405250919050565b600067ffffffffffffffff821115615a2a57615a29615e32565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615a5a57615a59615e32565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b0182615c7f565b9150615b0c83615c7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b4157615b40615da5565b5b828201905092915050565b6000615b5782615c7f565b9150615b6283615c7f565b925082615b7257615b71615dd4565b5b828204905092915050565b6000615b8882615c7f565b9150615b9383615c7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bcc57615bcb615da5565b5b828202905092915050565b6000615be282615c7f565b9150615bed83615c7f565b925082821015615c0057615bff615da5565b5b828203905092915050565b6000615c1682615c5f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615cb6578082015181840152602081019050615c9b565b83811115615cc5576000848401525b50505050565b60006002820490506001821680615ce357607f821691505b60208210811415615cf757615cf6615e03565b5b50919050565b6000615d0882615c7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d3b57615d3a615da5565b5b600182019050919050565b6000615d5182615d58565b9050919050565b6000615d6382615e72565b9050919050565b6000819050919050565b6000615d7f82615c7f565b9150615d8a83615c7f565b925082615d9a57615d99615dd4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b615e8881615c0b565b8114615e9357600080fd5b50565b615e9f81615c1d565b8114615eaa57600080fd5b50565b615eb681615c33565b8114615ec157600080fd5b50565b615ecd81615c7f565b8114615ed857600080fd5b5056fea26469706673582212201b1a7de888d1afb332bb76148379082e4cd94ee98435bdc6d5780f30b0991f5c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f616363696f2e6d616769636d6172626c65732e696f2f6d6172626c652f000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://accio.magicmarbles.io/marble/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [2] : 68747470733a2f2f616363696f2e6d616769636d6172626c65732e696f2f6d61
Arg [3] : 72626c652f000000000000000000000000000000000000000000000000000000
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.