ETH Price: $3,327.04 (-2.57%)

Contract

0x6FbBc8977616e0425911C69d72E12d32A5865560
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...212234772024-11-19 18:09:117 days ago1732039751IN
MetaGuardians: Villains Token
0 ETH0.0009732620.80999499
Set Approval For...209164062024-10-07 21:34:4750 days ago1728336887IN
MetaGuardians: Villains Token
0 ETH0.000731929.44454013
Set Approval For...208562102024-09-29 12:10:5958 days ago1727611859IN
MetaGuardians: Villains Token
0 ETH0.000285326.11162706
Set Approval For...208475322024-09-28 7:07:1159 days ago1727507231IN
MetaGuardians: Villains Token
0 ETH0.000337997.23994032
Set Approval For...207640142024-09-16 15:17:2371 days ago1726499843IN
MetaGuardians: Villains Token
0 ETH0.0002522610.14869215
Set Approval For...206763352024-09-04 9:31:1183 days ago1725442271IN
MetaGuardians: Villains Token
0 ETH0.000082951.77416074
Set Approval For...206140412024-08-26 16:44:3592 days ago1724690675IN
MetaGuardians: Villains Token
0 ETH0.000074232.76399232
Set Approval For...206140362024-08-26 16:43:3592 days ago1724690615IN
MetaGuardians: Villains Token
0 ETH0.000060362.42853731
Set Approval For...203912552024-07-26 14:15:11123 days ago1722003311IN
MetaGuardians: Villains Token
0 ETH0.000408718.75480217
Set Approval For...203712692024-07-23 19:17:23126 days ago1721762243IN
MetaGuardians: Villains Token
0 ETH0.000268655.7546365
Set Approval For...203628712024-07-22 15:09:23127 days ago1721660963IN
MetaGuardians: Villains Token
0 ETH0.0004886410.46685619
Set Approval For...203380062024-07-19 3:52:23130 days ago1721361143IN
MetaGuardians: Villains Token
0 ETH0.000253855.43754879
Set Approval For...203196302024-07-16 14:20:35133 days ago1721139635IN
MetaGuardians: Villains Token
0 ETH0.0003294313.29823973
Transfer From202064942024-06-30 19:08:47149 days ago1719774527IN
MetaGuardians: Villains Token
0 ETH0.000202643.4490458
Set Approval For...200979102024-06-15 14:52:47164 days ago1718463167IN
MetaGuardians: Villains Token
0 ETH0.000182476.81253743
Set Approval For...200979102024-06-15 14:52:47164 days ago1718463167IN
MetaGuardians: Villains Token
0 ETH0.000318046.81253743
Set Approval For...200932582024-06-14 23:13:47165 days ago1718406827IN
MetaGuardians: Villains Token
0 ETH0.000213344.56979389
Set Approval For...200532332024-06-09 9:00:23170 days ago1717923623IN
MetaGuardians: Villains Token
0 ETH0.000227294.86874643
Set Approval For...199842832024-05-30 17:56:11180 days ago1717091771IN
MetaGuardians: Villains Token
0 ETH0.0011561124.75151965
Set Approval For...199842832024-05-30 17:56:11180 days ago1717091771IN
MetaGuardians: Villains Token
0 ETH0.001157624.75151965
Set Approval For...199842832024-05-30 17:56:11180 days ago1717091771IN
MetaGuardians: Villains Token
0 ETH0.0011555224.75151965
Set Approval For...198781342024-05-15 21:41:23195 days ago1715809283IN
MetaGuardians: Villains Token
0 ETH0.000285426.11389335
Set Approval For...198694122024-05-14 16:26:59196 days ago1715704019IN
MetaGuardians: Villains Token
0 ETH0.000334527.16563553
Set Approval For...198693902024-05-14 16:22:35196 days ago1715703755IN
MetaGuardians: Villains Token
0 ETH0.000369997.91106117
Set Approval For...197567372024-04-28 22:16:47212 days ago1714342607IN
MetaGuardians: Villains Token
0 ETH0.00026615.69127428
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
136167432021-11-14 22:49:421108 days ago1636930182
MetaGuardians: Villains Token
35.28 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MetaVillains

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : MetaVillains.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MetaVillains is ERC721, Ownable { 
    
    bool public saleActive = false;
    bool public claimActive = false;

    string internal baseTokenURI;

    uint public price = 0.09 ether;
    uint public totalSupply = 10000;
    uint public mintSupply = 0;
    uint public claimSupply = 10000;
    uint public nonce = 0;
    uint public maxTx = 20;
    
    mapping(address => uint) public holders;
    
    event Mint(address owner, uint qty);
    event Withdraw(uint amount);
    
    struct Holders {
        address wallet;
        uint qty;
    }
    
    modifier onlyHolders() {
        require(holders[_msgSender()] > 0, "ONLY HOLDERS");
        _;
    }
    
    constructor() ERC721("MetaVillains", "METAV") {}
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setMintSupply(uint newSupply) external onlyOwner {
        mintSupply = newSupply;
    }

    function setClaimSupply(uint newSupply) external onlyOwner {
        claimSupply = newSupply;
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setClaimActive(bool val) public onlyOwner {
        claimActive = val;
    }
    
    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }

    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function buy(uint qty) external payable {
        require(saleActive, 'Sale is not active');
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        require(mintSupply >= qty, "Sold out");
        mintSupply -= qty;
        _create(_msgSender(), qty);
        emit Mint(_msgSender(), qty);
    }
    
    function addHolders(address[] calldata holders_, uint[] calldata qty) external onlyOwner {
        for(uint i=0; i< holders_.length; i++){
            holders[holders_[i]] = qty[i];
        }
    }
    
    function claimAll() external onlyHolders {
        require(claimActive, 'Claim is not active');
        uint qty = holders[_msgSender()];
        require(claimSupply > qty, "Claim over");
        require(nonce + qty <= totalSupply, "sold out");
        holders[_msgSender()] = 0;
        claimSupply -= qty;
        _create(_msgSender(), qty);
    }

    function claim(uint quantity) external onlyHolders {
        require(claimActive, 'Claim is not active');
        uint qty = holders[_msgSender()];
        require(claimSupply > quantity, "Claim over");
        require(nonce + quantity <= totalSupply, "sold out");
        require(quantity <= qty, "You can't claim that amount");
        holders[_msgSender()] -= quantity;
        claimSupply -= quantity;
        _create(_msgSender(), quantity);
    }
    
    function giveaway(address to, uint qty, bool fromHolders) external onlyOwner {
        require(nonce + qty <= totalSupply, "sold out");
        if(fromHolders){
             require(claimSupply >= qty, "Claim over");
             claimSupply -= qty;
        }
        _create(to,qty);
        
    }
    
    function _create(address to, uint qty) internal {
        for(uint i = 0; i < qty; i++){
            nonce++;
            _safeMint(to, nonce);
        }
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
}

File 2 of 11 : Ownable.sol
// 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);
    }
}

