Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0.2 ETH
Eth Value
$395.72 (@ $1,978.62/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BuriedLoot
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: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BuriedLoot is ERC721Enumerable, Ownable {
using Strings for uint256;
string public baseURI = "ipfs://QmWCWUhjg2n67GFH1LW2bJLb6jBNjkUQEa2xppM931M5Uo/";
string public baseExtension = ".json";
uint public cost = .05 ether;
uint public maxSupply = 10000;
uint public maxMintAmount = 10;
uint public nftPerAddressLimit = 2;
bool public paused = false;
bool public onlyWhitelisted = true;
address[] public whitelistedAddresses;
mapping(address => uint256) public addressMintedBalance;
address payable public wal_jackpot = payable(0xac786c30899148612Fd6D7167f3ABB89DAED4DEb);
address payable public wal_owners = payable(0xEd37083EaC50a78c9b8d32C1A8b11C58D656c460);
address payable public wal_artist = payable(0x8147c04cb5c13b482820064e2BdD8A41Ab9A4B51);
address payable public wal_web = payable(0x22438B6e5732d0827Dd95Fb5762B93B721001380);
address payable public wal_block = payable(0xefF1b5a4643eAC7d0e908a83A3Cd9fC936990c00);
constructor() ERC721("Buried Loot: Skull & Bones", "BRLT") {
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
// public
function mint(uint256 _mintAmount) public payable {
require(!paused, "the contract is paused");
uint256 supply = totalSupply();
require(_mintAmount > 0, "need to mint at least 1 NFT");
require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
if (msg.sender != owner()) {
if(onlyWhitelisted == true) {
require(isWhitelisted(msg.sender), "user is not whitelisted");
uint256 ownerMintedCount = addressMintedBalance[msg.sender];
require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
}
require(msg.value >= cost * _mintAmount, "insufficient funds");
}
for (uint256 i = 1; i <= _mintAmount; i++) {
addressMintedBalance[msg.sender]++;
_safeMint(msg.sender, supply + i);
}
}
function isWhitelisted(address _user) public view returns (bool) {
for (uint i = 0; i < whitelistedAddresses.length; i++) {
if (whitelistedAddresses[i] == _user) {
return true;
}
}
return false;
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
return string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension));
}
//only owner
function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
nftPerAddressLimit = _limit;
}
function setCost(uint256 _newCost) public onlyOwner {
cost = _newCost;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function setOnlyWhitelisted(bool _state) public onlyOwner {
onlyWhitelisted = _state;
}
function whitelistUsers(address[] calldata _users) public onlyOwner {
delete whitelistedAddresses;
whitelistedAddresses = _users;
}
function withdraw() public payable onlyOwner {
uint256 balance = address(this).balance;
require(balance > 0);
(bool jackpot_paid, ) = wal_jackpot.call{value: 50 * balance / 100}("");
(bool owners_paid, ) = wal_owners.call{value: 25 * balance / 100}("");
(bool artist_paid, ) = wal_artist.call{value: 5 * balance / 100}("");
(bool webdev_paid, ) = wal_web.call{value: 10 * balance / 100}("");
(bool blockdev_paid, ) = wal_block.call{value: 10 * balance / 100}("");
require(jackpot_paid);
require(owners_paid);
require(artist_paid);
require(webdev_paid);
require(blockdev_paid);
}
function mintGiveaway(uint256 _giveawayAmount) public onlyOwner {
for (uint256 i = 0; i < _giveawayAmount; ++i) {
_safeMint(wal_owners, totalSupply());
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../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 "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
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 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;
/**
* @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;
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;
/**
* @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;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_giveawayAmount","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wal_artist","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wal_block","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wal_jackpot","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wal_owners","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wal_web","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040526040518060600160405280603681526020016200555060369139600b90805190602001906200003592919062000420565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200008392919062000420565b5066b1a2bc2ec50000600d55612710600e55600a600f5560026010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff02191690831515021790555073ac786c30899148612fd6d7167f3abb89daed4deb601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ed37083eac50a78c9b8d32c1a8b11c58d656c460601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738147c04cb5c13b482820064e2bdd8a41ab9a4b51601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507322438b6e5732d0827dd95fb5762b93b721001380601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073eff1b5a4643eac7d0e908a83a3cd9fc936990c00601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200028b57600080fd5b506040518060400160405280601a81526020017f427572696564204c6f6f743a20536b756c6c202620426f6e65730000000000008152506040518060400160405280600481526020017f42524c540000000000000000000000000000000000000000000000000000000081525081600090805190602001906200031092919062000420565b5080600190805190602001906200032992919062000420565b5050506200034c620003406200035260201b60201c565b6200035a60201b60201c565b62000535565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200042e90620004d0565b90600052602060002090601f0160209004810192826200045257600085556200049e565b82601f106200046d57805160ff19168380011785556200049e565b828001600101855582156200049e579182015b828111156200049d57825182559160200191906001019062000480565b5b509050620004ad9190620004b1565b5090565b5b80821115620004cc576000816000905550600101620004b2565b5090565b60006002820490506001821680620004e957607f821691505b602082108114156200050057620004ff62000506565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61500b80620005456000396000f3fe6080604052600436106102725760003560e01c80635e7366fb1161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610960578063d0eb26b01461099d578063d5abeb01146109c6578063e985e9c5146109f1578063edec5f2714610a2e578063f2fde38b14610a5757610272565b8063a22cb46514610850578063ab9c602514610879578063b88d4fde146108a4578063ba4e5c49146108cd578063ba7d2c761461090a578063c66828621461093557610272565b80637af66cec116101135780637af66cec1461075f578063849a49a5146107885780638da5cb5b146107b357806395d89b41146107de5780639c70b51214610809578063a0712d681461083457610272565b80635e7366fb146106785780636352211e146106a35780636c0360eb146106e057806370a082311461070b578063715018a61461074857610272565b8063344045eb116101e8578063438b6300116101ac578063438b63001461055657806344a0d68a146105935780634f6ccce7146105bc57806355c0c7ad146105f957806355f804b3146106245780635c975abb1461064d57610272565b8063344045eb146104925780633af32abf146104bd5780633c952764146104fa5780633ccfd60b1461052357806342842e0e1461052d57610272565b806313faede61161023a57806313faede61461036e57806318160ddd1461039957806318cae269146103c4578063239c70ae1461040157806323b872dd1461042c5780632f745c591461045557610272565b806301ffc9a71461027757806302329a29146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613a04565b610a80565b6040516102ab919061410c565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906139d7565b610afa565b005b3480156102e957600080fd5b506102f2610b93565b6040516102ff9190614127565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613aa7565b610c25565b60405161033c9190614068565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061394a565b610caa565b005b34801561037a57600080fd5b50610383610dc2565b6040516103909190614449565b60405180910390f35b3480156103a557600080fd5b506103ae610dc8565b6040516103bb9190614449565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906137c7565b610dd5565b6040516103f89190614449565b60405180910390f35b34801561040d57600080fd5b50610416610ded565b6040516104239190614449565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613834565b610df3565b005b34801561046157600080fd5b5061047c6004803603810190610477919061394a565b610e53565b6040516104899190614449565b60405180910390f35b34801561049e57600080fd5b506104a7610ef8565b6040516104b49190614083565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906137c7565b610f1e565b6040516104f1919061410c565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c91906139d7565b610fcd565b005b61052b611066565b005b34801561053957600080fd5b50610554600480360381019061054f9190613834565b61146c565b005b34801561056257600080fd5b5061057d600480360381019061057891906137c7565b61148c565b60405161058a91906140ea565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613aa7565b61153a565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613aa7565b6115c0565b6040516105f09190614449565b60405180910390f35b34801561060557600080fd5b5061060e611631565b60405161061b9190614083565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613a5e565b611657565b005b34801561065957600080fd5b506106626116ed565b60405161066f919061410c565b60405180910390f35b34801561068457600080fd5b5061068d611700565b60405161069a9190614083565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613aa7565b611726565b6040516106d79190614068565b60405180910390f35b3480156106ec57600080fd5b506106f56117d8565b6040516107029190614127565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906137c7565b611866565b60405161073f9190614449565b60405180910390f35b34801561075457600080fd5b5061075d61191e565b005b34801561076b57600080fd5b5061078660048036038101906107819190613aa7565b6119a6565b005b34801561079457600080fd5b5061079d611a75565b6040516107aa9190614083565b60405180910390f35b3480156107bf57600080fd5b506107c8611a9b565b6040516107d59190614068565b60405180910390f35b3480156107ea57600080fd5b506107f3611ac5565b6040516108009190614127565b60405180910390f35b34801561081557600080fd5b5061081e611b57565b60405161082b919061410c565b60405180910390f35b61084e60048036038101906108499190613aa7565b611b6a565b005b34801561085c57600080fd5b506108776004803603810190610872919061390a565b611eb3565b005b34801561088557600080fd5b5061088e612034565b60405161089b9190614083565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190613887565b61205a565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613aa7565b6120bc565b6040516109019190614068565b60405180910390f35b34801561091657600080fd5b5061091f6120fb565b60405161092c9190614449565b60405180910390f35b34801561094157600080fd5b5061094a612101565b6040516109579190614127565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613aa7565b61218f565b6040516109949190614127565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613aa7565b6121c6565b005b3480156109d257600080fd5b506109db61224c565b6040516109e89190614449565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a1391906137f4565b612252565b604051610a25919061410c565b60405180910390f35b348015610a3a57600080fd5b50610a556004803603810190610a50919061398a565b6122e6565b005b348015610a6357600080fd5b50610a7e6004803603810190610a7991906137c7565b612386565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af35750610af28261247e565b5b9050919050565b610b02612560565b73ffffffffffffffffffffffffffffffffffffffff16610b20611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614329565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610ba290614764565b80601f0160208091040260200160405190810160405280929190818152602001828054610bce90614764565b8015610c1b5780601f10610bf057610100808354040283529160200191610c1b565b820191906000526020600020905b815481529060010190602001808311610bfe57829003601f168201915b5050505050905090565b6000610c3082612568565b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614309565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb582611726565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90614389565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d45612560565b73ffffffffffffffffffffffffffffffffffffffff161480610d745750610d7381610d6e612560565b612252565b5b610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90614249565b60405180910390fd5b610dbd83836125d4565b505050565b600d5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b600f5481565b610e04610dfe612560565b8261268d565b610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906143c9565b60405180910390fd5b610e4e83838361276b565b505050565b6000610e5e83611866565b8210610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690614149565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600090505b601280549050811015610fc2578273ffffffffffffffffffffffffffffffffffffffff1660128281548110610f5e57610f5d6148fd565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610faf576001915050610fc8565b8080610fba906147c7565b915050610f26565b50600090505b919050565b610fd5612560565b73ffffffffffffffffffffffffffffffffffffffff16610ff3611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090614329565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b61106e612560565b73ffffffffffffffffffffffffffffffffffffffff1661108c611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614329565b60405180910390fd5b6000479050600081116110f457600080fd5b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606483603261113e919061460e565b61114891906145dd565b60405161115490614053565b60006040518083038185875af1925050503d8060008114611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b505090506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660648460196111e4919061460e565b6111ee91906145dd565b6040516111fa90614053565b60006040518083038185875af1925050503d8060008114611237576040519150601f19603f3d011682016040523d82523d6000602084013e61123c565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606485600561128a919061460e565b61129491906145dd565b6040516112a090614053565b60006040518083038185875af1925050503d80600081146112dd576040519150601f19603f3d011682016040523d82523d6000602084013e6112e2565b606091505b505090506000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606486600a611330919061460e565b61133a91906145dd565b60405161134690614053565b60006040518083038185875af1925050503d8060008114611383576040519150601f19603f3d011682016040523d82523d6000602084013e611388565b606091505b505090506000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606487600a6113d6919061460e565b6113e091906145dd565b6040516113ec90614053565b60006040518083038185875af1925050503d8060008114611429576040519150601f19603f3d011682016040523d82523d6000602084013e61142e565b606091505b505090508461143c57600080fd5b8361144657600080fd5b8261145057600080fd5b8161145a57600080fd5b8061146457600080fd5b505050505050565b6114878383836040518060200160405280600081525061205a565b505050565b6060600061149983611866565b905060008167ffffffffffffffff8111156114b7576114b661492c565b5b6040519080825280602002602001820160405280156114e55781602001602082028036833780820191505090505b50905060005b8281101561152f576114fd8582610e53565b8282815181106115105761150f6148fd565b5b6020026020010181815250508080611527906147c7565b9150506114eb565b508092505050919050565b611542612560565b73ffffffffffffffffffffffffffffffffffffffff16611560611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90614329565b60405180910390fd5b80600d8190555050565b60006115ca610dc8565b821061160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906143e9565b60405180910390fd5b6008828154811061161f5761161e6148fd565b5b90600052602060002001549050919050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61165f612560565b73ffffffffffffffffffffffffffffffffffffffff1661167d611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614329565b60405180910390fd5b80600b90805190602001906116e99291906134c4565b5050565b601160009054906101000a900460ff1681565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614289565b60405180910390fd5b80915050919050565b600b80546117e590614764565b80601f016020809104026020016040519081016040528092919081815260200182805461181190614764565b801561185e5780601f106118335761010080835404028352916020019161185e565b820191906000526020600020905b81548152906001019060200180831161184157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614269565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611926612560565b73ffffffffffffffffffffffffffffffffffffffff16611944611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190614329565b60405180910390fd5b6119a460006129c7565b565b6119ae612560565b73ffffffffffffffffffffffffffffffffffffffff166119cc611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990614329565b60405180910390fd5b60005b81811015611a7157611a60601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a5b610dc8565b612a8d565b80611a6a906147c7565b9050611a25565b5050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ad490614764565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0090614764565b8015611b4d5780601f10611b2257610100808354040283529160200191611b4d565b820191906000526020600020905b815481529060010190602001808311611b3057829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b601160009054906101000a900460ff1615611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614349565b60405180910390fd5b6000611bc4610dc8565b905060008211611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090614429565b60405180910390fd5b600f54821115611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c45906142c9565b60405180910390fd5b600e548282611c5d9190614587565b1115611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c95906142a9565b60405180910390fd5b611ca6611a9b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e235760011515601160019054906101000a900460ff1615151415611dd257611cfd33610f1e565b611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390614409565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611d8f9190614587565b1115611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc7906141c9565b60405180910390fd5b505b81600d54611de0919061460e565b341015611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e19906143a9565b60405180910390fd5b5b6000600190505b828111611eae57601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e81906147c7565b9190505550611e9b338284611e969190614587565b612a8d565b8080611ea6906147c7565b915050611e2a565b505050565b611ebb612560565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614209565b60405180910390fd5b8060056000611f36612560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe3612560565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612028919061410c565b60405180910390a35050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61206b612065612560565b8361268d565b6120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a1906143c9565b60405180910390fd5b6120b684848484612aab565b50505050565b601281815481106120cc57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c805461210e90614764565b80601f016020809104026020016040519081016040528092919081815260200182805461213a90614764565b80156121875780601f1061215c57610100808354040283529160200191612187565b820191906000526020600020905b81548152906001019060200180831161216a57829003601f168201915b505050505081565b6060600b61219c83612b07565b600c6040516020016121b093929190614022565b6040516020818303038152906040529050919050565b6121ce612560565b73ffffffffffffffffffffffffffffffffffffffff166121ec611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614329565b60405180910390fd5b8060108190555050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ee612560565b73ffffffffffffffffffffffffffffffffffffffff1661230c611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990614329565b60405180910390fd5b60126000612370919061354a565b81816012919061238192919061356b565b505050565b61238e612560565b73ffffffffffffffffffffffffffffffffffffffff166123ac611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614329565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614189565b60405180910390fd5b61247b816129c7565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061254957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612559575061255882612c68565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264783611726565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061269882612568565b6126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614229565b60405180910390fd5b60006126e283611726565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275157508373ffffffffffffffffffffffffffffffffffffffff1661273984610c25565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276257506127618185612252565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278b82611726565b73ffffffffffffffffffffffffffffffffffffffff16146127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890614369565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906141e9565b60405180910390fd5b61285c838383612cd2565b6128676000826125d4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b79190614668565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290e9190614587565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aa7828260405180602001604052806000815250612de6565b5050565b612ab684848461276b565b612ac284848484612e41565b612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890614169565b60405180910390fd5b50505050565b60606000821415612b4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c63565b600082905060005b60008214612b81578080612b6a906147c7565b915050600a82612b7a91906145dd565b9150612b57565b60008167ffffffffffffffff811115612b9d57612b9c61492c565b5b6040519080825280601f01601f191660200182016040528015612bcf5781602001600182028036833780820191505090505b5090505b60008514612c5c57600182612be89190614668565b9150600a85612bf79190614810565b6030612c039190614587565b60f81b818381518110612c1957612c186148fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c5591906145dd565b9450612bd3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cdd838383612fd8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d2057612d1b81612fdd565b612d5f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d5e57612d5d8382613026565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612da257612d9d81613193565b612de1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612de057612ddf8282613264565b5b5b505050565b612df083836132e3565b612dfd6000848484612e41565b612e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3390614169565b60405180910390fd5b505050565b6000612e628473ffffffffffffffffffffffffffffffffffffffff166134b1565b15612fcb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e8b612560565b8786866040518563ffffffff1660e01b8152600401612ead949392919061409e565b602060405180830381600087803b158015612ec757600080fd5b505af1925050508015612ef857506040513d601f19601f82011682018060405250810190612ef59190613a31565b60015b612f7b573d8060008114612f28576040519150601f19603f3d011682016040523d82523d6000602084013e612f2d565b606091505b50600081511415612f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6a90614169565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fd0565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161303384611866565b61303d9190614668565b9050600060076000848152602001908152602001600020549050818114613122576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131a79190614668565b90506000600960008481526020019081526020016000205490506000600883815481106131d7576131d66148fd565b5b9060005260206000200154905080600883815481106131f9576131f86148fd565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613248576132476148ce565b5b6001900381819060005260206000200160009055905550505050565b600061326f83611866565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a906142e9565b60405180910390fd5b61335c81612568565b1561339c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613393906141a9565b60405180910390fd5b6133a860008383612cd2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f89190614587565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134d090614764565b90600052602060002090601f0160209004810192826134f25760008555613539565b82601f1061350b57805160ff1916838001178555613539565b82800160010185558215613539579182015b8281111561353857825182559160200191906001019061351d565b5b509050613546919061360b565b5090565b5080546000825590600052602060002090810190613568919061360b565b50565b8280548282559060005260206000209081019282156135fa579160200282015b828111156135f957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061358b565b5b509050613607919061360b565b5090565b5b8082111561362457600081600090555060010161360c565b5090565b600061363b61363684614489565b614464565b9050828152602081018484840111156136575761365661496a565b5b613662848285614722565b509392505050565b600061367d613678846144ba565b614464565b9050828152602081018484840111156136995761369861496a565b5b6136a4848285614722565b509392505050565b6000813590506136bb81614f79565b92915050565b60008083601f8401126136d7576136d6614960565b5b8235905067ffffffffffffffff8111156136f4576136f361495b565b5b6020830191508360208202830111156137105761370f614965565b5b9250929050565b60008135905061372681614f90565b92915050565b60008135905061373b81614fa7565b92915050565b60008151905061375081614fa7565b92915050565b600082601f83011261376b5761376a614960565b5b813561377b848260208601613628565b91505092915050565b600082601f83011261379957613798614960565b5b81356137a984826020860161366a565b91505092915050565b6000813590506137c181614fbe565b92915050565b6000602082840312156137dd576137dc614974565b5b60006137eb848285016136ac565b91505092915050565b6000806040838503121561380b5761380a614974565b5b6000613819858286016136ac565b925050602061382a858286016136ac565b9150509250929050565b60008060006060848603121561384d5761384c614974565b5b600061385b868287016136ac565b935050602061386c868287016136ac565b925050604061387d868287016137b2565b9150509250925092565b600080600080608085870312156138a1576138a0614974565b5b60006138af878288016136ac565b94505060206138c0878288016136ac565b93505060406138d1878288016137b2565b925050606085013567ffffffffffffffff8111156138f2576138f161496f565b5b6138fe87828801613756565b91505092959194509250565b6000806040838503121561392157613920614974565b5b600061392f858286016136ac565b925050602061394085828601613717565b9150509250929050565b6000806040838503121561396157613960614974565b5b600061396f858286016136ac565b9250506020613980858286016137b2565b9150509250929050565b600080602083850312156139a1576139a0614974565b5b600083013567ffffffffffffffff8111156139bf576139be61496f565b5b6139cb858286016136c1565b92509250509250929050565b6000602082840312156139ed576139ec614974565b5b60006139fb84828501613717565b91505092915050565b600060208284031215613a1a57613a19614974565b5b6000613a288482850161372c565b91505092915050565b600060208284031215613a4757613a46614974565b5b6000613a5584828501613741565b91505092915050565b600060208284031215613a7457613a73614974565b5b600082013567ffffffffffffffff811115613a9257613a9161496f565b5b613a9e84828501613784565b91505092915050565b600060208284031215613abd57613abc614974565b5b6000613acb848285016137b2565b91505092915050565b6000613ae08383614004565b60208301905092915050565b613af5816146ae565b82525050565b613b048161469c565b82525050565b6000613b1582614510565b613b1f818561453e565b9350613b2a836144eb565b8060005b83811015613b5b578151613b428882613ad4565b9750613b4d83614531565b925050600181019050613b2e565b5085935050505092915050565b613b71816146c0565b82525050565b6000613b828261451b565b613b8c818561454f565b9350613b9c818560208601614731565b613ba581614979565b840191505092915050565b6000613bbb82614526565b613bc5818561456b565b9350613bd5818560208601614731565b613bde81614979565b840191505092915050565b6000613bf482614526565b613bfe818561457c565b9350613c0e818560208601614731565b80840191505092915050565b60008154613c2781614764565b613c31818661457c565b94506001821660008114613c4c5760018114613c5d57613c90565b60ff19831686528186019350613c90565b613c66856144fb565b60005b83811015613c8857815481890152600182019150602081019050613c69565b838801955050505b50505092915050565b6000613ca6602b8361456b565b9150613cb18261498a565b604082019050919050565b6000613cc960328361456b565b9150613cd4826149d9565b604082019050919050565b6000613cec60268361456b565b9150613cf782614a28565b604082019050919050565b6000613d0f601c8361456b565b9150613d1a82614a77565b602082019050919050565b6000613d32601c8361456b565b9150613d3d82614aa0565b602082019050919050565b6000613d5560248361456b565b9150613d6082614ac9565b604082019050919050565b6000613d7860198361456b565b9150613d8382614b18565b602082019050919050565b6000613d9b602c8361456b565b9150613da682614b41565b604082019050919050565b6000613dbe60388361456b565b9150613dc982614b90565b604082019050919050565b6000613de1602a8361456b565b9150613dec82614bdf565b604082019050919050565b6000613e0460298361456b565b9150613e0f82614c2e565b604082019050919050565b6000613e2760168361456b565b9150613e3282614c7d565b602082019050919050565b6000613e4a60248361456b565b9150613e5582614ca6565b604082019050919050565b6000613e6d60208361456b565b9150613e7882614cf5565b602082019050919050565b6000613e90602c8361456b565b9150613e9b82614d1e565b604082019050919050565b6000613eb360208361456b565b9150613ebe82614d6d565b602082019050919050565b6000613ed660168361456b565b9150613ee182614d96565b602082019050919050565b6000613ef960298361456b565b9150613f0482614dbf565b604082019050919050565b6000613f1c60218361456b565b9150613f2782614e0e565b604082019050919050565b6000613f3f600083614560565b9150613f4a82614e5d565b600082019050919050565b6000613f6260128361456b565b9150613f6d82614e60565b602082019050919050565b6000613f8560318361456b565b9150613f9082614e89565b604082019050919050565b6000613fa8602c8361456b565b9150613fb382614ed8565b604082019050919050565b6000613fcb60178361456b565b9150613fd682614f27565b602082019050919050565b6000613fee601b8361456b565b9150613ff982614f50565b602082019050919050565b61400d81614718565b82525050565b61401c81614718565b82525050565b600061402e8286613c1a565b915061403a8285613be9565b91506140468284613c1a565b9150819050949350505050565b600061405e82613f32565b9150819050919050565b600060208201905061407d6000830184613afb565b92915050565b60006020820190506140986000830184613aec565b92915050565b60006080820190506140b36000830187613afb565b6140c06020830186613afb565b6140cd6040830185614013565b81810360608301526140df8184613b77565b905095945050505050565b600060208201905081810360008301526141048184613b0a565b905092915050565b60006020820190506141216000830184613b68565b92915050565b600060208201905081810360008301526141418184613bb0565b905092915050565b6000602082019050818103600083015261416281613c99565b9050919050565b6000602082019050818103600083015261418281613cbc565b9050919050565b600060208201905081810360008301526141a281613cdf565b9050919050565b600060208201905081810360008301526141c281613d02565b9050919050565b600060208201905081810360008301526141e281613d25565b9050919050565b6000602082019050818103600083015261420281613d48565b9050919050565b6000602082019050818103600083015261422281613d6b565b9050919050565b6000602082019050818103600083015261424281613d8e565b9050919050565b6000602082019050818103600083015261426281613db1565b9050919050565b6000602082019050818103600083015261428281613dd4565b9050919050565b600060208201905081810360008301526142a281613df7565b9050919050565b600060208201905081810360008301526142c281613e1a565b9050919050565b600060208201905081810360008301526142e281613e3d565b9050919050565b6000602082019050818103600083015261430281613e60565b9050919050565b6000602082019050818103600083015261432281613e83565b9050919050565b6000602082019050818103600083015261434281613ea6565b9050919050565b6000602082019050818103600083015261436281613ec9565b9050919050565b6000602082019050818103600083015261438281613eec565b9050919050565b600060208201905081810360008301526143a281613f0f565b9050919050565b600060208201905081810360008301526143c281613f55565b9050919050565b600060208201905081810360008301526143e281613f78565b9050919050565b6000602082019050818103600083015261440281613f9b565b9050919050565b6000602082019050818103600083015261442281613fbe565b9050919050565b6000602082019050818103600083015261444281613fe1565b9050919050565b600060208201905061445e6000830184614013565b92915050565b600061446e61447f565b905061447a8282614796565b919050565b6000604051905090565b600067ffffffffffffffff8211156144a4576144a361492c565b5b6144ad82614979565b9050602081019050919050565b600067ffffffffffffffff8211156144d5576144d461492c565b5b6144de82614979565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061459282614718565b915061459d83614718565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d2576145d1614841565b5b828201905092915050565b60006145e882614718565b91506145f383614718565b92508261460357614602614870565b5b828204905092915050565b600061461982614718565b915061462483614718565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561465d5761465c614841565b5b828202905092915050565b600061467382614718565b915061467e83614718565b92508282101561469157614690614841565b5b828203905092915050565b60006146a7826146f8565b9050919050565b60006146b9826146f8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561474f578082015181840152602081019050614734565b8381111561475e576000848401525b50505050565b6000600282049050600182168061477c57607f821691505b602082108114156147905761478f61489f565b5b50919050565b61479f82614979565b810181811067ffffffffffffffff821117156147be576147bd61492c565b5b80604052505050565b60006147d282614718565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561480557614804614841565b5b600182019050919050565b600061481b82614718565b915061482683614718565b92508261483657614835614870565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614f828161469c565b8114614f8d57600080fd5b50565b614f99816146c0565b8114614fa457600080fd5b50565b614fb0816146cc565b8114614fbb57600080fd5b50565b614fc781614718565b8114614fd257600080fd5b5056fea2646970667358221220879e2dec15a95973f464df3b43ca99da885974f2ebb941120178893eef50971c64736f6c63430008070033697066733a2f2f516d57435755686a67326e3637474648314c5732624a4c62366a424e6a6b55514561327870704d3933314d35556f2f
Deployed Bytecode
0x6080604052600436106102725760003560e01c80635e7366fb1161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610960578063d0eb26b01461099d578063d5abeb01146109c6578063e985e9c5146109f1578063edec5f2714610a2e578063f2fde38b14610a5757610272565b8063a22cb46514610850578063ab9c602514610879578063b88d4fde146108a4578063ba4e5c49146108cd578063ba7d2c761461090a578063c66828621461093557610272565b80637af66cec116101135780637af66cec1461075f578063849a49a5146107885780638da5cb5b146107b357806395d89b41146107de5780639c70b51214610809578063a0712d681461083457610272565b80635e7366fb146106785780636352211e146106a35780636c0360eb146106e057806370a082311461070b578063715018a61461074857610272565b8063344045eb116101e8578063438b6300116101ac578063438b63001461055657806344a0d68a146105935780634f6ccce7146105bc57806355c0c7ad146105f957806355f804b3146106245780635c975abb1461064d57610272565b8063344045eb146104925780633af32abf146104bd5780633c952764146104fa5780633ccfd60b1461052357806342842e0e1461052d57610272565b806313faede61161023a57806313faede61461036e57806318160ddd1461039957806318cae269146103c4578063239c70ae1461040157806323b872dd1461042c5780632f745c591461045557610272565b806301ffc9a71461027757806302329a29146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613a04565b610a80565b6040516102ab919061410c565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906139d7565b610afa565b005b3480156102e957600080fd5b506102f2610b93565b6040516102ff9190614127565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613aa7565b610c25565b60405161033c9190614068565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061394a565b610caa565b005b34801561037a57600080fd5b50610383610dc2565b6040516103909190614449565b60405180910390f35b3480156103a557600080fd5b506103ae610dc8565b6040516103bb9190614449565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906137c7565b610dd5565b6040516103f89190614449565b60405180910390f35b34801561040d57600080fd5b50610416610ded565b6040516104239190614449565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613834565b610df3565b005b34801561046157600080fd5b5061047c6004803603810190610477919061394a565b610e53565b6040516104899190614449565b60405180910390f35b34801561049e57600080fd5b506104a7610ef8565b6040516104b49190614083565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906137c7565b610f1e565b6040516104f1919061410c565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c91906139d7565b610fcd565b005b61052b611066565b005b34801561053957600080fd5b50610554600480360381019061054f9190613834565b61146c565b005b34801561056257600080fd5b5061057d600480360381019061057891906137c7565b61148c565b60405161058a91906140ea565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613aa7565b61153a565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613aa7565b6115c0565b6040516105f09190614449565b60405180910390f35b34801561060557600080fd5b5061060e611631565b60405161061b9190614083565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613a5e565b611657565b005b34801561065957600080fd5b506106626116ed565b60405161066f919061410c565b60405180910390f35b34801561068457600080fd5b5061068d611700565b60405161069a9190614083565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613aa7565b611726565b6040516106d79190614068565b60405180910390f35b3480156106ec57600080fd5b506106f56117d8565b6040516107029190614127565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906137c7565b611866565b60405161073f9190614449565b60405180910390f35b34801561075457600080fd5b5061075d61191e565b005b34801561076b57600080fd5b5061078660048036038101906107819190613aa7565b6119a6565b005b34801561079457600080fd5b5061079d611a75565b6040516107aa9190614083565b60405180910390f35b3480156107bf57600080fd5b506107c8611a9b565b6040516107d59190614068565b60405180910390f35b3480156107ea57600080fd5b506107f3611ac5565b6040516108009190614127565b60405180910390f35b34801561081557600080fd5b5061081e611b57565b60405161082b919061410c565b60405180910390f35b61084e60048036038101906108499190613aa7565b611b6a565b005b34801561085c57600080fd5b506108776004803603810190610872919061390a565b611eb3565b005b34801561088557600080fd5b5061088e612034565b60405161089b9190614083565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190613887565b61205a565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613aa7565b6120bc565b6040516109019190614068565b60405180910390f35b34801561091657600080fd5b5061091f6120fb565b60405161092c9190614449565b60405180910390f35b34801561094157600080fd5b5061094a612101565b6040516109579190614127565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613aa7565b61218f565b6040516109949190614127565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613aa7565b6121c6565b005b3480156109d257600080fd5b506109db61224c565b6040516109e89190614449565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a1391906137f4565b612252565b604051610a25919061410c565b60405180910390f35b348015610a3a57600080fd5b50610a556004803603810190610a50919061398a565b6122e6565b005b348015610a6357600080fd5b50610a7e6004803603810190610a7991906137c7565b612386565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af35750610af28261247e565b5b9050919050565b610b02612560565b73ffffffffffffffffffffffffffffffffffffffff16610b20611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614329565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610ba290614764565b80601f0160208091040260200160405190810160405280929190818152602001828054610bce90614764565b8015610c1b5780601f10610bf057610100808354040283529160200191610c1b565b820191906000526020600020905b815481529060010190602001808311610bfe57829003601f168201915b5050505050905090565b6000610c3082612568565b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614309565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb582611726565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90614389565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d45612560565b73ffffffffffffffffffffffffffffffffffffffff161480610d745750610d7381610d6e612560565b612252565b5b610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90614249565b60405180910390fd5b610dbd83836125d4565b505050565b600d5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b600f5481565b610e04610dfe612560565b8261268d565b610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906143c9565b60405180910390fd5b610e4e83838361276b565b505050565b6000610e5e83611866565b8210610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690614149565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600090505b601280549050811015610fc2578273ffffffffffffffffffffffffffffffffffffffff1660128281548110610f5e57610f5d6148fd565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610faf576001915050610fc8565b8080610fba906147c7565b915050610f26565b50600090505b919050565b610fd5612560565b73ffffffffffffffffffffffffffffffffffffffff16610ff3611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090614329565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b61106e612560565b73ffffffffffffffffffffffffffffffffffffffff1661108c611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614329565b60405180910390fd5b6000479050600081116110f457600080fd5b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606483603261113e919061460e565b61114891906145dd565b60405161115490614053565b60006040518083038185875af1925050503d8060008114611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b505090506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660648460196111e4919061460e565b6111ee91906145dd565b6040516111fa90614053565b60006040518083038185875af1925050503d8060008114611237576040519150601f19603f3d011682016040523d82523d6000602084013e61123c565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606485600561128a919061460e565b61129491906145dd565b6040516112a090614053565b60006040518083038185875af1925050503d80600081146112dd576040519150601f19603f3d011682016040523d82523d6000602084013e6112e2565b606091505b505090506000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606486600a611330919061460e565b61133a91906145dd565b60405161134690614053565b60006040518083038185875af1925050503d8060008114611383576040519150601f19603f3d011682016040523d82523d6000602084013e611388565b606091505b505090506000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606487600a6113d6919061460e565b6113e091906145dd565b6040516113ec90614053565b60006040518083038185875af1925050503d8060008114611429576040519150601f19603f3d011682016040523d82523d6000602084013e61142e565b606091505b505090508461143c57600080fd5b8361144657600080fd5b8261145057600080fd5b8161145a57600080fd5b8061146457600080fd5b505050505050565b6114878383836040518060200160405280600081525061205a565b505050565b6060600061149983611866565b905060008167ffffffffffffffff8111156114b7576114b661492c565b5b6040519080825280602002602001820160405280156114e55781602001602082028036833780820191505090505b50905060005b8281101561152f576114fd8582610e53565b8282815181106115105761150f6148fd565b5b6020026020010181815250508080611527906147c7565b9150506114eb565b508092505050919050565b611542612560565b73ffffffffffffffffffffffffffffffffffffffff16611560611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90614329565b60405180910390fd5b80600d8190555050565b60006115ca610dc8565b821061160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906143e9565b60405180910390fd5b6008828154811061161f5761161e6148fd565b5b90600052602060002001549050919050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61165f612560565b73ffffffffffffffffffffffffffffffffffffffff1661167d611a9b565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614329565b60405180910390fd5b80600b90805190602001906116e99291906134c4565b5050565b601160009054906101000a900460ff1681565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614289565b60405180910390fd5b80915050919050565b600b80546117e590614764565b80601f016020809104026020016040519081016040528092919081815260200182805461181190614764565b801561185e5780601f106118335761010080835404028352916020019161185e565b820191906000526020600020905b81548152906001019060200180831161184157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614269565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611926612560565b73ffffffffffffffffffffffffffffffffffffffff16611944611a9b565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190614329565b60405180910390fd5b6119a460006129c7565b565b6119ae612560565b73ffffffffffffffffffffffffffffffffffffffff166119cc611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990614329565b60405180910390fd5b60005b81811015611a7157611a60601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a5b610dc8565b612a8d565b80611a6a906147c7565b9050611a25565b5050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ad490614764565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0090614764565b8015611b4d5780601f10611b2257610100808354040283529160200191611b4d565b820191906000526020600020905b815481529060010190602001808311611b3057829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b601160009054906101000a900460ff1615611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614349565b60405180910390fd5b6000611bc4610dc8565b905060008211611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090614429565b60405180910390fd5b600f54821115611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c45906142c9565b60405180910390fd5b600e548282611c5d9190614587565b1115611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c95906142a9565b60405180910390fd5b611ca6611a9b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e235760011515601160019054906101000a900460ff1615151415611dd257611cfd33610f1e565b611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3390614409565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611d8f9190614587565b1115611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc7906141c9565b60405180910390fd5b505b81600d54611de0919061460e565b341015611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e19906143a9565b60405180910390fd5b5b6000600190505b828111611eae57601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e81906147c7565b9190505550611e9b338284611e969190614587565b612a8d565b8080611ea6906147c7565b915050611e2a565b505050565b611ebb612560565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614209565b60405180910390fd5b8060056000611f36612560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe3612560565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612028919061410c565b60405180910390a35050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61206b612065612560565b8361268d565b6120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a1906143c9565b60405180910390fd5b6120b684848484612aab565b50505050565b601281815481106120cc57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c805461210e90614764565b80601f016020809104026020016040519081016040528092919081815260200182805461213a90614764565b80156121875780601f1061215c57610100808354040283529160200191612187565b820191906000526020600020905b81548152906001019060200180831161216a57829003601f168201915b505050505081565b6060600b61219c83612b07565b600c6040516020016121b093929190614022565b6040516020818303038152906040529050919050565b6121ce612560565b73ffffffffffffffffffffffffffffffffffffffff166121ec611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614329565b60405180910390fd5b8060108190555050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ee612560565b73ffffffffffffffffffffffffffffffffffffffff1661230c611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990614329565b60405180910390fd5b60126000612370919061354a565b81816012919061238192919061356b565b505050565b61238e612560565b73ffffffffffffffffffffffffffffffffffffffff166123ac611a9b565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614329565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614189565b60405180910390fd5b61247b816129c7565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061254957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612559575061255882612c68565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661264783611726565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061269882612568565b6126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614229565b60405180910390fd5b60006126e283611726565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061275157508373ffffffffffffffffffffffffffffffffffffffff1661273984610c25565b73ffffffffffffffffffffffffffffffffffffffff16145b8061276257506127618185612252565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661278b82611726565b73ffffffffffffffffffffffffffffffffffffffff16146127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890614369565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906141e9565b60405180910390fd5b61285c838383612cd2565b6128676000826125d4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b79190614668565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290e9190614587565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aa7828260405180602001604052806000815250612de6565b5050565b612ab684848461276b565b612ac284848484612e41565b612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890614169565b60405180910390fd5b50505050565b60606000821415612b4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c63565b600082905060005b60008214612b81578080612b6a906147c7565b915050600a82612b7a91906145dd565b9150612b57565b60008167ffffffffffffffff811115612b9d57612b9c61492c565b5b6040519080825280601f01601f191660200182016040528015612bcf5781602001600182028036833780820191505090505b5090505b60008514612c5c57600182612be89190614668565b9150600a85612bf79190614810565b6030612c039190614587565b60f81b818381518110612c1957612c186148fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c5591906145dd565b9450612bd3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cdd838383612fd8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d2057612d1b81612fdd565b612d5f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d5e57612d5d8382613026565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612da257612d9d81613193565b612de1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612de057612ddf8282613264565b5b5b505050565b612df083836132e3565b612dfd6000848484612e41565b612e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3390614169565b60405180910390fd5b505050565b6000612e628473ffffffffffffffffffffffffffffffffffffffff166134b1565b15612fcb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e8b612560565b8786866040518563ffffffff1660e01b8152600401612ead949392919061409e565b602060405180830381600087803b158015612ec757600080fd5b505af1925050508015612ef857506040513d601f19601f82011682018060405250810190612ef59190613a31565b60015b612f7b573d8060008114612f28576040519150601f19603f3d011682016040523d82523d6000602084013e612f2d565b606091505b50600081511415612f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6a90614169565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fd0565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161303384611866565b61303d9190614668565b9050600060076000848152602001908152602001600020549050818114613122576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131a79190614668565b90506000600960008481526020019081526020016000205490506000600883815481106131d7576131d66148fd565b5b9060005260206000200154905080600883815481106131f9576131f86148fd565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613248576132476148ce565b5b6001900381819060005260206000200160009055905550505050565b600061326f83611866565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a906142e9565b60405180910390fd5b61335c81612568565b1561339c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613393906141a9565b60405180910390fd5b6133a860008383612cd2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f89190614587565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134d090614764565b90600052602060002090601f0160209004810192826134f25760008555613539565b82601f1061350b57805160ff1916838001178555613539565b82800160010185558215613539579182015b8281111561353857825182559160200191906001019061351d565b5b509050613546919061360b565b5090565b5080546000825590600052602060002090810190613568919061360b565b50565b8280548282559060005260206000209081019282156135fa579160200282015b828111156135f957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061358b565b5b509050613607919061360b565b5090565b5b8082111561362457600081600090555060010161360c565b5090565b600061363b61363684614489565b614464565b9050828152602081018484840111156136575761365661496a565b5b613662848285614722565b509392505050565b600061367d613678846144ba565b614464565b9050828152602081018484840111156136995761369861496a565b5b6136a4848285614722565b509392505050565b6000813590506136bb81614f79565b92915050565b60008083601f8401126136d7576136d6614960565b5b8235905067ffffffffffffffff8111156136f4576136f361495b565b5b6020830191508360208202830111156137105761370f614965565b5b9250929050565b60008135905061372681614f90565b92915050565b60008135905061373b81614fa7565b92915050565b60008151905061375081614fa7565b92915050565b600082601f83011261376b5761376a614960565b5b813561377b848260208601613628565b91505092915050565b600082601f83011261379957613798614960565b5b81356137a984826020860161366a565b91505092915050565b6000813590506137c181614fbe565b92915050565b6000602082840312156137dd576137dc614974565b5b60006137eb848285016136ac565b91505092915050565b6000806040838503121561380b5761380a614974565b5b6000613819858286016136ac565b925050602061382a858286016136ac565b9150509250929050565b60008060006060848603121561384d5761384c614974565b5b600061385b868287016136ac565b935050602061386c868287016136ac565b925050604061387d868287016137b2565b9150509250925092565b600080600080608085870312156138a1576138a0614974565b5b60006138af878288016136ac565b94505060206138c0878288016136ac565b93505060406138d1878288016137b2565b925050606085013567ffffffffffffffff8111156138f2576138f161496f565b5b6138fe87828801613756565b91505092959194509250565b6000806040838503121561392157613920614974565b5b600061392f858286016136ac565b925050602061394085828601613717565b9150509250929050565b6000806040838503121561396157613960614974565b5b600061396f858286016136ac565b9250506020613980858286016137b2565b9150509250929050565b600080602083850312156139a1576139a0614974565b5b600083013567ffffffffffffffff8111156139bf576139be61496f565b5b6139cb858286016136c1565b92509250509250929050565b6000602082840312156139ed576139ec614974565b5b60006139fb84828501613717565b91505092915050565b600060208284031215613a1a57613a19614974565b5b6000613a288482850161372c565b91505092915050565b600060208284031215613a4757613a46614974565b5b6000613a5584828501613741565b91505092915050565b600060208284031215613a7457613a73614974565b5b600082013567ffffffffffffffff811115613a9257613a9161496f565b5b613a9e84828501613784565b91505092915050565b600060208284031215613abd57613abc614974565b5b6000613acb848285016137b2565b91505092915050565b6000613ae08383614004565b60208301905092915050565b613af5816146ae565b82525050565b613b048161469c565b82525050565b6000613b1582614510565b613b1f818561453e565b9350613b2a836144eb565b8060005b83811015613b5b578151613b428882613ad4565b9750613b4d83614531565b925050600181019050613b2e565b5085935050505092915050565b613b71816146c0565b82525050565b6000613b828261451b565b613b8c818561454f565b9350613b9c818560208601614731565b613ba581614979565b840191505092915050565b6000613bbb82614526565b613bc5818561456b565b9350613bd5818560208601614731565b613bde81614979565b840191505092915050565b6000613bf482614526565b613bfe818561457c565b9350613c0e818560208601614731565b80840191505092915050565b60008154613c2781614764565b613c31818661457c565b94506001821660008114613c4c5760018114613c5d57613c90565b60ff19831686528186019350613c90565b613c66856144fb565b60005b83811015613c8857815481890152600182019150602081019050613c69565b838801955050505b50505092915050565b6000613ca6602b8361456b565b9150613cb18261498a565b604082019050919050565b6000613cc960328361456b565b9150613cd4826149d9565b604082019050919050565b6000613cec60268361456b565b9150613cf782614a28565b604082019050919050565b6000613d0f601c8361456b565b9150613d1a82614a77565b602082019050919050565b6000613d32601c8361456b565b9150613d3d82614aa0565b602082019050919050565b6000613d5560248361456b565b9150613d6082614ac9565b604082019050919050565b6000613d7860198361456b565b9150613d8382614b18565b602082019050919050565b6000613d9b602c8361456b565b9150613da682614b41565b604082019050919050565b6000613dbe60388361456b565b9150613dc982614b90565b604082019050919050565b6000613de1602a8361456b565b9150613dec82614bdf565b604082019050919050565b6000613e0460298361456b565b9150613e0f82614c2e565b604082019050919050565b6000613e2760168361456b565b9150613e3282614c7d565b602082019050919050565b6000613e4a60248361456b565b9150613e5582614ca6565b604082019050919050565b6000613e6d60208361456b565b9150613e7882614cf5565b602082019050919050565b6000613e90602c8361456b565b9150613e9b82614d1e565b604082019050919050565b6000613eb360208361456b565b9150613ebe82614d6d565b602082019050919050565b6000613ed660168361456b565b9150613ee182614d96565b602082019050919050565b6000613ef960298361456b565b9150613f0482614dbf565b604082019050919050565b6000613f1c60218361456b565b9150613f2782614e0e565b604082019050919050565b6000613f3f600083614560565b9150613f4a82614e5d565b600082019050919050565b6000613f6260128361456b565b9150613f6d82614e60565b602082019050919050565b6000613f8560318361456b565b9150613f9082614e89565b604082019050919050565b6000613fa8602c8361456b565b9150613fb382614ed8565b604082019050919050565b6000613fcb60178361456b565b9150613fd682614f27565b602082019050919050565b6000613fee601b8361456b565b9150613ff982614f50565b602082019050919050565b61400d81614718565b82525050565b61401c81614718565b82525050565b600061402e8286613c1a565b915061403a8285613be9565b91506140468284613c1a565b9150819050949350505050565b600061405e82613f32565b9150819050919050565b600060208201905061407d6000830184613afb565b92915050565b60006020820190506140986000830184613aec565b92915050565b60006080820190506140b36000830187613afb565b6140c06020830186613afb565b6140cd6040830185614013565b81810360608301526140df8184613b77565b905095945050505050565b600060208201905081810360008301526141048184613b0a565b905092915050565b60006020820190506141216000830184613b68565b92915050565b600060208201905081810360008301526141418184613bb0565b905092915050565b6000602082019050818103600083015261416281613c99565b9050919050565b6000602082019050818103600083015261418281613cbc565b9050919050565b600060208201905081810360008301526141a281613cdf565b9050919050565b600060208201905081810360008301526141c281613d02565b9050919050565b600060208201905081810360008301526141e281613d25565b9050919050565b6000602082019050818103600083015261420281613d48565b9050919050565b6000602082019050818103600083015261422281613d6b565b9050919050565b6000602082019050818103600083015261424281613d8e565b9050919050565b6000602082019050818103600083015261426281613db1565b9050919050565b6000602082019050818103600083015261428281613dd4565b9050919050565b600060208201905081810360008301526142a281613df7565b9050919050565b600060208201905081810360008301526142c281613e1a565b9050919050565b600060208201905081810360008301526142e281613e3d565b9050919050565b6000602082019050818103600083015261430281613e60565b9050919050565b6000602082019050818103600083015261432281613e83565b9050919050565b6000602082019050818103600083015261434281613ea6565b9050919050565b6000602082019050818103600083015261436281613ec9565b9050919050565b6000602082019050818103600083015261438281613eec565b9050919050565b600060208201905081810360008301526143a281613f0f565b9050919050565b600060208201905081810360008301526143c281613f55565b9050919050565b600060208201905081810360008301526143e281613f78565b9050919050565b6000602082019050818103600083015261440281613f9b565b9050919050565b6000602082019050818103600083015261442281613fbe565b9050919050565b6000602082019050818103600083015261444281613fe1565b9050919050565b600060208201905061445e6000830184614013565b92915050565b600061446e61447f565b905061447a8282614796565b919050565b6000604051905090565b600067ffffffffffffffff8211156144a4576144a361492c565b5b6144ad82614979565b9050602081019050919050565b600067ffffffffffffffff8211156144d5576144d461492c565b5b6144de82614979565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061459282614718565b915061459d83614718565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d2576145d1614841565b5b828201905092915050565b60006145e882614718565b91506145f383614718565b92508261460357614602614870565b5b828204905092915050565b600061461982614718565b915061462483614718565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561465d5761465c614841565b5b828202905092915050565b600061467382614718565b915061467e83614718565b92508282101561469157614690614841565b5b828203905092915050565b60006146a7826146f8565b9050919050565b60006146b9826146f8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561474f578082015181840152602081019050614734565b8381111561475e576000848401525b50505050565b6000600282049050600182168061477c57607f821691505b602082108114156147905761478f61489f565b5b50919050565b61479f82614979565b810181811067ffffffffffffffff821117156147be576147bd61492c565b5b80604052505050565b60006147d282614718565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561480557614804614841565b5b600182019050919050565b600061481b82614718565b915061482683614718565b92508261483657614835614870565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614f828161469c565b8114614f8d57600080fd5b50565b614f99816146c0565b8114614fa457600080fd5b50565b614fb0816146cc565b8114614fbb57600080fd5b50565b614fc781614718565b8114614fd257600080fd5b5056fea2646970667358221220879e2dec15a95973f464df3b43ca99da885974f2ebb941120178893eef50971c64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$490.50
Net Worth in ETH
0.247897
Token Allocations
ETH
80.76%
BNB
19.24%
POL
0.00%
Multichain Portfolio | 33 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.