ERC-721
Overview
Max Total Supply
8,000 MVM
Holders
1,853
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MVMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MultiverseVirtualMachine
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract MultiverseVirtualMachine is ERC721Enumerable { using Strings for uint256; constructor (string memory uribasein,uint maxusertokens,uint mversetokens,uint maxlinkcountin,uint mintprice,bool initpause) ERC721 ("MultiverseVM", "MVM"){ owner=msg.sender; uribase=uribasein; tokenCounterMax=maxusertokens; mverseCounterMax=mversetokens; price=mintprice; maxlinkcount=maxlinkcountin; //mint one initial token _safeMint(owner, tokenCounter); tokenCounter=tokenCounter+1; mintpause=initpause; } //modifier---------------/ modifier onlyOwner { require( msg.sender == owner, "Only owner can call this function." ); _; } modifier tokenShouldExist(uint256 tokenId) { require(_exists(tokenId), "Query for nonexistent token"); _; } //token count---------------/ uint256 public tokenCounter=0; uint256 public tokenCounterMax; //mverse tokens (tokens special use cases & public spaces) uint256 public mverseCounterMax; //extra metadata string[] public tokenExtraMetadata; uint256 maxlinkcount; //owner edit---------------/ //price/uribase/owner uint256 public price; string uribase; address owner; string mverseuribase; bool baselocked=false; bool mintpause=true; //owner only---------------/ function transferOwner(address ownerin) public onlyOwner { owner=ownerin; } function lockBaseURI() public onlyOwner { baselocked=true; } function setpause(bool pausein) public onlyOwner { mintpause=pausein; } function createMverseToken(address _to, uint mversetokenid) public onlyOwner { require(mversetokenid>=tokenCounterMax&&mversetokenid<tokenCounterMax+mverseCounterMax ,"token out of range"); require(!_exists(mversetokenid), "token exists"); _safeMint(_to, mversetokenid); } function setBase(string memory uribasein,string memory mverseuribasein) public onlyOwner { require(!baselocked, "set base uri is locked"); uribase=uribasein; mverseuribase=mverseuribasein; } function setPrice(uint mintprice) public onlyOwner { price=mintprice; } function withdraw() public onlyOwner{ payable(owner).transfer(address(this).balance); } function withdraw(uint amount) public onlyOwner{ require(amount<=address(this).balance,"amount should be smaller than contract balance"); payable(owner).transfer(amount); } function AddMultiURI(string memory uribasein) public onlyOwner { tokenExtraMetadata.push(uribasein); } //public token uri and max tokens---------------/ /** return a token uri depending on the version */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory tbase=""; if(tokenId<tokenCounterMax){ tbase=uribase; }else if(tokenId<tokenCounterMax+mverseCounterMax){ tbase=mverseuribase; } return bytes(tbase).length > 0 ? string(abi.encodePacked(tbase, tokenId.toString())) : ""; } function maxTokens() public view returns (uint256) { return tokenCounterMax+mverseCounterMax; } //purchasing tokens---------------/ //purchases amount of tokens, and then returns the tokenid function purchase(uint count) public payable returns (uint256 _tokenId) { return purchaseTo(msg.sender,count); } function purchaseTo(address _to, uint count) public payable returns (uint256 _tokenId) { require(!mintpause,"minting is paused"); require(tokenCounter<tokenCounterMax,"all tokens minted"); //verify count; require(count>=1&&count<=tokenCounterMax-tokenCounter&&count<=200,"minting too little or too many tokens"); //verify price require(msg.value >=price*count, "Must send at least current price for token * amount of tokens"); for (uint i = 0; i < count; i++) { _safeMint(_to, tokenCounter); tokenCounter = tokenCounter + 1; } return tokenCounter-1; } //links between tokens---------------/ function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function _GetLinks(uint256 tokenid,address addr,uint256 resultcount) internal view tokenShouldExist(tokenid) returns (uint[] memory results) { uint256 rand = random(string(abi.encodePacked(tokenid, abi.encodePacked(addr)))); uint count=rand%resultcount;//maximum connected planets if(count==0){ count=1; } uint[] memory returnvalues = new uint[](count); for (uint i = 0; i < count; i++) { returnvalues[i]=random( string( abi.encodePacked(i,addr,tokenid,rand) ) )%(tokenCounterMax+mverseCounterMax); } return returnvalues; } function GetLinks(uint256 tokenid) public view tokenShouldExist(tokenid) returns (uint[] memory results) { return _GetLinks(tokenid,address(this),maxlinkcount); } function GetDynamicLinks(uint256 tokenid) public view tokenShouldExist(tokenid) returns (uint[] memory results) { return _GetLinks(tokenid,ownerOf(tokenid),2); } //multi token uri for expansion packs---------------/ function tokenURIMulti(uint256 tokenId) public view tokenShouldExist(tokenId) returns (string[] memory extradata) { string[] memory urilist=new string[](tokenExtraMetadata.length); for(uint i=0;i<tokenExtraMetadata.length;i++){ urilist[i]=string(abi.encodePacked(tokenExtraMetadata[i], tokenId.toString())); } return urilist; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../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 "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uribasein","type":"string"},{"internalType":"uint256","name":"maxusertokens","type":"uint256"},{"internalType":"uint256","name":"mversetokens","type":"uint256"},{"internalType":"uint256","name":"maxlinkcountin","type":"uint256"},{"internalType":"uint256","name":"mintprice","type":"uint256"},{"internalType":"bool","name":"initpause","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"uribasein","type":"string"}],"name":"AddMultiURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"GetDynamicLinks","outputs":[{"internalType":"uint256[]","name":"results","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"GetLinks","outputs":[{"internalType":"uint256[]","name":"results","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"mversetokenid","type":"uint256"}],"name":"createMverseToken","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":"lockBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mverseCounterMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"purchase","outputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"purchaseTo","outputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"stateMutability":"payable","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":"uribasein","type":"string"},{"internalType":"string","name":"mverseuribasein","type":"string"}],"name":"setBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"pausein","type":"bool"}],"name":"setpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounterMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenExtraMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURIMulti","outputs":[{"internalType":"string[]","name":"extradata","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ownerin","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a556000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055503480156200004c57600080fd5b50604051620063e5380380620063e5833981810160405281019062000072919062000d90565b6040518060400160405280600c81526020017f4d756c74697665727365564d00000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d564d00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f692919062000beb565b5080600190805190602001906200010f92919062000beb565b50505033601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085601090805190602001906200016b92919062000beb565b5084600b8190555083600c8190555081600f8190555082600e81905550620001be601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a54620001fb60201b60201c565b6001600a54620001cf9190620010b2565b600a8190555080601360016101000a81548160ff021916908315150217905550505050505050620014b0565b6200021d8282604051806020016040528060008152506200022160201b60201c565b5050565b6200023383836200028f60201b60201c565b6200024860008484846200047560201b60201c565b6200028a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002819062000f9e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000302576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f99062001004565b60405180910390fd5b62000313816200062f60201b60201c565b1562000356576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034d9062000fc0565b60405180910390fd5b6200036a600083836200069b60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003bc9190620010b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620004a38473ffffffffffffffffffffffffffffffffffffffff16620007e260201b620020301760201c565b1562000622578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004d5620007f560201b60201c565b8786866040518563ffffffff1660e01b8152600401620004f9949392919062000f4a565b602060405180830381600087803b1580156200051457600080fd5b505af19250505080156200054857506040513d601f19601f8201168201806040525081019062000545919062000d5e565b60015b620005d1573d80600081146200057b576040519150601f19603f3d011682016040523d82523d6000602084013e62000580565b606091505b50600081511415620005c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c09062000f9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000627565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620006b3838383620007fd60201b620020431760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200070057620006fa816200080260201b60201c565b62000748565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000747576200074683826200084b60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000795576200078f81620009c860201b60201c565b620007dd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007dc57620007db828262000aa460201b60201c565b5b5b505050565b600080823b905060008111915050919050565b600033905090565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008658462000b3060201b620015821760201c565b6200087191906200110f565b905060006007600084815260200190815260200160002054905081811462000957576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050620009de91906200110f565b905060006009600084815260200190815260200160002054905060006008838154811062000a115762000a10620012ef565b5b90600052602060002001549050806008838154811062000a365762000a35620012ef565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000a885762000a87620012c0565b5b6001900381819060005260206000200160009055905550505050565b600062000abc8362000b3060201b620015821760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ba4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9b9062000fe2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000bf990620011f6565b90600052602060002090601f01602090048101928262000c1d576000855562000c69565b82601f1062000c3857805160ff191683800117855562000c69565b8280016001018555821562000c69579182015b8281111562000c6857825182559160200191906001019062000c4b565b5b50905062000c78919062000c7c565b5090565b5b8082111562000c9757600081600090555060010162000c7d565b5090565b600062000cb262000cac846200104f565b62001026565b90508281526020810184848401111562000cd15762000cd062001352565b5b62000cde848285620011c0565b509392505050565b60008151905062000cf78162001462565b92915050565b60008151905062000d0e816200147c565b92915050565b600082601f83011262000d2c5762000d2b6200134d565b5b815162000d3e84826020860162000c9b565b91505092915050565b60008151905062000d588162001496565b92915050565b60006020828403121562000d775762000d766200135c565b5b600062000d878482850162000cfd565b91505092915050565b60008060008060008060c0878903121562000db05762000daf6200135c565b5b600087015167ffffffffffffffff81111562000dd15762000dd062001357565b5b62000ddf89828a0162000d14565b965050602062000df289828a0162000d47565b955050604062000e0589828a0162000d47565b945050606062000e1889828a0162000d47565b935050608062000e2b89828a0162000d47565b92505060a062000e3e89828a0162000ce6565b9150509295509295509295565b62000e56816200114a565b82525050565b600062000e698262001085565b62000e75818562001090565b935062000e87818560208601620011c0565b62000e928162001361565b840191505092915050565b600062000eac603283620010a1565b915062000eb98262001372565b604082019050919050565b600062000ed3601c83620010a1565b915062000ee082620013c1565b602082019050919050565b600062000efa602a83620010a1565b915062000f0782620013ea565b604082019050919050565b600062000f21602083620010a1565b915062000f2e8262001439565b602082019050919050565b62000f4481620011b6565b82525050565b600060808201905062000f61600083018762000e4b565b62000f70602083018662000e4b565b62000f7f604083018562000f39565b818103606083015262000f93818462000e5c565b905095945050505050565b6000602082019050818103600083015262000fb98162000e9d565b9050919050565b6000602082019050818103600083015262000fdb8162000ec4565b9050919050565b6000602082019050818103600083015262000ffd8162000eeb565b9050919050565b600060208201905081810360008301526200101f8162000f12565b9050919050565b60006200103262001045565b90506200104082826200122c565b919050565b6000604051905090565b600067ffffffffffffffff8211156200106d576200106c6200131e565b5b620010788262001361565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620010bf82620011b6565b9150620010cc83620011b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001104576200110362001262565b5b828201905092915050565b60006200111c82620011b6565b91506200112983620011b6565b9250828210156200113f576200113e62001262565b5b828203905092915050565b6000620011578262001196565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620011e0578082015181840152602081019050620011c3565b83811115620011f0576000848401525b50505050565b600060028204905060018216806200120f57607f821691505b6020821081141562001226576200122562001291565b5b50919050565b620012378262001361565b810181811067ffffffffffffffff821117156200125957620012586200131e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200146d816200115e565b81146200147957600080fd5b50565b62001487816200116a565b81146200149357600080fd5b50565b620014a181620011b6565b8114620014ad57600080fd5b50565b614f2580620014c06000396000f3fe60806040526004361061020f5760003560e01c806353df5c7c11610118578063a57081d7116100a0578063d082e3811161006f578063d082e381146107d6578063e831574214610801578063e985e9c51461082c578063efef39a114610869578063fe6a79cd146108995761020f565b8063a57081d714610708578063ae5fc1bc14610733578063b88d4fde14610770578063c87b56dd146107995761020f565b8063891407c0116100e7578063891407c01461063057806391b7f5ed1461066057806395d89b4114610689578063a035b1fe146106b4578063a22cb465146106df5761020f565b806353df5c7c1461057657806358c272561461058d5780636352211e146105b657806370a08231146105f35761020f565b806323b872dd1161019b5780633a31e6251161016a5780633a31e625146104935780633ccfd60b146104d057806342842e0e146104e75780634f6ccce7146105105780634fb2e45d1461054d5761020f565b806323b872dd146103db57806328fa187e146104045780632e1a7d4d1461042d5780632f745c59146104565761020f565b8063095ea7b3116101e2578063095ea7b3146102f657806317f2be221461031f57806318160ddd1461035c5780631ca479221461038757806321bf5cc7146103b25761020f565b806301ffc9a71461021457806304ec29491461025157806306fdde031461028e578063081812fc146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613556565b6108c2565b6040516102489190613ebc565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613671565b61093c565b6040516102859190613ed7565b60405180910390f35b34801561029a57600080fd5b506102a36109e8565b6040516102b09190613ed7565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613671565b610a7a565b6040516102ed9190613e11565b60405180910390f35b34801561030257600080fd5b5061031d600480360381019061031891906134e9565b610aff565b005b34801561032b57600080fd5b5061034660048036038101906103419190613671565b610c17565b6040516103539190613e9a565b60405180910390f35b34801561036857600080fd5b50610371610c7e565b60405161037e9190614239565b60405180910390f35b34801561039357600080fd5b5061039c610c8b565b6040516103a99190614239565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d491906135f9565b610c91565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906133d3565b610da3565b005b34801561041057600080fd5b5061042b600480360381019061042691906135b0565b610e03565b005b34801561043957600080fd5b50610454600480360381019061044f9190613671565b610ed2565b005b34801561046257600080fd5b5061047d600480360381019061047891906134e9565b611011565b60405161048a9190614239565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190613671565b6110b6565b6040516104c79190613e9a565b60405180910390f35b3480156104dc57600080fd5b506104e5611116565b005b3480156104f357600080fd5b5061050e600480360381019061050991906133d3565b611211565b005b34801561051c57600080fd5b5061053760048036038101906105329190613671565b611231565b6040516105449190614239565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613366565b6112a2565b005b34801561058257600080fd5b5061058b611376565b005b34801561059957600080fd5b506105b460048036038101906105af9190613529565b611423565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613671565b6114d0565b6040516105ea9190613e11565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190613366565b611582565b6040516106279190614239565b60405180910390f35b61064a600480360381019061064591906134e9565b61163a565b6040516106579190614239565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613671565b6117e5565b005b34801561069557600080fd5b5061069e61187f565b6040516106ab9190613ed7565b60405180910390f35b3480156106c057600080fd5b506106c9611911565b6040516106d69190614239565b60405180910390f35b3480156106eb57600080fd5b50610706600480360381019061070191906134a9565b611917565b005b34801561071457600080fd5b5061071d611a98565b60405161072a9190614239565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613671565b611a9e565b6040516107679190613e78565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613426565b611bd3565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613671565b611c35565b6040516107cd9190613ed7565b60405180910390f35b3480156107e257600080fd5b506107eb611e26565b6040516107f89190614239565b60405180910390f35b34801561080d57600080fd5b50610816611e2c565b6040516108239190614239565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613393565b611e43565b6040516108609190613ebc565b60405180910390f35b610883600480360381019061087e9190613671565b611ed7565b6040516108909190614239565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906134e9565b611eea565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610935575061093482612048565b5b9050919050565b600d818154811061094c57600080fd5b9060005260206000200160009150905080546109679061458c565b80601f01602080910402602001604051908101604052809291908181526020018280546109939061458c565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b505050505081565b6060600080546109f79061458c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a239061458c565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b6000610a858261212a565b610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90614119565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0a826114d0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290614199565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9a612196565b73ffffffffffffffffffffffffffffffffffffffff161480610bc95750610bc881610bc3612196565b611e43565b5b610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90614059565b60405180910390fd5b610c12838361219e565b505050565b606081610c238161212a565b610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990613f19565b60405180910390fd5b610c7683610c6f856114d0565b6002612257565b915050919050565b6000600880549050905090565b600b5481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890613ef9565b60405180910390fd5b601360009054906101000a900460ff1615610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614159565b60405180910390fd5b8160109080519060200190610d8792919061317a565b508060129080519060200190610d9e92919061317a565b505050565b610db4610dae612196565b826123ee565b610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea906141d9565b60405180910390fd5b610dfe8383836124cc565b505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613ef9565b60405180910390fd5b600d81908060018154018082558091505060019003906000526020600020016000909190919091509080519060200190610ece92919061317a565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613ef9565b60405180910390fd5b47811115610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613fd9565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100d573d6000803e3d6000fd5b5050565b600061101c83611582565b821061105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613f39565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060816110c28161212a565b611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890613f19565b60405180910390fd5b61110e8330600e54612257565b915050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90613ef9565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561120e573d6000803e3d6000fd5b50565b61122c83838360405180602001604052806000815250611bd3565b505050565b600061123b610c7e565b821061127c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611273906141f9565b60405180910390fd5b600882815481106112905761128f614753565b5b90600052602060002001549050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613ef9565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613ef9565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613ef9565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906140b9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614099565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601360019054906101000a900460ff161561168c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611683906141b9565b60405180910390fd5b600b54600a54106116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990613f79565b60405180910390fd5b600182101580156116f25750600a54600b546116ee91906144a2565b8211155b80156116ff575060c88211155b61173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590614079565b60405180910390fd5b81600f5461174c9190614448565b34101561178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590614179565b60405180910390fd5b60005b828110156117cd576117a584600a54612728565b6001600a546117b491906143c1565b600a8190555080806117c5906145ef565b915050611791565b506001600a546117dd91906144a2565b905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613ef9565b60405180910390fd5b80600f8190555050565b60606001805461188e9061458c565b80601f01602080910402602001604051908101604052809291908181526020018280546118ba9061458c565b80156119075780601f106118dc57610100808354040283529160200191611907565b820191906000526020600020905b8154815290600101906020018083116118ea57829003601f168201915b5050505050905090565b600f5481565b61191f612196565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490614019565b60405180910390fd5b806005600061199a612196565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a47612196565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8c9190613ebc565b60405180910390a35050565b600c5481565b606081611aaa8161212a565b611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613f19565b60405180910390fd5b6000600d8054905067ffffffffffffffff811115611b0a57611b09614782565b5b604051908082528060200260200182016040528015611b3d57816020015b6060815260200190600190039081611b285790505b50905060005b600d80549050811015611bc857600d8181548110611b6457611b63614753565b5b90600052602060002001611b7786612746565b604051602001611b88929190613d77565b604051602081830303815290604052828281518110611baa57611ba9614753565b5b60200260200101819052508080611bc0906145ef565b915050611b43565b508092505050919050565b611be4611bde612196565b836123ee565b611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906141d9565b60405180910390fd5b611c2f848484846128a7565b50505050565b6060611c408261212a565b611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906140f9565b60405180910390fd5b6000604051806020016040528060008152509050600b54831015611d2f5760108054611caa9061458c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd69061458c565b8015611d235780601f10611cf857610100808354040283529160200191611d23565b820191906000526020600020905b815481529060010190602001808311611d0657829003601f168201915b50505050509050611dd5565b600c54600b54611d3f91906143c1565b831015611dd45760128054611d539061458c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7f9061458c565b8015611dcc5780601f10611da157610100808354040283529160200191611dcc565b820191906000526020600020905b815481529060010190602001808311611daf57829003601f168201915b505050505090505b5b6000815111611df35760405180602001604052806000815250611e1e565b80611dfd84612746565b604051602001611e0e929190613d53565b6040516020818303038152906040525b915050919050565b600a5481565b6000600c54600b54611e3e91906143c1565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611ee3338361163a565b9050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613ef9565b60405180910390fd5b600b548110158015611f9a5750600c54600b54611f9791906143c1565b81105b611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613f99565b60405180910390fd5b611fe28161212a565b15612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990614219565b60405180910390fd5b61202c8282612728565b5050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061211357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612123575061212282612903565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612211836114d0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060836122638161212a565b6122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613f19565b60405180910390fd5b60006122ed86866040516020016122b99190613d21565b6040516020818303038152906040526040516020016122d9929190613de9565b60405160208183030381529060405261296d565b9050600084826122fd9190614666565b9050600081141561230d57600190505b60008167ffffffffffffffff81111561232957612328614782565b5b6040519080825280602002602001820160405280156123575781602001602082028036833780820191505090505b50905060005b828110156123df57600c54600b5461237591906143c1565b6123a3828a8c8860405160200161238f9493929190613d9b565b60405160208183030381529060405261296d565b6123ad9190614666565b8282815181106123c0576123bf614753565b5b60200260200101818152505080806123d7906145ef565b91505061235d565b50809450505050509392505050565b60006123f98261212a565b612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90614039565b60405180910390fd5b6000612443836114d0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b257508373ffffffffffffffffffffffffffffffffffffffff1661249a84610a7a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124c357506124c28185611e43565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124ec826114d0565b73ffffffffffffffffffffffffffffffffffffffff1614612542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253990614139565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990613ff9565b60405180910390fd5b6125bd8383836129a0565b6125c860008261219e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261891906144a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266f91906143c1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612742828260405180602001604052806000815250612ab4565b5050565b6060600082141561278e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a2565b600082905060005b600082146127c05780806127a9906145ef565b915050600a826127b99190614417565b9150612796565b60008167ffffffffffffffff8111156127dc576127db614782565b5b6040519080825280601f01601f19166020018201604052801561280e5781602001600182028036833780820191505090505b5090505b6000851461289b5760018261282791906144a2565b9150600a856128369190614666565b603061284291906143c1565b60f81b81838151811061285857612857614753565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128949190614417565b9450612812565b8093505050505b919050565b6128b28484846124cc565b6128be84848484612b0f565b6128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490613f59565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816040516020016129809190613d3c565b6040516020818303038152906040528051906020012060001c9050919050565b6129ab838383612043565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ee576129e981612ca6565b612a2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a2c57612a2b8382612cef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7057612a6b81612e5c565b612aaf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612aae57612aad8282612f2d565b5b5b505050565b612abe8383612fac565b612acb6000848484612b0f565b612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0190613f59565b60405180910390fd5b505050565b6000612b308473ffffffffffffffffffffffffffffffffffffffff16612030565b15612c99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b59612196565b8786866040518563ffffffff1660e01b8152600401612b7b9493929190613e2c565b602060405180830381600087803b158015612b9557600080fd5b505af1925050508015612bc657506040513d601f19601f82011682018060405250810190612bc39190613583565b60015b612c49573d8060008114612bf6576040519150601f19603f3d011682016040523d82523d6000602084013e612bfb565b606091505b50600081511415612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890613f59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c9e565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cfc84611582565b612d0691906144a2565b9050600060076000848152602001908152602001600020549050818114612deb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e7091906144a2565b9050600060096000848152602001908152602001600020549050600060088381548110612ea057612e9f614753565b5b906000526020600020015490508060088381548110612ec257612ec1614753565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1157612f10614724565b5b6001900381819060005260206000200160009055905550505050565b6000612f3883611582565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561301c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613013906140d9565b60405180910390fd5b6130258161212a565b15613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90613fb9565b60405180910390fd5b613071600083836129a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c191906143c1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546131869061458c565b90600052602060002090601f0160209004810192826131a857600085556131ef565b82601f106131c157805160ff19168380011785556131ef565b828001600101855582156131ef579182015b828111156131ee5782518255916020019190600101906131d3565b5b5090506131fc9190613200565b5090565b5b80821115613219576000816000905550600101613201565b5090565b600061323061322b84614279565b614254565b90508281526020810184848401111561324c5761324b6147b6565b5b61325784828561454a565b509392505050565b600061327261326d846142aa565b614254565b90508281526020810184848401111561328e5761328d6147b6565b5b61329984828561454a565b509392505050565b6000813590506132b081614e93565b92915050565b6000813590506132c581614eaa565b92915050565b6000813590506132da81614ec1565b92915050565b6000815190506132ef81614ec1565b92915050565b600082601f83011261330a576133096147b1565b5b813561331a84826020860161321d565b91505092915050565b600082601f830112613338576133376147b1565b5b813561334884826020860161325f565b91505092915050565b60008135905061336081614ed8565b92915050565b60006020828403121561337c5761337b6147c0565b5b600061338a848285016132a1565b91505092915050565b600080604083850312156133aa576133a96147c0565b5b60006133b8858286016132a1565b92505060206133c9858286016132a1565b9150509250929050565b6000806000606084860312156133ec576133eb6147c0565b5b60006133fa868287016132a1565b935050602061340b868287016132a1565b925050604061341c86828701613351565b9150509250925092565b600080600080608085870312156134405761343f6147c0565b5b600061344e878288016132a1565b945050602061345f878288016132a1565b935050604061347087828801613351565b925050606085013567ffffffffffffffff811115613491576134906147bb565b5b61349d878288016132f5565b91505092959194509250565b600080604083850312156134c0576134bf6147c0565b5b60006134ce858286016132a1565b92505060206134df858286016132b6565b9150509250929050565b60008060408385031215613500576134ff6147c0565b5b600061350e858286016132a1565b925050602061351f85828601613351565b9150509250929050565b60006020828403121561353f5761353e6147c0565b5b600061354d848285016132b6565b91505092915050565b60006020828403121561356c5761356b6147c0565b5b600061357a848285016132cb565b91505092915050565b600060208284031215613599576135986147c0565b5b60006135a7848285016132e0565b91505092915050565b6000602082840312156135c6576135c56147c0565b5b600082013567ffffffffffffffff8111156135e4576135e36147bb565b5b6135f084828501613323565b91505092915050565b600080604083850312156136105761360f6147c0565b5b600083013567ffffffffffffffff81111561362e5761362d6147bb565b5b61363a85828601613323565b925050602083013567ffffffffffffffff81111561365b5761365a6147bb565b5b61366785828601613323565b9150509250929050565b600060208284031215613687576136866147c0565b5b600061369584828501613351565b91505092915050565b60006136aa838361383c565b905092915050565b60006136be8383613cec565b60208301905092915050565b6136d3816144d6565b82525050565b6136ea6136e5826144d6565b614638565b82525050565b60006136fb82614310565b6137058185614356565b935083602082028501613717856142db565b8060005b858110156137535784840389528151613734858261369e565b945061373f8361433c565b925060208a0199505060018101905061371b565b50829750879550505050505092915050565b60006137708261431b565b61377a8185614367565b9350613785836142eb565b8060005b838110156137b657815161379d88826136b2565b97506137a883614349565b925050600181019050613789565b5085935050505092915050565b6137cc816144e8565b82525050565b60006137dd82614326565b6137e78185614378565b93506137f7818560208601614559565b613800816147c5565b840191505092915050565b600061381682614326565b6138208185614389565b9350613830818560208601614559565b80840191505092915050565b600061384782614331565b6138518185614394565b9350613861818560208601614559565b61386a816147c5565b840191505092915050565b600061388082614331565b61388a81856143a5565b935061389a818560208601614559565b6138a3816147c5565b840191505092915050565b60006138b982614331565b6138c381856143b6565b93506138d3818560208601614559565b80840191505092915050565b600081546138ec8161458c565b6138f681866143b6565b94506001821660008114613911576001811461392257613955565b60ff19831686528186019350613955565b61392b856142fb565b60005b8381101561394d5781548189015260018201915060208101905061392e565b838801955050505b50505092915050565b600061396b6022836143a5565b9150613976826147e3565b604082019050919050565b600061398e601b836143a5565b915061399982614832565b602082019050919050565b60006139b1602b836143a5565b91506139bc8261485b565b604082019050919050565b60006139d46032836143a5565b91506139df826148aa565b604082019050919050565b60006139f76011836143a5565b9150613a02826148f9565b602082019050919050565b6000613a1a6012836143a5565b9150613a2582614922565b602082019050919050565b6000613a3d601c836143a5565b9150613a488261494b565b602082019050919050565b6000613a60602e836143a5565b9150613a6b82614974565b604082019050919050565b6000613a836024836143a5565b9150613a8e826149c3565b604082019050919050565b6000613aa66019836143a5565b9150613ab182614a12565b602082019050919050565b6000613ac9602c836143a5565b9150613ad482614a3b565b604082019050919050565b6000613aec6038836143a5565b9150613af782614a8a565b604082019050919050565b6000613b0f6025836143a5565b9150613b1a82614ad9565b604082019050919050565b6000613b32602a836143a5565b9150613b3d82614b28565b604082019050919050565b6000613b556029836143a5565b9150613b6082614b77565b604082019050919050565b6000613b786020836143a5565b9150613b8382614bc6565b602082019050919050565b6000613b9b6031836143a5565b9150613ba682614bef565b604082019050919050565b6000613bbe602c836143a5565b9150613bc982614c3e565b604082019050919050565b6000613be16029836143a5565b9150613bec82614c8d565b604082019050919050565b6000613c046016836143a5565b9150613c0f82614cdc565b602082019050919050565b6000613c27603d836143a5565b9150613c3282614d05565b604082019050919050565b6000613c4a6021836143a5565b9150613c5582614d54565b604082019050919050565b6000613c6d6011836143a5565b9150613c7882614da3565b602082019050919050565b6000613c906031836143a5565b9150613c9b82614dcc565b604082019050919050565b6000613cb3602c836143a5565b9150613cbe82614e1b565b604082019050919050565b6000613cd6600c836143a5565b9150613ce182614e6a565b602082019050919050565b613cf581614540565b82525050565b613d0481614540565b82525050565b613d1b613d1682614540565b61465c565b82525050565b6000613d2d82846136d9565b60148201915081905092915050565b6000613d4882846138ae565b915081905092915050565b6000613d5f82856138ae565b9150613d6b82846138ae565b91508190509392505050565b6000613d8382856138df565b9150613d8f82846138ae565b91508190509392505050565b6000613da78287613d0a565b602082019150613db782866136d9565b601482019150613dc78285613d0a565b602082019150613dd78284613d0a565b60208201915081905095945050505050565b6000613df58285613d0a565b602082019150613e05828461380b565b91508190509392505050565b6000602082019050613e2660008301846136ca565b92915050565b6000608082019050613e4160008301876136ca565b613e4e60208301866136ca565b613e5b6040830185613cfb565b8181036060830152613e6d81846137d2565b905095945050505050565b60006020820190508181036000830152613e9281846136f0565b905092915050565b60006020820190508181036000830152613eb48184613765565b905092915050565b6000602082019050613ed160008301846137c3565b92915050565b60006020820190508181036000830152613ef18184613875565b905092915050565b60006020820190508181036000830152613f128161395e565b9050919050565b60006020820190508181036000830152613f3281613981565b9050919050565b60006020820190508181036000830152613f52816139a4565b9050919050565b60006020820190508181036000830152613f72816139c7565b9050919050565b60006020820190508181036000830152613f92816139ea565b9050919050565b60006020820190508181036000830152613fb281613a0d565b9050919050565b60006020820190508181036000830152613fd281613a30565b9050919050565b60006020820190508181036000830152613ff281613a53565b9050919050565b6000602082019050818103600083015261401281613a76565b9050919050565b6000602082019050818103600083015261403281613a99565b9050919050565b6000602082019050818103600083015261405281613abc565b9050919050565b6000602082019050818103600083015261407281613adf565b9050919050565b6000602082019050818103600083015261409281613b02565b9050919050565b600060208201905081810360008301526140b281613b25565b9050919050565b600060208201905081810360008301526140d281613b48565b9050919050565b600060208201905081810360008301526140f281613b6b565b9050919050565b6000602082019050818103600083015261411281613b8e565b9050919050565b6000602082019050818103600083015261413281613bb1565b9050919050565b6000602082019050818103600083015261415281613bd4565b9050919050565b6000602082019050818103600083015261417281613bf7565b9050919050565b6000602082019050818103600083015261419281613c1a565b9050919050565b600060208201905081810360008301526141b281613c3d565b9050919050565b600060208201905081810360008301526141d281613c60565b9050919050565b600060208201905081810360008301526141f281613c83565b9050919050565b6000602082019050818103600083015261421281613ca6565b9050919050565b6000602082019050818103600083015261423281613cc9565b9050919050565b600060208201905061424e6000830184613cfb565b92915050565b600061425e61426f565b905061426a82826145be565b919050565b6000604051905090565b600067ffffffffffffffff82111561429457614293614782565b5b61429d826147c5565b9050602081019050919050565b600067ffffffffffffffff8211156142c5576142c4614782565b5b6142ce826147c5565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143cc82614540565b91506143d783614540565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561440c5761440b614697565b5b828201905092915050565b600061442282614540565b915061442d83614540565b92508261443d5761443c6146c6565b5b828204905092915050565b600061445382614540565b915061445e83614540565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449757614496614697565b5b828202905092915050565b60006144ad82614540565b91506144b883614540565b9250828210156144cb576144ca614697565b5b828203905092915050565b60006144e182614520565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561457757808201518184015260208101905061455c565b83811115614586576000848401525b50505050565b600060028204905060018216806145a457607f821691505b602082108114156145b8576145b76146f5565b5b50919050565b6145c7826147c5565b810181811067ffffffffffffffff821117156145e6576145e5614782565b5b80604052505050565b60006145fa82614540565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561462d5761462c614697565b5b600182019050919050565b60006146438261464a565b9050919050565b6000614655826147d6565b9050919050565b6000819050919050565b600061467182614540565b915061467c83614540565b92508261468c5761468b6146c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e2e000000000000000000000000000000000000000000000000000000000000602082015250565b7f517565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f616c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f746f6b656e206f7574206f662072616e67650000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616d6f756e742073686f756c6420626520736d616c6c6572207468616e20636f60008201527f6e74726163742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f6d696e74696e6720746f6f206c6974746c65206f7220746f6f206d616e79207460008201527f6f6b656e73000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f736574206261736520757269206973206c6f636b656400000000000000000000600082015250565b7f4d7573742073656e64206174206c656173742063757272656e7420707269636560008201527f20666f7220746f6b656e202a20616d6f756e74206f6620746f6b656e73000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746f6b656e206578697374730000000000000000000000000000000000000000600082015250565b614e9c816144d6565b8114614ea757600080fd5b50565b614eb3816144e8565b8114614ebe57600080fd5b50565b614eca816144f4565b8114614ed557600080fd5b50565b614ee181614540565b8114614eec57600080fd5b5056fea26469706673582212200b257e847f3c86e7032dfc0f815f74bb83abd1e63b31488b46f035759631f5e464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e6d756c74697665727365766d2e636f6d2f000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806353df5c7c11610118578063a57081d7116100a0578063d082e3811161006f578063d082e381146107d6578063e831574214610801578063e985e9c51461082c578063efef39a114610869578063fe6a79cd146108995761020f565b8063a57081d714610708578063ae5fc1bc14610733578063b88d4fde14610770578063c87b56dd146107995761020f565b8063891407c0116100e7578063891407c01461063057806391b7f5ed1461066057806395d89b4114610689578063a035b1fe146106b4578063a22cb465146106df5761020f565b806353df5c7c1461057657806358c272561461058d5780636352211e146105b657806370a08231146105f35761020f565b806323b872dd1161019b5780633a31e6251161016a5780633a31e625146104935780633ccfd60b146104d057806342842e0e146104e75780634f6ccce7146105105780634fb2e45d1461054d5761020f565b806323b872dd146103db57806328fa187e146104045780632e1a7d4d1461042d5780632f745c59146104565761020f565b8063095ea7b3116101e2578063095ea7b3146102f657806317f2be221461031f57806318160ddd1461035c5780631ca479221461038757806321bf5cc7146103b25761020f565b806301ffc9a71461021457806304ec29491461025157806306fdde031461028e578063081812fc146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613556565b6108c2565b6040516102489190613ebc565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613671565b61093c565b6040516102859190613ed7565b60405180910390f35b34801561029a57600080fd5b506102a36109e8565b6040516102b09190613ed7565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613671565b610a7a565b6040516102ed9190613e11565b60405180910390f35b34801561030257600080fd5b5061031d600480360381019061031891906134e9565b610aff565b005b34801561032b57600080fd5b5061034660048036038101906103419190613671565b610c17565b6040516103539190613e9a565b60405180910390f35b34801561036857600080fd5b50610371610c7e565b60405161037e9190614239565b60405180910390f35b34801561039357600080fd5b5061039c610c8b565b6040516103a99190614239565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d491906135f9565b610c91565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906133d3565b610da3565b005b34801561041057600080fd5b5061042b600480360381019061042691906135b0565b610e03565b005b34801561043957600080fd5b50610454600480360381019061044f9190613671565b610ed2565b005b34801561046257600080fd5b5061047d600480360381019061047891906134e9565b611011565b60405161048a9190614239565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190613671565b6110b6565b6040516104c79190613e9a565b60405180910390f35b3480156104dc57600080fd5b506104e5611116565b005b3480156104f357600080fd5b5061050e600480360381019061050991906133d3565b611211565b005b34801561051c57600080fd5b5061053760048036038101906105329190613671565b611231565b6040516105449190614239565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613366565b6112a2565b005b34801561058257600080fd5b5061058b611376565b005b34801561059957600080fd5b506105b460048036038101906105af9190613529565b611423565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613671565b6114d0565b6040516105ea9190613e11565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190613366565b611582565b6040516106279190614239565b60405180910390f35b61064a600480360381019061064591906134e9565b61163a565b6040516106579190614239565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613671565b6117e5565b005b34801561069557600080fd5b5061069e61187f565b6040516106ab9190613ed7565b60405180910390f35b3480156106c057600080fd5b506106c9611911565b6040516106d69190614239565b60405180910390f35b3480156106eb57600080fd5b50610706600480360381019061070191906134a9565b611917565b005b34801561071457600080fd5b5061071d611a98565b60405161072a9190614239565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613671565b611a9e565b6040516107679190613e78565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613426565b611bd3565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613671565b611c35565b6040516107cd9190613ed7565b60405180910390f35b3480156107e257600080fd5b506107eb611e26565b6040516107f89190614239565b60405180910390f35b34801561080d57600080fd5b50610816611e2c565b6040516108239190614239565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613393565b611e43565b6040516108609190613ebc565b60405180910390f35b610883600480360381019061087e9190613671565b611ed7565b6040516108909190614239565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906134e9565b611eea565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610935575061093482612048565b5b9050919050565b600d818154811061094c57600080fd5b9060005260206000200160009150905080546109679061458c565b80601f01602080910402602001604051908101604052809291908181526020018280546109939061458c565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b505050505081565b6060600080546109f79061458c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a239061458c565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b6000610a858261212a565b610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90614119565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0a826114d0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290614199565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9a612196565b73ffffffffffffffffffffffffffffffffffffffff161480610bc95750610bc881610bc3612196565b611e43565b5b610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90614059565b60405180910390fd5b610c12838361219e565b505050565b606081610c238161212a565b610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990613f19565b60405180910390fd5b610c7683610c6f856114d0565b6002612257565b915050919050565b6000600880549050905090565b600b5481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890613ef9565b60405180910390fd5b601360009054906101000a900460ff1615610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614159565b60405180910390fd5b8160109080519060200190610d8792919061317a565b508060129080519060200190610d9e92919061317a565b505050565b610db4610dae612196565b826123ee565b610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea906141d9565b60405180910390fd5b610dfe8383836124cc565b505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613ef9565b60405180910390fd5b600d81908060018154018082558091505060019003906000526020600020016000909190919091509080519060200190610ece92919061317a565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613ef9565b60405180910390fd5b47811115610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613fd9565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100d573d6000803e3d6000fd5b5050565b600061101c83611582565b821061105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613f39565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060816110c28161212a565b611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890613f19565b60405180910390fd5b61110e8330600e54612257565b915050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90613ef9565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561120e573d6000803e3d6000fd5b50565b61122c83838360405180602001604052806000815250611bd3565b505050565b600061123b610c7e565b821061127c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611273906141f9565b60405180910390fd5b600882815481106112905761128f614753565b5b90600052602060002001549050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613ef9565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613ef9565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613ef9565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906140b9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614099565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601360019054906101000a900460ff161561168c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611683906141b9565b60405180910390fd5b600b54600a54106116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990613f79565b60405180910390fd5b600182101580156116f25750600a54600b546116ee91906144a2565b8211155b80156116ff575060c88211155b61173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590614079565b60405180910390fd5b81600f5461174c9190614448565b34101561178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590614179565b60405180910390fd5b60005b828110156117cd576117a584600a54612728565b6001600a546117b491906143c1565b600a8190555080806117c5906145ef565b915050611791565b506001600a546117dd91906144a2565b905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613ef9565b60405180910390fd5b80600f8190555050565b60606001805461188e9061458c565b80601f01602080910402602001604051908101604052809291908181526020018280546118ba9061458c565b80156119075780601f106118dc57610100808354040283529160200191611907565b820191906000526020600020905b8154815290600101906020018083116118ea57829003601f168201915b5050505050905090565b600f5481565b61191f612196565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490614019565b60405180910390fd5b806005600061199a612196565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a47612196565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8c9190613ebc565b60405180910390a35050565b600c5481565b606081611aaa8161212a565b611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613f19565b60405180910390fd5b6000600d8054905067ffffffffffffffff811115611b0a57611b09614782565b5b604051908082528060200260200182016040528015611b3d57816020015b6060815260200190600190039081611b285790505b50905060005b600d80549050811015611bc857600d8181548110611b6457611b63614753565b5b90600052602060002001611b7786612746565b604051602001611b88929190613d77565b604051602081830303815290604052828281518110611baa57611ba9614753565b5b60200260200101819052508080611bc0906145ef565b915050611b43565b508092505050919050565b611be4611bde612196565b836123ee565b611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906141d9565b60405180910390fd5b611c2f848484846128a7565b50505050565b6060611c408261212a565b611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906140f9565b60405180910390fd5b6000604051806020016040528060008152509050600b54831015611d2f5760108054611caa9061458c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd69061458c565b8015611d235780601f10611cf857610100808354040283529160200191611d23565b820191906000526020600020905b815481529060010190602001808311611d0657829003601f168201915b50505050509050611dd5565b600c54600b54611d3f91906143c1565b831015611dd45760128054611d539061458c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7f9061458c565b8015611dcc5780601f10611da157610100808354040283529160200191611dcc565b820191906000526020600020905b815481529060010190602001808311611daf57829003601f168201915b505050505090505b5b6000815111611df35760405180602001604052806000815250611e1e565b80611dfd84612746565b604051602001611e0e929190613d53565b6040516020818303038152906040525b915050919050565b600a5481565b6000600c54600b54611e3e91906143c1565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611ee3338361163a565b9050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613ef9565b60405180910390fd5b600b548110158015611f9a5750600c54600b54611f9791906143c1565b81105b611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613f99565b60405180910390fd5b611fe28161212a565b15612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990614219565b60405180910390fd5b61202c8282612728565b5050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061211357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612123575061212282612903565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612211836114d0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060836122638161212a565b6122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613f19565b60405180910390fd5b60006122ed86866040516020016122b99190613d21565b6040516020818303038152906040526040516020016122d9929190613de9565b60405160208183030381529060405261296d565b9050600084826122fd9190614666565b9050600081141561230d57600190505b60008167ffffffffffffffff81111561232957612328614782565b5b6040519080825280602002602001820160405280156123575781602001602082028036833780820191505090505b50905060005b828110156123df57600c54600b5461237591906143c1565b6123a3828a8c8860405160200161238f9493929190613d9b565b60405160208183030381529060405261296d565b6123ad9190614666565b8282815181106123c0576123bf614753565b5b60200260200101818152505080806123d7906145ef565b91505061235d565b50809450505050509392505050565b60006123f98261212a565b612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90614039565b60405180910390fd5b6000612443836114d0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b257508373ffffffffffffffffffffffffffffffffffffffff1661249a84610a7a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124c357506124c28185611e43565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124ec826114d0565b73ffffffffffffffffffffffffffffffffffffffff1614612542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253990614139565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990613ff9565b60405180910390fd5b6125bd8383836129a0565b6125c860008261219e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261891906144a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266f91906143c1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612742828260405180602001604052806000815250612ab4565b5050565b6060600082141561278e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a2565b600082905060005b600082146127c05780806127a9906145ef565b915050600a826127b99190614417565b9150612796565b60008167ffffffffffffffff8111156127dc576127db614782565b5b6040519080825280601f01601f19166020018201604052801561280e5781602001600182028036833780820191505090505b5090505b6000851461289b5760018261282791906144a2565b9150600a856128369190614666565b603061284291906143c1565b60f81b81838151811061285857612857614753565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128949190614417565b9450612812565b8093505050505b919050565b6128b28484846124cc565b6128be84848484612b0f565b6128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490613f59565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816040516020016129809190613d3c565b6040516020818303038152906040528051906020012060001c9050919050565b6129ab838383612043565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ee576129e981612ca6565b612a2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a2c57612a2b8382612cef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7057612a6b81612e5c565b612aaf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612aae57612aad8282612f2d565b5b5b505050565b612abe8383612fac565b612acb6000848484612b0f565b612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0190613f59565b60405180910390fd5b505050565b6000612b308473ffffffffffffffffffffffffffffffffffffffff16612030565b15612c99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b59612196565b8786866040518563ffffffff1660e01b8152600401612b7b9493929190613e2c565b602060405180830381600087803b158015612b9557600080fd5b505af1925050508015612bc657506040513d601f19601f82011682018060405250810190612bc39190613583565b60015b612c49573d8060008114612bf6576040519150601f19603f3d011682016040523d82523d6000602084013e612bfb565b606091505b50600081511415612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890613f59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c9e565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cfc84611582565b612d0691906144a2565b9050600060076000848152602001908152602001600020549050818114612deb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e7091906144a2565b9050600060096000848152602001908152602001600020549050600060088381548110612ea057612e9f614753565b5b906000526020600020015490508060088381548110612ec257612ec1614753565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1157612f10614724565b5b6001900381819060005260206000200160009055905550505050565b6000612f3883611582565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561301c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613013906140d9565b60405180910390fd5b6130258161212a565b15613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90613fb9565b60405180910390fd5b613071600083836129a0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c191906143c1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546131869061458c565b90600052602060002090601f0160209004810192826131a857600085556131ef565b82601f106131c157805160ff19168380011785556131ef565b828001600101855582156131ef579182015b828111156131ee5782518255916020019190600101906131d3565b5b5090506131fc9190613200565b5090565b5b80821115613219576000816000905550600101613201565b5090565b600061323061322b84614279565b614254565b90508281526020810184848401111561324c5761324b6147b6565b5b61325784828561454a565b509392505050565b600061327261326d846142aa565b614254565b90508281526020810184848401111561328e5761328d6147b6565b5b61329984828561454a565b509392505050565b6000813590506132b081614e93565b92915050565b6000813590506132c581614eaa565b92915050565b6000813590506132da81614ec1565b92915050565b6000815190506132ef81614ec1565b92915050565b600082601f83011261330a576133096147b1565b5b813561331a84826020860161321d565b91505092915050565b600082601f830112613338576133376147b1565b5b813561334884826020860161325f565b91505092915050565b60008135905061336081614ed8565b92915050565b60006020828403121561337c5761337b6147c0565b5b600061338a848285016132a1565b91505092915050565b600080604083850312156133aa576133a96147c0565b5b60006133b8858286016132a1565b92505060206133c9858286016132a1565b9150509250929050565b6000806000606084860312156133ec576133eb6147c0565b5b60006133fa868287016132a1565b935050602061340b868287016132a1565b925050604061341c86828701613351565b9150509250925092565b600080600080608085870312156134405761343f6147c0565b5b600061344e878288016132a1565b945050602061345f878288016132a1565b935050604061347087828801613351565b925050606085013567ffffffffffffffff811115613491576134906147bb565b5b61349d878288016132f5565b91505092959194509250565b600080604083850312156134c0576134bf6147c0565b5b60006134ce858286016132a1565b92505060206134df858286016132b6565b9150509250929050565b60008060408385031215613500576134ff6147c0565b5b600061350e858286016132a1565b925050602061351f85828601613351565b9150509250929050565b60006020828403121561353f5761353e6147c0565b5b600061354d848285016132b6565b91505092915050565b60006020828403121561356c5761356b6147c0565b5b600061357a848285016132cb565b91505092915050565b600060208284031215613599576135986147c0565b5b60006135a7848285016132e0565b91505092915050565b6000602082840312156135c6576135c56147c0565b5b600082013567ffffffffffffffff8111156135e4576135e36147bb565b5b6135f084828501613323565b91505092915050565b600080604083850312156136105761360f6147c0565b5b600083013567ffffffffffffffff81111561362e5761362d6147bb565b5b61363a85828601613323565b925050602083013567ffffffffffffffff81111561365b5761365a6147bb565b5b61366785828601613323565b9150509250929050565b600060208284031215613687576136866147c0565b5b600061369584828501613351565b91505092915050565b60006136aa838361383c565b905092915050565b60006136be8383613cec565b60208301905092915050565b6136d3816144d6565b82525050565b6136ea6136e5826144d6565b614638565b82525050565b60006136fb82614310565b6137058185614356565b935083602082028501613717856142db565b8060005b858110156137535784840389528151613734858261369e565b945061373f8361433c565b925060208a0199505060018101905061371b565b50829750879550505050505092915050565b60006137708261431b565b61377a8185614367565b9350613785836142eb565b8060005b838110156137b657815161379d88826136b2565b97506137a883614349565b925050600181019050613789565b5085935050505092915050565b6137cc816144e8565b82525050565b60006137dd82614326565b6137e78185614378565b93506137f7818560208601614559565b613800816147c5565b840191505092915050565b600061381682614326565b6138208185614389565b9350613830818560208601614559565b80840191505092915050565b600061384782614331565b6138518185614394565b9350613861818560208601614559565b61386a816147c5565b840191505092915050565b600061388082614331565b61388a81856143a5565b935061389a818560208601614559565b6138a3816147c5565b840191505092915050565b60006138b982614331565b6138c381856143b6565b93506138d3818560208601614559565b80840191505092915050565b600081546138ec8161458c565b6138f681866143b6565b94506001821660008114613911576001811461392257613955565b60ff19831686528186019350613955565b61392b856142fb565b60005b8381101561394d5781548189015260018201915060208101905061392e565b838801955050505b50505092915050565b600061396b6022836143a5565b9150613976826147e3565b604082019050919050565b600061398e601b836143a5565b915061399982614832565b602082019050919050565b60006139b1602b836143a5565b91506139bc8261485b565b604082019050919050565b60006139d46032836143a5565b91506139df826148aa565b604082019050919050565b60006139f76011836143a5565b9150613a02826148f9565b602082019050919050565b6000613a1a6012836143a5565b9150613a2582614922565b602082019050919050565b6000613a3d601c836143a5565b9150613a488261494b565b602082019050919050565b6000613a60602e836143a5565b9150613a6b82614974565b604082019050919050565b6000613a836024836143a5565b9150613a8e826149c3565b604082019050919050565b6000613aa66019836143a5565b9150613ab182614a12565b602082019050919050565b6000613ac9602c836143a5565b9150613ad482614a3b565b604082019050919050565b6000613aec6038836143a5565b9150613af782614a8a565b604082019050919050565b6000613b0f6025836143a5565b9150613b1a82614ad9565b604082019050919050565b6000613b32602a836143a5565b9150613b3d82614b28565b604082019050919050565b6000613b556029836143a5565b9150613b6082614b77565b604082019050919050565b6000613b786020836143a5565b9150613b8382614bc6565b602082019050919050565b6000613b9b6031836143a5565b9150613ba682614bef565b604082019050919050565b6000613bbe602c836143a5565b9150613bc982614c3e565b604082019050919050565b6000613be16029836143a5565b9150613bec82614c8d565b604082019050919050565b6000613c046016836143a5565b9150613c0f82614cdc565b602082019050919050565b6000613c27603d836143a5565b9150613c3282614d05565b604082019050919050565b6000613c4a6021836143a5565b9150613c5582614d54565b604082019050919050565b6000613c6d6011836143a5565b9150613c7882614da3565b602082019050919050565b6000613c906031836143a5565b9150613c9b82614dcc565b604082019050919050565b6000613cb3602c836143a5565b9150613cbe82614e1b565b604082019050919050565b6000613cd6600c836143a5565b9150613ce182614e6a565b602082019050919050565b613cf581614540565b82525050565b613d0481614540565b82525050565b613d1b613d1682614540565b61465c565b82525050565b6000613d2d82846136d9565b60148201915081905092915050565b6000613d4882846138ae565b915081905092915050565b6000613d5f82856138ae565b9150613d6b82846138ae565b91508190509392505050565b6000613d8382856138df565b9150613d8f82846138ae565b91508190509392505050565b6000613da78287613d0a565b602082019150613db782866136d9565b601482019150613dc78285613d0a565b602082019150613dd78284613d0a565b60208201915081905095945050505050565b6000613df58285613d0a565b602082019150613e05828461380b565b91508190509392505050565b6000602082019050613e2660008301846136ca565b92915050565b6000608082019050613e4160008301876136ca565b613e4e60208301866136ca565b613e5b6040830185613cfb565b8181036060830152613e6d81846137d2565b905095945050505050565b60006020820190508181036000830152613e9281846136f0565b905092915050565b60006020820190508181036000830152613eb48184613765565b905092915050565b6000602082019050613ed160008301846137c3565b92915050565b60006020820190508181036000830152613ef18184613875565b905092915050565b60006020820190508181036000830152613f128161395e565b9050919050565b60006020820190508181036000830152613f3281613981565b9050919050565b60006020820190508181036000830152613f52816139a4565b9050919050565b60006020820190508181036000830152613f72816139c7565b9050919050565b60006020820190508181036000830152613f92816139ea565b9050919050565b60006020820190508181036000830152613fb281613a0d565b9050919050565b60006020820190508181036000830152613fd281613a30565b9050919050565b60006020820190508181036000830152613ff281613a53565b9050919050565b6000602082019050818103600083015261401281613a76565b9050919050565b6000602082019050818103600083015261403281613a99565b9050919050565b6000602082019050818103600083015261405281613abc565b9050919050565b6000602082019050818103600083015261407281613adf565b9050919050565b6000602082019050818103600083015261409281613b02565b9050919050565b600060208201905081810360008301526140b281613b25565b9050919050565b600060208201905081810360008301526140d281613b48565b9050919050565b600060208201905081810360008301526140f281613b6b565b9050919050565b6000602082019050818103600083015261411281613b8e565b9050919050565b6000602082019050818103600083015261413281613bb1565b9050919050565b6000602082019050818103600083015261415281613bd4565b9050919050565b6000602082019050818103600083015261417281613bf7565b9050919050565b6000602082019050818103600083015261419281613c1a565b9050919050565b600060208201905081810360008301526141b281613c3d565b9050919050565b600060208201905081810360008301526141d281613c60565b9050919050565b600060208201905081810360008301526141f281613c83565b9050919050565b6000602082019050818103600083015261421281613ca6565b9050919050565b6000602082019050818103600083015261423281613cc9565b9050919050565b600060208201905061424e6000830184613cfb565b92915050565b600061425e61426f565b905061426a82826145be565b919050565b6000604051905090565b600067ffffffffffffffff82111561429457614293614782565b5b61429d826147c5565b9050602081019050919050565b600067ffffffffffffffff8211156142c5576142c4614782565b5b6142ce826147c5565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143cc82614540565b91506143d783614540565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561440c5761440b614697565b5b828201905092915050565b600061442282614540565b915061442d83614540565b92508261443d5761443c6146c6565b5b828204905092915050565b600061445382614540565b915061445e83614540565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449757614496614697565b5b828202905092915050565b60006144ad82614540565b91506144b883614540565b9250828210156144cb576144ca614697565b5b828203905092915050565b60006144e182614520565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561457757808201518184015260208101905061455c565b83811115614586576000848401525b50505050565b600060028204905060018216806145a457607f821691505b602082108114156145b8576145b76146f5565b5b50919050565b6145c7826147c5565b810181811067ffffffffffffffff821117156145e6576145e5614782565b5b80604052505050565b60006145fa82614540565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561462d5761462c614697565b5b600182019050919050565b60006146438261464a565b9050919050565b6000614655826147d6565b9050919050565b6000819050919050565b600061467182614540565b915061467c83614540565b92508261468c5761468b6146c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e2e000000000000000000000000000000000000000000000000000000000000602082015250565b7f517565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f616c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f746f6b656e206f7574206f662072616e67650000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616d6f756e742073686f756c6420626520736d616c6c6572207468616e20636f60008201527f6e74726163742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f6d696e74696e6720746f6f206c6974746c65206f7220746f6f206d616e79207460008201527f6f6b656e73000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f736574206261736520757269206973206c6f636b656400000000000000000000600082015250565b7f4d7573742073656e64206174206c656173742063757272656e7420707269636560008201527f20666f7220746f6b656e202a20616d6f756e74206f6620746f6b656e73000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746f6b656e206578697374730000000000000000000000000000000000000000600082015250565b614e9c816144d6565b8114614ea757600080fd5b50565b614eb3816144e8565b8114614ebe57600080fd5b50565b614eca816144f4565b8114614ed557600080fd5b50565b614ee181614540565b8114614eec57600080fd5b5056fea26469706673582212200b257e847f3c86e7032dfc0f815f74bb83abd1e63b31488b46f035759631f5e464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e6d756c74697665727365766d2e636f6d2f000000
-----Decoded View---------------
Arg [0] : uribasein (string): https://api.multiversevm.com/
Arg [1] : maxusertokens (uint256): 8000
Arg [2] : mversetokens (uint256): 80
Arg [3] : maxlinkcountin (uint256): 16
Arg [4] : mintprice (uint256): 50000000000000000
Arg [5] : initpause (bool): True
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001f40
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [7] : 68747470733a2f2f6170692e6d756c74697665727365766d2e636f6d2f000000
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.