File 3 of 11 : ERC721.sol
// 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(to).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 {}
}

File 4 of 11 : IERC721.sol
// 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;
}

File 5 of 11 : IERC721Receiver.sol
// 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);
}

File 6 of 11 : IERC721Metadata.sol
// 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);
}

File 7 of 11 : Address.sol
// 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 11 : Context.sol
// 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;
    }
}

File 9 of 11 : Strings.sol
// 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);
    }
}

File 10 of 11 : ERC165.sol
// 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;
    }
}

File 11 of 11 : IERC165.sol
// 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);
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address[]","name":"holders_","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"addHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimSupply","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"}],"name":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bool","name":"fromHolders","type":"bool"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff02191690831515021790555067013fbe85edc900006008556127106009556000600a55612710600b556000600c556014600d553480156200006e57600080fd5b506040518060400160405280600c81526020017f4d65746156696c6c61696e7300000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d455441560000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f392919062000203565b5080600190805190602001906200010c92919062000203565b5050506200012f620001236200013560201b60201c565b6200013d60201b60201c565b62000318565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021190620002b3565b90600052602060002090601f01602090048101928262000235576000855562000281565b82601f106200025057805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028057825182559160200191906001019062000263565b5b50905062000290919062000294565b5090565b5b80821115620002af57600081600090555060010162000295565b5090565b60006002820490506001821680620002cc57607f821691505b60208210811415620002e357620002e2620002e9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6149f180620003286000396000f3fe60806040526004361061023b5760003560e01c806373417b091161012e578063affed0e0116100ab578063d4a6a2fd1161006f578063d4a6a2fd14610845578063d96a094a14610870578063e985e9c51461088c578063f2fde38b146108c9578063f7ea7a3d146108f25761023b565b8063affed0e014610774578063b88d4fde1461079f578063bc337182146107c8578063c87b56dd146107f1578063d1058e591461082e5761023b565b806391b7f5ed116100f257806391b7f5ed146106a357806395d89b41146106cc578063a035b1fe146106f7578063a22cb46514610722578063ac568e841461074b5761023b565b806373417b09146105d25780637437681e146105fb5780637d4437c014610626578063841718a61461064f5780638da5cb5b146106785761023b565b8063276f0934116101bc57806342842e0e1161018057806342842e0e146104ed5780636352211e1461051657806368428a1b1461055357806370a082311461057e578063715018a6146105bb5761023b565b8063276f09341461041e5780632a3e67fc1461045b57806330176e1314610484578063379607f5146104ad5780633ccfd60b146104d65761023b565b80630ad29ec3116102035780630ad29ec31461033957806318160ddd1461036457806318a5bbdc1461038f57806322e8d8cd146103cc57806323b872dd146103f55761023b565b806301ffc9a714610240578063045b7dca1461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613468565b61091b565b6040516102749190613af5565b60405180910390f35b34801561028957600080fd5b506102926109fd565b60405161029f9190613e72565b60405180910390f35b3480156102b457600080fd5b506102bd610a03565b6040516102ca9190613b10565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061350f565b610a95565b6040516103079190613a43565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613327565b610b1a565b005b34801561034557600080fd5b5061034e610c32565b60405161035b9190613e72565b60405180910390f35b34801561037057600080fd5b50610379610c38565b6040516103869190613e72565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b191906131a4565b610c3e565b6040516103c39190613e72565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee919061350f565b610c56565b005b34801561040157600080fd5b5061041c60048036038101906104179190613211565b610cdc565b005b34801561042a57600080fd5b50610445600480360381019061044091906131a4565b610d3c565b6040516104529190613ad3565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613367565b610e2a565b005b34801561049057600080fd5b506104ab60048036038101906104a691906134c2565b610f6c565b005b3480156104b957600080fd5b506104d460048036038101906104cf919061350f565b610ffe565b005b3480156104e257600080fd5b506104eb611285565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613211565b611351565b005b34801561052257600080fd5b5061053d6004803603810190610538919061350f565b611371565b60405161054a9190613a43565b60405180910390f35b34801561055f57600080fd5b50610568611423565b6040516105759190613af5565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906131a4565b611436565b6040516105b29190613e72565b60405180910390f35b3480156105c757600080fd5b506105d06114ee565b005b3480156105de57600080fd5b506105f960048036038101906105f4919061343b565b611576565b005b34801561060757600080fd5b5061061061160f565b60405161061d9190613e72565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906133ba565b611615565b005b34801561065b57600080fd5b506106766004803603810190610671919061343b565b61173d565b005b34801561068457600080fd5b5061068d6117d6565b60405161069a9190613a43565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061350f565b611800565b005b3480156106d857600080fd5b506106e1611886565b6040516106ee9190613b10565b60405180910390f35b34801561070357600080fd5b5061070c611918565b6040516107199190613e72565b60405180910390f35b34801561072e57600080fd5b50610749600480360381019061074491906132e7565b61191e565b005b34801561075757600080fd5b50610772600480360381019061076d919061350f565b611a9f565b005b34801561078057600080fd5b50610789611b25565b6040516107969190613e72565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613264565b611b2b565b005b3480156107d457600080fd5b506107ef60048036038101906107ea919061350f565b611b8d565b005b3480156107fd57600080fd5b506108186004803603810190610813919061350f565b611c13565b6040516108259190613b10565b60405180910390f35b34801561083a57600080fd5b50610843611cba565b005b34801561085157600080fd5b5061085a611eec565b6040516108679190613af5565b60405180910390f35b61088a6004803603810190610885919061350f565b611eff565b005b34801561089857600080fd5b506108b360048036038101906108ae91906131d1565b6120f1565b6040516108c09190613af5565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb91906131a4565b612185565b005b3480156108fe57600080fd5b506109196004803603810190610914919061350f565b61227d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f657506109f582612303565b5b9050919050565b600a5481565b606060008054610a129061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e9061412a565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa08261236d565b610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613d52565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2582611371565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90613dd2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb56123d9565b73ffffffffffffffffffffffffffffffffffffffff161480610be45750610be381610bde6123d9565b6120f1565b5b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613c92565b60405180910390fd5b610c2d83836123e1565b505050565b600b5481565b60095481565b600e6020528060005260406000206000915090505481565b610c5e6123d9565b73ffffffffffffffffffffffffffffffffffffffff16610c7c6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990613d72565b60405180910390fd5b80600b8190555050565b610ced610ce76123d9565b8261249a565b610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390613e12565b60405180910390fd5b610d37838383612578565b505050565b60606000610d4983611436565b67ffffffffffffffff811115610d6257610d616142c3565b5b604051908082528060200260200182016040528015610d905781602001602082028036833780820191505090505b5090506000805b600c54811015610e1f578473ffffffffffffffffffffffffffffffffffffffff16610dc182611371565b73ffffffffffffffffffffffffffffffffffffffff161415610e0c5780838381518110610df157610df0614294565b5b6020026020010181815250508180610e089061418d565b9250505b8080610e179061418d565b915050610d97565b508192505050919050565b610e326123d9565b73ffffffffffffffffffffffffffffffffffffffff16610e506117d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90613d72565b60405180910390fd5b60095482600c54610eb79190613f5f565b1115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613c72565b60405180910390fd5b8015610f5d5781600b541015610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613d12565b60405180910390fd5b81600b6000828254610f559190614040565b925050819055505b610f6783836127d4565b505050565b610f746123d9565b73ffffffffffffffffffffffffffffffffffffffff16610f926117d6565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613d72565b60405180910390fd5b818160079190610ff9929190612f26565b505050565b6000600e600061100c6123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613e52565b60405180910390fd5b600660159054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613d32565b60405180910390fd5b6000600e60006110e46123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081600b5411611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613d12565b60405180910390fd5b60095482600c546111769190613f5f565b11156111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90613c72565b60405180910390fd5b808211156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613b32565b60405180910390fd5b81600e60006112076123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112509190614040565b9250508190555081600b60008282546112699190614040565b9250508190555061128161127b6123d9565b836127d4565b5050565b61128d6123d9565b73ffffffffffffffffffffffffffffffffffffffff166112ab6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890613d72565b60405180910390fd5b6113096123d9565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561134e573d6000803e3d6000fd5b50565b61136c83838360405180602001604052806000815250611b2b565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613cd2565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613cb2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f66123d9565b73ffffffffffffffffffffffffffffffffffffffff166115146117d6565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613d72565b60405180910390fd5b611574600061281b565b565b61157e6123d9565b73ffffffffffffffffffffffffffffffffffffffff1661159c6117d6565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613d72565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600d5481565b61161d6123d9565b73ffffffffffffffffffffffffffffffffffffffff1661163b6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613d72565b60405180910390fd5b60005b84849050811015611736578282828181106116b2576116b1614294565b5b90506020020135600e60008787858181106116d0576116cf614294565b5b90506020020160208101906116e591906131a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061172e9061418d565b915050611694565b5050505050565b6117456123d9565b73ffffffffffffffffffffffffffffffffffffffff166117636117d6565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613d72565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118086123d9565b73ffffffffffffffffffffffffffffffffffffffff166118266117d6565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613d72565b60405180910390fd5b8060088190555050565b6060600180546118959061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546118c19061412a565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b5050505050905090565b60085481565b6119266123d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613c12565b60405180910390fd5b80600560006119a16123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a4e6123d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a939190613af5565b60405180910390a35050565b611aa76123d9565b73ffffffffffffffffffffffffffffffffffffffff16611ac56117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613d72565b60405180910390fd5b80600a8190555050565b600c5481565b611b3c611b366123d9565b8361249a565b611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613e12565b60405180910390fd5b611b87848484846128e1565b50505050565b611b956123d9565b73ffffffffffffffffffffffffffffffffffffffff16611bb36117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090613d72565b60405180910390fd5b80600d8190555050565b6060611c1e8261236d565b611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613db2565b60405180910390fd5b6000611c6761293d565b90506000815111611c875760405180602001604052806000815250611cb2565b80611c91846129cf565b604051602001611ca2929190613a1f565b6040516020818303038152906040525b915050919050565b6000600e6000611cc86123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613e52565b60405180910390fd5b600660159054906101000a900460ff16611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613d32565b60405180910390fd5b6000600e6000611da06123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600b5411611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613d12565b60405180910390fd5b60095481600c54611e329190613f5f565b1115611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90613c72565b60405180910390fd5b6000600e6000611e816123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b6000828254611ed19190614040565b92505081905550611ee9611ee36123d9565b826127d4565b50565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613c32565b60405180910390fd5b600d5481111580611f5f5750600181105b611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590613bb2565b60405180910390fd5b600954600c5482611faf9190613f5f565b1115611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613df2565b60405180910390fd5b80600854611ffe9190613fe6565b341461203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613bd2565b60405180910390fd5b80600a541015612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613e32565b60405180910390fd5b80600a60008282546120969190614040565b925050819055506120ae6120a86123d9565b826127d4565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856120d76123d9565b826040516120e6929190613aaa565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61218d6123d9565b73ffffffffffffffffffffffffffffffffffffffff166121ab6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890613d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890613b72565b60405180910390fd5b61227a8161281b565b50565b6122856123d9565b73ffffffffffffffffffffffffffffffffffffffff166122a36117d6565b73ffffffffffffffffffffffffffffffffffffffff16146122f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f090613d72565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661245483611371565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124a58261236d565b6124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90613c52565b60405180910390fd5b60006124ef83611371565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061255e57508373ffffffffffffffffffffffffffffffffffffffff1661254684610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b8061256f575061256e81856120f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661259882611371565b73ffffffffffffffffffffffffffffffffffffffff16146125ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e590613d92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590613bf2565b60405180910390fd5b612669838383612b30565b6126746000826123e1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c49190614040565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271b9190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b8181101561281657600c60008154809291906127f29061418d565b919050555061280383600c54612b35565b808061280e9061418d565b9150506127d7565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128ec848484612578565b6128f884848484612b53565b612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90613b52565b60405180910390fd5b50505050565b60606007805461294c9061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546129789061412a565b80156129c55780601f1061299a576101008083540402835291602001916129c5565b820191906000526020600020905b8154815290600101906020018083116129a857829003601f168201915b5050505050905090565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b2b565b600082905060005b60008214612a49578080612a329061418d565b915050600a82612a429190613fb5565b9150612a1f565b60008167ffffffffffffffff811115612a6557612a646142c3565b5b6040519080825280601f01601f191660200182016040528015612a975781602001600182028036833780820191505090505b5090505b60008514612b2457600182612ab09190614040565b9150600a85612abf91906141d6565b6030612acb9190613f5f565b60f81b818381518110612ae157612ae0614294565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1d9190613fb5565b9450612a9b565b8093505050505b919050565b505050565b612b4f828260405180602001604052806000815250612cea565b5050565b6000612b748473ffffffffffffffffffffffffffffffffffffffff16612d45565b15612cdd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9d6123d9565b8786866040518563ffffffff1660e01b8152600401612bbf9493929190613a5e565b602060405180830381600087803b158015612bd957600080fd5b505af1925050508015612c0a57506040513d601f19601f82011682018060405250810190612c079190613495565b60015b612c8d573d8060008114612c3a576040519150601f19603f3d011682016040523d82523d6000602084013e612c3f565b606091505b50600081511415612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90613b52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ce2565b600190505b949350505050565b612cf48383612d58565b612d016000848484612b53565b612d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3790613b52565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf90613cf2565b60405180910390fd5b612dd18161236d565b15612e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0890613b92565b60405180910390fd5b612e1d60008383612b30565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e6d9190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f329061412a565b90600052602060002090601f016020900481019282612f545760008555612f9b565b82601f10612f6d57803560ff1916838001178555612f9b565b82800160010185558215612f9b579182015b82811115612f9a578235825591602001919060010190612f7f565b5b509050612fa89190612fac565b5090565b5b80821115612fc5576000816000905550600101612fad565b5090565b6000612fdc612fd784613eb2565b613e8d565b905082815260208101848484011115612ff857612ff7614301565b5b6130038482856140e8565b509392505050565b60008135905061301a8161495f565b92915050565b60008083601f840112613036576130356142f7565b5b8235905067ffffffffffffffff811115613053576130526142f2565b5b60208301915083602082028301111561306f5761306e6142fc565b5b9250929050565b60008083601f84011261308c5761308b6142f7565b5b8235905067ffffffffffffffff8111156130a9576130a86142f2565b5b6020830191508360208202830111156130c5576130c46142fc565b5b9250929050565b6000813590506130db81614976565b92915050565b6000813590506130f08161498d565b92915050565b6000815190506131058161498d565b92915050565b600082601f8301126131205761311f6142f7565b5b8135613130848260208601612fc9565b91505092915050565b60008083601f84011261314f5761314e6142f7565b5b8235905067ffffffffffffffff81111561316c5761316b6142f2565b5b602083019150836001820283011115613188576131876142fc565b5b9250929050565b60008135905061319e816149a4565b92915050565b6000602082840312156131ba576131b961430b565b5b60006131c88482850161300b565b91505092915050565b600080604083850312156131e8576131e761430b565b5b60006131f68582860161300b565b92505060206132078582860161300b565b9150509250929050565b60008060006060848603121561322a5761322961430b565b5b60006132388682870161300b565b93505060206132498682870161300b565b925050604061325a8682870161318f565b9150509250925092565b6000806000806080858703121561327e5761327d61430b565b5b600061328c8782880161300b565b945050602061329d8782880161300b565b93505060406132ae8782880161318f565b925050606085013567ffffffffffffffff8111156132cf576132ce614306565b5b6132db8782880161310b565b91505092959194509250565b600080604083850312156132fe576132fd61430b565b5b600061330c8582860161300b565b925050602061331d858286016130cc565b9150509250929050565b6000806040838503121561333e5761333d61430b565b5b600061334c8582860161300b565b925050602061335d8582860161318f565b9150509250929050565b6000806000606084860312156133805761337f61430b565b5b600061338e8682870161300b565b935050602061339f8682870161318f565b92505060406133b0868287016130cc565b9150509250925092565b600080600080604085870312156133d4576133d361430b565b5b600085013567ffffffffffffffff8111156133f2576133f1614306565b5b6133fe87828801613020565b9450945050602085013567ffffffffffffffff81111561342157613420614306565b5b61342d87828801613076565b925092505092959194509250565b6000602082840312156134515761345061430b565b5b600061345f848285016130cc565b91505092915050565b60006020828403121561347e5761347d61430b565b5b600061348c848285016130e1565b91505092915050565b6000602082840312156134ab576134aa61430b565b5b60006134b9848285016130f6565b91505092915050565b600080602083850312156134d9576134d861430b565b5b600083013567ffffffffffffffff8111156134f7576134f6614306565b5b61350385828601613139565b92509250509250929050565b6000602082840312156135255761352461430b565b5b60006135338482850161318f565b91505092915050565b60006135488383613a01565b60208301905092915050565b61355d81614074565b82525050565b600061356e82613ef3565b6135788185613f21565b935061358383613ee3565b8060005b838110156135b457815161359b888261353c565b97506135a683613f14565b925050600181019050613587565b5085935050505092915050565b6135ca81614086565b82525050565b60006135db82613efe565b6135e58185613f32565b93506135f58185602086016140f7565b6135fe81614310565b840191505092915050565b600061361482613f09565b61361e8185613f43565b935061362e8185602086016140f7565b61363781614310565b840191505092915050565b600061364d82613f09565b6136578185613f54565b93506136678185602086016140f7565b80840191505092915050565b6000613680601b83613f43565b915061368b82614321565b602082019050919050565b60006136a3603283613f43565b91506136ae8261434a565b604082019050919050565b60006136c6602683613f43565b91506136d182614399565b604082019050919050565b60006136e9601c83613f43565b91506136f4826143e8565b602082019050919050565b600061370c602483613f43565b915061371782614411565b604082019050919050565b600061372f601683613f43565b915061373a82614460565b602082019050919050565b6000613752602483613f43565b915061375d82614489565b604082019050919050565b6000613775601983613f43565b9150613780826144d8565b602082019050919050565b6000613798601283613f43565b91506137a382614501565b602082019050919050565b60006137bb602c83613f43565b91506137c68261452a565b604082019050919050565b60006137de600883613f43565b91506137e982614579565b602082019050919050565b6000613801603883613f43565b915061380c826145a2565b604082019050919050565b6000613824602a83613f43565b915061382f826145f1565b604082019050919050565b6000613847602983613f43565b915061385282614640565b604082019050919050565b600061386a602083613f43565b91506138758261468f565b602082019050919050565b600061388d600a83613f43565b9150613898826146b8565b602082019050919050565b60006138b0601383613f43565b91506138bb826146e1565b602082019050919050565b60006138d3602c83613f43565b91506138de8261470a565b604082019050919050565b60006138f6602083613f43565b915061390182614759565b602082019050919050565b6000613919602983613f43565b915061392482614782565b604082019050919050565b600061393c602f83613f43565b9150613947826147d1565b604082019050919050565b600061395f602183613f43565b915061396a82614820565b604082019050919050565b6000613982602183613f43565b915061398d8261486f565b604082019050919050565b60006139a5603183613f43565b91506139b0826148be565b604082019050919050565b60006139c8600883613f43565b91506139d38261490d565b602082019050919050565b60006139eb600c83613f43565b91506139f682614936565b602082019050919050565b613a0a816140de565b82525050565b613a19816140de565b82525050565b6000613a2b8285613642565b9150613a378284613642565b91508190509392505050565b6000602082019050613a586000830184613554565b92915050565b6000608082019050613a736000830187613554565b613a806020830186613554565b613a8d6040830185613a10565b8181036060830152613a9f81846135d0565b905095945050505050565b6000604082019050613abf6000830185613554565b613acc6020830184613a10565b9392505050565b60006020820190508181036000830152613aed8184613563565b905092915050565b6000602082019050613b0a60008301846135c1565b92915050565b60006020820190508181036000830152613b2a8184613609565b905092915050565b60006020820190508181036000830152613b4b81613673565b9050919050565b60006020820190508181036000830152613b6b81613696565b9050919050565b60006020820190508181036000830152613b8b816136b9565b9050919050565b60006020820190508181036000830152613bab816136dc565b9050919050565b60006020820190508181036000830152613bcb816136ff565b9050919050565b60006020820190508181036000830152613beb81613722565b9050919050565b60006020820190508181036000830152613c0b81613745565b9050919050565b60006020820190508181036000830152613c2b81613768565b9050919050565b60006020820190508181036000830152613c4b8161378b565b9050919050565b60006020820190508181036000830152613c6b816137ae565b9050919050565b60006020820190508181036000830152613c8b816137d1565b9050919050565b60006020820190508181036000830152613cab816137f4565b9050919050565b60006020820190508181036000830152613ccb81613817565b9050919050565b60006020820190508181036000830152613ceb8161383a565b9050919050565b60006020820190508181036000830152613d0b8161385d565b9050919050565b60006020820190508181036000830152613d2b81613880565b9050919050565b60006020820190508181036000830152613d4b816138a3565b9050919050565b60006020820190508181036000830152613d6b816138c6565b9050919050565b60006020820190508181036000830152613d8b816138e9565b9050919050565b60006020820190508181036000830152613dab8161390c565b9050919050565b60006020820190508181036000830152613dcb8161392f565b9050919050565b60006020820190508181036000830152613deb81613952565b9050919050565b60006020820190508181036000830152613e0b81613975565b9050919050565b60006020820190508181036000830152613e2b81613998565b9050919050565b60006020820190508181036000830152613e4b816139bb565b9050919050565b60006020820190508181036000830152613e6b816139de565b9050919050565b6000602082019050613e876000830184613a10565b92915050565b6000613e97613ea8565b9050613ea3828261415c565b919050565b6000604051905090565b600067ffffffffffffffff821115613ecd57613ecc6142c3565b5b613ed682614310565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f6a826140de565b9150613f75836140de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613faa57613fa9614207565b5b828201905092915050565b6000613fc0826140de565b9150613fcb836140de565b925082613fdb57613fda614236565b5b828204905092915050565b6000613ff1826140de565b9150613ffc836140de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403557614034614207565b5b828202905092915050565b600061404b826140de565b9150614056836140de565b92508282101561406957614068614207565b5b828203905092915050565b600061407f826140be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141155780820151818401526020810190506140fa565b83811115614124576000848401525b50505050565b6000600282049050600182168061414257607f821691505b6020821081141561415657614155614265565b5b50919050565b61416582614310565b810181811067ffffffffffffffff82111715614184576141836142c3565b5b80604052505050565b6000614198826140de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141cb576141ca614207565b5b600182019050919050565b60006141e1826140de565b91506141ec836140de565b9250826141fc576141fb614236565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f752063616e277420636c61696d207468617420616d6f756e740000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436c61696d206f76657200000000000000000000000000000000000000000000600082015250565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4f4e4c5920484f4c444552530000000000000000000000000000000000000000600082015250565b61496881614074565b811461497357600080fd5b50565b61497f81614086565b811461498a57600080fd5b50565b61499681614092565b81146149a157600080fd5b50565b6149ad816140de565b81146149b857600080fd5b5056fea26469706673582212209d40a9be50c0301b909df73294e90359e62df30a391689f30effb8357d77d78564736f6c63430008060033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806373417b091161012e578063affed0e0116100ab578063d4a6a2fd1161006f578063d4a6a2fd14610845578063d96a094a14610870578063e985e9c51461088c578063f2fde38b146108c9578063f7ea7a3d146108f25761023b565b8063affed0e014610774578063b88d4fde1461079f578063bc337182146107c8578063c87b56dd146107f1578063d1058e591461082e5761023b565b806391b7f5ed116100f257806391b7f5ed146106a357806395d89b41146106cc578063a035b1fe146106f7578063a22cb46514610722578063ac568e841461074b5761023b565b806373417b09146105d25780637437681e146105fb5780637d4437c014610626578063841718a61461064f5780638da5cb5b146106785761023b565b8063276f0934116101bc57806342842e0e1161018057806342842e0e146104ed5780636352211e1461051657806368428a1b1461055357806370a082311461057e578063715018a6146105bb5761023b565b8063276f09341461041e5780632a3e67fc1461045b57806330176e1314610484578063379607f5146104ad5780633ccfd60b146104d65761023b565b80630ad29ec3116102035780630ad29ec31461033957806318160ddd1461036457806318a5bbdc1461038f57806322e8d8cd146103cc57806323b872dd146103f55761023b565b806301ffc9a714610240578063045b7dca1461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613468565b61091b565b6040516102749190613af5565b60405180910390f35b34801561028957600080fd5b506102926109fd565b60405161029f9190613e72565b60405180910390f35b3480156102b457600080fd5b506102bd610a03565b6040516102ca9190613b10565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061350f565b610a95565b6040516103079190613a43565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613327565b610b1a565b005b34801561034557600080fd5b5061034e610c32565b60405161035b9190613e72565b60405180910390f35b34801561037057600080fd5b50610379610c38565b6040516103869190613e72565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b191906131a4565b610c3e565b6040516103c39190613e72565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee919061350f565b610c56565b005b34801561040157600080fd5b5061041c60048036038101906104179190613211565b610cdc565b005b34801561042a57600080fd5b50610445600480360381019061044091906131a4565b610d3c565b6040516104529190613ad3565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613367565b610e2a565b005b34801561049057600080fd5b506104ab60048036038101906104a691906134c2565b610f6c565b005b3480156104b957600080fd5b506104d460048036038101906104cf919061350f565b610ffe565b005b3480156104e257600080fd5b506104eb611285565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613211565b611351565b005b34801561052257600080fd5b5061053d6004803603810190610538919061350f565b611371565b60405161054a9190613a43565b60405180910390f35b34801561055f57600080fd5b50610568611423565b6040516105759190613af5565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906131a4565b611436565b6040516105b29190613e72565b60405180910390f35b3480156105c757600080fd5b506105d06114ee565b005b3480156105de57600080fd5b506105f960048036038101906105f4919061343b565b611576565b005b34801561060757600080fd5b5061061061160f565b60405161061d9190613e72565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906133ba565b611615565b005b34801561065b57600080fd5b506106766004803603810190610671919061343b565b61173d565b005b34801561068457600080fd5b5061068d6117d6565b60405161069a9190613a43565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061350f565b611800565b005b3480156106d857600080fd5b506106e1611886565b6040516106ee9190613b10565b60405180910390f35b34801561070357600080fd5b5061070c611918565b6040516107199190613e72565b60405180910390f35b34801561072e57600080fd5b50610749600480360381019061074491906132e7565b61191e565b005b34801561075757600080fd5b50610772600480360381019061076d919061350f565b611a9f565b005b34801561078057600080fd5b50610789611b25565b6040516107969190613e72565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613264565b611b2b565b005b3480156107d457600080fd5b506107ef60048036038101906107ea919061350f565b611b8d565b005b3480156107fd57600080fd5b506108186004803603810190610813919061350f565b611c13565b6040516108259190613b10565b60405180910390f35b34801561083a57600080fd5b50610843611cba565b005b34801561085157600080fd5b5061085a611eec565b6040516108679190613af5565b60405180910390f35b61088a6004803603810190610885919061350f565b611eff565b005b34801561089857600080fd5b506108b360048036038101906108ae91906131d1565b6120f1565b6040516108c09190613af5565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb91906131a4565b612185565b005b3480156108fe57600080fd5b506109196004803603810190610914919061350f565b61227d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f657506109f582612303565b5b9050919050565b600a5481565b606060008054610a129061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e9061412a565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa08261236d565b610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690613d52565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2582611371565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90613dd2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb56123d9565b73ffffffffffffffffffffffffffffffffffffffff161480610be45750610be381610bde6123d9565b6120f1565b5b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613c92565b60405180910390fd5b610c2d83836123e1565b505050565b600b5481565b60095481565b600e6020528060005260406000206000915090505481565b610c5e6123d9565b73ffffffffffffffffffffffffffffffffffffffff16610c7c6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990613d72565b60405180910390fd5b80600b8190555050565b610ced610ce76123d9565b8261249a565b610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390613e12565b60405180910390fd5b610d37838383612578565b505050565b60606000610d4983611436565b67ffffffffffffffff811115610d6257610d616142c3565b5b604051908082528060200260200182016040528015610d905781602001602082028036833780820191505090505b5090506000805b600c54811015610e1f578473ffffffffffffffffffffffffffffffffffffffff16610dc182611371565b73ffffffffffffffffffffffffffffffffffffffff161415610e0c5780838381518110610df157610df0614294565b5b6020026020010181815250508180610e089061418d565b9250505b8080610e179061418d565b915050610d97565b508192505050919050565b610e326123d9565b73ffffffffffffffffffffffffffffffffffffffff16610e506117d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90613d72565b60405180910390fd5b60095482600c54610eb79190613f5f565b1115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613c72565b60405180910390fd5b8015610f5d5781600b541015610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613d12565b60405180910390fd5b81600b6000828254610f559190614040565b925050819055505b610f6783836127d4565b505050565b610f746123d9565b73ffffffffffffffffffffffffffffffffffffffff16610f926117d6565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613d72565b60405180910390fd5b818160079190610ff9929190612f26565b505050565b6000600e600061100c6123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613e52565b60405180910390fd5b600660159054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613d32565b60405180910390fd5b6000600e60006110e46123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081600b5411611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613d12565b60405180910390fd5b60095482600c546111769190613f5f565b11156111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90613c72565b60405180910390fd5b808211156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613b32565b60405180910390fd5b81600e60006112076123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112509190614040565b9250508190555081600b60008282546112699190614040565b9250508190555061128161127b6123d9565b836127d4565b5050565b61128d6123d9565b73ffffffffffffffffffffffffffffffffffffffff166112ab6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890613d72565b60405180910390fd5b6113096123d9565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561134e573d6000803e3d6000fd5b50565b61136c83838360405180602001604052806000815250611b2b565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613cd2565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613cb2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f66123d9565b73ffffffffffffffffffffffffffffffffffffffff166115146117d6565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613d72565b60405180910390fd5b611574600061281b565b565b61157e6123d9565b73ffffffffffffffffffffffffffffffffffffffff1661159c6117d6565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613d72565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600d5481565b61161d6123d9565b73ffffffffffffffffffffffffffffffffffffffff1661163b6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613d72565b60405180910390fd5b60005b84849050811015611736578282828181106116b2576116b1614294565b5b90506020020135600e60008787858181106116d0576116cf614294565b5b90506020020160208101906116e591906131a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061172e9061418d565b915050611694565b5050505050565b6117456123d9565b73ffffffffffffffffffffffffffffffffffffffff166117636117d6565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613d72565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118086123d9565b73ffffffffffffffffffffffffffffffffffffffff166118266117d6565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613d72565b60405180910390fd5b8060088190555050565b6060600180546118959061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546118c19061412a565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b5050505050905090565b60085481565b6119266123d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613c12565b60405180910390fd5b80600560006119a16123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a4e6123d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a939190613af5565b60405180910390a35050565b611aa76123d9565b73ffffffffffffffffffffffffffffffffffffffff16611ac56117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613d72565b60405180910390fd5b80600a8190555050565b600c5481565b611b3c611b366123d9565b8361249a565b611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613e12565b60405180910390fd5b611b87848484846128e1565b50505050565b611b956123d9565b73ffffffffffffffffffffffffffffffffffffffff16611bb36117d6565b73ffffffffffffffffffffffffffffffffffffffff1614611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090613d72565b60405180910390fd5b80600d8190555050565b6060611c1e8261236d565b611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613db2565b60405180910390fd5b6000611c6761293d565b90506000815111611c875760405180602001604052806000815250611cb2565b80611c91846129cf565b604051602001611ca2929190613a1f565b6040516020818303038152906040525b915050919050565b6000600e6000611cc86123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613e52565b60405180910390fd5b600660159054906101000a900460ff16611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613d32565b60405180910390fd5b6000600e6000611da06123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600b5411611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613d12565b60405180910390fd5b60095481600c54611e329190613f5f565b1115611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90613c72565b60405180910390fd5b6000600e6000611e816123d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b6000828254611ed19190614040565b92505081905550611ee9611ee36123d9565b826127d4565b50565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613c32565b60405180910390fd5b600d5481111580611f5f5750600181105b611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590613bb2565b60405180910390fd5b600954600c5482611faf9190613f5f565b1115611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613df2565b60405180910390fd5b80600854611ffe9190613fe6565b341461203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613bd2565b60405180910390fd5b80600a541015612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613e32565b60405180910390fd5b80600a60008282546120969190614040565b925050819055506120ae6120a86123d9565b826127d4565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856120d76123d9565b826040516120e6929190613aaa565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61218d6123d9565b73ffffffffffffffffffffffffffffffffffffffff166121ab6117d6565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890613d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890613b72565b60405180910390fd5b61227a8161281b565b50565b6122856123d9565b73ffffffffffffffffffffffffffffffffffffffff166122a36117d6565b73ffffffffffffffffffffffffffffffffffffffff16146122f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f090613d72565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661245483611371565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124a58261236d565b6124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90613c52565b60405180910390fd5b60006124ef83611371565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061255e57508373ffffffffffffffffffffffffffffffffffffffff1661254684610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b8061256f575061256e81856120f1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661259882611371565b73ffffffffffffffffffffffffffffffffffffffff16146125ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e590613d92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590613bf2565b60405180910390fd5b612669838383612b30565b6126746000826123e1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c49190614040565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271b9190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b8181101561281657600c60008154809291906127f29061418d565b919050555061280383600c54612b35565b808061280e9061418d565b9150506127d7565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128ec848484612578565b6128f884848484612b53565b612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90613b52565b60405180910390fd5b50505050565b60606007805461294c9061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546129789061412a565b80156129c55780601f1061299a576101008083540402835291602001916129c5565b820191906000526020600020905b8154815290600101906020018083116129a857829003601f168201915b5050505050905090565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b2b565b600082905060005b60008214612a49578080612a329061418d565b915050600a82612a429190613fb5565b9150612a1f565b60008167ffffffffffffffff811115612a6557612a646142c3565b5b6040519080825280601f01601f191660200182016040528015612a975781602001600182028036833780820191505090505b5090505b60008514612b2457600182612ab09190614040565b9150600a85612abf91906141d6565b6030612acb9190613f5f565b60f81b818381518110612ae157612ae0614294565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1d9190613fb5565b9450612a9b565b8093505050505b919050565b505050565b612b4f828260405180602001604052806000815250612cea565b5050565b6000612b748473ffffffffffffffffffffffffffffffffffffffff16612d45565b15612cdd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9d6123d9565b8786866040518563ffffffff1660e01b8152600401612bbf9493929190613a5e565b602060405180830381600087803b158015612bd957600080fd5b505af1925050508015612c0a57506040513d601f19601f82011682018060405250810190612c079190613495565b60015b612c8d573d8060008114612c3a576040519150601f19603f3d011682016040523d82523d6000602084013e612c3f565b606091505b50600081511415612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90613b52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ce2565b600190505b949350505050565b612cf48383612d58565b612d016000848484612b53565b612d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3790613b52565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf90613cf2565b60405180910390fd5b612dd18161236d565b15612e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0890613b92565b60405180910390fd5b612e1d60008383612b30565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e6d9190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f329061412a565b90600052602060002090601f016020900481019282612f545760008555612f9b565b82601f10612f6d57803560ff1916838001178555612f9b565b82800160010185558215612f9b579182015b82811115612f9a578235825591602001919060010190612f7f565b5b509050612fa89190612fac565b5090565b5b80821115612fc5576000816000905550600101612fad565b5090565b6000612fdc612fd784613eb2565b613e8d565b905082815260208101848484011115612ff857612ff7614301565b5b6130038482856140e8565b509392505050565b60008135905061301a8161495f565b92915050565b60008083601f840112613036576130356142f7565b5b8235905067ffffffffffffffff811115613053576130526142f2565b5b60208301915083602082028301111561306f5761306e6142fc565b5b9250929050565b60008083601f84011261308c5761308b6142f7565b5b8235905067ffffffffffffffff8111156130a9576130a86142f2565b5b6020830191508360208202830111156130c5576130c46142fc565b5b9250929050565b6000813590506130db81614976565b92915050565b6000813590506130f08161498d565b92915050565b6000815190506131058161498d565b92915050565b600082601f8301126131205761311f6142f7565b5b8135613130848260208601612fc9565b91505092915050565b60008083601f84011261314f5761314e6142f7565b5b8235905067ffffffffffffffff81111561316c5761316b6142f2565b5b602083019150836001820283011115613188576131876142fc565b5b9250929050565b60008135905061319e816149a4565b92915050565b6000602082840312156131ba576131b961430b565b5b60006131c88482850161300b565b91505092915050565b600080604083850312156131e8576131e761430b565b5b60006131f68582860161300b565b92505060206132078582860161300b565b9150509250929050565b60008060006060848603121561322a5761322961430b565b5b60006132388682870161300b565b93505060206132498682870161300b565b925050604061325a8682870161318f565b9150509250925092565b6000806000806080858703121561327e5761327d61430b565b5b600061328c8782880161300b565b945050602061329d8782880161300b565b93505060406132ae8782880161318f565b925050606085013567ffffffffffffffff8111156132cf576132ce614306565b5b6132db8782880161310b565b91505092959194509250565b600080604083850312156132fe576132fd61430b565b5b600061330c8582860161300b565b925050602061331d858286016130cc565b9150509250929050565b6000806040838503121561333e5761333d61430b565b5b600061334c8582860161300b565b925050602061335d8582860161318f565b9150509250929050565b6000806000606084860312156133805761337f61430b565b5b600061338e8682870161300b565b935050602061339f8682870161318f565b92505060406133b0868287016130cc565b9150509250925092565b600080600080604085870312156133d4576133d361430b565b5b600085013567ffffffffffffffff8111156133f2576133f1614306565b5b6133fe87828801613020565b9450945050602085013567ffffffffffffffff81111561342157613420614306565b5b61342d87828801613076565b925092505092959194509250565b6000602082840312156134515761345061430b565b5b600061345f848285016130cc565b91505092915050565b60006020828403121561347e5761347d61430b565b5b600061348c848285016130e1565b91505092915050565b6000602082840312156134ab576134aa61430b565b5b60006134b9848285016130f6565b91505092915050565b600080602083850312156134d9576134d861430b565b5b600083013567ffffffffffffffff8111156134f7576134f6614306565b5b61350385828601613139565b92509250509250929050565b6000602082840312156135255761352461430b565b5b60006135338482850161318f565b91505092915050565b60006135488383613a01565b60208301905092915050565b61355d81614074565b82525050565b600061356e82613ef3565b6135788185613f21565b935061358383613ee3565b8060005b838110156135b457815161359b888261353c565b97506135a683613f14565b925050600181019050613587565b5085935050505092915050565b6135ca81614086565b82525050565b60006135db82613efe565b6135e58185613f32565b93506135f58185602086016140f7565b6135fe81614310565b840191505092915050565b600061361482613f09565b61361e8185613f43565b935061362e8185602086016140f7565b61363781614310565b840191505092915050565b600061364d82613f09565b6136578185613f54565b93506136678185602086016140f7565b80840191505092915050565b6000613680601b83613f43565b915061368b82614321565b602082019050919050565b60006136a3603283613f43565b91506136ae8261434a565b604082019050919050565b60006136c6602683613f43565b91506136d182614399565b604082019050919050565b60006136e9601c83613f43565b91506136f4826143e8565b602082019050919050565b600061370c602483613f43565b915061371782614411565b604082019050919050565b600061372f601683613f43565b915061373a82614460565b602082019050919050565b6000613752602483613f43565b915061375d82614489565b604082019050919050565b6000613775601983613f43565b9150613780826144d8565b602082019050919050565b6000613798601283613f43565b91506137a382614501565b602082019050919050565b60006137bb602c83613f43565b91506137c68261452a565b604082019050919050565b60006137de600883613f43565b91506137e982614579565b602082019050919050565b6000613801603883613f43565b915061380c826145a2565b604082019050919050565b6000613824602a83613f43565b915061382f826145f1565b604082019050919050565b6000613847602983613f43565b915061385282614640565b604082019050919050565b600061386a602083613f43565b91506138758261468f565b602082019050919050565b600061388d600a83613f43565b9150613898826146b8565b602082019050919050565b60006138b0601383613f43565b91506138bb826146e1565b602082019050919050565b60006138d3602c83613f43565b91506138de8261470a565b604082019050919050565b60006138f6602083613f43565b915061390182614759565b602082019050919050565b6000613919602983613f43565b915061392482614782565b604082019050919050565b600061393c602f83613f43565b9150613947826147d1565b604082019050919050565b600061395f602183613f43565b915061396a82614820565b604082019050919050565b6000613982602183613f43565b915061398d8261486f565b604082019050919050565b60006139a5603183613f43565b91506139b0826148be565b604082019050919050565b60006139c8600883613f43565b91506139d38261490d565b602082019050919050565b60006139eb600c83613f43565b91506139f682614936565b602082019050919050565b613a0a816140de565b82525050565b613a19816140de565b82525050565b6000613a2b8285613642565b9150613a378284613642565b91508190509392505050565b6000602082019050613a586000830184613554565b92915050565b6000608082019050613a736000830187613554565b613a806020830186613554565b613a8d6040830185613a10565b8181036060830152613a9f81846135d0565b905095945050505050565b6000604082019050613abf6000830185613554565b613acc6020830184613a10565b9392505050565b60006020820190508181036000830152613aed8184613563565b905092915050565b6000602082019050613b0a60008301846135c1565b92915050565b60006020820190508181036000830152613b2a8184613609565b905092915050565b60006020820190508181036000830152613b4b81613673565b9050919050565b60006020820190508181036000830152613b6b81613696565b9050919050565b60006020820190508181036000830152613b8b816136b9565b9050919050565b60006020820190508181036000830152613bab816136dc565b9050919050565b60006020820190508181036000830152613bcb816136ff565b9050919050565b60006020820190508181036000830152613beb81613722565b9050919050565b60006020820190508181036000830152613c0b81613745565b9050919050565b60006020820190508181036000830152613c2b81613768565b9050919050565b60006020820190508181036000830152613c4b8161378b565b9050919050565b60006020820190508181036000830152613c6b816137ae565b9050919050565b60006020820190508181036000830152613c8b816137d1565b9050919050565b60006020820190508181036000830152613cab816137f4565b9050919050565b60006020820190508181036000830152613ccb81613817565b9050919050565b60006020820190508181036000830152613ceb8161383a565b9050919050565b60006020820190508181036000830152613d0b8161385d565b9050919050565b60006020820190508181036000830152613d2b81613880565b9050919050565b60006020820190508181036000830152613d4b816138a3565b9050919050565b60006020820190508181036000830152613d6b816138c6565b9050919050565b60006020820190508181036000830152613d8b816138e9565b9050919050565b60006020820190508181036000830152613dab8161390c565b9050919050565b60006020820190508181036000830152613dcb8161392f565b9050919050565b60006020820190508181036000830152613deb81613952565b9050919050565b60006020820190508181036000830152613e0b81613975565b9050919050565b60006020820190508181036000830152613e2b81613998565b9050919050565b60006020820190508181036000830152613e4b816139bb565b9050919050565b60006020820190508181036000830152613e6b816139de565b9050919050565b6000602082019050613e876000830184613a10565b92915050565b6000613e97613ea8565b9050613ea3828261415c565b919050565b6000604051905090565b600067ffffffffffffffff821115613ecd57613ecc6142c3565b5b613ed682614310565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f6a826140de565b9150613f75836140de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613faa57613fa9614207565b5b828201905092915050565b6000613fc0826140de565b9150613fcb836140de565b925082613fdb57613fda614236565b5b828204905092915050565b6000613ff1826140de565b9150613ffc836140de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403557614034614207565b5b828202905092915050565b600061404b826140de565b9150614056836140de565b92508282101561406957614068614207565b5b828203905092915050565b600061407f826140be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141155780820151818401526020810190506140fa565b83811115614124576000848401525b50505050565b6000600282049050600182168061414257607f821691505b6020821081141561415657614155614265565b5b50919050565b61416582614310565b810181811067ffffffffffffffff82111715614184576141836142c3565b5b80604052505050565b6000614198826140de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141cb576141ca614207565b5b600182019050919050565b60006141e1826140de565b91506141ec836140de565b9250826141fc576141fb614236565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f752063616e277420636c61696d207468617420616d6f756e740000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436c61696d206f76657200000000000000000000000000000000000000000000600082015250565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4f4e4c5920484f4c444552530000000000000000000000000000000000000000600082015250565b61496881614074565b811461497357600080fd5b50565b61497f81614086565b811461498a57600080fd5b50565b61499681614092565b81146149a157600080fd5b50565b6149ad816140de565b81146149b857600080fd5b5056fea26469706673582212209d40a9be50c0301b909df73294e90359e62df30a391689f30effb8357d77d78564736f6c63430008060033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Metavillains are a collection of 10,000 unique 3D villain-like avatars living as NFTs on the blockchain. Villains are stored as ERC721 tokens on the Ethereum blockchain.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.